From 65119929968c101b355d18783dcb781e636c70d3 Mon Sep 17 00:00:00 2001 From: Dominik Maszczyk Date: Thu, 25 Jan 2024 11:01:52 +0100 Subject: [PATCH] Lifelike staging az deployment becomes master (#2213) * Convert `get_genes_to_organisms` to AQL * Convert `get_proteins_to_organisms` to AQL * Convert `get_global_inclusions_count` to AQL * Convert `get_global_inclusions` to AQL * Convert `get_global_inclusions_paginated` to AQL * Convert `get_docs_by_ids` to AQL * Convert `get_mesh_by_ids` to AQL * Convert `get_node_labels_and_relationship` to AQL * Convert `global_inclusions_by_type` queries to AQL * Convert `_global_annotation_exists_in_kg` to AQL * Update goc queries for globals * Fix linting * Skip annotations pytests This is a temporary measure to allow CI to pass without needing to refactor every annotations test which previously used Neo4j. * Fix bug in `get_global_inclusions_by_type_query` * Remove unnecessary graph services from annotations * Update ET to use Arango * Resolve mypy & pycodestyle issues * Update organism search to use AQL * Update visualizer search to use AQL * Update synonym search to use AQL * Remove `SearchService` No longer needed as it isn't used anywhere. * Update viz expansion/snippets queries to use AQL * Fix bug in batch uri request api * Ignore failing visualizer tests Just silencing these until after the arango integration is complete. * Fix lint issues * Update id properties to use `IdType` This should help if in the future we decide to go back to using numbers, we won't have to change every single instance of a type definition. * Fix bad type definition in sidenav-type view * Move import to correct group * Add `verify_override` argument to ArangoClient * Remove KgService and Pathway Browser Since this feature is mostly a prototype and we're moving away from Neo4j anyway, doesn't really make sense to keep it. * Remove remaining references to neo4j package Removes (almost) all remaining references to the neo4j python driver in the appserver. There are still a few references in the pytests, these can be ironed out when the tests themselves are updated in the near future. * Add arango driver to stats-enrichment pipfile * Update SE to use arango * Remove neo4j & py2neo from SE pipfile * Fix pagination bug in visualizer search * Fix bug in visualizer expansion query * Update cache-invalidator to use Arango * Add correct sorting to visualizer search query * Fix sorting in misc. visualizer snippet queries * Remove possibly unnecessary `exec $@` call * Add sanity check log after dbs have started * Remove n4j container & update startup w/ arango * Test ansible workflow changes (add verbosity) * Re-format relevant visualizer JS files * Update expand to bulk create reference tables * Fix input/output errors in visualization cmp * Fix direction bug in reference table creation * Improve visualizer expand timing Consolidates the expand/reference table requests into a single one. Also adds some small performance improvements on the client. * Add improved association matching to viz queries * Add very slight perf improvement to snippets query * Add starts-with phrase search to viz search * Add perf update to node pair snippets query * Fix domain labels not appearing in viz search * Fix mypy errors * Remove accidental workflow changes * Fix ChEBI typo in constants * Fix pagination issue in viz search * Clean up a few files * Update arango conftests + update initial tests * Update manual annotations tests * Update neo4j api tests * Update database annotations tests * Use camel_to_snake_dict instead of recent change * Update remaining visualizer tests * Add comment to redis queue tests * Fix appserver linting checks * Fix client lint checks * Update enrichment queries to loop over inputs We noticed that when using an `IN` clause, the results were being sorted in seemingly alphabetical order. To avoid this, we changed the queries to iterate over the inputs to return the results in input order. * Add perf. improvement to stats-enrichment query * Add perf. improvement to anno fallback queries * Fix typo in genes to organism query * Add another date conversion case for arango data * Fix bad error handling in global creation * Generalize arango date format checks * Remove debug comments * Fix linter issues * Fix appserver issues * Fix incorrect property name in go term query * Update deployment submodule (add AQL vars to qa) * Update deployment submodule (rm bad pip installs) * Update deployment submodule (demo vars) * Increase ansible log verbosity for debugging * Fix typo * Update deployment submodule (rm apm vars) * Update deployment submodule (switch to gpt branch) * Update deployment submodule (add gpt key to demo) * Fix pycodestyle errors * Fix pytest * Add auto lint changes for pytest update * Fix prettier & black warnings * Fix additional black/prettier errors * Fix code style issues with Black * Fix code style issues with Prettier * Remove old `util.py` in favor of new files * Rename `neo4j_test.py` to `arango_test.py` * Fix flake8 issue * Fix silent bugs in visualizer search * Fix typo in associated type snippet count query * Fix merge conflict in visualizer search records * Change deployment submodule ref * Remove unnecessary secret from az workflows * Update deployment submodule (fix bad value) * Update deployment submodule (add docker-az role) * Update deployment submodule (fix bad file location) * Update deployment submodule (re-add JWKS vars) * Update deployment submodule (+ openai vars to env) * Update deployment submodule (add networks) * Update deployment submodule (edit JWKS vars) * Update deployment submodule (remove vals from JWKS) * Add empty string defaults for JWKS flask config * Fix badly merged changes for LL-5300 * Add synonym field to organism query result * Update deployment to latest lifelike-public-temp-fix * Update deployment submodule (update frontend host) * Update deployment submodule (update stg app version) * Update deployment submodule to latest * Update deployment submodule (rm var from env) * Update deployment submodule (update flask env) * Fix code style issues with Prettier --------- Co-authored-by: Ethan Sanchez Co-authored-by: Lint Action --- .github/workflows/deployment-az-public.yml | 1 - .github/workflows/deployment-az.yml | 2 - .github/workflows/deployment-gcp.yml | 2 +- appserver/Dockerfile | 1 + appserver/bin/startup.sh | 2 +- appserver/bin/wait-for-arango | 16 + appserver/config.py | 8 +- appserver/migrations/utils.py | 69 +- appserver/neo4japp/blueprints/annotations.py | 39 +- .../neo4japp/blueprints/enrichment_table.py | 39 +- .../neo4japp/blueprints/entity_resources.py | 11 +- appserver/neo4japp/blueprints/kg.py | 51 - appserver/neo4japp/blueprints/playground.py | 2 +- appserver/neo4japp/blueprints/search.py | 55 +- appserver/neo4japp/blueprints/visualizer.py | 122 +- appserver/neo4japp/constants.py | 69 +- .../data_transfer_objects/visualization.py | 56 +- appserver/neo4japp/database.py | 91 +- appserver/neo4japp/factory.py | 4 - appserver/neo4japp/models/common.py | 10 +- .../neo4japp/request_schemas/visualizer.py | 8 +- appserver/neo4japp/schemas/annotations.py | 6 +- appserver/neo4japp/services/__init__.py | 3 - .../neo4japp/services/annotations/README.md | 1 - .../neo4japp/services/annotations/__init__.py | 1 - .../annotations/annotation_graph_service.py | 490 +- .../annotations/annotation_service.py | 33 +- .../enrichment_annotation_service.py | 22 +- .../services/annotations/initializer.py | 18 +- .../services/annotations/lmdb_service.py | 3 +- .../annotations/manual_annotation_service.py | 435 +- .../neo4japp/services/annotations/pipeline.py | 20 +- .../profilers/annotations_profiler.py | 2 - .../annotations/utils/graph_queries.py | 950 +- appserver/neo4japp/services/arangodb.py | 25 +- appserver/neo4japp/services/common.py | 95 - .../services/elastic/elastic_service.py | 10 +- .../services/enrichment/enrichment_table.py | 383 +- appserver/neo4japp/services/kg_service.py | 849 - appserver/neo4japp/services/search.py | 1015 +- .../ale_mutation_data/42C.json | 18937 - .../ale_mutation_data/acetate.json | 4332 - .../ale_mutation_data/glycerol.json | 7507 - .../ale_mutation_data/hexanoic.json | 5611 - .../ale_mutation_data/isobutyric.json | 21559 - .../ale_mutation_data/nagA.json | 467786 --------------- .../ale_mutation_data/nagAC.json | 714 - .../nagAC_shortestpaths.json | 3670 - .../ale_mutation_data/nagC.json | 3003 - .../ale_mutation_data/putrescine.json | 8952 - .../ale_mutation_data/serine.json | 3700 - .../ale_mutation_data/tpiA.json | 3861 - .../ale_mutation_data/xylose.json | 28230 - .../Auxilin recruits HSPA8.json | 20536 - .../CSNK1D phosphorylates SEC23.json | 14166 - ...AK1 and dephosphorylation of AP-2 mu2.json | 20276 - .../Expression of PERIOD-1.json | 11886 - .../cytoscape_data/F_BAR proteins_ARP.json | 20306 - .../cytoscape_data/FosB to PER1_vis_js.json | 1056 - ...hydrolysis promotes vesicle uncoating.json | 20276 - .../Interleukin-1 family are secreted.json | 13406 - .../cytoscape_data/PER1 [cytosol].json | 11886 - .../PTHLH2Ca2metab_shortPage_graphml.json | 886 - .../PTHLH2metab_shortPage_graphml.json | 2016 - .../PTHLH2metab_short_graphml.json | 7626 - ...he Ligand_GPCR_Gs complex dissociates.json | 16436 - .../cytoscape_data/Vesicle budding.json | 19246 - .../cytoscape_data/aak1_graphml.json | 2576 - .../aak1_to_metab_noOct_graphml.json | 8066 - .../metab2PTHLH_shortPage_graphml.json | 2966 - .../metab2PTHLH_short_graphml.json | 7436 - .../metab2PTHLH_short_graphml_truncated.json | 7436 - .../minMeanShort_metabs_Acetate_graphml.json | 6526 - .../minMeanShort_metabs_Butyrate_graphml.json | 6526 - ...inMeanShort_metabs_Propionate_graphml.json | 6526 - ...minMeanShort_metabs_Serotonin_graphml.json | 5086 - .../minMeanShort_metabs_top10_graphml.json | 13876 - .../minMeanShort_updown_Acetate_graphml.json | 14956 - .../minMeanShort_updown_Butyrate_graphml.json | 14956 - ...minMeanShort_updown_Serotonin_graphml.json | 15466 - ...on_genes_and_top20_metabolites_vis_js.json | 16867 - ...racterized_iModulon_genes_only_vis_js.json | 2576 - ...d_iModulon_genes_to_methionine_vis_js.json | 3065 - ...Modulon_genes_yjdI_metabolites_vis_js.json | 4827 - .../zink-imodulon-metals_vis_js.json | 1401 - .../zink-imodulon-test2_vis_js.json | 1783 - .../shortest_path_data/serine-to-malZp.json | 5026 - .../services/shortest_path_data/serine.json | 3796 - appserver/neo4japp/services/visualizer.py | 1359 +- appserver/neo4japp/util.py | 368 - appserver/neo4japp/utils/flask.py | 2 +- appserver/neo4japp/utils/jsonify.py | 2 +- appserver/neo4japp/utils/labels.py | 27 +- appserver/neo4japp/utils/string.py | 11 +- appserver/tests/api/account_test.py | 41 +- appserver/tests/api/annotations_test.py | 38 +- .../api/{neo4j_test.py => arango_test.py} | 63 +- appserver/tests/api/entity_resources_test.py | 2 +- appserver/tests/api/filesystem/object_test.py | 9 +- appserver/tests/conftest.py | 1294 +- appserver/tests/constants.py | 72 + .../services/annotations/annotations_test.py | 85 +- .../database/services/annotations/conftest.py | 49 +- .../manual_annotations_test.py | 5 + .../database/services/annotations/util.py | 2 +- .../redis_queue/test_redis_queue_service.py | 4 + .../database/services/visualizer/conftest.py | 661 + .../visualizer.py} | 66 +- appserver/tests/unit/util_test.py | 2 +- cache-invalidator/Dockerfile | 12 +- cache-invalidator/Pipfile | 2 +- cache-invalidator/Pipfile.lock | 74 +- cache-invalidator/bin/startup.sh | 13 + cache-invalidator/bin/wait-for-arango.sh | 14 + cache-invalidator/main.py | 448 +- client/nginx.conf | 2 +- client/src/app/app-routing.module.ts | 6 - client/src/app/app.module.ts | 2 - .../clustergram/clustergram.component.html | 4 +- .../enrichment/models/enrichment-document.ts | 78 +- .../services/enrichment-table.service.ts | 14 +- client/src/app/interfaces/neo4j.interface.ts | 23 +- .../app/interfaces/visualization.interface.ts | 68 +- .../search-record-node.component.html | 4 +- .../search-record-node.component.ts | 8 +- ...search-record-relationships.component.html | 2 +- .../search/services/graph-search.service.ts | 2 +- client/src/app/search/utils/records.ts | 2 +- .../components/route-builder.component.html | 56 - .../components/route-builder.component.scss | 27 - .../route-builder.component.spec.ts | 30 - .../components/route-builder.component.ts | 75 - .../components/route-display.component.html | 18 - .../components/route-display.component.scss | 0 .../route-display.component.spec.ts | 33 - .../components/route-display.component.ts | 189 - .../containers/route-search.component.html | 1 - .../containers/route-search.component.scss | 0 .../containers/route-search.component.spec.ts | 29 - .../containers/route-search.component.ts | 12 - .../containers/shortest-path.component.html | 23 - .../containers/shortest-path.component.scss | 0 .../shortest-path.component.spec.ts | 36 - .../containers/shortest-path.component.ts | 50 - .../services/shortest-path.service.ts | 26 - .../app/shortest-path/shortest-path.module.ts | 22 - .../sidenav-type-view.component.ts | 4 +- .../visualization-canvas.component.spec.ts | 26 +- .../visualization-canvas.component.ts | 572 +- .../visualization.component.html | 4 - .../visualization.component.spec.ts | 114 +- .../visualization/visualization.component.ts | 217 +- .../services/visualization.service.ts | 98 +- deployment | 2 +- docker-compose.override.yml | 44 +- docs/wiki/appserver/logging-guide.md | 2 +- statistical-enrichment/Pipfile | 2 +- statistical-enrichment/Pipfile.lock | 613 +- .../statistical_enrichment/config.py | 19 +- .../statistical_enrichment/database.py | 24 + .../services/__init__.py | 1 - .../services/arangodb.py | 22 + .../services/enrichment/__init__.py | 10 - .../enrichment/enrichment_visualisation.py | 246 +- .../services/graphdb.py | 17 - .../statistical_enrichment/views.py | 11 +- 166 files changed, 5808 insertions(+), 916431 deletions(-) create mode 100755 appserver/bin/wait-for-arango delete mode 100644 appserver/neo4japp/blueprints/kg.py delete mode 100644 appserver/neo4japp/services/kg_service.py delete mode 100644 appserver/neo4japp/services/shortest_path_data/ale_mutation_data/42C.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/ale_mutation_data/acetate.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/ale_mutation_data/glycerol.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/ale_mutation_data/hexanoic.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/ale_mutation_data/isobutyric.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/ale_mutation_data/nagA.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/ale_mutation_data/nagAC.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/ale_mutation_data/nagAC_shortestpaths.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/ale_mutation_data/nagC.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/ale_mutation_data/putrescine.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/ale_mutation_data/serine.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/ale_mutation_data/tpiA.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/ale_mutation_data/xylose.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/Auxilin recruits HSPA8.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/CSNK1D phosphorylates SEC23.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/Dissociation of AAK1 and dephosphorylation of AP-2 mu2.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/Expression of PERIOD-1.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/F_BAR proteins_ARP.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/FosB to PER1_vis_js.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/HSPA8-mediated ATP hydrolysis promotes vesicle uncoating.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/Interleukin-1 family are secreted.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/PER1 [cytosol].json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/PTHLH2Ca2metab_shortPage_graphml.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/PTHLH2metab_shortPage_graphml.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/PTHLH2metab_short_graphml.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/The Ligand_GPCR_Gs complex dissociates.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/Vesicle budding.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/aak1_graphml.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/aak1_to_metab_noOct_graphml.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/metab2PTHLH_shortPage_graphml.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/metab2PTHLH_short_graphml.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/metab2PTHLH_short_graphml_truncated.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_metabs_Acetate_graphml.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_metabs_Butyrate_graphml.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_metabs_Propionate_graphml.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_metabs_Serotonin_graphml.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_metabs_top10_graphml.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_updown_Acetate_graphml.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_updown_Butyrate_graphml.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_updown_Serotonin_graphml.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/marina_sankey_data/uncharacterized_iModulon_genes_and_top20_metabolites_vis_js.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/marina_sankey_data/uncharacterized_iModulon_genes_only_vis_js.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/marina_sankey_data/uncharacterized_iModulon_genes_to_methionine_vis_js.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/marina_sankey_data/uncharacterized_iModulon_genes_yjdI_metabolites_vis_js.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/marina_sankey_data/zink-imodulon-metals_vis_js.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/marina_sankey_data/zink-imodulon-test2_vis_js.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/serine-to-malZp.json delete mode 100644 appserver/neo4japp/services/shortest_path_data/serine.json delete mode 100644 appserver/neo4japp/util.py rename appserver/tests/api/{neo4j_test.py => arango_test.py} (59%) create mode 100644 appserver/tests/constants.py create mode 100644 appserver/tests/database/services/visualizer/conftest.py rename appserver/tests/database/services/{neo4j_test.py => visualizer/visualizer.py} (81%) create mode 100755 cache-invalidator/bin/startup.sh create mode 100755 cache-invalidator/bin/wait-for-arango.sh delete mode 100644 client/src/app/shortest-path/components/route-builder.component.html delete mode 100644 client/src/app/shortest-path/components/route-builder.component.scss delete mode 100644 client/src/app/shortest-path/components/route-builder.component.spec.ts delete mode 100644 client/src/app/shortest-path/components/route-builder.component.ts delete mode 100644 client/src/app/shortest-path/components/route-display.component.html delete mode 100644 client/src/app/shortest-path/components/route-display.component.scss delete mode 100644 client/src/app/shortest-path/components/route-display.component.spec.ts delete mode 100644 client/src/app/shortest-path/components/route-display.component.ts delete mode 100644 client/src/app/shortest-path/containers/route-search.component.html delete mode 100644 client/src/app/shortest-path/containers/route-search.component.scss delete mode 100644 client/src/app/shortest-path/containers/route-search.component.spec.ts delete mode 100644 client/src/app/shortest-path/containers/route-search.component.ts delete mode 100644 client/src/app/shortest-path/containers/shortest-path.component.html delete mode 100644 client/src/app/shortest-path/containers/shortest-path.component.scss delete mode 100644 client/src/app/shortest-path/containers/shortest-path.component.spec.ts delete mode 100644 client/src/app/shortest-path/containers/shortest-path.component.ts delete mode 100644 client/src/app/shortest-path/services/shortest-path.service.ts delete mode 100644 client/src/app/shortest-path/shortest-path.module.ts create mode 100644 statistical-enrichment/statistical_enrichment/database.py create mode 100644 statistical-enrichment/statistical_enrichment/services/arangodb.py delete mode 100644 statistical-enrichment/statistical_enrichment/services/graphdb.py diff --git a/.github/workflows/deployment-az-public.yml b/.github/workflows/deployment-az-public.yml index f874707ea5..0347495991 100644 --- a/.github/workflows/deployment-az-public.yml +++ b/.github/workflows/deployment-az-public.yml @@ -18,5 +18,4 @@ jobs: SSH_KEY: ${{ secrets.ANSIBLE_PRIVATE_SSH_KEY }} CONTAINER_REGISTRY_USERNAME: ${{ secrets.AZURE_CR_USERNAME }} CONTAINER_REGISTRY_PASSWORD: ${{ secrets.AZURE_CR_PASSWORD }} - GCP_CREDENTIALS: ${{ secrets.GCE_SA_KEY }} INFRA_PAT: ${{ secrets.INFRA_PAT }} diff --git a/.github/workflows/deployment-az.yml b/.github/workflows/deployment-az.yml index 906a06b11b..f2cb12a9bd 100644 --- a/.github/workflows/deployment-az.yml +++ b/.github/workflows/deployment-az.yml @@ -26,8 +26,6 @@ on: required: true SSH_KEY: required: true - GCP_CREDENTIALS: - required: true INFRA_PAT: required: true diff --git a/.github/workflows/deployment-gcp.yml b/.github/workflows/deployment-gcp.yml index 3739638461..a5ab0c6ce9 100644 --- a/.github/workflows/deployment-gcp.yml +++ b/.github/workflows/deployment-gcp.yml @@ -156,4 +156,4 @@ jobs: --extra-vars github_run_id=${{ github.run_id }} --extra-vars postgres_host=${{ steps.database-host.outputs.ip_address }} --user ansible - --verbose + -vvvv diff --git a/appserver/Dockerfile b/appserver/Dockerfile index 1cde0b3fd4..d2e572feb9 100644 --- a/appserver/Dockerfile +++ b/appserver/Dockerfile @@ -33,6 +33,7 @@ COPY --chown=1000:1000 . . ENV PYTHONUNBUFFERED 1 ENV PYTHONPATH $N4J_HOME +# Set Python3 as the default when running "python" RUN echo 'alias python=python3' >> ~/.bashrc && source ~/.bashrc USER $N4J_USER diff --git a/appserver/bin/startup.sh b/appserver/bin/startup.sh index 765323c874..87179382d4 100755 --- a/appserver/bin/startup.sh +++ b/appserver/bin/startup.sh @@ -9,7 +9,7 @@ if [ "${FLASK_ENV}" = "development" ] && [ "${FLASK_APP_CONFIG}" = "Development" # wait for postgres timeout 300 ${__dir__}/wait-for-postgres # wait for neo4j - timeout 300 ${__dir__}/wait-for-neo4j + timeout 300 ${__dir__}/wait-for-arango #wait for elastic timeout 300 ${__dir__}/wait-for-elastic # setup db diff --git a/appserver/bin/wait-for-arango b/appserver/bin/wait-for-arango new file mode 100755 index 0000000000..3084fe3a03 --- /dev/null +++ b/appserver/bin/wait-for-arango @@ -0,0 +1,16 @@ +#!/bin/bash + +echo "Waiting for Arango" + +ARANGO_STATUS="000" + +until [ "$ARANGO_STATUS" = "200" ] +do + ARANGO_STATUS=`curl -s -o /dev/null -I -w "%{http_code}" --basic --user "${ARANGO_USERNAME}:${ARANGO_PASSWORD}" -X GET ${ARANGO_HOST}/_api/endpoint` + echo "Status of Arango: $ARANGO_STATUS" + sleep 2 +done + +# Run command | https://docs.docker.com/compose/startup-order/ +>&2 echo "Arango started - executing command" +exec $@ \ No newline at end of file diff --git a/appserver/config.py b/appserver/config.py index a4e4259440..3f01a758f0 100644 --- a/appserver/config.py +++ b/appserver/config.py @@ -18,10 +18,10 @@ class Base: APP_VERSION = os.environ.get('APP_VERSION', 'undefined') LOGGING_LEVEL = os.environ.get('LOGGING_LEVEL', logging.INFO) - JWKS_URL = os.environ.get('JWKS_URL', None) - JWT_SECRET = os.environ.get('JWT_SECRET', 'secrets') - JWT_AUDIENCE = os.environ.get('JWT_AUDIENCE', None) - JWT_ALGORITHM = os.environ.get('JWT_ALGORITHM', 'HS256') + JWKS_URL = os.environ.get('JWKS_URL', None) or None + JWT_SECRET = os.environ.get('JWT_SECRET', 'secrets') or 'secrets' + JWT_AUDIENCE = os.environ.get('JWT_AUDIENCE', None) or None + JWT_ALGORITHM = os.environ.get('JWT_ALGORITHM', 'HS256') or 'HS256' POSTGRES_HOST = os.environ.get('POSTGRES_HOST') POSTGRES_PORT = os.environ.get('POSTGRES_PORT') diff --git a/appserver/migrations/utils.py b/appserver/migrations/utils.py index 1627469c75..19661d550d 100644 --- a/appserver/migrations/utils.py +++ b/appserver/migrations/utils.py @@ -1,9 +1,14 @@ +from arango.client import ArangoClient import multiprocessing as mp +from typing import Dict, List + +from neo4japp.database import get_or_create_arango_client # flake8: noqa: OIG001 # It is legacy file with imports from appserver which we decided to not fix from neo4japp.models import Files -from neo4japp.services.annotations.initializer import get_annotation_graph_service from neo4japp.services.annotations.constants import EntityType +from neo4japp.services.annotations.utils.graph_queries import get_docs_by_ids_query +from neo4japp.services.arangodb import execute_arango_query, get_db def window_chunk(q, windowsize=100): @@ -20,6 +25,34 @@ def window_chunk(q, windowsize=100): yield chunk +# NOTE DEPRECATED: just used in old migration +def _get_mesh_by_ids_query(): + return """ + FOR doc IN mesh + FILTER 'TopicalDescriptor' IN doc.labels + FILTER doc.eid IN @ids + RETURN {'mesh_id': doc.eid, 'mesh_name': doc.name} + """ + + +def _get_mesh_from_mesh_ids( + arango_client: ArangoClient, mesh_ids: List[str] +) -> Dict[str, str]: + result = execute_arango_query( + db=get_db(arango_client), query=_get_mesh_by_ids_query(), ids=mesh_ids + ) + return {row['mesh_id']: row['mesh_name'] for row in result} + + +def _get_nodes_from_node_ids( + arango_client: ArangoClient, entity_type: str, node_ids: List[str] +) -> Dict[str, str]: + result = execute_arango_query( + db=get_db(arango_client), query=get_docs_by_ids_query(entity_type), ids=node_ids + ) + return {row['entity_id']: row['entity_name'] for row in result} + + def get_primary_names(annotations): """Copied from AnnotationService.add_primary_name""" chemical_ids = set() @@ -30,7 +63,7 @@ def get_primary_names(annotations): organism_ids = set() mesh_ids = set() - neo4j = get_annotation_graph_service() + arango_client = get_or_create_arango_client() updated_annotations = [] # Note: We need to split the ids by colon because @@ -77,25 +110,25 @@ def get_primary_names(annotations): organism_ids.add(meta_id) try: - chemical_names = neo4j.get_nodes_from_node_ids( - EntityType.CHEMICAL.value, list(chemical_ids) - ) # noqa - compound_names = neo4j.get_nodes_from_node_ids( - EntityType.COMPOUND.value, list(compound_ids) - ) # noqa - disease_names = neo4j.get_nodes_from_node_ids( - EntityType.DISEASE.value, list(disease_ids) + chemical_names = _get_nodes_from_node_ids( + arango_client, EntityType.CHEMICAL.value, list(chemical_ids) + ) + compound_names = _get_nodes_from_node_ids( + arango_client, EntityType.COMPOUND.value, list(compound_ids) + ) + disease_names = _get_nodes_from_node_ids( + arango_client, EntityType.DISEASE.value, list(disease_ids) + ) + gene_names = _get_nodes_from_node_ids( + arango_client, EntityType.GENE.value, list(gene_ids) ) - gene_names = neo4j.get_nodes_from_node_ids( - EntityType.GENE.value, list(gene_ids) + protein_names = _get_nodes_from_node_ids( + arango_client, EntityType.PROTEIN.value, list(protein_ids) ) - protein_names = neo4j.get_nodes_from_node_ids( - EntityType.PROTEIN.value, list(protein_ids) + organism_names = _get_nodes_from_node_ids( + arango_client, EntityType.SPECIES.value, list(organism_ids) ) - organism_names = neo4j.get_nodes_from_node_ids( - EntityType.SPECIES.value, list(organism_ids) - ) # noqa - mesh_names = neo4j.get_mesh_from_mesh_ids(list(mesh_ids)) + mesh_names = _get_mesh_from_mesh_ids(arango_client, list(mesh_ids)) except Exception: raise diff --git a/appserver/neo4japp/blueprints/annotations.py b/appserver/neo4japp/blueprints/annotations.py index ded0f04cfb..059fdd37ff 100644 --- a/appserver/neo4japp/blueprints/annotations.py +++ b/appserver/neo4japp/blueprints/annotations.py @@ -73,7 +73,6 @@ from ..services.annotations.initializer import ( get_annotation_service, get_annotation_db_service, - get_annotation_graph_service, get_annotation_tokenizer, get_bioc_document_service, get_enrichment_annotation_service, @@ -91,6 +90,7 @@ get_global_inclusions_query, get_global_inclusions_count_query, ) +from ..services.arangodb import convert_datetime, execute_arango_query, get_db from ..services.enrichment.data_transfer_objects import EnrichmentCellTextMapping from ..services.filesystem import Filesystem from ..utils.globals import get_current_user @@ -656,7 +656,6 @@ def _annotate( pipeline = Pipeline( { 'adbs': get_annotation_db_service, - 'ags': get_annotation_graph_service, 'aers': get_recognition_service, 'tkner': get_annotation_tokenizer, 'as': get_annotation_service, @@ -700,7 +699,6 @@ def _annotate_enrichment_table( pipeline = Pipeline( { 'adbs': get_annotation_db_service, - 'ags': get_annotation_graph_service, 'aers': get_recognition_service, 'tkner': get_annotation_tokenizer, 'as': get_enrichment_annotation_service, @@ -881,8 +879,11 @@ class GlobalAnnotationExportInclusions(MethodView): def get(self): yield g.current_user - graph = get_annotation_graph_service() - inclusions = graph.exec_read_query(get_global_inclusions_query()) + arango_client = get_or_create_arango_client() + inclusions = execute_arango_query( + db=get_db(arango_client), + query=get_global_inclusions_query(), + ) file_uuids = {inclusion['file_reference'] for inclusion in inclusions} file_data_query = db.session.query( @@ -891,7 +892,7 @@ def get(self): file_uuids_map = {d.file_uuid: d.file_deleted_by for d in file_data_query} - def get_inclusion_for_review(inclusion, file_uuids_map, graph): + def get_inclusion_for_review(inclusion, file_uuids_map): user = AppUser.query.filter_by( id=file_uuids_map[inclusion['file_reference']] ).one_or_none() @@ -905,9 +906,7 @@ def get_inclusion_for_review(inclusion, file_uuids_map, graph): 'file_uuid': inclusion['file_reference'], 'file_deleted': deleter, 'type': ManualAnnotationType.INCLUSION.value, - 'creation_date': str( - graph.convert_datetime(inclusion['creation_date']) - ), + 'creation_date': convert_datetime(inclusion['creation_date']), 'text': inclusion['synonym'], 'case_insensitive': True, 'entity_type': inclusion['entity_type'], @@ -917,7 +916,7 @@ def get_inclusion_for_review(inclusion, file_uuids_map, graph): } data = [ - get_inclusion_for_review(inclusion, file_uuids_map, graph) + get_inclusion_for_review(inclusion, file_uuids_map) for inclusion in inclusions if inclusion['file_reference'] in file_uuids_map ] @@ -1036,10 +1035,12 @@ def get(self, params, global_type): ] query_total = exclusions.total else: - graph = get_annotation_graph_service() - global_inclusions = graph.exec_read_query_with_params( - get_global_inclusions_paginated_query(), - {'skip': 0 if page == 1 else (page - 1) * limit, 'limit': limit}, + arango_client = get_or_create_arango_client() + global_inclusions = execute_arango_query( + db=get_db(arango_client), + query=get_global_inclusions_paginated_query(), + skip=0 if page == 1 else (page - 1) * limit, + limit=limit, ) file_uuids = { @@ -1065,7 +1066,7 @@ def get(self, params, global_type): if file_uuids_map.get(i['file_reference'], True) else False, 'type': ManualAnnotationType.INCLUSION.value, - 'creation_date': graph.convert_datetime(i['creation_date']), + 'creation_date': convert_datetime(i['creation_date']), 'text': i['synonym'], 'case_insensitive': True, 'entity_type': i['entity_type'], @@ -1075,9 +1076,11 @@ def get(self, params, global_type): } for i in global_inclusions ] - query_total = graph.exec_read_query(get_global_inclusions_count_query())[0][ - 'total' - ] + + query_total = execute_arango_query( + db=get_db(arango_client), + query=get_global_inclusions_count_query(), + )[0]['total'] results = {'total': query_total, 'results': data} yield jsonify(GlobalAnnotationListSchema().dump(results)) diff --git a/appserver/neo4japp/blueprints/enrichment_table.py b/appserver/neo4japp/blueprints/enrichment_table.py index 5736fe8ac9..502f330f92 100644 --- a/appserver/neo4japp/blueprints/enrichment_table.py +++ b/appserver/neo4japp/blueprints/enrichment_table.py @@ -1,8 +1,12 @@ from http import HTTPStatus from flask import Blueprint, request, jsonify +import numpy as np +from pandas import DataFrame -from neo4japp.database import get_enrichment_table_service +from neo4japp.constants import KGDomain +from neo4japp.database import get_or_create_arango_client +from neo4japp.services.enrichment.enrichment_table import get_genes, match_ncbi_genes bp = Blueprint('enrichment-table-api', __name__, url_prefix='/enrichment-table') @@ -17,10 +21,37 @@ def match_ncbi_nodes(): nodes = [] if organism is not None and gene_names is not None: - enrichment_table = get_enrichment_table_service() + arango_client = get_or_create_arango_client() # list(dict...) is to drop duplicates, but want to keep order - nodes = enrichment_table.match_ncbi_genes( - list(dict.fromkeys(gene_names)), organism + nodes = match_ncbi_genes( + arango_client, list(dict.fromkeys(gene_names)), organism ) + return jsonify({'result': nodes}), 200 + + +@bp.route('/get-ncbi-nodes/enrichment-domains', methods=['POST']) +def get_ncbi_enrichment_domains(): + """Find all domains matched to given node id, then return dictionary with all domains as + result. All domains should have matching indices e.g. regulon[1] should be data from + matching same node as uniprot[1]. + """ + # TODO: Validate incoming data using webargs + Marshmallow + data = request.get_json() + doc_ids = data.get('docIds') + tax_id = data.get('taxID') + domains = data.get('domains') + + if doc_ids is not None and tax_id is not None: + arango_client = get_or_create_arango_client() + domain_nodes = { + domain.lower(): get_genes(arango_client, KGDomain(domain), doc_ids, tax_id) + for domain in domains + } + df = DataFrame(domain_nodes).replace({np.nan: None}).transpose() + # Redundant but just following old implementation + nodes = df.append(df.columns.to_series(name='doc_id')).to_dict() + else: + nodes = {} + return jsonify({'result': nodes}), HTTPStatus.OK diff --git a/appserver/neo4japp/blueprints/entity_resources.py b/appserver/neo4japp/blueprints/entity_resources.py index 3bc00225dc..34ca3750b2 100644 --- a/appserver/neo4japp/blueprints/entity_resources.py +++ b/appserver/neo4japp/blueprints/entity_resources.py @@ -1,6 +1,7 @@ from flask import Blueprint, request -from neo4japp.models import AnnotationStyle, DomainURLsMap +from neo4japp.constants import DOMAIN_URLS_MAP +from neo4japp.models import AnnotationStyle bp = Blueprint('entity-resources', __name__, url_prefix='/entity-resources') @@ -31,8 +32,8 @@ def get_uri(): """ payload = request.json - uri = DomainURLsMap.query.filter_by(domain=payload['domain'])[0] - return {'uri': uri.base_URL.format(payload['term'])} + uri = DOMAIN_URLS_MAP[payload['domain']] + return {'uri': uri.format(payload['term'])} @bp.route('/uri/batch', methods=['POST']) @@ -60,7 +61,7 @@ def get_uri_batch(): uris = [] payload = request.json for entry in payload['batch']: - uri = DomainURLsMap.query.filter_by(domain=entry['domain'])[0] - uris.append({'uri': uri.base_URL.format(entry['term'])}) + uri = DOMAIN_URLS_MAP[entry['domain']] + uris.append({'uri': uri.format(entry['term'])}) return {'batch': uris} diff --git a/appserver/neo4japp/blueprints/kg.py b/appserver/neo4japp/blueprints/kg.py deleted file mode 100644 index 5d549e5074..0000000000 --- a/appserver/neo4japp/blueprints/kg.py +++ /dev/null @@ -1,51 +0,0 @@ -from http import HTTPStatus - -from flask import Blueprint, request, jsonify -from pandas import DataFrame - -from neo4japp.constants import KGDomain -from neo4japp.database import get_kg_service -import numpy as np - -bp = Blueprint('kg-api', __name__, url_prefix='/knowledge-graph') - - -@bp.route('/get-ncbi-nodes/enrichment-domains', methods=['POST']) -def get_ncbi_enrichment_domains(): - """Find all domains matched to given node id, then return dictionary with all domains as - result. All domains should have matching indices e.g. regulon[1] should be data from - matching same node as uniprot[1]. - """ - # TODO: Validate incoming data using webargs + Marshmallow - data = request.get_json() - node_ids = data.get('nodeIds') - tax_id = data.get('taxID') - domains = data.get('domains') - - if node_ids is not None and tax_id is not None: - kg = get_kg_service() - domain_nodes = { - domain.lower(): kg.get_genes(KGDomain(domain), node_ids, tax_id) - for domain in domains - } - df = DataFrame(domain_nodes).replace({np.nan: None}).transpose() - # Redundant but just following old implementation - nodes = df.append(df.columns.to_series(name='node_id')).to_dict() - else: - nodes = {} - - return jsonify({'result': nodes}), HTTPStatus.OK - - -@bp.route('/shortest-path-query/', methods=['GET']) -def get_shortest_path_query_result(query_id): - kg = get_kg_service() - result = kg.get_shortest_path_data(query_id) - return jsonify({'result': result}), HTTPStatus.OK - - -@bp.route('/shortest-path-query-list', methods=['GET']) -def get_shortest_path_query_list(): - kg = get_kg_service() - result = kg.get_shortest_path_query_list() - return jsonify({'result': result}), HTTPStatus.OK diff --git a/appserver/neo4japp/blueprints/playground.py b/appserver/neo4japp/blueprints/playground.py index ce0c5138c6..3bafcd7514 100644 --- a/appserver/neo4japp/blueprints/playground.py +++ b/appserver/neo4japp/blueprints/playground.py @@ -5,8 +5,8 @@ from neo4japp.schemas.playground.chat_completions import ChatCompletionsRequestSchema from neo4japp.schemas.playground.completions import CompletionsRequestSchema from neo4japp.services.chat_gpt import ChatGPT -from neo4japp.util import stream_to_json_lines from neo4japp.utils.globals import config, get_current_username +from neo4japp.utils.string import stream_to_json_lines bp = Blueprint('playground', __name__, url_prefix='/playground') diff --git a/appserver/neo4japp/blueprints/search.py b/appserver/neo4japp/blueprints/search.py index 5ba3c9ae26..cb98c4b156 100644 --- a/appserver/neo4japp/blueprints/search.py +++ b/appserver/neo4japp/blueprints/search.py @@ -9,11 +9,12 @@ from neo4japp.blueprints.filesystem import FilesystemBaseView from neo4japp.blueprints.projects import ProjectBaseView from neo4japp.constants import FRAGMENT_SIZE, LogEventType +from neo4japp.data_transfer_objects import FTSResult from neo4japp.data_transfer_objects.common import ResultQuery from neo4japp.database import ( - get_search_service_dao, get_elastic_service, get_file_type_service, + get_or_create_arango_client, ) from neo4japp.exceptions import ServerException from neo4japp.models import Files, Projects @@ -27,6 +28,13 @@ VizSearchSchema, ) from neo4japp.services.file_types.providers import DirectoryTypeProvider +from neo4japp.services.search import ( + get_organisms, + get_organism_with_tax_id, + get_synonyms, + get_synonyms_count, + visualizer_search, +) from neo4japp.services.filesystem import Filesystem from neo4japp.utils.globals import config from neo4japp.utils.jsonify import jsonify_with_class @@ -36,10 +44,9 @@ bp = Blueprint('search', __name__, url_prefix='/search') -@bp.route('/viz-search', methods=['POST']) +@bp.route('/visualizer', methods=['POST']) @use_kwargs(VizSearchSchema) -def visualizer_search(query, page, limit, domains, entities, organism): - search_dao = get_search_service_dao() +def viz_search(query, page, limit, domains, entities, organism): current_app.logger.info( f'Term: {query}, Organism: {organism}, Entities: {entities}, Domains: {domains}', extra=UserEventLog( @@ -48,7 +55,16 @@ def visualizer_search(query, page, limit, domains, entities, organism): ).to_dict(), ) - results = search_dao.visualizer_search( + if not query: + return jsonify( + { + 'result': FTSResult(query, [], 0, page, limit).to_dict(), + } + ) + + arango_client = get_or_create_arango_client() + results = visualizer_search( + arango_client, term=query, organism=organism, page=page, @@ -58,7 +74,9 @@ def visualizer_search(query, page, limit, domains, entities, organism): ) return jsonify( { - 'result': results.to_dict(), + 'result': FTSResult( + query, results['rows'], results['count'], page, limit + ).to_dict(), } ) @@ -331,14 +349,15 @@ def get(self, params, pagination: Pagination): page = pagination.page limit = pagination.limit - offset = (page - 1) * limit + skip = (page - 1) * limit + + arango_client = get_or_create_arango_client() try: - search_dao = get_search_service_dao() - results = search_dao.get_synonyms( - search_term, organisms, types, offset, limit + results = get_synonyms( + arango_client, search_term, organisms, types, skip, limit ) - count = search_dao.get_synonyms_count(search_term, organisms, types) + count = get_synonyms_count(arango_client, search_term, organisms, types) except Exception as e: current_app.logger.error( f'Failed to get synonym data for term: {search_term}', @@ -363,14 +382,14 @@ def get(self, params, pagination: Pagination): @bp.route('/organism/', methods=['GET']) @jsonify_with_class() def get_organism(organism_tax_id: str): - search_dao = get_search_service_dao() - result = search_dao.get_organism_with_tax_id(organism_tax_id) - return SuccessResponse(result=result, status_code=200) + arango_client = get_or_create_arango_client() + return SuccessResponse( + result=get_organism_with_tax_id(arango_client, organism_tax_id), status_code=200 + ) @bp.route('/organisms', methods=['POST']) @use_kwargs(OrganismSearchSchema) -def get_organisms(query, limit): - search_dao = get_search_service_dao() - results = search_dao.get_organisms(query, limit) - return jsonify({'result': results}) +def search_organisms(query, limit): + arango_client = get_or_create_arango_client() + return jsonify({'result': get_organisms(arango_client, query, limit)}) diff --git a/appserver/neo4japp/blueprints/visualizer.py b/appserver/neo4japp/blueprints/visualizer.py index 7b42bfe766..6d7559567a 100644 --- a/appserver/neo4japp/blueprints/visualizer.py +++ b/appserver/neo4japp/blueprints/visualizer.py @@ -1,61 +1,59 @@ -from http import HTTPStatus - -from flask import Blueprint, request, jsonify +from flask import Blueprint, jsonify +from flask.views import MethodView from flask_apispec import use_kwargs +from http import HTTPStatus from neo4japp.blueprints.auth import login_optional from neo4japp.constants import ANNOTATION_STYLES_DICT +from neo4japp.database import get_or_create_arango_client from neo4japp.data_transfer_objects.visualization import ( ExpandNodeRequest, GetSnippetsForEdgeRequest, GetSnippetsForClusterRequest, ReferenceTableDataRequest, ) -from neo4japp.database import get_visualizer_service from neo4japp.exceptions import InvalidArgument from neo4japp.request_schemas.visualizer import ( GetSnippetsForNodePairRequest, AssociatedTypeSnippetCountRequest, ) +from neo4japp.services.visualizer import ( + expand_node_as_clusters, + get_associated_type_snippet_count, + get_document_for_visualizer, + get_reference_table_data, + get_snippets_for_edge, + get_snippets_for_cluster, + get_snippets_for_node_pair, +) from neo4japp.schemas.common import SuccessResponse from neo4japp.utils.jsonify import jsonify_with_class +from neo4japp.utils.string import camel_to_snake_dict bp = Blueprint('visualizer-api', __name__, url_prefix='/visualizer') -@bp.route('/batch', methods=['GET']) +@bp.route('/get-annotation-legend', methods=['GET']) @jsonify_with_class() -def get_batch(): - """Uses a home-brew query language - to get a batch of nodes and their - relationship - TODO: Document query language - """ - visualizer_service = get_visualizer_service() - data_query = request.args.get('data', '') - try: - decoded_query = bytearray.fromhex(data_query).decode() - except ValueError: - return SuccessResponse(result='No results found', status_code=HTTPStatus.OK) - result = visualizer_service.query_batch(decoded_query) - # This response might contain warnings to avoid breaking changes the status code remains 200 - return SuccessResponse(result=result, status_code=HTTPStatus.OK) +def get_annotation_legend(): + return SuccessResponse(result=ANNOTATION_STYLES_DICT, status_code=200) @bp.route('/expand', methods=['POST']) @jsonify_with_class(ExpandNodeRequest) -def expand_graph_node(req: ExpandNodeRequest): - visualizer = get_visualizer_service() - node = visualizer.expand_graph(req.node_id, req.filter_labels) - return SuccessResponse(result=node, status_code=HTTPStatus.OK) +def expand_graph_node_as_clusters(req: ExpandNodeRequest): + arango_client = get_or_create_arango_client() + clusters = expand_node_as_clusters(arango_client, req.node_id, req.filter_labels) + return SuccessResponse(result=clusters, status_code=200) -@bp.route('/get-reference-table-data', methods=['POST']) +@bp.route('/get-reference-table', methods=['POST']) @jsonify_with_class(ReferenceTableDataRequest) -def get_reference_table_data(req: ReferenceTableDataRequest): - visualizer = get_visualizer_service() - reference_table_data = visualizer.get_reference_table_data( - req.node_edge_pairs, +def get_ref_table(req: ReferenceTableDataRequest): + arango_client = get_or_create_arango_client() + reference_table_data = get_reference_table_data( + arango_client, + [camel_to_snake_dict(pair.to_dict()) for pair in req.node_edge_pairs], ) return SuccessResponse(reference_table_data, status_code=HTTPStatus.OK) @@ -63,8 +61,6 @@ def get_reference_table_data(req: ReferenceTableDataRequest): @bp.route('/get-snippets-for-edge', methods=['POST']) @jsonify_with_class(GetSnippetsForEdgeRequest) def get_edge_snippet_data(req: GetSnippetsForEdgeRequest): - visualizer = get_visualizer_service() - # TODO: In the future would be better to refactor this request to use Marshmallow and handle # the validation in the schema, but in the interest of time favoring this approach for now. if not (0 <= req.limit and req.limit <= 1000): @@ -74,19 +70,14 @@ def get_edge_snippet_data(req: GetSnippetsForEdgeRequest): code=HTTPStatus.BAD_REQUEST, ) - edge_snippets_result = visualizer.get_snippets_for_edge( - page=req.page, - limit=req.limit, - edge=req.edge, - ) - return SuccessResponse(edge_snippets_result, status_code=HTTPStatus.OK) + arango_client = get_or_create_arango_client() + result = get_snippets_for_edge(arango_client, req.edge, req.page, req.limit) + return SuccessResponse(result, status_code=200) @bp.route('/get-snippets-for-cluster', methods=['POST']) @jsonify_with_class(GetSnippetsForClusterRequest) def get_cluster_snippet_data(req: GetSnippetsForClusterRequest): - visualizer = get_visualizer_service() - # TODO: In the future would be better to refactor this request to use Marshmallow and handle # the validation in the schema, but in the interest of time favoring this approach for now. if not (0 <= req.limit and req.limit <= 1000): @@ -96,44 +87,45 @@ def get_cluster_snippet_data(req: GetSnippetsForClusterRequest): code=HTTPStatus.BAD_REQUEST, ) - cluster_snippets_result = visualizer.get_snippets_for_cluster( - page=req.page, - limit=req.limit, - edges=req.edges, - ) - return SuccessResponse(cluster_snippets_result, status_code=HTTPStatus.OK) - - -@bp.route('/get-annotation-legend', methods=['GET']) -@login_optional -@jsonify_with_class() -def get_annotation_legend(): - return SuccessResponse(result=ANNOTATION_STYLES_DICT, status_code=HTTPStatus.OK) + arango_client = get_or_create_arango_client() + result = get_snippets_for_cluster(arango_client, req.edges, req.page, req.limit) + return SuccessResponse(result, status_code=HTTPStatus.OK) @bp.route('/get-associated-type-snippet-count', methods=['POST']) @use_kwargs(AssociatedTypeSnippetCountRequest) -def get_associated_type_snippet_count(source_node, associated_nodes): - visualizer = get_visualizer_service() - - associated_types_result = visualizer.get_associated_type_snippet_count( - source_node, - associated_nodes, +def get_assoc_type_snippet_count(source_node, associated_nodes): + arango_client = get_or_create_arango_client() + result = get_associated_type_snippet_count( + arango_client, source_node, associated_nodes ) return jsonify( { - 'result': associated_types_result.to_dict(), + 'result': result.to_dict(), } ) @bp.route('/get-snippets-for-node-pair', methods=['POST']) @use_kwargs(GetSnippetsForNodePairRequest) -def get_snippets_for_node_pair(node_1_id, node_2_id, page, limit): - visualizer = get_visualizer_service() - - node_pair_snippet_result = visualizer.get_snippets_for_node_pair( - node_1_id, node_2_id, page, limit +def get_snippets_for_pair(node_1_id, node_2_id, page, limit): + arango_client = get_or_create_arango_client() + result = get_snippets_for_node_pair( + arango_client, node_1_id, node_2_id, page, limit ) - return jsonify({'result': node_pair_snippet_result.to_dict()}) + return jsonify({'result': result.to_dict()}) + + +class GetDocumentView(MethodView): + def get(self, collection: str, key: str): + arango_client = get_or_create_arango_client() + doc_id = f'{collection}/{key}' + result = get_document_for_visualizer(arango_client, doc_id) + return jsonify({'nodes': [result], 'edges': []}) + + +bp.add_url_rule( + '/document//', + view_func=GetDocumentView.as_view('fetch_document'), +) diff --git a/appserver/neo4japp/constants.py b/appserver/neo4japp/constants.py index 58152fa699..1952651df5 100644 --- a/appserver/neo4japp/constants.py +++ b/appserver/neo4japp/constants.py @@ -101,17 +101,70 @@ class LogEventType(Enum): UNHANDLED = 'unhandled_exception' -DOMAIN_LABELS = [ - 'db_CHEBI', - 'db_GO', - 'db_Literature', - 'db_MESH', - 'db_NCBI', - 'db_UniProt', -] +DATA_SOURCES = { + 'NCBI Gene': 'NCBI', + 'NCBI Taxonomy': 'NCBI', + 'ChEBI': 'CHEBI', + 'GO': 'GO', + 'MeSH': 'MESH', + 'UniProt': 'UniProt', +} BIOCYC_ORG_ID_DICT = {'9606': 'HUMAN', '511145': 'ECOLI', '559292': 'YEAST'} +# Note that this data used to be stored in Postgres +DOMAIN_URLS_MAP = { + 'CHEBI': 'https://www.ebi.ac.uk/chebi/searchId.do?chebiId={}', + 'MESH': 'https://www.ncbi.nlm.nih.gov/mesh/?term={}', + 'Literature': 'https://pubmed.ncbi.nlm.nih.gov/{}', + 'NCBI_Gene': 'https://www.ncbi.nlm.nih.gov/gene/{}', + 'NCBI_Taxonomy': 'https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id={}', + 'asap': 'http://identifiers.org/asap/{}', + 'bigg.compartment': 'http://identifiers.org/bigg.compartment/{}', + 'bigg.metabolite': 'http://identifiers.org/bigg.metabolite/{}', + 'bigg.reaction': 'http://identifiers.org/bigg.reaction/{}', + 'ccds': 'http://identifiers.org/ccds/{}', + 'cco': 'http://identifiers.org/cco/{}', + 'chebi': 'http://identifiers.org/chebi/CHEBI:{}', + 'ecogene': 'http://identifiers.org/ecogene/{}', + 'envipath': 'http://envipath.org/package/32de3cf4-e3e6-4168-956e-32fa5ddb0ce1/compound/{}', + 'go': 'http://identifiers.org/go/{}', + 'goa': 'http://identifiers.org/goa/{}', + 'hgnc': 'http://identifiers.org/hgnc/{}', + 'hmdb': 'http://identifiers.org/hmdb/{}', + 'hprd': 'http://identifiers.org/hprd/{}', + 'hssp': 'http://identifiers.org/hssp/{}', + 'interpro': 'http://identifiers.org/interpro/{}', + 'kegg.compound': 'http://identifiers.org/kegg.compound/{}', + 'kegg.drug': 'http://identifiers.org/kegg.drug/{}', + 'kegg.reaction': 'http://identifiers.org/kegg.reaction/{}', + 'lipidmaps': 'http://identifiers.org/lipidmaps/{}', + 'mgd': 'http://identifiers.org/mgd/{}', + 'mnx.chemical': 'http://identifiers.org/metanetx.chemical/{}', + 'mnx.equation': 'http://identifiers.org/metanetx.reaction/{}', + 'myco.tuber': 'http://identifiers.org/myco.tuber/{}', + 'metacyc.compound': 'http://identifiers.org/metacyc.compound/{}', + 'metacyc.reaction': 'http://identifiers.org/metacyc.reaction/{}', + 'ncbigene': 'http://identifiers.org/ncbigene/{}', + 'ncbigi': 'http://identifiers.org/ncbigi/gi:{}', + 'omim': 'http://identifiers.org/omim/{}', + 'pdb': 'http://identifiers.org/pdb/{}', + 'pubchem.compound': 'http://identifiers.org/pubchem.compound/{}', + 'reactome': 'http://www.reactome.org/content/detail/R-ALL-{}', + 'rhea': 'http://identifiers.org/rhea/{}', + 'sabiork': 'http://identifiers.org/sabiork.compound/{}', + 'sabiork.reaction': 'http://identifiers.org/sabiork.reaction/{}', + 'seed': 'http://identifiers.org/seed.reaction/{}', + 'seed.compound': 'http://identifiers.org/seed.compound/{}', + 'sgd': 'http://identifiers.org/sgd/{}', + 'slm': 'http://www.swisslipids.org/#/entity/SLM:{}', + 'subtilist': 'http://identifiers.org/subtilist/{}', + 'umbbd.compound': 'http://identifiers.org/umbbd.compound/{}', + 'unipathway.compound': 'http://identifiers.org/unipathway.compound/{}', + 'unipathway.reaction': 'http://identifiers.org/unipathway.reaction/{}', + 'uniprot': 'http://identifiers.org/uniprot/{}', + 'ec': 'http://identifiers.org/ec-code/{}: ', +} # End BioCyc, Regulon, Ecocyc Dataset diff --git a/appserver/neo4japp/data_transfer_objects/visualization.py b/appserver/neo4japp/data_transfer_objects/visualization.py index c1885cbf73..9b10b6c4a5 100644 --- a/appserver/neo4japp/data_transfer_objects/visualization.py +++ b/appserver/neo4japp/data_transfer_objects/visualization.py @@ -1,5 +1,5 @@ from enum import Enum -from typing import List, Optional +from typing import Dict, List, Optional import attr @@ -21,7 +21,7 @@ class Direction(Enum): @attr.s(frozen=True) class VisNode(CamelDictMixin): - id: int = attr.ib() + id: str = attr.ib() label: str = attr.ib() data: dict = attr.ib() sub_labels: List[str] = attr.ib() @@ -34,16 +34,16 @@ class VisNode(CamelDictMixin): @attr.s(frozen=True) class DuplicateVisNode(VisNode): id: str = attr.ib() # type: ignore - duplicate_of: int = attr.ib() + duplicate_of: str = attr.ib() @attr.s(frozen=True) class VisEdge(CamelDictMixin): - id: int = attr.ib() + id: str = attr.ib() label: str = attr.ib() data: dict = attr.ib() - to: int = attr.ib() - from_: int = attr.ib() + to: str = attr.ib() + from_: str = attr.ib() to_label: str = attr.ib() from_label: str = attr.ib() arrows: Optional[str] = attr.ib() @@ -78,9 +78,9 @@ def to_dict_formatter(self, vis_edge_output_dict: dict): @attr.s(frozen=True) class DuplicateVisEdge(VisEdge): id: str = attr.ib() # type: ignore - duplicate_of: int = attr.ib() - original_from: int = attr.ib() - original_to: int = attr.ib() + duplicate_of: str = attr.ib() + original_from: str = attr.ib() + original_to: str = attr.ib() @attr.s(frozen=True) @@ -93,8 +93,8 @@ class NodeData(CamelDictMixin): @attr.s(frozen=True) class EdgeData(CamelDictMixin): - original_from: int = attr.ib() - original_to: int = attr.ib() + original_from: str = attr.ib() + original_to: str = attr.ib() label: str = attr.ib() node: NodeData = attr.ib() @@ -119,8 +119,8 @@ class Snippet(CamelDictMixin): class EdgeConnectionData(CamelDictMixin): from_label: str = attr.ib() to_label: str = attr.ib() - from_: int = attr.ib() - to: int = attr.ib() + from_: str = attr.ib() + to: str = attr.ib() label: str = attr.ib() # 'from_' will be formatted as 'from' because it is coming from the client. @@ -135,10 +135,10 @@ def build_from_dict_formatter(self, edge_data_input_dict: dict): class DuplicateEdgeConnectionData(CamelDictMixin): from_label: str = attr.ib() to_label: str = attr.ib() - from_: int = attr.ib() - to: int = attr.ib() - original_from: int = attr.ib() - original_to: int = attr.ib() + from_: str = attr.ib() + to: str = attr.ib() + original_from: str = attr.ib() + original_to: str = attr.ib() label: str = attr.ib() def build_from_dict_formatter(self, edge_data_input_dict: dict): @@ -152,13 +152,20 @@ def build_from_dict_formatter(self, edge_data_input_dict: dict): @attr.s(frozen=True) class ExpandNodeRequest(CamelDictMixin): - node_id: int = attr.ib() + node_id: str = attr.ib() filter_labels: List[str] = attr.ib() @attr.s(frozen=True) class ReferenceTableDataRequest(CamelDictMixin): node_edge_pairs: List[ReferenceTablePair] = attr.ib() + description: Optional[str] = attr.ib() + direction: Optional[str] = attr.ib() + + +@attr.s(frozen=True) +class BulkReferenceTableDataRequest(CamelDictMixin): + associations: List[ReferenceTableDataRequest] = attr.ib() @attr.s(frozen=True) @@ -182,8 +189,8 @@ class GetSnippetsForClusterRequest(CamelDictMixin): @attr.s(frozen=True) class GetSnippetsFromEdgeResult(CamelDictMixin): - from_node_id: int = attr.ib() - to_node_id: int = attr.ib() + from_node_id: str = attr.ib() + to_node_id: str = attr.ib() association: str = attr.ib() snippets: List[Snippet] = attr.ib() @@ -225,13 +232,20 @@ class GetNodePairSnippetsResult(CamelDictMixin): @attr.s(frozen=True) class GetReferenceTableDataResult(CamelDictMixin): direction: str = attr.ib() + description: str = attr.ib() reference_table_rows: List[ReferenceTableRow] = attr.ib() + duplicate_node_edge_pairs: List[Dict] = attr.ib() + + +@attr.s(frozen=True) +class GetBulkReferenceTableDataResult(CamelDictMixin): + reference_tables: List[GetReferenceTableDataResult] = attr.ib() @attr.s(frozen=True) class AssociatedTypesResult(CamelDictMixin): name: str = attr.ib() - node_id: int = attr.ib() + node_id: str = attr.ib() snippet_count: int = attr.ib() diff --git a/appserver/neo4japp/database.py b/appserver/neo4japp/database.py index 3b328800f8..fd5b886cde 100644 --- a/appserver/neo4japp/database.py +++ b/appserver/neo4japp/database.py @@ -3,12 +3,11 @@ from arango import ArangoClient from arango.http import DefaultHTTPClient from elasticsearch import Elasticsearch -from flask import g +from flask import g, current_app from flask_marshmallow import Marshmallow from flask_migrate import Migrate from flask_sqlalchemy import SQLAlchemy from jwt import PyJWKClient -from neo4j import Driver, GraphDatabase, basic_auth from redis import Redis from sqlalchemy import MetaData, Table, UniqueConstraint from typing import Union @@ -62,37 +61,6 @@ def get_jwt_client(): return _jwt_client -_neo4j_driver: Driver = None - - -def get_neo4j_driver(): - global _neo4j_driver - if _neo4j_driver is None: - host = config.get('NEO4J_HOST') - scheme = config.get('NEO4J_SCHEME') - port = config.get('NEO4J_PORT') - url = f'{scheme}://{host}:{port}' - username, password = config.get('NEO4J_AUTH').split('/') - _neo4j_driver = GraphDatabase.driver(url, auth=basic_auth(username, password)) - return _neo4j_driver - - -# TODO: with the DatabaseConnection class -# these functions that save to `g` are no longer needed -# remove them when possible -def get_neo4j_db(): - if not hasattr(g, 'neo4j_db'): - graph = get_neo4j_driver() - g.neo4j_db = graph.session() - return g.neo4j_db - - -def close_neo4j_db(e=None): - neo4j_db = g.pop('neo4j_db', None) - if neo4j_db: - neo4j_db.close() - - def get_redis_connection() -> Redis: if not hasattr(g, 'redis_conn'): g.redis_conn = Redis.from_url(config.get('RQ_REDIS_URL')) @@ -116,8 +84,13 @@ def create_arango_client(hosts=None) -> ArangoClient: class CustomHTTPClient(DefaultHTTPClient): REQUEST_TIMEOUT = 1000 - hosts = hosts or config.get('ARANGO_HOST') - return ArangoClient(hosts=hosts, http_client=CustomHTTPClient()) + hosts = hosts or current_app.config.get('ARANGO_HOST') + return ArangoClient( + hosts=hosts, + # Without this setting any requests to Arango will fail because we don't have a valid cert + verify_override=False, + http_client=CustomHTTPClient(), + ) def close_arango_client(error): @@ -134,12 +107,6 @@ def __init__(self): self.session = db.session -class GraphConnection: - def __init__(self): - super().__init__() - self.graph = get_neo4j_db() - - class ElasticConnection: def __init__(self): super().__init__() @@ -148,7 +115,7 @@ def __init__(self): """ TODO: Update all of these functions to use -DBConnection or GraphConnection above. +DBConnection above. Separation of concerns/Single responsibility. @@ -162,30 +129,6 @@ def __init__(self): """ -def get_kg_service(): - if 'kg_service' not in g: - from neo4japp.services import KgService - - graph = get_neo4j_db() - g.kg_service = KgService( - graph=graph, - session=db.session, - ) - return g.kg_service - - -def get_visualizer_service(): - if 'visualizer_service' not in g: - from neo4japp.services import VisualizerService - - graph = get_neo4j_db() - g.visualizer_service = VisualizerService( - graph=graph, - session=db.session, - ) - return g.visualizer_service - - @scope_flask_app_ctx('file_type_service') def get_file_type_service(): """ @@ -225,23 +168,10 @@ def get_enrichment_table_service(): if 'enrichment_table_service' not in g: from neo4japp.services import EnrichmentTableService - graph = get_neo4j_db() - g.enrichment_table_service = EnrichmentTableService( - graph=graph, - session=db.session, - ) + g.enrichment_table_service = EnrichmentTableService(session=db.session) return g.enrichment_table_service -def get_search_service_dao(): - if 'search_dao' not in g: - from neo4japp.services import SearchService - - graph = get_neo4j_db() - g.search_service_dao = SearchService(graph=graph) - return g.search_service_dao - - def get_authorization_service(): if 'authorization_service' not in g: from neo4japp.services import AuthService @@ -293,7 +223,6 @@ def reset_dao(): handy for production later. """ for dao in [ - 'kg_service', 'user_file_import_service', 'search_dao', 'authorization_service', diff --git a/appserver/neo4japp/factory.py b/appserver/neo4japp/factory.py index b849d3d12f..9f510361dd 100644 --- a/appserver/neo4japp/factory.py +++ b/appserver/neo4japp/factory.py @@ -3,7 +3,6 @@ from http import HTTPStatus from elasticapm.contrib.flask import ElasticAPM -from neo4j.exceptions import ServiceUnavailable from functools import partial from flask import current_app, Flask, jsonify, has_request_context, request from flask.logging import wsgi_errors_stream @@ -18,7 +17,6 @@ from neo4japp.constants import LogEventType from neo4japp.database import ( - close_neo4j_db, close_redis_conn, close_arango_client, db, @@ -118,7 +116,6 @@ def create_app(name='neo4japp', config_package='config.Development'): app = Flask(name) app.config.from_object(config_package) app.teardown_appcontext_funcs = [ - close_neo4j_db, close_redis_conn, close_arango_client, ] @@ -158,7 +155,6 @@ def create_app(name='neo4japp', config_package='config.Development'): ) app.register_error_handler(ServerException, handle_error) app.register_error_handler(BrokenPipeError, handle_error) - app.register_error_handler(ServiceUnavailable, handle_error) app.register_error_handler(ServerWarning, handle_warning) app.register_error_handler(Warning, partial(handle_generic_warning, 199)) app.register_error_handler(Exception, partial(handle_generic_error, 500)) diff --git a/appserver/neo4japp/models/common.py b/appserver/neo4japp/models/common.py index 1fbdcfe204..ff337a67dc 100644 --- a/appserver/neo4japp/models/common.py +++ b/appserver/neo4japp/models/common.py @@ -1,18 +1,18 @@ -from datetime import datetime -from decimal import Decimal -from typing import Iterable, Callable, TypeVar - import sqlalchemy as sa import timeflake + +from datetime import datetime +from decimal import Decimal from flask import g from marshmallow import fields from marshmallow_sqlalchemy.convert import ModelConverter as BaseModelConverter from sqlalchemy.ext.declarative import declared_attr from sqlalchemy.types import TIMESTAMP from sqlalchemy_utils.types import TSVectorType +from typing import Iterable, Callable, TypeVar from neo4japp.database import db -from neo4japp.utils import snake_to_camel, camel_to_snake +from neo4japp.utils.string import snake_to_camel, camel_to_snake def generate_hash_id(): diff --git a/appserver/neo4japp/request_schemas/visualizer.py b/appserver/neo4japp/request_schemas/visualizer.py index a96ebe5b8f..6e11159883 100644 --- a/appserver/neo4japp/request_schemas/visualizer.py +++ b/appserver/neo4japp/request_schemas/visualizer.py @@ -2,14 +2,14 @@ class AssociatedTypeSnippetCountRequest(ma.Schema): - source_node = ma.Integer(required=True) - associated_nodes = ma.List(ma.Integer(required=True)) + source_node = ma.String(required=True) + associated_nodes = ma.List(ma.String(required=True)) class GetSnippetsForNodePairRequest(ma.Schema): # Note that we avoid using "from" and "to" terminology here since we can't be sure there aren't # bidirectional relationships between these two nodes - node_1_id = ma.Integer(required=True) - node_2_id = ma.Integer(required=True) + node_1_id = ma.String(required=True) + node_2_id = ma.String(required=True) page = ma.Integer(required=True) limit = ma.Integer(required=True) diff --git a/appserver/neo4japp/schemas/annotations.py b/appserver/neo4japp/schemas/annotations.py index 4447291f6b..f73fdaab33 100644 --- a/appserver/neo4japp/schemas/annotations.py +++ b/appserver/neo4japp/schemas/annotations.py @@ -136,8 +136,8 @@ class AnnotationUUIDListSchema(ResultListSchema): class GlobalAnnotationListItemSchema(CamelCaseSchema): - global_id = fields.Integer() - synonym_id = fields.Integer(required=False, missing=lambda: None) + global_id = fields.String() + synonym_id = fields.String(required=False, missing=lambda: None) file_uuid = fields.String() creator = fields.String() file_deleted = fields.Boolean() @@ -303,4 +303,4 @@ class FileAnnotationHistoryResponseSchema(ResultListSchema): class GlobalAnnotationsDeleteSchema(Schema): - pids = fields.List(fields.Tuple((fields.Integer(), fields.Integer()))) + pids = fields.List(fields.Tuple((fields.String(), fields.String()))) diff --git a/appserver/neo4japp/services/__init__.py b/appserver/neo4japp/services/__init__.py index 0ca1d92e5e..1d2dcb8a09 100644 --- a/appserver/neo4japp/services/__init__.py +++ b/appserver/neo4japp/services/__init__.py @@ -1,7 +1,4 @@ -from .kg_service import KgService -from .search import SearchService from .auth import AuthService from .account import AccountService from .projects import ProjectsService -from .visualizer import VisualizerService from neo4japp.services.enrichment.enrichment_table import EnrichmentTableService diff --git a/appserver/neo4japp/services/annotations/README.md b/appserver/neo4japp/services/annotations/README.md index f4b6498012..71ab2d16d1 100644 --- a/appserver/neo4japp/services/annotations/README.md +++ b/appserver/neo4japp/services/annotations/README.md @@ -59,7 +59,6 @@ text, parsed = Pipeline.parse(file.mime_type, file_id=file.id, exclude_reference pipeline = Pipeline( { 'adbs': get_annotation_db_service, - 'ags': get_annotation_graph_service, 'aers': get_recognition_service, 'tkner': get_annotation_tokenizer, 'as': get_annotation_service, diff --git a/appserver/neo4japp/services/annotations/__init__.py b/appserver/neo4japp/services/annotations/__init__.py index d3da764dce..00e4c6b010 100644 --- a/appserver/neo4japp/services/annotations/__init__.py +++ b/appserver/neo4japp/services/annotations/__init__.py @@ -1,6 +1,5 @@ from .annotation_interval_tree import AnnotationInterval, AnnotationIntervalTree from .annotation_db_service import AnnotationDBService -from .annotation_graph_service import AnnotationGraphService from .annotation_service import AnnotationService from .bioc_service import BiocDocumentService from .entity_recognition import EntityRecognitionService diff --git a/appserver/neo4japp/services/annotations/annotation_graph_service.py b/appserver/neo4japp/services/annotations/annotation_graph_service.py index b8c4dd3f8e..658824e482 100644 --- a/appserver/neo4japp/services/annotations/annotation_graph_service.py +++ b/appserver/neo4japp/services/annotations/annotation_graph_service.py @@ -1,19 +1,22 @@ +from arango.client import ArangoClient from collections import defaultdict from typing import Any, Dict, List from flask import current_app from neo4japp.constants import LogEventType +from neo4japp.exceptions import InvalidArgument from neo4japp.services.arangodb import execute_arango_query, get_db -from neo4japp.utils import EventLog, normalize_str +from neo4japp.utils.logger import EventLog +from neo4japp.utils.string import normalize_str + from .constants import EntityType from .data_transfer_objects import GlobalInclusions, GeneOrProteinToOrganism from .utils.graph_queries import ( + collection_labels, get_gene_to_organism_query, get_global_inclusions_by_type_query, get_lifelike_global_inclusions_by_type_query, - get_mesh_by_ids, - get_nodes_by_ids, get_organisms_from_gene_ids_query, get_protein_to_organism_query, ) @@ -34,264 +37,259 @@ create_ner_type_lab_strain, EntityIdStr, ) -from ..common import GraphConnection -from ...exceptions import ServerWarning -from ...utils.globals import warn - -class AnnotationGraphService(GraphConnection): - def __init__(self, conn): - super().__init__(conn) - def get_nodes_from_node_ids( - self, entity_type: str, node_ids: List[str] - ) -> Dict[str, str]: - result = self.exec_read_query_with_params( - get_nodes_by_ids(entity_type), {'ids': node_ids} - ) - return {row['entity_id']: row['entity_name'] for row in result} - - # NOTE DEPRECATED: just used in old migration - def get_mesh_from_mesh_ids(self, mesh_ids: List[str]) -> Dict[str, str]: - result = self.exec_read_query_with_params(get_mesh_by_ids(), {'ids': mesh_ids}) - return {row['mesh_id']: row['mesh_name'] for row in result} - - def _create_entity_inclusion(self, entity_type: str, inclusion_dict: dict) -> None: - createfuncs = { - EntityType.ANATOMY.value: create_ner_type_anatomy, - EntityType.CHEMICAL.value: create_ner_type_chemical, - EntityType.COMPOUND.value: create_ner_type_compound, - EntityType.DISEASE.value: create_ner_type_disease, - EntityType.FOOD.value: create_ner_type_food, - EntityType.GENE.value: create_ner_type_gene, - EntityType.PHENOMENA.value: create_ner_type_phenomena, - EntityType.PHENOTYPE.value: create_ner_type_phenotype, - EntityType.PROTEIN.value: create_ner_type_protein, - EntityType.SPECIES.value: create_ner_type_species, - EntityType.COMPANY.value: create_ner_type_company, - EntityType.ENTITY.value: create_ner_type_entity, - EntityType.LAB_SAMPLE.value: create_ner_type_lab_sample, - EntityType.LAB_STRAIN.value: create_ner_type_lab_strain, - } - - # TODO: can we just do get_global_inclusions_by_type_query once? - # get all nodes that a Synonym points to and filter on labels in python? - # or would that be too much data to retrieve all at once? - global_inclusions = self.exec_read_query( - get_global_inclusions_by_type_query(entity_type) +def _create_entity_inclusion( + arango_client: ArangoClient, entity_type: str, inclusion_dict: dict +) -> None: + createfuncs = { + EntityType.ANATOMY.value: create_ner_type_anatomy, + EntityType.CHEMICAL.value: create_ner_type_chemical, + EntityType.COMPOUND.value: create_ner_type_compound, + EntityType.DISEASE.value: create_ner_type_disease, + EntityType.FOOD.value: create_ner_type_food, + EntityType.GENE.value: create_ner_type_gene, + EntityType.PHENOMENA.value: create_ner_type_phenomena, + EntityType.PHENOTYPE.value: create_ner_type_phenotype, + EntityType.PROTEIN.value: create_ner_type_protein, + EntityType.SPECIES.value: create_ner_type_species, + EntityType.COMPANY.value: create_ner_type_company, + EntityType.ENTITY.value: create_ner_type_entity, + EntityType.LAB_SAMPLE.value: create_ner_type_lab_sample, + EntityType.LAB_STRAIN.value: create_ner_type_lab_strain, + } + + # TODO: can we just do get_global_inclusions_by_type_query once? + # get all nodes that a Synonym points to and filter on labels in python? + # or would that be too much data to retrieve all at once? + try: + global_inclusions = execute_arango_query( + db=get_db(arango_client), + query=get_global_inclusions_by_type_query(), + collection=collection_labels[entity_type], + entity_type=entity_type, ) - # need to append here because an inclusion - # might've not been matched to an existing entity - # so look for it in Lifelike - global_inclusions += self.exec_read_query( - get_lifelike_global_inclusions_by_type_query(entity_type) + except KeyError: + raise InvalidArgument( + f'Could not query for document with entity type: {entity_type}. No ' + 'collection exists for this type.' ) + # need to append here because an inclusion + # might've not been matched to an existing entity + # so look for it in Lifelike + global_inclusions += execute_arango_query( + db=get_db(arango_client), + query=get_lifelike_global_inclusions_by_type_query(), + entity_type=entity_type, + ) - for inclusion in global_inclusions: - normalized_synonym = normalize_str(inclusion['synonym']) - if ( - entity_type != EntityType.GENE.value - and entity_type != EntityType.PROTEIN.value - ): - entity = createfuncs[entity_type]( - id=inclusion['entity_id'], - name=inclusion['entity_name'], - synonym=inclusion['synonym'], - ) # type: ignore - else: - entity = createfuncs[entity_type]( - name=inclusion['entity_name'], synonym=inclusion['synonym'] - ) # type: ignore - - # for proteins, we use the name as the id in the LMDB data, but we don't - # want to do this if the user provided an id or left it blank - # so set it back to what it was - if entity_type == EntityType.PROTEIN.value: - entity[EntityIdStr.PROTEIN.value] = inclusion['entity_id'] - - # override the default data source - # e.g gene default is NCBI, but globals can be BioCyc - entity['id_type'] = inclusion['data_source'] - entity['id_hyperlinks'] = inclusion.get('hyperlinks') - inclusion_dict[normalized_synonym].append(entity) - - def get_entity_inclusions(self, inclusions: List[dict]) -> GlobalInclusions: - """Returns global inclusions for each entity type. - For species (taxonomy), also return the local inclusions. - - :param inclusions: custom annotations relative to file - - need to be filtered for local inclusions - """ - inclusion_dicts: Dict[str, dict] = { - EntityType.ANATOMY.value: defaultdict(list), - EntityType.CHEMICAL.value: defaultdict(list), - EntityType.COMPOUND.value: defaultdict(list), - EntityType.DISEASE.value: defaultdict(list), - EntityType.FOOD.value: defaultdict(list), - EntityType.GENE.value: defaultdict(list), - EntityType.PHENOMENA.value: defaultdict(list), - EntityType.PHENOTYPE.value: defaultdict(list), - EntityType.PROTEIN.value: defaultdict(list), - EntityType.SPECIES.value: defaultdict(list), - EntityType.COMPANY.value: defaultdict(list), - EntityType.ENTITY.value: defaultdict(list), - EntityType.LAB_SAMPLE.value: defaultdict(list), - EntityType.LAB_STRAIN.value: defaultdict(list), - } - - local_inclusion_dicts: Dict[str, dict] = { - EntityType.SPECIES.value: defaultdict(list) - } - - for k, v in inclusion_dicts.items(): - self._create_entity_inclusion(k, v) - - local_species_inclusions = [ - local - for local in inclusions - if local.get('meta', {}).get('type') == EntityType.SPECIES.value - and not local.get('meta', {}).get( - 'includeGlobally', False - ) # safe to default to False? - ] - - for local_inclusion in local_species_inclusions: - entity_type = EntityType.SPECIES.value - try: - entity_id = local_inclusion['meta']['id'] - entity_id_type = local_inclusion['meta']['idType'] - entity_id_hyperlinks = local_inclusion['meta']['idHyperlinks'] - synonym = local_inclusion['meta']['allText'] - except KeyError as e: - message = f'Error creating local inclusion {local_inclusion} for {entity_type}' - current_app.logger.error( - message, - extra=EventLog(event_type=LogEventType.ANNOTATION.value).to_dict(), + for inclusion in global_inclusions: + normalized_synonym = normalize_str(inclusion['synonym']) + if ( + entity_type != EntityType.GENE.value + and entity_type != EntityType.PROTEIN.value + ): + entity = createfuncs[entity_type]( + id=inclusion['entity_id'], + name=inclusion['entity_name'], + synonym=inclusion['synonym'], + ) # type: ignore + else: + entity = createfuncs[entity_type]( + name=inclusion['entity_name'], synonym=inclusion['synonym'] + ) # type: ignore + + # for proteins, we use the name as the id in the LMDB data, but we don't + # want to do this if the user provided an id or left it blank + # so set it back to what it was + if entity_type == EntityType.PROTEIN.value: + entity[EntityIdStr.PROTEIN.value] = inclusion['entity_id'] + + # override the default data source + # e.g gene default is NCBI, but globals can be BioCyc + entity['id_type'] = inclusion['data_source'] + entity['id_hyperlinks'] = inclusion.get('hyperlinks') + inclusion_dict[normalized_synonym].append(entity) + + +def get_entity_inclusions(arango_client, inclusions: List[dict]) -> GlobalInclusions: + """Returns global inclusions for each entity type. + For species (taxonomy), also return the local inclusions. + + :param inclusions: custom annotations relative to file + - need to be filtered for local inclusions + """ + inclusion_dicts: Dict[str, dict] = { + EntityType.ANATOMY.value: defaultdict(list), + EntityType.CHEMICAL.value: defaultdict(list), + EntityType.COMPOUND.value: defaultdict(list), + EntityType.DISEASE.value: defaultdict(list), + EntityType.FOOD.value: defaultdict(list), + EntityType.GENE.value: defaultdict(list), + EntityType.PHENOMENA.value: defaultdict(list), + EntityType.PHENOTYPE.value: defaultdict(list), + EntityType.PROTEIN.value: defaultdict(list), + EntityType.SPECIES.value: defaultdict(list), + EntityType.COMPANY.value: defaultdict(list), + EntityType.ENTITY.value: defaultdict(list), + EntityType.LAB_SAMPLE.value: defaultdict(list), + EntityType.LAB_STRAIN.value: defaultdict(list), + } + + local_inclusion_dicts: Dict[str, dict] = { + EntityType.SPECIES.value: defaultdict(list) + } + + for k, v in inclusion_dicts.items(): + _create_entity_inclusion(arango_client, k, v) + + local_species_inclusions = [ + local + for local in inclusions + if local.get('meta', {}).get('type') == EntityType.SPECIES.value + and not local.get('meta', {}).get( + 'includeGlobally', False + ) # safe to default to False? + ] + + for local_inclusion in local_species_inclusions: + entity_type = EntityType.SPECIES.value + try: + entity_id = local_inclusion['meta']['id'] + entity_id_type = local_inclusion['meta']['idType'] + entity_id_hyperlinks = local_inclusion['meta']['idHyperlinks'] + synonym = local_inclusion['meta']['allText'] + except KeyError: + current_app.logger.error( + f'Error creating local inclusion {local_inclusion} for {entity_type}', + extra=EventLog(event_type=LogEventType.ANNOTATION.value).to_dict(), + ) + else: + # entity_name could be empty strings + # probably a result of testing + # but will keep here just in case + if entity_id and synonym: + normalized_synonym = normalize_str(synonym) + + if not entity_id: + # ID is required for global inclusions + # but we also include local species inclusion + entity_id = synonym + + entity = create_ner_type_species( + id=entity_id, name=synonym, synonym=synonym ) - warn(ServerWarning(message=message), cause=e) - else: - # entity_name could be empty strings - # probably a result of testing - # but will keep here just in case - if entity_id and synonym: - normalized_synonym = normalize_str(synonym) - - if not entity_id: - # ID is required for global inclusions - # but we also include local species inclusion - entity_id = synonym - - entity = create_ner_type_species( - id=entity_id, name=synonym, synonym=synonym - ) - - # override the default data source - # e.g gene default is NCBI, but globals can be BioCyc - entity['id_type'] = entity_id_type - entity['id_hyperlinks'] = entity_id_hyperlinks - local_inclusion_dicts[entity_type][normalized_synonym].append( - entity - ) - - return GlobalInclusions( - included_anatomy=inclusion_dicts[EntityType.ANATOMY.value], - included_chemicals=inclusion_dicts[EntityType.CHEMICAL.value], - included_compounds=inclusion_dicts[EntityType.COMPOUND.value], - included_diseases=inclusion_dicts[EntityType.DISEASE.value], - included_foods=inclusion_dicts[EntityType.FOOD.value], - included_genes=inclusion_dicts[EntityType.GENE.value], - included_phenomenas=inclusion_dicts[EntityType.PHENOMENA.value], - included_phenotypes=inclusion_dicts[EntityType.PHENOTYPE.value], - included_proteins=inclusion_dicts[EntityType.PROTEIN.value], - included_species=inclusion_dicts[EntityType.SPECIES.value], - included_local_species=local_inclusion_dicts[EntityType.SPECIES.value], - included_companies=inclusion_dicts[EntityType.COMPANY.value], - included_entities=inclusion_dicts[EntityType.ENTITY.value], - included_lab_samples=inclusion_dicts[EntityType.LAB_SAMPLE.value], - included_lab_strains=inclusion_dicts[EntityType.LAB_STRAIN.value], - ) - def get_genes_to_organisms( - self, - genes: List[str], - organisms: List[str], - ) -> GeneOrProteinToOrganism: - gene_to_organism_map: Dict[str, Dict[str, Dict[str, str]]] = {} - data_sources: Dict[str, str] = {} - primary_names: Dict[str, str] = {} - - result = self.exec_read_query_with_params( - get_gene_to_organism_query(), {'genes': genes, 'organisms': organisms} - ) + # override the default data source + # e.g gene default is NCBI, but globals can be BioCyc + entity['id_type'] = entity_id_type + entity['id_hyperlinks'] = entity_id_hyperlinks + local_inclusion_dicts[entity_type][normalized_synonym].append(entity) + + return GlobalInclusions( + included_anatomy=inclusion_dicts[EntityType.ANATOMY.value], + included_chemicals=inclusion_dicts[EntityType.CHEMICAL.value], + included_compounds=inclusion_dicts[EntityType.COMPOUND.value], + included_diseases=inclusion_dicts[EntityType.DISEASE.value], + included_foods=inclusion_dicts[EntityType.FOOD.value], + included_genes=inclusion_dicts[EntityType.GENE.value], + included_phenomenas=inclusion_dicts[EntityType.PHENOMENA.value], + included_phenotypes=inclusion_dicts[EntityType.PHENOTYPE.value], + included_proteins=inclusion_dicts[EntityType.PROTEIN.value], + included_species=inclusion_dicts[EntityType.SPECIES.value], + included_local_species=local_inclusion_dicts[EntityType.SPECIES.value], + included_companies=inclusion_dicts[EntityType.COMPANY.value], + included_entities=inclusion_dicts[EntityType.ENTITY.value], + included_lab_samples=inclusion_dicts[EntityType.LAB_SAMPLE.value], + included_lab_strains=inclusion_dicts[EntityType.LAB_STRAIN.value], + ) - for row in result: - gene_name = row['gene_name'] - gene_synonym = row['gene_synonym'] - gene_id = row['gene_id'] - organism_id = row['organism_id'] - data_source = row['data_source'] - data_source_key = f'{gene_synonym}{organism_id}' - - primary_names[gene_id] = gene_name - data_sources[data_source_key] = data_source - - if gene_to_organism_map.get(gene_synonym, None) is not None: - if gene_to_organism_map[gene_synonym].get(gene_name, None): - gene_to_organism_map[gene_synonym][gene_name][organism_id] = gene_id - else: - gene_to_organism_map[gene_synonym][gene_name] = { - organism_id: gene_id - } - else: - gene_to_organism_map[gene_synonym] = {gene_name: {organism_id: gene_id}} - - # clean any gene/organism matches that have excess results - # we want to prioritize matches where the primary name and synonym are the same - for synonym, v in gene_to_organism_map.items(): - if synonym in v and len(v) > 1: - gene_to_organism_map[synonym] = {synonym: v[synonym]} - - return GeneOrProteinToOrganism( - matches=gene_to_organism_map, - data_sources=data_sources, - primary_names=primary_names, - ) - def get_proteins_to_organisms( - self, - proteins: List[str], - organisms: List[str], - ) -> GeneOrProteinToOrganism: - protein_to_organism_map: Dict[str, Dict[str, str]] = {} - primary_names: Dict[str, str] = {} - - result = self.exec_read_query_with_params( - get_protein_to_organism_query(), - {'proteins': proteins, 'organisms': organisms}, - ) +def get_organisms_from_gene_ids(arango_client: ArangoClient, gene_ids: Dict[Any, int]): + return execute_arango_query( + db=get_db(arango_client), + query=get_organisms_from_gene_ids_query(), + gene_ids=list(gene_ids.keys()), + ) + + +def get_genes_to_organisms( + arango_client: ArangoClient, + genes: List[str], + organisms: List[str], +) -> GeneOrProteinToOrganism: + gene_to_organism_map: Dict[str, Dict[str, Dict[str, str]]] = {} + data_sources: Dict[str, str] = {} + primary_names: Dict[str, str] = {} + + result = execute_arango_query( + db=get_db(arango_client), + query=get_gene_to_organism_query(), + genes=genes, + organisms=organisms, + ) - for row in result: - protein_name: str = row['protein'] - organism_id: str = row['organism_id'] - # For now just get the first protein in the list of matches, - # no way for us to infer which to use - protein_id: str = row['protein_ids'][0] + for row in result: + gene_name = row['gene_name'] + gene_synonym = row['gene_synonym'] + gene_id = row['gene_id'] + organism_id = row['organism_id'] + data_source = row['data_source'] + data_source_key = f'{gene_synonym}{organism_id}' - primary_names[protein_id] = protein_name + primary_names[gene_id] = gene_name + data_sources[data_source_key] = data_source - if protein_to_organism_map.get(protein_name, None) is not None: - protein_to_organism_map[protein_name][organism_id] = protein_id + if gene_to_organism_map.get(gene_synonym, None) is not None: + if gene_to_organism_map[gene_synonym].get(gene_name, None): + gene_to_organism_map[gene_synonym][gene_name][organism_id] = gene_id else: - protein_to_organism_map[protein_name] = {organism_id: protein_id} + gene_to_organism_map[gene_synonym][gene_name] = {organism_id: gene_id} + else: + gene_to_organism_map[gene_synonym] = {gene_name: {organism_id: gene_id}} + + # clean any gene/organism matches that have excess results + # we want to prioritize matches where the primary name and synonym are the same + for synonym, v in gene_to_organism_map.items(): + if synonym in v and len(v) > 1: + gene_to_organism_map[synonym] = {synonym: v[synonym]} + + return GeneOrProteinToOrganism( + matches=gene_to_organism_map, + data_sources=data_sources, + primary_names=primary_names, + ) - return GeneOrProteinToOrganism( - matches=protein_to_organism_map, primary_names=primary_names - ) +def get_proteins_to_organisms( + arango_client: ArangoClient, + proteins: List[str], + organisms: List[str], +) -> GeneOrProteinToOrganism: + protein_to_organism_map: Dict[str, Dict[str, str]] = {} + primary_names: Dict[str, str] = {} -def get_organisms_from_gene_ids(arango_client, gene_ids: Dict[Any, int]): - return execute_arango_query( + result = execute_arango_query( db=get_db(arango_client), - query=get_organisms_from_gene_ids_query(), - gene_ids=list(gene_ids.keys()), + query=get_protein_to_organism_query(), + proteins=proteins, + organisms=organisms, + ) + + for row in result: + protein_name: str = row['protein'] + organism_id: str = row['organism_id'] + # For now just get the first protein in the list of matches, + # no way for us to infer which to use + protein_id: str = row['protein_ids'][0] + + primary_names[protein_id] = protein_name + + if protein_to_organism_map.get(protein_name, None) is not None: + protein_to_organism_map[protein_name][organism_id] = protein_id + else: + protein_to_organism_map[protein_name] = {organism_id: protein_id} + + return GeneOrProteinToOrganism( + matches=protein_to_organism_map, primary_names=primary_names ) diff --git a/appserver/neo4japp/services/annotations/annotation_service.py b/appserver/neo4japp/services/annotations/annotation_service.py index be853a2c65..64e71c42c9 100644 --- a/appserver/neo4japp/services/annotations/annotation_service.py +++ b/appserver/neo4japp/services/annotations/annotation_service.py @@ -1,18 +1,21 @@ import json import time + +from arango.client import ArangoClient from bisect import bisect_left +from flask import current_app +from math import inf, isinf from typing import cast, Dict, List, Set, Tuple from urllib.parse import quote as uri_encode from uuid import uuid4 -from flask import current_app -from math import inf, isinf - from neo4japp.constants import LogEventType from neo4japp.exceptions import wrap_exceptions, AnnotationError, ServerException -from neo4japp.utils import EventLog, equal_number_of_words, normalize_str +from neo4japp.utils.logger import EventLog +from neo4japp.utils.string import equal_number_of_words, normalize_str + from .annotation_db_service import AnnotationDBService -from .annotation_graph_service import AnnotationGraphService +from .annotation_graph_service import get_genes_to_organisms, get_proteins_to_organisms from .annotation_interval_tree import AnnotationInterval, AnnotationIntervalTree from .constants import ( DatabaseType, @@ -43,10 +46,14 @@ class AnnotationService: def __init__( self, db: AnnotationDBService, - graph: AnnotationGraphService, + # TODO: I don't think this is the best way to handle the arango client connection, but the + # pattern is pretty deeply ingrained into the annotations pipeline. Keeping it this way for + # now, but I think we should slowly try to migrate away from the "service-as-an-object" + # pattern + arango_client: ArangoClient, ) -> None: self.db = db - self.graph = graph + self.arango_client = arango_client self.organism_frequency: Dict[str, int] = {} self.organism_locations: Dict[str, List[Tuple[int, int]]] = {} @@ -590,7 +597,8 @@ def _annotate_type_gene( organism_ids = list(self.organism_frequency) gene_match_time = time.time() - graph_results = self.graph.get_genes_to_organisms( + graph_results = get_genes_to_organisms( + arango_client=self.arango_client, genes=gene_names_list, organisms=organism_ids, ) @@ -608,7 +616,8 @@ def _annotate_type_gene( if self.specified_organism.synonym: gene_match_time = time.time() - fallback_graph_results = self.graph.get_genes_to_organisms( + fallback_graph_results = get_genes_to_organisms( + arango_client=self.arango_client, genes=gene_names_list, organisms=[self.specified_organism.organism_id], ) @@ -734,7 +743,8 @@ def _annotate_type_protein( protein_names_list = list(protein_names) protein_match_time = time.time() - graph_results = self.graph.get_proteins_to_organisms( + graph_results = get_proteins_to_organisms( + arango_client=self.arango_client, proteins=protein_names_list, organisms=list(self.organism_frequency), ) @@ -750,7 +760,8 @@ def _annotate_type_protein( if self.specified_organism.synonym: protein_match_time = time.time() - fallback_graph_results = self.graph.get_proteins_to_organisms( + fallback_graph_results = get_proteins_to_organisms( + arango_client=self.arango_client, proteins=protein_names_list, organisms=[self.specified_organism.organism_id], ) diff --git a/appserver/neo4japp/services/annotations/enrichment_annotation_service.py b/appserver/neo4japp/services/annotations/enrichment_annotation_service.py index c5dd74570f..66f5329898 100644 --- a/appserver/neo4japp/services/annotations/enrichment_annotation_service.py +++ b/appserver/neo4japp/services/annotations/enrichment_annotation_service.py @@ -1,15 +1,17 @@ import bisect import itertools import time -from collections import defaultdict -from typing import Dict, List, Set, Tuple +from arango.client import ArangoClient +from collections import defaultdict from flask import current_app +from typing import Dict, List, Set, Tuple from neo4japp.constants import LogEventType from neo4japp.utils import EventLog + from .annotation_db_service import AnnotationDBService -from .annotation_graph_service import AnnotationGraphService +from .annotation_graph_service import get_genes_to_organisms, get_proteins_to_organisms from .annotation_service import AnnotationService from .constants import EntityType from .data_transfer_objects import ( @@ -25,9 +27,13 @@ class EnrichmentAnnotationService(AnnotationService): def __init__( self, db: AnnotationDBService, - graph: AnnotationGraphService, + # TODO: I don't think this is the best way to handle the arango client connection, but the + # pattern is pretty deeply ingrained into the annotations pipeline. Keeping it this way for + # now, but I think we should slowly try to migrate away from the "service-as-an-object" + # pattern. + arango_client: ArangoClient, ) -> None: - super().__init__(db=db, graph=graph) + super().__init__(db=db, arango_client=arango_client) def _annotate_type_gene( self, recognized_entities: RecognizedEntities @@ -39,7 +45,8 @@ def _annotate_type_gene( gene_names_list, entity_token_pairs = self._parse_matches_list(matches_list) gene_match_time = time.time() - fallback_graph_results = self.graph.get_genes_to_organisms( + fallback_graph_results = get_genes_to_organisms( + arango_client=self.arango_client, genes=gene_names_list, organisms=[self.specified_organism.organism_id], ) @@ -132,7 +139,8 @@ def _annotate_type_protein( protein_match_time = time.time() organism = self.specified_organism organism_id = organism.organism_id - fallback_graph_results = self.graph.get_proteins_to_organisms( + fallback_graph_results = get_proteins_to_organisms( + arango_client=self.arango_client, proteins=protein_names_list, organisms=[organism_id], ) diff --git a/appserver/neo4japp/services/annotations/initializer.py b/appserver/neo4japp/services/annotations/initializer.py index 22ef994aea..c1487b8d9f 100644 --- a/appserver/neo4japp/services/annotations/initializer.py +++ b/appserver/neo4japp/services/annotations/initializer.py @@ -1,9 +1,9 @@ -from neo4japp.database import get_neo4j_driver +from neo4japp.database import get_or_create_arango_client from neo4japp.utils.globals import config + from .annotation_service import AnnotationService from .annotation_db_service import AnnotationDBService -from .annotation_graph_service import AnnotationGraphService from .bioc_service import BiocDocumentService from .enrichment_annotation_service import EnrichmentAnnotationService from .entity_recognition import EntityRecognitionService @@ -53,26 +53,24 @@ def get_annotation_db_service(): return AnnotationDBService() -def get_annotation_graph_service(): - driver = get_neo4j_driver() - return AnnotationGraphService(driver) - - def get_manual_annotation_service(): return ManualAnnotationService( - graph=get_annotation_graph_service(), tokenizer=get_annotation_tokenizer() + tokenizer=get_annotation_tokenizer(), + arango_client=get_or_create_arango_client(), ) def get_annotation_service(): return AnnotationService( - db=get_annotation_db_service(), graph=get_annotation_graph_service() + db=get_annotation_db_service(), + arango_client=get_or_create_arango_client(), ) def get_enrichment_annotation_service(): return EnrichmentAnnotationService( - db=get_annotation_db_service(), graph=get_annotation_graph_service() + db=get_annotation_db_service(), + arango_client=get_or_create_arango_client(), ) diff --git a/appserver/neo4japp/services/annotations/lmdb_service.py b/appserver/neo4japp/services/annotations/lmdb_service.py index a28b6eabd8..9e1c9ad57c 100644 --- a/appserver/neo4japp/services/annotations/lmdb_service.py +++ b/appserver/neo4japp/services/annotations/lmdb_service.py @@ -5,7 +5,8 @@ import lmdb -from neo4japp.utils import normalize_str +from neo4japp.utils.string import normalize_str + from .constants import ( CHEMICALS_LMDB, COMPOUNDS_LMDB, diff --git a/appserver/neo4japp/services/annotations/manual_annotation_service.py b/appserver/neo4japp/services/annotations/manual_annotation_service.py index 429b87600e..82f00d3670 100644 --- a/appserver/neo4japp/services/annotations/manual_annotation_service.py +++ b/appserver/neo4japp/services/annotations/manual_annotation_service.py @@ -1,11 +1,10 @@ import uuid -from datetime import datetime -from http import HTTPStatus -from typing import List, Tuple -from uuid import uuid4 +from arango.client import ArangoClient +from datetime import datetime from flask import current_app -from neo4j.exceptions import ServiceUnavailable +from http import HTTPStatus +from typing import Callable, Dict, List, Tuple from neo4japp.constants import TIMEZONE, LogEventType from neo4japp.database import db @@ -17,8 +16,11 @@ ) from neo4japp.models import Files, GlobalList, AppUser from neo4japp.models.files import FileAnnotationsVersion, AnnotationChangeCause -from neo4japp.utils import standardize_str, EventLog -from .annotation_graph_service import AnnotationGraphService +from neo4japp.services.arangodb import get_db, execute_arango_query +from neo4japp.utils.logger import EventLog +from neo4japp.utils.string import standardize_str + +from .exceptions import AnnotationLimitationError from .constants import ( ManualAnnotationType, MAX_ENTITY_WORD_LENGTH, @@ -29,18 +31,38 @@ MIN_ENTITY_LENGTH, ) from .data_transfer_objects.dto import PDFWord -from .exceptions import AnnotationLimitationError from .tokenizer import Tokenizer from .utils.common import has_center_point -from .utils.graph_queries import * +from .utils.graph_queries import ( + EntityType, + get_chemical_global_inclusion_exist_query, + get_compound_global_inclusion_exist_query, + get_create_chemical_global_inclusion_query, + get_create_compound_global_inclusion_query, + get_create_gene_global_inclusion_query, + get_create_lifelike_global_inclusion_query, + get_create_mesh_global_inclusion_query, + get_create_protein_global_inclusion_query, + get_create_species_global_inclusion_query, + get_delete_global_inclusion_query, + get_docs_by_ids_query, + get_gene_global_inclusion_exist_query, + get_lifelike_global_inclusion_exist_query, + get_mesh_global_inclusion_exist_query, + get_node_labels_and_relationship_query, + get_pathway_global_inclusion_exist_query, + get_protein_global_inclusion_exist_query, + get_species_global_inclusion_exist_query, + query_builder, +) from .utils.parsing import parse_content from ...utils.globals import warn class ManualAnnotationService: - def __init__(self, graph: AnnotationGraphService, tokenizer: Tokenizer) -> None: - self.graph = graph + def __init__(self, tokenizer: Tokenizer, arango_client: ArangoClient) -> None: self.tokenizer = tokenizer + self.arango_client = arango_client def _annotation_exists( self, term: str, new_annotation_metadata: dict, custom_annotations: List[dict] @@ -142,12 +164,17 @@ def add_inclusions( EntityType.PROTEIN.value, EntityType.SPECIES.value, ]: - primary_name = self.graph.get_nodes_from_node_ids( - entity_type, [entity_id] - )[entity_id] + result = execute_arango_query( + db=get_db(self.arango_client), + query=get_docs_by_ids_query(entity_type), + ids=[entity_id], + ) + primary_name = { + row['entity_id']: row['entity_name'] for row in result + }[entity_id] except KeyError: pass - except (BrokenPipeError, ServiceUnavailable): + except BrokenPipeError: raise except Exception as e: raise AnnotationError( @@ -299,21 +326,24 @@ def remove_inclusions(self, file: Files, user: AppUser, uuid, remove_all): @wrap_exceptions(AnnotationError, title='Failed to Remove Global Inclusion') def remove_global_inclusions(self, inclusion_ids: List[Tuple[int, int]]): try: - self.graph.exec_write_query_with_params( - get_delete_global_inclusion_query(), - {'node_ids': [[gid, sid] for gid, sid in inclusion_ids]}, + pairs = [[gid, sid] for gid, sid in inclusion_ids] + execute_arango_query( + db=get_db(self.arango_client), + query=get_delete_global_inclusion_query(), + pairs=pairs, ) - except (BrokenPipeError, ServiceUnavailable): + except BrokenPipeError: raise except Exception as e: current_app.logger.error( - f'Failed executing cypher: {get_delete_global_inclusion_query()}.\n' - + f'PARAMETERS: .', + f'Failed executing AQL: {get_delete_global_inclusion_query()}.\n' + + f'PARAMETERS: .', extra=EventLog(event_type=LogEventType.ANNOTATION.value).to_dict(), ) raise ServerException( - message='A system error occurred while creating the annotation, ' - 'we are working on a solution. Please try again later.' + title='Failed to Remove Global Inclusion', + message='A system error occurred while deleting the annotation, ' + 'we are working on a solution. Please try again later.', ) from e try: @@ -321,61 +351,82 @@ def remove_global_inclusions(self, inclusion_ids: List[Tuple[int, int]]): # a global could've been added with the wrong entity type # so we need to remove those bad labels to prevent # incorrect results coming back as synonyms - results = self.graph.exec_read_query_with_params( - get_node_labels_and_relationship_query(), - {'node_ids': [gid for gid, _ in inclusion_ids]}, + results = execute_arango_query( + db=get_db(self.arango_client), + query=get_node_labels_and_relationship_query(), + ids=[gid for gid, _ in inclusion_ids], ) - - for result in results: - mismatch = set(result['node_labels']) - set(result['rel_entity_types']) - # remove Taxonomy because there is inconsistency between graph and annotations - # annotation uses Species instead - if EntityType.SPECIES.value in result['rel_entity_types']: - mismatch.remove('Taxonomy') - - s = '' - for label in list(mismatch): - if label not in result['valid_entity_types']: - if label == 'Anatomy': - s += ':Anatomy' - elif label == 'Chemical': - s += ':Chemical' - elif label == 'Compound': - s += ':Compound' - elif label == 'Disease': - s += ':Disease' - elif label == 'Food': - s += ':Food' - elif label == 'Gene': - s += ':Gene' - elif label == 'Phenomena': - s += ':Phenomena' - elif label == 'Phenotype': - s += ':Phenotype' - elif label == 'Protein': - s += ':Protein' - elif label == 'Taxonomy': - s += ':Taxonomy' - if s: - self.graph.exec_write_query_with_params( - query_builder( - ['MATCH (n) WHERE id(n) = $node_id', f'REMOVE n{s}'] - ), - {'node_id': result['node_id']}, - ) - except (BrokenPipeError, ServiceUnavailable): - raise - except Exception as e: - query = query_builder(["MATCH (n) WHERE id(n) = $node_id", f"REMOVE n{s}"]) - current_app.logger.error( - f'Failed executing cypher: {query}.\n' - + f'PARAMETERS: .', + except Exception: + current_app.logger.info( + f'Failed During Cleanup of Global Inclusion Removal', extra=EventLog(event_type=LogEventType.ANNOTATION.value).to_dict(), ) - raise ServerException( - message='A system error occurred while creating the annotation, ' - 'we are working on a solution. Please try again later.' - ) from e + raise AnnotationError( + title='Global Inclusion Deleted, But Cleanup Failed', + message='A system error occurred after deleting the annotation, ' + 'we are working on a solution. Please try again later.', + ) + for result in results: + mismatch = set(result['node_labels']) - set(result['rel_entity_types']) + # remove Taxonomy because there is inconsistency between graph and annotations + # annotation uses Species instead + if EntityType.SPECIES.value in result['rel_entity_types']: + mismatch.remove('Taxonomy') + + s = [] + for label in list(mismatch): + if label not in result['valid_entity_types']: + if label == 'Anatomy': + s.append('Anatomy') + elif label == 'Chemical': + s.append('Chemical') + elif label == 'Compound': + s.append('Compound') + elif label == 'Disease': + s.append('Disease') + elif label == 'Food': + s.append('Food') + elif label == 'Gene': + s.append('Gene') + elif label == 'Phenomena': + s.append('Phenomena') + elif label == 'Phenotype': + s.append('Phenotype') + elif label == 'Protein': + s.append('Protein') + elif label == 'Taxonomy': + s.append('Taxonomy') + if len(s): + try: + query = """ + FOR doc IN synonym + FILTER doc._key == @node_id + FOR val IN @labels + UPDATE doc WITH {labels: REMOVE_VALUE(doc.labels, val)} IN synonym + """ + execute_arango_query( + db=get_db(self.arango_client), + query=query, + node_id=result['node_id'], + ) + except BrokenPipeError: + raise + except Exception: + query = query_builder( + ["MATCH (n) WHERE id(n) = $node_id", f"REMOVE n{s}"] + ) + current_app.logger.error( + f'Failed executing cypher: {query}.\n' + + f'PARAMETERS: .', + extra=EventLog( + event_type=LogEventType.ANNOTATION.value + ).to_dict(), + ) + raise ServerException( + title='Global Inclusion Deleted, But Cleanup Failed', + message='A system error occurred after deleting the annotation, ' + 'we are working on a solution. Please try again later.', + ) @wrap_exceptions(AnnotationError, title='Failed to Create Custom Annotation') def add_exclusion(self, file: Files, user: AppUser, exclusion): @@ -487,6 +538,11 @@ def isExcluded(exclusions, annotation): ] return filtered_annotations + file.custom_annotations + # TODO: Seems like there is some unexpected behavior in saving a new global: If both the + # entity and the synonym already exist, no global is created. This is probably "correct" in the + # sense that the term should get annotated without the existence of the global, but it's very + # confusing because the new annotation will not appear in the global list. A term annotated in + # this way is effectively the same as a local annotation. @wrap_exceptions(AnnotationError, title='Failed to Create Custom Annotation') def save_global( self, @@ -525,9 +581,9 @@ def save_global( ) from e if entity_id == '': - entity_id = f'NULL-{str(uuid4())}' + entity_id = f'NULL-{str(uuid.uuid4())}' - createval = { + all_params = { 'entity_type': entity_type, 'entity_id': entity_id, 'synonym': synonym, @@ -542,7 +598,7 @@ def save_global( # NOTE: # definition of `main node`: the node that contains the common/primary name # e. g `Homo sapiens` is the common/primary name, while `human` is the synonym - check = self._global_annotation_exists_in_kg(createval) + check = self._global_annotation_exists_in_kg(all_params) # several possible scenarios # 1. main node exists and synonym exists # 2. main node exists and synonym does not exist @@ -558,43 +614,88 @@ def save_global( if check['node_exist'] and ( not check['synonym_exist'] or check.get('node_has_entity_label', False) ): + mesh_params = { + 'entity_type': entity_type, + 'entity_id': entity_id, + 'synonym': synonym, + 'inclusion_date': inclusion_date, + 'user': username, + 'file_uuid': file_hash_id, + 'hyperlinks': hyperlinks, + } + others_params = { + 'entity_id': entity_id, + 'synonym': synonym, + 'inclusion_date': inclusion_date, + 'user': username, + 'file_uuid': file_hash_id, + 'hyperlinks': hyperlinks, + } + queries = { - EntityType.ANATOMY.value: get_create_mesh_global_inclusion_query( - entity_type + EntityType.ANATOMY.value: ( + get_create_mesh_global_inclusion_query, + mesh_params, + ), + EntityType.DISEASE.value: ( + get_create_mesh_global_inclusion_query, + mesh_params, ), - EntityType.DISEASE.value: get_create_mesh_global_inclusion_query( - entity_type + EntityType.FOOD.value: ( + get_create_mesh_global_inclusion_query, + mesh_params, ), - EntityType.FOOD.value: get_create_mesh_global_inclusion_query( - entity_type + EntityType.PHENOMENA.value: ( + get_create_mesh_global_inclusion_query, + mesh_params, ), - EntityType.PHENOMENA.value: get_create_mesh_global_inclusion_query( - entity_type + EntityType.PHENOTYPE.value: ( + get_create_mesh_global_inclusion_query, + mesh_params, ), - EntityType.PHENOTYPE.value: get_create_mesh_global_inclusion_query( - entity_type + EntityType.CHEMICAL.value: ( + get_create_chemical_global_inclusion_query, + others_params, + ), + EntityType.COMPOUND.value: ( + get_create_compound_global_inclusion_query, + others_params, + ), + EntityType.GENE.value: ( + get_create_gene_global_inclusion_query, + others_params, + ), + EntityType.PROTEIN.value: ( + get_create_protein_global_inclusion_query, + others_params, + ), + EntityType.SPECIES.value: ( + get_create_species_global_inclusion_query, + others_params, + ), + EntityType.PATHWAY.value: ( + get_pathway_global_inclusion_exist_query, + others_params, ), - EntityType.CHEMICAL.value: get_create_chemical_global_inclusion_query(), - EntityType.COMPOUND.value: get_create_compound_global_inclusion_query(), - EntityType.GENE.value: get_create_gene_global_inclusion_query(), - EntityType.PROTEIN.value: get_create_protein_global_inclusion_query(), - EntityType.SPECIES.value: get_create_species_global_inclusion_query(), - EntityType.PATHWAY.value: get_pathway_global_inclusion_exist_query(), } - query = queries.get(entity_type, '') + query_fn, params = queries.get( + entity_type, + (get_create_lifelike_global_inclusion_query, all_params), + ) + try: - if query: - self.graph.exec_write_query_with_params(query, createval) - else: - query = get_create_lifelike_global_inclusion_query(entity_type) - self.graph.exec_write_query_with_params(query, createval) - except (BrokenPipeError, ServiceUnavailable): + execute_arango_query( + db=get_db(self.arango_client), + query=query_fn(), + **params, + ) + except BrokenPipeError: raise except Exception as e: message = ( f'Failed to create global inclusion, ' - f'knowledge graph failed with query: {query}.' + f'knowledge graph failed with query: {query_fn()}.' ) current_app.logger.error( message, @@ -605,9 +706,13 @@ def save_global( warn(ServerWarning(message=message), cause=e) elif not check['node_exist']: try: - query = get_create_lifelike_global_inclusion_query(entity_type) - self.graph.exec_write_query_with_params(query, createval) - except (BrokenPipeError, ServiceUnavailable): + query = get_create_lifelike_global_inclusion_query() + execute_arango_query( + db=get_db(self.arango_client), + query=query, + **all_params, + ) + except BrokenPipeError: raise except Exception as e: message = ( @@ -643,62 +748,100 @@ def save_global( def _global_annotation_exists_in_kg(self, values: dict): entity_type = values['entity_type'] - queries = { - EntityType.ANATOMY.value: get_mesh_global_inclusion_exist_query( - entity_type + mesh_params = { + 'entity_type': entity_type, + 'entity_id': values['entity_id'], + 'synonym': values['synonym'], + } + lifelike_params = { + 'common_name': values['common_name'], + 'entity_type': entity_type, + 'synonym': values['synonym'], + } + other_params = { + 'entity_id': values['entity_id'], + 'synonym': values['synonym'], + } + queries: Dict[str, Tuple[Callable, dict]] = { + EntityType.ANATOMY.value: ( + get_mesh_global_inclusion_exist_query, + mesh_params, + ), + EntityType.DISEASE.value: ( + get_mesh_global_inclusion_exist_query, + mesh_params, + ), + EntityType.FOOD.value: (get_mesh_global_inclusion_exist_query, mesh_params), + EntityType.PHENOMENA.value: ( + get_mesh_global_inclusion_exist_query, + mesh_params, ), - EntityType.DISEASE.value: get_mesh_global_inclusion_exist_query( - entity_type + EntityType.PHENOTYPE.value: ( + get_mesh_global_inclusion_exist_query, + mesh_params, ), - EntityType.FOOD.value: get_mesh_global_inclusion_exist_query(entity_type), - EntityType.PHENOMENA.value: get_mesh_global_inclusion_exist_query( - entity_type + EntityType.CHEMICAL.value: ( + get_chemical_global_inclusion_exist_query, + other_params, ), - EntityType.PHENOTYPE.value: get_mesh_global_inclusion_exist_query( - entity_type + EntityType.COMPOUND.value: ( + get_compound_global_inclusion_exist_query, + other_params, + ), + EntityType.GENE.value: ( + get_gene_global_inclusion_exist_query, + other_params, + ), + EntityType.PROTEIN.value: ( + get_protein_global_inclusion_exist_query, + other_params, + ), + EntityType.SPECIES.value: ( + get_species_global_inclusion_exist_query, + other_params, + ), + EntityType.PATHWAY.value: ( + get_pathway_global_inclusion_exist_query, + other_params, ), - EntityType.CHEMICAL.value: get_chemical_global_inclusion_exist_query(), - EntityType.COMPOUND.value: get_compound_global_inclusion_exist_query(), - EntityType.GENE.value: get_gene_global_inclusion_exist_query(), - EntityType.PROTEIN.value: get_protein_global_inclusion_exist_query(), - EntityType.SPECIES.value: get_species_global_inclusion_exist_query(), - EntityType.PATHWAY.value: get_pathway_global_inclusion_exist_query(), } - # query can be empty string because some entity types - # do not exist in the normal domain/labels - query = queries.get(entity_type, '') - try: - check = ( - self.graph.exec_read_query_with_params(query, values)[0] - if query - else {'node_exist': False} - ) - except (BrokenPipeError, ServiceUnavailable): - raise - except Exception as e: - message = ( - f'Failed to create global inclusion, ' - f'knowledge graph failed with query: {query}.' - ) - current_app.logger.error( - message, - extra=EventLog(event_type=LogEventType.ANNOTATION.value).to_dict(), - ) - warn(ServerWarning(message=message), cause=e) + if entity_type in queries: + try: + query_fn, params = queries[entity_type] + check = execute_arango_query( + db=get_db(self.arango_client), query=query_fn(), **params + )[0] + except BrokenPipeError: + raise + except Exception as e: + message = ( + f'Failed to create global inclusion, ' + f'knowledge graph failed with query: {query_fn()}.' + ) + current_app.logger.error( + message, + extra=EventLog(event_type=LogEventType.ANNOTATION.value).to_dict(), + ) + warn(ServerWarning(message=message), cause=e) + else: + check = {'node_exist': False} if check['node_exist']: return check else: try: - query = get_lifelike_global_inclusion_exist_query(entity_type) - check = self.graph.exec_read_query_with_params(query, values)[0] - except (BrokenPipeError, ServiceUnavailable): + check = execute_arango_query( + db=get_db(self.arango_client), + query=get_lifelike_global_inclusion_exist_query(), + **lifelike_params, + )[0] + except BrokenPipeError: raise except Exception as e: message = ( f'Failed to create global inclusion, ' - f'knowledge graph failed with query: {query}.' + f'knowledge graph failed with query: {query_fn()}.' ) current_app.logger.error( message, diff --git a/appserver/neo4japp/services/annotations/pipeline.py b/appserver/neo4japp/services/annotations/pipeline.py index 4df7ea938a..c7a44b5066 100644 --- a/appserver/neo4japp/services/annotations/pipeline.py +++ b/appserver/neo4japp/services/annotations/pipeline.py @@ -1,14 +1,18 @@ import json import time -from typing import List, Tuple from flask import current_app +from typing import List, Optional, Tuple from neo4japp.constants import LogEventType, FILE_MIME_TYPE_PDF +from neo4japp.database import get_or_create_arango_client from neo4japp.exceptions import AnnotationError -from neo4japp.utils import normalize_str, EventLog +from neo4japp.utils.string import normalize_str +from neo4japp.utils.logger import EventLog + +from .annotation_graph_service import get_entity_inclusions from .constants import SPECIES_LMDB -from .data_transfer_objects import PDFWord, SpecifiedOrganismStrain +from .data_transfer_objects import GlobalInclusions, PDFWord, SpecifiedOrganismStrain from .utils.nlp import predict from .utils.parsing import parse_content @@ -30,7 +34,7 @@ class Pipeline: """ def __init__(self, steps: dict, **kwargs): - if not all(k in ['adbs', 'ags', 'aers', 'tkner', 'as', 'bs'] for k in steps): + if not all(k in ['adbs', 'aers', 'tkner', 'as', 'bs'] for k in steps): raise AnnotationError( 'Unable to Annotate', 'Configurations for the annotation pipeline is incorrect, please try again later.', @@ -40,7 +44,7 @@ def __init__(self, steps: dict, **kwargs): self.parsed = kwargs.get('parsed', []) self.entities = None self.global_exclusions = None - self.global_inclusions = None + self.global_inclusions: Optional[GlobalInclusions] = None @classmethod def parse(self, content_type: str, **kwargs) -> Tuple[str, List[PDFWord]]: @@ -74,12 +78,14 @@ def parse(self, content_type: str, **kwargs) -> Tuple[str, List[PDFWord]]: def get_globals( self, excluded_annotations: List[dict], custom_annotations: List[dict] ): + arango_client = get_or_create_arango_client() db_service = self.steps['adbs']() - graph_service = self.steps['ags']() start = time.time() self.global_exclusions = db_service.get_entity_exclusions(excluded_annotations) - self.global_inclusions = graph_service.get_entity_inclusions(custom_annotations) + self.global_inclusions = get_entity_inclusions( + arango_client, custom_annotations + ) current_app.logger.info( f'Time to process entity exclusions/inclusions {time.time() - start}', extra=EventLog(event_type=LogEventType.ANNOTATION.value).to_dict(), diff --git a/appserver/neo4japp/services/annotations/profilers/annotations_profiler.py b/appserver/neo4japp/services/annotations/profilers/annotations_profiler.py index b354d5feef..d4f5b5ee95 100644 --- a/appserver/neo4japp/services/annotations/profilers/annotations_profiler.py +++ b/appserver/neo4japp/services/annotations/profilers/annotations_profiler.py @@ -15,7 +15,6 @@ from neo4japp.services.annotations.pipeline import Pipeline from neo4japp.services.annotations.initializer import ( get_annotation_db_service, - get_annotation_graph_service, get_recognition_service, get_annotation_tokenizer, get_annotation_service, @@ -95,7 +94,6 @@ def main(): pipeline = Pipeline( { 'adbs': get_annotation_db_service, - 'ags': get_annotation_graph_service, 'aers': get_recognition_service, 'tkner': get_annotation_tokenizer, 'as': get_annotation_service, diff --git a/appserver/neo4japp/services/annotations/utils/graph_queries.py b/appserver/neo4japp/services/annotations/utils/graph_queries.py index 6af18927d1..7456069246 100644 --- a/appserver/neo4japp/services/annotations/utils/graph_queries.py +++ b/appserver/neo4japp/services/annotations/utils/graph_queries.py @@ -1,4 +1,6 @@ -from neo4japp.utils import compose_lines +from neo4japp.exceptions import InvalidArgument +from neo4japp.utils.string import compose_lines + from ..constants import EntityType @@ -20,13 +22,13 @@ EntityType.DISEASE.value: 'Disease', EntityType.FOOD.value: 'Food', EntityType.PHENOMENA.value: 'Phenomena', + EntityType.PHENOTYPE.value: 'Phenotype', EntityType.CHEMICAL.value: 'Chemical', EntityType.COMPOUND.value: 'Compound', EntityType.GENE.value: 'Gene', EntityType.SPECIES.value: 'Taxonomy', - EntityType.PATHWAY.value: 'Pathway', EntityType.PROTEIN.value: 'Protein', - EntityType.PHENOTYPE.value: 'Phenotype', + EntityType.PATHWAY.value: 'Pathway', EntityType.ENTITY.value: 'Entity', EntityType.COMPANY.value: 'Company', EntityType.LAB_SAMPLE.value: 'LabSample', @@ -34,411 +36,793 @@ } +collection_labels = { + EntityType.ANATOMY.value: 'mesh', + EntityType.DISEASE.value: 'mesh', + EntityType.FOOD.value: 'mesh', + EntityType.PHENOMENA.value: 'mesh', + EntityType.PHENOTYPE.value: 'mesh', + EntityType.CHEMICAL.value: 'chebi', + EntityType.COMPOUND.value: 'biocyc', + EntityType.GENE.value: 'ncbi', + EntityType.SPECIES.value: 'taxonomy', + EntityType.PROTEIN.value: 'uniprot', + EntityType.PATHWAY.value: 'kegg', + EntityType.ENTITY.value: 'lifelike', + EntityType.COMPANY.value: 'lifelike', + EntityType.LAB_SAMPLE.value: 'lifelike', + EntityType.LAB_STRAIN.value: 'lifelike', +} + + def query_builder(parts): return compose_lines(*parts) def get_organisms_from_gene_ids_query(): return """ - FOR doc IN ncbi - FILTER 'Gene' IN doc.labels - FILTER doc.eid IN @gene_ids - FOR v IN 1..1 OUTBOUND doc has_taxonomy - RETURN { - 'gene_id': doc.eid, - 'gene_name': doc.name, - 'taxonomy_id': v.eid, - 'species_name': v.name - } + FOR doc IN ncbi + FILTER 'Gene' IN doc.labels + FILTER doc.eid IN @gene_ids + FOR v IN 1..1 OUTBOUND doc has_taxonomy + RETURN { + 'gene_id': doc.eid, + 'gene_name': doc.name, + 'taxonomy_id': v.eid, + 'species_name': v.name + } """ def get_gene_to_organism_query(): return """ - MATCH (s:Synonym)-[]-(g:Gene) - WHERE s.name IN $genes - WITH s, g MATCH (g)-[:HAS_TAXONOMY]-(t:Taxonomy)-[:HAS_PARENT*0..2]->(p:Taxonomy) - WHERE p.eid IN $organisms - RETURN g.name AS gene_name, s.name AS gene_synonym, g.eid AS gene_id, - p.eid AS organism_id, g.data_source AS data_source + FOR s IN synonym + FILTER s.name IN @genes + FOR gene, synonym_rel IN INBOUND s has_synonym + FILTER 'Gene' IN gene.labels + LET t = FIRST( + FOR t IN OUTBOUND gene has_taxonomy + FILTER t.eid IN @organisms + RETURN t.eid + ) + LET t_parent = FIRST( + FOR temp_t IN OUTBOUND gene has_taxonomy + FOR parent IN OUTBOUND temp_t has_parent + FILTER parent.eid IN @organisms + RETURN parent.eid + ) + LET t_grandparent = FIRST( + FOR temp_t IN OUTBOUND gene has_taxonomy + FOR temp_parent IN OUTBOUND temp_t has_parent + FOR grand_parent IN OUTBOUND temp_parent has_parent + FILTER grand_parent.eid IN @organisms + RETURN grand_parent.eid + ) + LET organism_to_use = FIRST([t, t_parent, t_grandparent][* FILTER CURRENT != null]) + FILTER organism_to_use != null + RETURN DISTINCT { + 'gene_name': gene.name, + 'gene_synonym': s.name, + 'gene_id': gene.eid, + 'organism_id': organism_to_use, + 'data_source': gene.data_source + } """ def get_protein_to_organism_query(): return """ - MATCH (s:Synonym)-[]-(g:db_UniProt) - WHERE s.name IN $proteins - WITH s, g MATCH (g)-[:HAS_TAXONOMY]-(t:Taxonomy)-[:HAS_PARENT*0..2]->(p:Taxonomy) - WHERE p.eid IN $organisms - RETURN s.name AS protein, collect(g.eid) AS protein_ids, p.eid AS organism_id + FOR s IN synonym + FILTER s.name IN @proteins + FOR protein IN INBOUND s has_synonym OPTIONS {vertexCollections: 'uniprot'} + FILTER 'Protein' IN protein.labels + LET t = FIRST( + FOR t IN OUTBOUND protein has_taxonomy + FILTER t.eid IN @organisms + RETURN t.eid + ) + LET t_parent = FIRST( + FOR temp_t IN OUTBOUND protein has_taxonomy + FOR parent IN OUTBOUND temp_t has_parent + FILTER parent.eid IN @organisms + RETURN parent.eid + ) + LET t_grandparent = FIRST( + FOR temp_t IN OUTBOUND protein has_taxonomy + FOR temp_parent IN OUTBOUND temp_t has_parent + FOR grand_parent IN OUTBOUND temp_parent has_parent + FILTER grand_parent.eid IN @organisms + RETURN grand_parent.eid + ) + LET organism_to_use = FIRST([t, t_parent, t_grandparent][* FILTER CURRENT != null]) + FILTER organism_to_use != null + COLLECT organism = organism_to_use, protein_name = s.name INTO protein_ids + RETURN { + 'protein': protein_name, + 'protein_ids': protein_ids[*].protein.eid, + 'organism_id': organism, + } """ def get_global_inclusions_count_query(): return """ - MATCH (s:GlobalInclusion:Synonym)-[r:HAS_SYNONYM]-(n) - WHERE r.global_inclusion = true AND exists(r.inclusion_date) - RETURN count(s) AS total + RETURN { + 'total': COUNT( + FOR doc IN synonym + FILTER 'GlobalInclusion' in doc.labels + FOR v, e IN 1..1 INBOUND doc has_synonym + FILTER e.global_inclusion == true + FILTER e.inclusion_date != null + SORT e.inclusion_date DESC + RETURN e.inclusion_date + ) + } """ def get_global_inclusions_query(): return """ - MATCH (s:GlobalInclusion:Synonym)-[r:HAS_SYNONYM]-(n) - WHERE r.global_inclusion = true AND exists(r.inclusion_date) - RETURN - id(n) AS node_internal_id, - id(s) AS syn_node_internal_id, - n.eid AS entity_id, - s.name AS synonym, - n.data_source AS data_source, - r.entity_type AS entity_type, - r.file_reference AS file_reference, - r.user AS creator, - r.inclusion_date AS creation_date - ORDER BY toLower(synonym) + FOR doc IN synonym + FILTER 'GlobalInclusion' IN doc.labels + FOR v, e IN 1..1 INBOUND doc has_synonym + FILTER e.label == 'has_synonym' + FILTER e.global_inclusion == true + FILTER e.inclusion_date != null + SORT LOWER(doc.name) + RETURN { + 'node_internal_id': v._id, + 'syn_node_internal_id': doc._id, + 'entity_id': v.eid, + 'synonym': doc.name, + 'data_source': v.data_source, + 'entity_type': e.entity_type, + 'file_reference': e.file_reference, + 'creator': e.user, + 'creation_date': e.inclusion_date + } """ def get_global_inclusions_paginated_query(): return """ - MATCH (s:GlobalInclusion:Synonym)-[r:HAS_SYNONYM]-(n) - WHERE r.global_inclusion = true AND exists(r.inclusion_date) - RETURN - id(n) AS node_internal_id, - id(s) AS syn_node_internal_id, - n.eid AS entity_id, - s.name AS synonym, - n.data_source AS data_source, - r.entity_type AS entity_type, - r.file_reference AS file_reference, - r.user AS creator, - r.inclusion_date AS creation_date - ORDER BY toLower(synonym) - SKIP $skip - LIMIT $limit + FOR doc IN synonym + FILTER 'GlobalInclusion' IN doc.labels + FOR v, e IN 1..1 INBOUND doc has_synonym + FILTER e.label == 'has_synonym' + FILTER e.global_inclusion == true + FILTER e.inclusion_date != null + SORT LOWER(doc.name) ASC + LIMIT @skip, @limit + RETURN { + 'node_internal_id': v._id, + 'syn_node_internal_id': doc._id, + 'entity_id': v.eid, + 'synonym': doc.name, + 'data_source': v.data_source, + 'entity_type': e.entity_type, + 'file_reference': e.file_reference, + 'creator': e.user, + 'creation_date': e.inclusion_date + } """ -def get_nodes_by_ids(entity_type): - if entity_type not in node_labels: - return '' - - query_label = node_labels[entity_type] - if entity_type in source_labels: - query_label = f'{source_labels[entity_type]}:{query_label}' +def get_docs_by_ids_query(entity_type): + try: + collection = collection_labels[entity_type] + except KeyError: + raise InvalidArgument( + f'Could not query for document with entity type: {entity_type}. No ' + 'collection exists for this type.' + ) return f""" - MATCH (n:{query_label}) WHERE n.eid IN $ids - RETURN n.eid AS entity_id, n.name AS entity_name - """ - - -# NOTE DEPRECATED: just used in old migration -def get_mesh_by_ids(): - return """ - MATCH (n:db_MESH:TopicalDescriptor) WHERE n.eid IN $ids - RETURN n.eid AS mesh_id, n.name AS mesh_name + FOR doc IN {collection} + FILTER doc.eid IN @ids + RETURN {{'entity_id': doc.eid, 'entity_name': doc.name}} """ def get_node_labels_and_relationship_query(): return """ - MATCH (n)-[r:HAS_SYNONYM]-() - WHERE id(n) IN $node_ids AND exists(n.original_entity_types) - RETURN id(n) AS node_id, n.eid AS entity_id, - [l IN labels(n) WHERE NOT l starts WITH 'db_' AND - NOT l IN [ - 'TopicalDescriptor', - 'TreeNumber', - 'BioCycClass', - 'GlobalInclusion', - 'Complex'] - ] AS node_labels, - n.original_entity_types AS valid_entity_types, - collect(DISTINCT r.entity_type) AS rel_entity_types + // Review Note: The original cypher query was returning no results even without the ID filter, + // so the AQL is not easily testable. + FOR doc IN synonym + FILTER doc._id IN @ids + FILTER doc.original_entity_types != null + LET rel_types = ( + FOR v, e IN 1..1 INBOUND doc has_synonym + RETURN DISTINCT e.entity_type + ) + RETURN { + 'node_id': doc._id, + 'entity_id': doc.eid, + 'node_labels': doc.labels[ + * FILTER + CURRENT NOT IN [ + 'TopicalDescriptor', + 'TreeNumber', + 'BioCycClass', + 'GlobalInclusion', + 'Complex' + ] + ], + 'valid_entity_types': doc.original_entity_types, + 'rel_entity_types': rel_types + } """ def get_delete_global_inclusion_query(): return """ - UNWIND $node_ids AS node_ids - MATCH (s)-[r:HAS_SYNONYM]-(n) - WHERE id(n) = node_ids[0] AND id(s) = node_ids[1] - DELETE r - WITH s - MATCH (s)-[r:HAS_SYNONYM]-() - WHERE r.global_inclusion = true AND exists(r.inclusion_date) - WITH s, collect(r) AS synonym_rel - CALL apoc.do.when( - size(synonym_rel) = 0, - 'REMOVE s:GlobalInclusion', '', {synonym_rel: synonym_rel, s:s} - ) - YIELD value - RETURN COUNT(*) + FOR id_pair IN @pairs + LET entity_doc_id = id_pair[0] + LET synonym_doc_id = id_pair[1] + + // Note that in converting this query from cypher, we've reversed the query: you + // cannot read from a collection in Arango after deleting from it, so here we get the + // total count of global relationships first, then delete any between the entity node + // and the synonym. + + // Get the count of global relationships *before* removing any + LET prev_global_rels_for_synonym = LENGTH( + FOR doc IN has_synonym + FILTER doc._to == synonym_doc_id + FILTER doc.global_inclusion == true + FILTER doc.inclusion_date != null + RETURN doc + ) + + // Remove the provided relationships, and return how many were removed + LET num_removed = LENGTH( + FOR s IN has_synonym + FILTER s._from == entity_doc_id + FILTER s._to == synonym_doc_id + REMOVE s IN has_synonym + RETURN s + ) + + // Remove the 'GlobalInclusion' label from the synonym if the previous number of global + // relationships remaining equals the number we've just removed. + FILTER prev_global_rels_for_synonym == num_removed + // Review note: The original query returns the count of the results returned from an + // apoc call. However, it only does that because it needs to end in a 'RETURN' + // statement. We don't actually use those values. I'm opting to not return anything in + // this query, because we don't need to. + // Another note: shouldn't we delete the synonym if it has no more has_synonym edges? + // This should be possible if the synonym is purely a global inclusion, so if we don't + // delete it we could be generating orphaned synonyms. I guess in practice it doesn't + // really matter, but it's a little smelly. + FOR doc IN synonym + FILTER doc._id == synonym_doc_id + UPDATE doc WITH {labels: REMOVE_VALUE(doc.labels, 'GlobalInclusion')} IN synonym """ -def get_global_inclusions_by_type_query(entity_type): - if entity_type not in node_labels: - return '' - - query_label = node_labels[entity_type] - - if entity_type in source_labels: - query_label = f'{source_labels[entity_type]}:{query_label}' - - return f""" - MATCH (s:GlobalInclusion:Synonym)-[r:HAS_SYNONYM]-(n:{query_label}) - WHERE r.global_inclusion = true AND exists(r.inclusion_date) - RETURN - id(n) AS internal_id, - n.eid AS entity_id, - n.name AS entity_name, - n.data_source AS data_source, - s.name AS synonym, - r.hyperlinks AS hyperlinks +def get_global_inclusions_by_type_query(): + return """ + FOR doc IN synonym + FILTER 'GlobalInclusion' IN doc.labels + FOR v, e IN 1..1 INBOUND doc has_synonym OPTIONS { vertexCollections: @collection } + FILTER e.global_inclusion == true + FILTER e.inclusion_date != null + // Need the 'OR' clause here since documents in the 'taxonomy' collection don't have + // any entries in their labels. + FILTER @entity_type IN v.labels OR LENGTH(v.labels) == 0 + RETURN { + 'internal_id': v._id, + 'entity_id': v.eid, + 'entity_name': v.name, + 'data_source': v.data_source, + 'synonym': doc.name, + 'hyperlinks': e.hyperlinks + } """ -def get_lifelike_global_inclusions_by_type_query(entity_type): - if entity_type not in node_labels: - return '' - - query_label = node_labels[entity_type] - if entity_type == EntityType.SPECIES.value: - query_label = 'Organism' - - return f""" - MATCH (s:GlobalInclusion:Synonym)-[r:HAS_SYNONYM]-(n:db_Lifelike:{query_label}) - RETURN - id(n) AS internal_id, - n.eid AS entity_id, - n.name AS entity_name, - n.data_source AS data_source, - s.name AS synonym, - r.hyperlinks AS hyperlinks +def get_lifelike_global_inclusions_by_type_query(): + return """ + FOR doc IN synonym + FILTER 'GlobalInclusion' IN doc.labels + FOR v, e IN 1..1 INBOUND doc has_synonym OPTIONS { vertexCollections: 'lifelike' } + FILTER e.label == 'has_synonym' + FILTER @entity_type IN v.labels + SORT v._id ASC + RETURN { + 'internal_id': v._id, + 'entity_id': v.eid, + 'entity_name': v.name, + 'data_source': v.data_source, + 'synonym': doc.name, + 'hyperlinks': e.hyperlinks + } """ -def get_mesh_global_inclusion_exist_query(entity_type): - if entity_type not in node_labels: - return '' - - query_label = node_labels[entity_type] +def get_mesh_global_inclusion_exist_query(): return f""" - OPTIONAL MATCH (n:db_MESH)-[:HAS_SYNONYM]->(s) - WHERE n.eid = $entity_id - RETURN n IS NOT NULL AS node_exist, - '{query_label}' IN labels(n) AS node_has_entity_label, - $synonym IN collect(s.name) AS synonym_exist + LET meshGlobalInclusion = FIRST( + FOR doc IN mesh + FILTER doc.eid == @entity_id + RETURN doc + ) + LET synonymWithName = FIRST( + FOR doc IN synonym + FILTER doc.name == @synonym + RETURN doc + ) + LET inclusionToSynonymRel = FIRST( + FOR rel IN has_synonym + FILTER rel._from == meshGlobalInclusion._id + FILTER rel._to == synonymWithName._id + RETURN rel + ) + RETURN {{ + 'node_exist': meshGlobalInclusion != NULL, + 'synonym_exist': synonymWithName != NULL AND inclusionToSynonymRel != NULL, + 'node_has_entity_label': @entity_type IN meshGlobalInclusion.labels + }} """ def get_chemical_global_inclusion_exist_query(): return """ - OPTIONAL MATCH (n:db_CHEBI:Chemical)-[:HAS_SYNONYM]->(s) - WHERE n.eid = $entity_id - RETURN n IS NOT NULL AS node_exist, - $synonym IN collect(s.name) AS synonym_exist + LET chebiGlobalInclusion = FIRST( + FOR doc IN chebi + FILTER 'Chemical' IN doc.labels + FILTER doc.eid == @entity_id + RETURN doc + ) + LET synonymWithName = FIRST( + FOR doc IN synonym + FILTER doc.name == @synonym + RETURN doc + ) + LET inclusionToSynonymRel = FIRST( + FOR rel IN has_synonym + FILTER rel._from == chebiGlobalInclusion._id + FILTER rel._to == synonymWithName._id + RETURN rel + ) + RETURN { + 'node_exist': chebiGlobalInclusion != NULL, + 'synonym_exist': synonymWithName != NULL AND inclusionToSynonymRel != NULL + } """ def get_compound_global_inclusion_exist_query(): return """ - OPTIONAL MATCH (n:db_BioCyc:Compound)-[:HAS_SYNONYM]->(s) - WHERE n.eid = $entity_id - RETURN n IS NOT NULL AS node_exist, - $synonym IN collect(s.name) AS synonym_exist + LET biocycGlobalInclusion = FIRST( + FOR doc IN biocyc + FILTER 'Compound' IN doc.labels + FILTER doc.eid == @entity_id + RETURN doc + ) + LET synonymWithName = FIRST( + FOR doc IN synonym + FILTER doc.name == @synonym + RETURN doc + ) + LET inclusionToSynonymRel = FIRST( + FOR rel IN has_synonym + FILTER rel._from == biocycGlobalInclusion._id + FILTER rel._to == synonymWithName._id + RETURN rel + ) + RETURN { + 'node_exist': biocycGlobalInclusion != NULL, + 'synonym_exist': synonymWithName != NULL AND inclusionToSynonymRel != NULL + } """ def get_gene_global_inclusion_exist_query(): return """ - OPTIONAL MATCH (n:Gene)-[:HAS_SYNONYM]->(s) - WHERE n.eid = $entity_id - RETURN n IS NOT NULL AS node_exist, - $synonym IN collect(s.name) AS synonym_exist + LET res = ( + // Review note: This union may not be necessary if we're strictly expecting either ncbi or + // biocyc results from this query + FOR n IN union( + ( + FOR n1 IN ncbi + FILTER n1.eid == @entity_id + FILTER 'Master' IN n1.labels + RETURN n1 + ), + ( + FOR n2 IN biocyc + FILTER n2.eid == @entity_id + FILTER 'Master' IN n2.labels + RETURN n2 + ) + ) + FILTER 'Gene' IN n.labels + LET synList = ( + FOR v, e IN 1..1 OUTBOUND n has_synonym + FILTER v.name == @synonym + RETURN 1 + ) + RETURN {node_exist: true, synonym_exist: length(synList) > 0} + ) + RETURN length(res) == 0 ? { node_exist: false, synonym_exist: false } : res[0] """ def get_pathway_global_inclusion_exist_query(): return """ - OPTIONAL MATCH (n:Pathway)-[:HAS_SYNONYM]->(s) - WHERE n.eid = $entity_id - RETURN n IS NOT NULL AS node_exist, - $synonym IN collect(s.name) AS synonym_exist + LET res = ( + FOR n IN biocyc + FILTER n.eid == @entity_id + FILTER 'Pathway' IN n.labels + LET synList = ( + FOR v, e IN 1..1 OUTBOUND n has_synonym + FILTER v.name == @synonym + RETURN 1 + ) + RETURN {node_exist: true, synonym_exist: length(synList) > 0} + ) + RETURN length(res) == 0 ? { node_exist: false, synonym_exist: false } : res[0] """ def get_protein_global_inclusion_exist_query(): return """ - OPTIONAL MATCH (n:db_UniProt:Protein)-[:HAS_SYNONYM]->(s) - WHERE n.eid = $entity_id - RETURN n IS NOT NULL AS node_exist, - $synonym IN collect(s.name) AS synonym_exist + LET res = ( + FOR n IN uniprot + FILTER n.eid == @entity_id + FILTER 'Protein' IN n.labels + LET synList = ( + FOR v, e IN 1..1 OUTBOUND n has_synonym + FILTER v.name == @synonym + RETURN 1 + ) + RETURN {node_exist: true, synonym_exist: length(synList) > 0} + ) + RETURN length(res) == 0 ? { node_exist: false, synonym_exist: false } : res[0] """ def get_species_global_inclusion_exist_query(): return """ - OPTIONAL MATCH (n:db_NCBI:Taxonomy)-[:HAS_SYNONYM]->(s) - WHERE n.eid = $entity_id - RETURN n IS NOT NULL AS node_exist, - $synonym IN collect(s.name) AS synonym_exist + LET res = ( + FOR n IN taxonomy + FILTER n.eid == @entity_id + LET synList = ( + FOR v, e IN 1..1 OUTBOUND n has_synonym + FILTER v.name == @synonym + RETURN 1 + ) + RETURN {node_exist: true, synonym_exist: length(synList) > 0} + ) + RETURN length(res) == 0 ? { node_exist: false, synonym_exist: false } : res[0] """ -def get_lifelike_global_inclusion_exist_query(entity_type): - if entity_type not in node_labels: - return '' - - query_label = node_labels[entity_type] +def get_lifelike_global_inclusion_exist_query(): return f""" - OPTIONAL MATCH (n:db_Lifelike:{query_label})-[r:HAS_SYNONYM]->(s) - WHERE n.name = $common_name AND r.entity_type = $entity_type - RETURN n IS NOT NULL AS node_exist, - $synonym IN collect(s.name) OR - CASE WHEN - n IS NOT NULL THEN NOT 'NULL_' IN n.eid - ELSE false END AS synonym_exist + LET res = ( + FOR n IN lifelike + FILTER n.name == @common_name + FILTER @entity_type IN n.labels + LET synList = ( + FOR v, e IN 1..1 OUTBOUND n has_synonym + FILTER v.name == @synonym + FILTER e.entity_type == @entity_type + RETURN 1 + ) + RETURN {{node_exist: true, synonym_exist: length(synList) > 0}} + ) + RETURN length(res) == 0 ? {{ node_exist: false, synonym_exist: false }} : res[0] """ -def get_create_mesh_global_inclusion_query(entity_type): - if entity_type not in node_labels: - return '' - - query_label = node_labels[entity_type] +def get_create_mesh_global_inclusion_query(): return """ - MATCH (n:db_MESH) WHERE n.eid = $entity_id - SET n:replace_with_param - MERGE (s: Synonym {name: $synonym}) - SET s:GlobalInclusion, s.lowercase_name = toLower($synonym) - MERGE (n)-[r:HAS_SYNONYM]->(s) - ON CREATE - SET r.inclusion_date = apoc.date.parseAsZonedDateTime($inclusion_date), - r.global_inclusion = true, - r.user = $user, - r.file_reference = $file_uuid, - r.entity_type = $entity_type, - r.hyperlinks = $hyperlinks - """.replace( - 'replace_with_param', query_label - ) + FOR doc IN mesh + FILTER doc.eid == @entity_id + // First, update the mesh document with the new label (it won't be added if it already + // exists). Note that the subqueries are required because you cannot use the OLD/NEW + // special variables more than once in a single scope. + LET m = FIRST( + UPDATE doc WITH { + labels: PUSH(doc.labels, @entity_type, true) + } IN mesh + RETURN NEW + ) + // Then, create a synonym with the given name, if one doesn't exist. + LET s = FIRST( + UPSERT { name: @synonym } + INSERT { name: @synonym, lowercase_name: lower(@synonym), labels: ['GlobalInclusion'] } + UPDATE { + lowercase_name: lower(@synonym), + labels: PUSH(OLD.labels, 'GlobalInclusion', true) + } IN synonym + RETURN NEW + ) + // Finally, create a new 'has_synonym' relation if there is none between 'm' and 's'. Note + // that if 's' was just created, this always inserts a new document. Also, if *ANY* + // has_synonym exists between 'm' and 's', a new document is *NOT* created and the existing + // document is *NOT* updated. + UPSERT { + _from: m._id, + _to: s._id, + } + // TODO: Write comment regarding existing labels in mesh being used in favor of any new ones + INSERT { + _from: m._id, + _to: s._id, + label: 'has_synonym', + inclusion_date: date_format(@inclusion_date, '%z'), + global_inclusion: true, + user: @user, + file_reference: @file_uuid, + entity_type: @entity_type, + hyperlinks: @hyperlinks + } + UPDATE OLD IN has_synonym + """ def get_create_chemical_global_inclusion_query(): return """ - MATCH (n:db_CHEBI:Chemical) WHERE n.eid = $entity_id - MERGE (s:Synonym {name: $synonym}) - SET s:GlobalInclusion, s.lowercase_name = toLower($synonym) - MERGE (n)-[r:HAS_SYNONYM]->(s) - ON CREATE - SET r.inclusion_date = apoc.date.parseAsZonedDateTime($inclusion_date), - r.global_inclusion = true, - r.user = $user, - r.file_reference = $file_uuid, - r.entity_type = 'Chemical', - r.hyperlinks = $hyperlinks + FOR c IN chebi + FILTER c.eid == @entity_id + FILTER 'Chemical' IN c.labels + // First, create a synonym with the given name, if one doesn't exist. Note that the + // subquery is required because you cannot use the OLD/NEW special variables more than + // once in a single scope. + LET s = FIRST( + UPSERT { name: @synonym } + INSERT { name: @synonym, lowercase_name: lower(@synonym), labels: ['GlobalInclusion'] } + UPDATE { + lowercase_name: lower(@synonym), + labels: PUSH(OLD.labels, 'GlobalInclusion', true) + } IN synonym + RETURN NEW + ) + // Finally, create a new 'has_synonym' relation if there is none between 'm' and 's'. Note + // that if 's' was just created, this always inserts a new document. Also, if *ANY* + // has_synonym exists between 'm' and 's', a new document is *NOT* created and the existing + // document is *NOT* updated. + UPSERT { + _from: c._id, + _to: s._id, + } + INSERT { + _from: c._id, + _to: s._id, + label: 'has_synonym', + inclusion_date: date_format(@inclusion_date, '%z'), + global_inclusion: true, + user: @user, + file_reference: @file_uuid, + entity_type: 'Chemical', + hyperlinks: @hyperlinks + } + UPDATE OLD IN has_synonym """ def get_create_compound_global_inclusion_query(): return """ - MATCH (n:db_BioCyc:Compound) WHERE n.eid = $entity_id - MERGE (s:Synonym {name: $synonym}) - SET s:GlobalInclusion, s.lowercase_name = toLower($synonym) - MERGE (n)-[r:HAS_SYNONYM]->(s) - ON CREATE - SET r.inclusion_date = apoc.date.parseAsZonedDateTime($inclusion_date), - r.global_inclusion = true, - r.user = $user, - r.file_reference = $file_uuid, - r.entity_type = 'Compound', - r.hyperlinks = $hyperlinks + FOR b IN biocyc + FILTER b.eid == @entity_id + FILTER 'Compound' IN b.labels + // First, create a synonym with the given name, if one doesn't exist. Note that the + // subquery is required because you cannot use the OLD/NEW special variables more than + // once in a single scope. + LET s = FIRST( + UPSERT { name: @synonym } + INSERT { name: @synonym, lowercase_name: lower(@synonym), labels: ['GlobalInclusion'] } + UPDATE { + lowercase_name: lower(@synonym), + labels: PUSH(OLD.labels, 'GlobalInclusion', true) + } IN synonym + RETURN NEW + ) + // Finally, create a new 'has_synonym' relation if there is none between 'm' and 's'. Note + // that if 's' was just created, this always inserts a new document. Also, if *ANY* + // has_synonym exists between 'm' and 's', a new document is *NOT* created and the existing + // document is *NOT* updated. + UPSERT { + _from: b._id, + _to: s._id, + } + INSERT { + _from: b._id, + _to: s._id, + label: 'has_synonym', + inclusion_date: date_format(@inclusion_date, '%z'), + global_inclusion: true, + user: @user, + file_reference: @file_uuid, + entity_type: 'Compound', + hyperlinks: @hyperlinks + } + UPDATE OLD IN has_synonym """ def get_create_gene_global_inclusion_query(): return """ - MATCH (n:Gene) WHERE n.eid = $entity_id - MERGE (s:Synonym {name: $synonym}) - SET s:GlobalInclusion, s.lowercase_name = toLower($synonym) - MERGE (n)-[r:HAS_SYNONYM]->(s) - ON CREATE - SET r.inclusion_date = apoc.date.parseAsZonedDateTime($inclusion_date), - r.global_inclusion = true, - r.user = $user, - r.file_reference = $file_uuid, - r.entity_type = 'Gene', - r.hyperlinks = $hyperlinks + FOR g IN UNION ( + ( + FOR g1 IN ncbi + FILTER g1.eid == @entity_id + RETURN g1 + ), + ( + FOR g2 IN biocyc + FILTER g2.eid == @entity_id + RETURN g2 + ) + ) + FILTER 'Gene' IN g.labels + // First, create a synonym with the given name, if one doesn't exist. Note that the + // subquery is required because you cannot use the OLD/NEW special variables more than + // once in a single scope. + LET s = FIRST( + UPSERT { name: @synonym } + INSERT { name: @synonym, lowercase_name: lower(@synonym), labels: ['GlobalInclusion'] } + UPDATE { + lowercase_name: lower(@synonym), + labels: PUSH(OLD.labels, 'GlobalInclusion', true) + } IN synonym + RETURN NEW + ) + // Finally, create a new 'has_synonym' relation if there is none between 'm' and 's'. Note + // that if 's' was just created, this always inserts a new document. Also, if *ANY* + // has_synonym exists between 'm' and 's', a new document is *NOT* created and the existing + // document is *NOT* updated. + UPSERT { + _from: g._id, + _to: s._id, + } + INSERT { + _from: g._id, + _to: s._id, + label: 'has_synonym', + inclusion_date: date_format(@inclusion_date, '%z'), + global_inclusion: true, + user: @user, + file_reference: @file_uuid, + entity_type: 'Gene', + hyperlinks: @hyperlinks + } + UPDATE OLD IN has_synonym """ def get_create_species_global_inclusion_query(): return """ - MATCH (n:db_NCBI:Taxonomy) WHERE n.eid = $entity_id - MERGE (s:Synonym {name: $synonym}) - SET s:GlobalInclusion, s.lowercase_name = toLower($synonym) - MERGE (n)-[r:HAS_SYNONYM]->(s) - ON CREATE - SET r.inclusion_date = apoc.date.parseAsZonedDateTime($inclusion_date), - r.global_inclusion = true, - r.user = $user, - r.file_reference = $file_uuid, - r.entity_type = 'Species', - r.hyperlinks = $hyperlinks + FOR t IN taxonomy + FILTER t.eid == @entity_id + // First, create a synonym with the given name, if one doesn't exist. Note that the + // subquery is required because you cannot use the OLD/NEW special variables more than + // once in a single scope. + LET s = FIRST( + UPSERT { name: @synonym } + INSERT { name: @synonym, lowercase_name: lower(@synonym), labels: ['GlobalInclusion'] } + UPDATE { + lowercase_name: lower(@synonym), + labels: PUSH(OLD.labels, 'GlobalInclusion', true) + } IN synonym + RETURN NEW + ) + // Finally, create a new 'has_synonym' relation if there is none between 'm' and 's'. Note + // that if 's' was just created, this always inserts a new document. Also, if *ANY* + // has_synonym exists between 'm' and 's', a new document is *NOT* created and the existing + // document is *NOT* updated. + UPSERT { + _from: t._id, + _to: s._id, + } + INSERT { + _from: t._id, + _to: s._id, + label: 'has_synonym', + inclusion_date: date_format(@inclusion_date, '%z'), + global_inclusion: true, + user: @user, + file_reference: @file_uuid, + entity_type: 'Species', + hyperlinks: @hyperlinks + } + UPDATE OLD IN has_synonym """ def get_create_protein_global_inclusion_query(): return """ - MATCH (n:db_UniProt:Protein) WHERE n.eid = $entity_id - MERGE (s:Synonym {name: $synonym}) - SET s:GlobalInclusion, s.lowercase_name = toLower($synonym) - MERGE (n)-[r:HAS_SYNONYM]->(s) - ON CREATE - SET r.inclusion_date = apoc.date.parseAsZonedDateTime($inclusion_date), - r.global_inclusion = true, - r.user = $user, - r.file_reference = $file_uuid, - r.entity_type = 'Protein', - r.hyperlinks = $hyperlinks + FOR p IN uniprot + FILTER p.eid == @entity_id + FILTER 'Protein' IN p.labels + // First, create a synonym with the given name, if one doesn't exist. Note that the + // subquery is required because you cannot use the OLD/NEW special variables more than + // once in a single scope. + LET s = FIRST( + UPSERT { name: @synonym } + INSERT { name: @synonym, lowercase_name: lower(@synonym), labels: ['GlobalInclusion'] } + UPDATE { + lowercase_name: lower(@synonym), + labels: PUSH(OLD.labels, 'GlobalInclusion', true) + } IN synonym + RETURN NEW + ) + // Finally, create a new 'has_synonym' relation if there is none between 'm' and 's'. Note + // that if 's' was just created, this always inserts a new document. Also, if *ANY* + // has_synonym exists between 'm' and 's', a new document is *NOT* created and the existing + // document is *NOT* updated. + UPSERT { + _from: p._id, + _to: s._id, + } + INSERT { + _from: p._id, + _to: s._id, + label: 'has_synonym', + inclusion_date: date_format(@inclusion_date, '%z'), + global_inclusion: true, + user: @user, + file_reference: @file_uuid, + entity_type: 'Protein', + hyperlinks: @hyperlinks + } + UPDATE OLD IN has_synonym """ -def get_create_lifelike_global_inclusion_query(entity_type): - if entity_type not in node_labels: - return '' - - query_label = node_labels[entity_type] - if entity_type == EntityType.SPECIES.value: - query_label = 'Organism' - +def get_create_lifelike_global_inclusion_query(): # NOTE: a new gene should not be created, because # we have no option to specify an organism relationship # rather a new synonym of an existing gene can be created # so no need to add a :Master Gene label return """ - MERGE (n:db_Lifelike {name: $common_name}) - ON CREATE - SET n.eid = $entity_id, - n:GlobalInclusion:replace_with_param, - n.data_source = $data_source, - n.name = $common_name - WITH n - MERGE (s:Synonym {name: $synonym}) - SET s:GlobalInclusion, s.lowercase_name = toLower($synonym) - MERGE (n)-[r:HAS_SYNONYM]->(s) - ON CREATE - SET r.inclusion_date = apoc.date.parseAsZonedDateTime($inclusion_date), - r.global_inclusion = true, - r.user = $user, - r.file_reference = $file_uuid, - r.entity_type = $entity_type, - r.hyperlinks = $hyperlinks - """.replace( - 'replace_with_param', query_label + LET mergedLifelikeDoc = FIRST( + UPSERT { name: @common_name } + INSERT { + name: @common_name, + eid: @entity_id, + data_source: @data_source, + labels: ['GlobalInclusion', @entity_type] + } + UPDATE { + eid: @entity_id, + } IN lifelike + RETURN NEW ) + // First, create a synonym with the given name, if one doesn't exist. Note that the + // subquery is required because you cannot use the OLD/NEW special variables more than + // once in a single scope. + LET s = FIRST( + UPSERT { name: @synonym } + INSERT { name: @synonym, lowercase_name: lower(@synonym), labels: ['GlobalInclusion'] } + UPDATE { + lowercase_name: lower(@synonym), + labels: PUSH(OLD.labels, 'GlobalInclusion', true) + } IN synonym + RETURN NEW + ) + // Finally, create a new 'has_synonym' relation if there is none between 'mergedLifelikeDoc' + // and 's'. Note that if 's' was just created, this always inserts a new document. Also, if + // *ANY* has_synonym exists between 'mergedLifelikeDoc' and 's', a new document is *NOT* + // created and the existing document is *NOT* updated. + UPSERT { + _from: mergedLifelikeDoc._id, + _to: s._id, + } + INSERT { + _from: mergedLifelikeDoc._id, + _to: s._id, + label: 'has_synonym', + inclusion_date: date_format(@inclusion_date, '%z'), + global_inclusion: true, + user: @user, + file_reference: @file_uuid, + entity_type: @entity_type, + hyperlinks: @hyperlinks + } + UPDATE OLD IN has_synonym + """ diff --git a/appserver/neo4japp/services/arangodb.py b/appserver/neo4japp/services/arangodb.py index 7f2996ecb2..01579e74bc 100644 --- a/appserver/neo4japp/services/arangodb.py +++ b/appserver/neo4japp/services/arangodb.py @@ -1,11 +1,30 @@ from arango import ArangoClient from arango.database import StandardDatabase -from typing import Dict, List, Optional +from datetime import datetime +from typing import Any, Dict, List, Optional + from neo4japp.utils.globals import config # Helpers +def convert_datetime(date_val: str) -> datetime: + valid_formats = [ + '%Y-%m-%d %H:%M:%S', + '%Y-%m-%dT%H:%M:%S.%fZ', + '%Y-%m-%dT%H:%M:%SZ[UTC]', + '%Y-%m-%dT%H:%MZ[UTC]', + ] + for format in valid_formats: + try: + return datetime.strptime(date_val, format) + except ValueError: + continue + raise ValueError( + f'time data {date_val} does not match any of the accepted formats.' + ) + + def get_version(client: ArangoClient): return client.version @@ -23,7 +42,7 @@ def get_db( ) -def execute_arango_query(db: StandardDatabase, query: str, **bind_vars) -> List[Dict]: +def execute_arango_query(db: StandardDatabase, query: str, **bind_vars) -> List[Any]: cursor = db.aql.execute(query, ttl=600, max_runtime=600, bind_vars=bind_vars) return [row for row in cursor] @@ -40,7 +59,7 @@ def add_document_to_collection( overwrite: bool = False, ) -> Dict: collection = db.collection(colxn_name) - return collection.insert(doc, return_new=True, overwrite=overwrite) + return collection.insert(doc, return_new=True, overwrite=overwrite)['new'] def add_many_to_collection( diff --git a/appserver/neo4japp/services/common.py b/appserver/neo4japp/services/common.py index 06b4cf64af..9c3d1265c8 100644 --- a/appserver/neo4japp/services/common.py +++ b/appserver/neo4japp/services/common.py @@ -1,9 +1,5 @@ import abc -from datetime import datetime -from typing import Any, Callable -from neo4j import Session -from neo4j.exceptions import ServiceUnavailable from sqlalchemy.exc import SQLAlchemyError @@ -66,97 +62,6 @@ def begin(self, **kwargs): raise NotImplementedError -class GraphConnection(DatabaseConnection): - def __init__(self, conn): - self.conn = conn - - class _context(TransactionContext): - def __init__(self, conn): - self.conn = conn - - def __enter__(self): - self.session = self.conn.session() - return self.session - - def __exit__(self, exc_type, exc_val, exc_traceback): - self.session.close() - - def convert_datetime(self, graph_date): - """Convert a neo4j Datetime to python datetime""" - return datetime( - graph_date.year, - graph_date.month, - graph_date.day, - graph_date.hour, - graph_date.minute, - int(graph_date.second), - int(graph_date.second * 1000000 % 1000000), - tzinfo=graph_date.tzinfo, - ) - - def begin(self, **kwargs): - return self._context(self.conn) - - def exec_read_query(self, query: str): - try: - with self.begin() as session: - return session.read_transaction(lambda tx: list(tx.run(query))) - except BrokenPipeError as e: - raise BrokenPipeError( - 'The graph connection became stale while processing data. ' - 'Please refresh the browser and try again.' - ) from e - except ServiceUnavailable as e: - raise ServiceUnavailable( - 'Timed out trying to establish connection to the graph database. ' - 'Please try again at a later time.' - ) from e - - def exec_write_query(self, query: str): - try: - with self.begin() as session: - return session.write_transaction(lambda tx: list(tx.run(query))) - except BrokenPipeError as e: - raise BrokenPipeError( - 'The graph connection became stale while processing data, ' - 'Please refresh the browser and try again.' - ) from e - except ServiceUnavailable as e: - raise ServiceUnavailable( - 'Timed out trying to establish connection to the graph database. ' - 'Please try again at a later time.' - ) from e - - def _exec_with_wrapped_exceptions(self, exec: Callable[[Session], Any]): - try: - with self.begin() as session: - return exec(session) - except BrokenPipeError as e: - raise BrokenPipeError( - 'The graph connection became stale while processing data, ' - 'Please refresh the browser and try again.' - ) from e - except ServiceUnavailable as e: - raise ServiceUnavailable( - 'Timed out trying to establish connection to the graph database. ' - 'Please try again at a later time.' - ) from e - - def exec_read_query_with_params(self, query: str, values: dict): - return self._exec_with_wrapped_exceptions( - lambda session: session.read_transaction( - lambda tx: list(tx.run(query, **values)) - ) - ) - - def exec_write_query_with_params(self, query: str, values: dict): - return self._exec_with_wrapped_exceptions( - lambda session: session.write_transaction( - lambda tx: list(tx.run(query, **values)) - ) - ) - - class GraphBaseDao: def __init__(self, graph, **kwargs): # TODO LL-2916: Should rename this to neo4j_session or something similar. diff --git a/appserver/neo4japp/services/elastic/elastic_service.py b/appserver/neo4japp/services/elastic/elastic_service.py index 5859ccffe6..7372de7ce4 100644 --- a/appserver/neo4japp/services/elastic/elastic_service.py +++ b/appserver/neo4japp/services/elastic/elastic_service.py @@ -1,10 +1,5 @@ import base64 import json -from typing import ( - Any, - Dict, - List, -) from elasticsearch.exceptions import RequestError as ElasticRequestError from elasticsearch.helpers import parallel_bulk, streaming_bulk @@ -22,10 +17,11 @@ ) from sqlalchemy import and_ from sqlalchemy.orm import joinedload, raiseload +from typing import Any, Dict, List from app import app from neo4japp.constants import LogEventType -from neo4japp.database import get_file_type_service, ElasticConnection, GraphConnection +from neo4japp.database import get_file_type_service, ElasticConnection from neo4japp.exceptions import ServerException, wrap_exceptions from neo4japp.models import ( Files, @@ -49,7 +45,7 @@ ParserElement.enablePackrat() -class ElasticService(ElasticConnection, GraphConnection): +class ElasticService(ElasticConnection): # Begin indexing methods def update_or_create_index(self, index_id, index_mapping_file): """Creates an index with the given index id and mapping file. If the index already exists, diff --git a/appserver/neo4japp/services/enrichment/enrichment_table.py b/appserver/neo4japp/services/enrichment/enrichment_table.py index 2fd2e74c22..0f4961ee0d 100644 --- a/appserver/neo4japp/services/enrichment/enrichment_table.py +++ b/appserver/neo4japp/services/enrichment/enrichment_table.py @@ -1,22 +1,35 @@ +import time + +from arango.client import ArangoClient from flask import current_app -from neo4j import Session as Neo4jSession, Transaction as Neo4jTx from sqlalchemy.orm import Session as SQLAlchemySession from typing import List +from urllib.parse import urlencode -from neo4japp.constants import EnrichmentDomain, LogEventType -from neo4japp.exceptions import AnnotationError, ServerException, wrap_exceptions -from neo4japp.models import DomainURLsMap -from neo4japp.services import KgService +from neo4japp.constants import ( + BIOCYC_ORG_ID_DICT, + EnrichmentDomain, + KGDomain, + LogEventType, +) +from neo4japp.exceptions import ( + AnnotationError, + ServerException, + ServerWarning, + wrap_exceptions, +) +from neo4japp.services.arangodb import execute_arango_query, get_db +from neo4japp.services.common import RDBMSBaseDao from neo4japp.services.enrichment.data_transfer_objects import EnrichmentCellTextMapping from neo4japp.schemas.formats.enrichment_tables import validate_enrichment_table +from neo4japp.utils.dict import compact from neo4japp.utils.globals import warn -from neo4japp.utils import EventLog -from neo4japp.exceptions import ServerWarning +from neo4japp.utils.logger import EventLog -class EnrichmentTableService(KgService): - def __init__(self, graph: Neo4jSession, session: SQLAlchemySession): - super().__init__(graph=graph, session=session) +class EnrichmentTableService(RDBMSBaseDao): + def __init__(self, session: SQLAlchemySession): + super().__init__(session=session) @wrap_exceptions(AnnotationError, title='Could not annotate enrichment table') def create_annotation_mappings(self, enrichment: dict) -> EnrichmentCellTextMapping: @@ -133,55 +146,319 @@ def create_annotation_mappings(self, enrichment: dict) -> EnrichmentCellTextMapp text=combined_text, text_index_map=text_index_map, cell_texts=cell_texts ) - def match_ncbi_genes(self, gene_names: List[str], organism: str): - """Match list of gene names to list of NCBI gene nodes with same name and has taxonomy - ID of given organism. Input order is maintained in result. - """ - results = self.graph.read_transaction( - self.match_ncbi_genes_query, gene_names, organism - ) - domain = ( - self.session.query(DomainURLsMap) - .filter(DomainURLsMap.domain == 'NCBI_Gene') - .one_or_none() - ) +def match_ncbi_genes(arango_client: ArangoClient, gene_names: List[str], organism: str): + """Match list of gene names to list of NCBI gene nodes with same name and has taxonomy + ID of given organism. Input order is maintained in result. + """ + results = execute_arango_query( + db=get_db(arango_client), + query=match_ncbi_genes_query(), + gene_names=gene_names, + organism=organism, + ) - if domain is None: - raise ServerException( - message='There was a problem finding NCBI domain URLs.' - ) - - return [ + retval = [] + for result in results: + gene_id = result['gene_id'] if result['gene_id'] else '' + retval.append( { 'gene': { 'name': result['gene_name'], 'full_name': result['gene_full_name'], }, 'synonym': result['synonym'], - 'geneNeo4jId': result['gene_neo4j_id'], - 'synonymNeo4jId': result['syn_neo4j_id'], - 'link': domain.base_URL.format(result['gene_id']) - if result['gene_id'] - else '', + 'geneArangoId': result['gene_arango_id'], + 'synonymArangoId': result['syn_arango_id'], + 'link': f"https://www.ncbi.nlm.nih.gov/gene/{gene_id}", } - for result in results - ] - - def match_ncbi_genes_query( - self, tx: Neo4jTx, gene_names: List[str], organism: str - ) -> List[dict]: - """Need to collect synonyms because a gene node can have multiple - synonyms. So it is possible to send duplicate internal node ids to - a later query.""" - return tx.run( - """ - UNWIND $gene_names AS gene - MATCH(s:Synonym {name:gene})-[:HAS_SYNONYM]-(g:Gene)-\ - [:HAS_TAXONOMY]-(t:Taxonomy {eid:$organism}) - RETURN s.name AS synonym, id(s) AS syn_neo4j_id, id(g) AS gene_neo4j_id, - g.eid AS gene_id, g.name AS gene_name, g.full_name AS gene_full_name - """, - gene_names=gene_names, - organism=organism, - ).data() + ) + return retval + + +def get_uniprot_genes(arango_client: ArangoClient, ncbi_gene_ids: List[int]): + start = time.time() + results = execute_arango_query( + db=get_db(arango_client), + query=get_uniprot_genes_query(), + ncbi_gene_ids=ncbi_gene_ids, + ) + + current_app.logger.info( + f'Enrichment UniProt KG query time {time.time() - start}', + extra=EventLog(event_type=LogEventType.ENRICHMENT.value).to_dict(), + ) + + return { + result['doc_id']: { + 'result': {'id': result['uniprot_id'], 'function': result['function']}, + 'link': f'http://identifiers.org/uniprot/{result["uniprot_id"]}', + } + for result in results + } + + +def get_string_genes(arango_client: ArangoClient, ncbi_gene_ids: List[int]): + start = time.time() + results = execute_arango_query( + db=get_db(arango_client), + query=get_string_genes_query(), + ncbi_gene_ids=ncbi_gene_ids, + ) + + current_app.logger.info( + f'Enrichment String KG query time {time.time() - start}', + extra=EventLog(event_type=LogEventType.ENRICHMENT.value).to_dict(), + ) + + return { + result['doc_id']: { + 'result': {'id': result['string_id'], 'annotation': result['annotation']}, + 'link': f"https://string-db.org/cgi/network?identifiers={result['string_id']}", + } + for result in results + } + + +def get_biocyc_genes( + arango_client: ArangoClient, ncbi_gene_ids: List[int], tax_id: str +): + start = time.time() + results = execute_arango_query( + db=get_db(arango_client), + query=get_biocyc_genes_query(), + ncbi_gene_ids=ncbi_gene_ids, + ) + + current_app.logger.info( + f'Enrichment Biocyc KG query time {time.time() - start}', + extra=EventLog(event_type=LogEventType.ENRICHMENT.value).to_dict(), + ) + + return { + result['doc_id']: { + 'result': result['pathways'], + 'link': "https://biocyc.org/gene?" + + urlencode( + compact( + dict( + orgid=BIOCYC_ORG_ID_DICT.get(tax_id, None), + id=result['biocyc_id'], + ) + ) + ), + } + for result in results + } + + +def get_go_genes(arango_client: ArangoClient, ncbi_gene_ids: List[int]): + start = time.time() + results = execute_arango_query( + db=get_db(arango_client), + query=get_go_genes_query(), + ncbi_gene_ids=ncbi_gene_ids, + ) + + current_app.logger.info( + f'Enrichment GO KG query time {time.time() - start}', + extra=EventLog(event_type=LogEventType.ENRICHMENT.value).to_dict(), + ) + + return { + result['doc_id']: { + 'result': result['go_terms'], + 'link': 'https://www.ebi.ac.uk/QuickGO/annotations?geneProductId=', + } + for result in results + } + + +def get_regulon_genes(arango_client: ArangoClient, ncbi_gene_ids: List[int]): + start = time.time() + results = execute_arango_query( + db=get_db(arango_client), + query=get_regulon_genes_query(), + ncbi_gene_ids=ncbi_gene_ids, + ) + + current_app.logger.info( + f'Enrichment Regulon KG query time {time.time() - start}', + extra=EventLog(event_type=LogEventType.ENRICHMENT.value).to_dict(), + ) + + return { + result['doc_id']: { + 'result': result['node'], + 'link': "https://regulondb.ccg.unam.mx/gene?" + + urlencode( + compact( + dict( + term=result['regulondb_id'], + organism='ECK12', + format='jsp', + type='gene', + ) + ) + ), + } + for result in results + } + + +def get_kegg_genes(arango_client: ArangoClient, ncbi_gene_ids: List[int]): + start = time.time() + results = execute_arango_query( + db=get_db(arango_client), + query=get_kegg_genes_query(), + ncbi_gene_ids=ncbi_gene_ids, + ) + + current_app.logger.info( + f'Enrichment KEGG KG query time {time.time() - start}', + extra=EventLog(event_type=LogEventType.ENRICHMENT.value).to_dict(), + ) + + return { + result['doc_id']: { + 'result': result['pathway'], + 'link': f"https://www.genome.jp/entry/{result['kegg_id']}", + } + for result in results + } + + +def get_genes( + arango_client: ArangoClient, domain: KGDomain, gene_ids: List[int], tax_id: str +): + if domain == KGDomain.REGULON: + return get_regulon_genes(arango_client, gene_ids) + if domain == KGDomain.BIOCYC: + return get_biocyc_genes(arango_client, gene_ids, tax_id) + if domain == KGDomain.GO: + return get_go_genes(arango_client, gene_ids) + if domain == KGDomain.STRING: + return get_string_genes(arango_client, gene_ids) + if domain == KGDomain.UNIPROT: + return get_uniprot_genes(arango_client, gene_ids) + if domain == KGDomain.KEGG: + return get_kegg_genes(arango_client, gene_ids) + + +def match_ncbi_genes_query() -> str: + """Need to collect synonyms because a gene node can have multiple + synonyms. So it is possible to send duplicate internal node ids to + a later query.""" + return """ + FOR name IN @gene_names + FOR s IN synonym + FILTER s.name == name + FOR g IN INBOUND s has_synonym + FILTER 'Gene' IN g.labels + FOR t IN OUTBOUND g has_taxonomy + FILTER t.eid == @organism + RETURN { + synonym: s.name, + syn_arango_id: s._id, + gene_arango_id: g._id, + gene_id: g.eid, + gene_name: g.name, + gene_full_name: g.full_name + } + """ + + +def get_uniprot_genes_query() -> str: + return """ + FOR gene_id IN @ncbi_gene_ids + FOR n IN ncbi + FILTER n._id == gene_id + FOR x IN INBOUND n has_gene OPTIONS { vertexCollections:'uniprot' } + RETURN { + doc_id: n._id, + function: x.function, + uniprot_id: x.eid + } + """ + + +def get_string_genes_query() -> str: + return """ + FOR gene_id IN @ncbi_gene_ids + FOR n IN ncbi + FILTER n._id == gene_id + FILTER 'Gene' IN n.labels + FOR x IN INBOUND n has_gene OPTIONS { vertexCollections: ["string"] } + RETURN { + doc_id: n._id, + string_id: x.eid, + annotation: x.annotation, + } + """ + + +def get_go_genes_query() -> str: + return """ + FOR gene_id IN @ncbi_gene_ids + FOR n IN ncbi + FILTER n._id == gene_id + LET go_terms = ( + FOR g IN OUTBOUND n go_link OPTIONS { vertexCollections:'go' } + RETURN g.name + ) + FILTER length(go_terms) > 0 + RETURN { + doc_id: n._id, + go_terms: go_terms + } + """ + + +def get_biocyc_genes_query() -> str: + return """ + FOR gene_id IN @ncbi_gene_ids + FOR n IN ncbi + FILTER n._id == gene_id + FOR b IN INBOUND n is OPTIONS { vertexCollections:'biocyc' } + RETURN { + doc_id: n._id, + pathways: b.pathways, + biocyc_id: b.biocyc_id + } + """ + + +def get_regulon_genes_query() -> str: + return """ + FOR gene_id IN @ncbi_gene_ids + FOR n IN ncbi + FILTER n._id == gene_id + FILTER 'Gene' IN n.labels + FOR x IN INBOUND n is OPTIONS { vertexCollections: ["regulondb"] } + RETURN { + doc_id: n._id, + node: x, + regulondb_id: x.regulondb_id + } + """ + + +def get_kegg_genes_query() -> str: + return """ + FOR gene_id IN @ncbi_gene_ids + FOR n IN ncbi + FILTER n._id == gene_id + FILTER 'Gene' IN n.labels + FOR x IN INBOUND n is OPTIONS { vertexCollections: ["kegg"] } + FOR gnm IN OUTBOUND x has_ko + LET pathway = ( + FOR pth IN OUTBOUND gnm in_pathway + RETURN pth.name + ) + FILTER length(pathway) > 0 + RETURN { + doc_id: n._id, + kegg_id: x.eid, + pathway: pathway + } + """ diff --git a/appserver/neo4japp/services/kg_service.py b/appserver/neo4japp/services/kg_service.py deleted file mode 100644 index 3683894cd0..0000000000 --- a/appserver/neo4japp/services/kg_service.py +++ /dev/null @@ -1,849 +0,0 @@ -import json -import os -import time -from typing import List -from urllib.parse import urlencode - -from flask import current_app -from neo4j import Transaction as Neo4jTx -from neo4j.graph import Node as N4jDriverNode, Relationship as N4jDriverRelationship - -from neo4japp.constants import ( - ANNOTATION_STYLES_DICT, - DISPLAY_NAME_MAP, - LogEventType, -) -from neo4japp.constants import ( - BIOCYC_ORG_ID_DICT, - KGDomain, -) -from neo4japp.exceptions import ServerException -from neo4japp.exceptions import ServerWarning -from neo4japp.models import ( - DomainURLsMap, - GraphNode, - GraphRelationship, -) -from neo4japp.services.common import HybridDBDao -from neo4japp.utils import EventLog, snake_to_camel_dict -from neo4japp.utils.dict import compact -from neo4japp.utils.globals import warn -from neo4japp.utils.labels import ( - get_first_known_label_from_node, - get_first_known_label_from_list, -) - - -class KgService(HybridDBDao): - def __init__(self, graph, session): - super().__init__(graph=graph, session=session) - - def _neo4j_objs_to_graph_objs( - self, - nodes: List[N4jDriverNode], - relationships: List[N4jDriverRelationship], - ): - # TODO: Can possibly use a dispatch method/injection - # of sorts to use custom labeling methods for - # different type of nodes/edges being converted. - # The default does not always set an appropriate label - # name. - node_dict = {} - rel_dict = {} - - for node in nodes: - try: - label = get_first_known_label_from_node(node) - except ValueError as e: - label = 'Unknown' - message = ( - f"Node with ID {node.id}" - f" had an unexpected list of labels: {list(node.labels)}" - ) - current_app.logger.warning( - message, - extra=EventLog( - event_type=LogEventType.KNOWLEDGE_GRAPH.value - ).to_dict(), - ) - warn(ServerWarning(message=message), cause=e) - graph_node = GraphNode( - id=node.id, - label=get_first_known_label_from_node(node), - sub_labels=list(node.labels), - domain_labels=[], - display_name=node.get(DISPLAY_NAME_MAP[label], 'Unknown'), - data=snake_to_camel_dict(dict(node), {}), - url=None, - ) - node_dict[graph_node.id] = graph_node - - for rel in relationships: - graph_rel = GraphRelationship( - id=rel.id, - label=type(rel).__name__, - data=dict(rel), - to=rel.end_node.id, - _from=rel.start_node.id, - to_label=list(rel.end_node.labels)[0], - from_label=list(rel.start_node.labels)[0], - ) - rel_dict[graph_rel.id] = graph_rel - return { - 'nodes': [n.to_dict() for n in node_dict.values()], - 'edges': [r.to_dict() for r in rel_dict.values()], - } - - def query_batch(self, data_query: str): - """query batch uses a custom query language (one we make up here) - for returning a list of nodes and their relationships. - It also works on single nodes with no relationship. - - Example: - If we wanted all relationships between - the node pairs (node1, node2) and - (node3, node4), we will write the - query as follows: - - node1,node2&node3,node4 - """ - - # TODO: This no longer works as expected with the refactor of the visualizer - # search. May need to refactor this in the future, or just get rid of it. - split_data_query = data_query.split('&') - - if len(split_data_query) == 1 and split_data_query[0].find(',') == -1: - result = self.graph.read_transaction( - lambda tx: list( - tx.run( - 'MATCH (n) WHERE ID(n)=$node_id RETURN n AS node', - node_id=int(split_data_query.pop()), - ) - ) - ) - - node = [] - if len(result) > 0: - node = [result[0]['node']] - - return self._neo4j_objs_to_graph_objs(node, []) - else: - data = [x.split(',') for x in split_data_query] - result = self.graph.read_transaction( - lambda tx: list( - tx.run( - """ - UNWIND $data as node_pair - WITH node_pair[0] as from_id, node_pair[1] as to_id - MATCH (a)-[relationship]->(b) - WHERE ID(a)=from_id AND ID(b)=to_id - RETURN - apoc.convert.toSet(collect(a) + collect(b)) as nodes, - apoc.convert.toSet(collect(relationship)) as relationships - """, - data=data, - ) - ) - ) - - nodes = [] - relationships = [] - if len(result) > 0: - nodes = result[0]['nodes'] - relationships = result[0]['relationships'] - - return self._neo4j_objs_to_graph_objs(nodes, relationships) - - def get_uniprot_genes(self, ncbi_gene_ids: List[int]): - start = time.time() - results = self.graph.read_transaction( - self.get_uniprot_genes_query, ncbi_gene_ids - ) - - current_app.logger.info( - f'Enrichment UniProt KG query time {time.time() - start}', - extra=EventLog(event_type=LogEventType.ENRICHMENT.value).to_dict(), - ) - - domain = ( - self.session.query(DomainURLsMap) - .filter(DomainURLsMap.domain == 'uniprot') - .one_or_none() - ) - - if domain is None: - raise ServerException( - message='There was a problem finding UniProt domain URLs.' - ) - - return { - result['node_id']: { - 'result': {'id': result['uniprot_id'], 'function': result['function']}, - 'link': domain.base_URL.format(result['uniprot_id']), - } - for result in results - } - - def get_string_genes(self, ncbi_gene_ids: List[int]): - start = time.time() - results = self.graph.read_transaction( - self.get_string_genes_query, ncbi_gene_ids - ) - - current_app.logger.info( - f'Enrichment String KG query time {time.time() - start}', - extra=EventLog(event_type=LogEventType.ENRICHMENT.value).to_dict(), - ) - - return { - result['node_id']: { - 'result': { - 'id': result['string_id'], - 'annotation': result['annotation'], - }, - 'link': f"https://string-db.org/cgi/network?identifiers={result['string_id']}", - } - for result in results - } - - def get_biocyc_genes(self, ncbi_gene_ids: List[int], tax_id: str): - start = time.time() - results = self.graph.read_transaction( - self.get_biocyc_genes_query, ncbi_gene_ids - ) - - current_app.logger.info( - f'Enrichment Biocyc KG query time {time.time() - start}', - extra=EventLog(event_type=LogEventType.ENRICHMENT.value).to_dict(), - ) - - return { - result['node_id']: { - 'result': result['pathways'], - 'link': "https://biocyc.org/gene?" - + urlencode( - compact( - dict( - orgid=BIOCYC_ORG_ID_DICT.get(tax_id, None), - id=result['biocyc_id'], - ) - ) - ), - } - for result in results - } - - def get_go_genes(self, ncbi_gene_ids: List[int]): - start = time.time() - results = self.graph.read_transaction( - self.get_go_genes_query, - ncbi_gene_ids, - ) - - current_app.logger.info( - f'Enrichment GO KG query time {time.time() - start}', - extra=EventLog(event_type=LogEventType.ENRICHMENT.value).to_dict(), - ) - - return { - result['node_id']: { - 'result': result['go_terms'], - 'link': 'https://www.ebi.ac.uk/QuickGO/annotations?geneProductId=', - } - for result in results - } - - def get_regulon_genes(self, ncbi_gene_ids: List[int]): - start = time.time() - results = self.graph.read_transaction( - self.get_regulon_genes_query, ncbi_gene_ids - ) - - current_app.logger.info( - f'Enrichment Regulon KG query time {time.time() - start}', - extra=EventLog(event_type=LogEventType.ENRICHMENT.value).to_dict(), - ) - - return { - result['node_id']: { - 'result': result['node'], - 'link': "https://regulondb.ccg.unam.mx/gene?" - + urlencode( - compact( - dict( - term=result['regulondb_id'], - organism='ECK12', - format='jsp', - type='gene', - ) - ) - ), - } - for result in results - } - - def get_genes(self, domain: KGDomain, gene_ids: List[int], tax_id: str): - if domain == KGDomain.REGULON: - return self.get_regulon_genes(gene_ids) - if domain == KGDomain.BIOCYC: - return self.get_biocyc_genes(gene_ids, tax_id) - if domain == KGDomain.GO: - return self.get_go_genes(gene_ids) - if domain == KGDomain.STRING: - return self.get_string_genes(gene_ids) - if domain == KGDomain.UNIPROT: - return self.get_uniprot_genes(gene_ids) - if domain == KGDomain.KEGG: - return self.get_kegg_genes(gene_ids) - - def get_kegg_genes(self, ncbi_gene_ids: List[int]): - start = time.time() - results = self.graph.read_transaction(self.get_kegg_genes_query, ncbi_gene_ids) - - current_app.logger.info( - f'Enrichment KEGG KG query time {time.time() - start}', - extra=EventLog(event_type=LogEventType.ENRICHMENT.value).to_dict(), - ) - - return { - result['node_id']: { - 'result': result['pathway'], - 'link': f"https://www.genome.jp/entry/{result['kegg_id']}", - } - for result in results - } - - def get_nodes_and_edges_from_paths(self, paths): - nodes = [] - node_ids = set() - edges = [] - edge_ids = set() - for path in paths: - if path.get('nodes', None) is not None: - for node in path['nodes']: - if node['id'] not in node_ids: - node_display_name = 'Node Display Name Unknown' - if node.get('display_name', None) is not None: - node_display_name = node['display_name'] - elif node.get('name', None) is not None: - node_display_name = node['name'] - - try: - node_label = get_first_known_label_from_list(node['labels']) - node_color = ANNOTATION_STYLES_DICT[node_label.lower()][ - 'color' - ] - except ValueError as e: - # If label is unknown, then use fallbacks - node_label = 'Unknown' - node_color = '#000000' - message = f"Node had an unexpected list of labels: {node['labels']}" - current_app.logger.warning( - message, - extra=EventLog( - event_type=LogEventType.KNOWLEDGE_GRAPH.value - ).to_dict(), - ) - warn(ServerWarning(message=message), cause=e) - except KeyError: - # If label does not exist in styles dict, then use fallbacks - node_label = 'Unknown' - node_color = '#000000' - - node_data = { - 'id': node['id'], - 'label': node_display_name, - 'databaseLabel': node_label, - 'font': { - 'color': node_color, - }, - 'color': { - 'background': '#FFFFFF', - 'border': node_color, - 'hover': { - 'background': '#FFFFFF', - 'border': node_color, - }, - 'highlight': { - 'background': '#FFFFFF', - 'border': node_color, - }, - }, - } - - nodes.append(node_data) - node_ids.add(node['id']) - - if path.get('edges', None) is not None: - for edge in path['edges']: - if edge['id'] not in edge_ids: - edge_data = { - 'id': edge['id'], - 'label': edge['type'], - 'from': edge['start_node'], - 'to': edge['end_node'], - 'color': { - 'color': '#0c8caa', - }, - 'arrows': 'to', - } - - edges.append(edge_data) - edge_ids.add(edge['id']) - return {'nodes': nodes, 'edges': edges} - - def get_shortest_path_query_list(self): - query_pathway_names = [ - '3-hydroxyisobutyric Acid to pykF Using ChEBI', - '3-hydroxyisobutyric Acid to pykF using BioCyc', - 'icd to rhsE', - 'Two pathways using BioCyc', - # 'Glycolisis Regulon', - # 'SIRT5 to NFE2L2 Using Literature Data', - # 'CTNNB1 to Diarrhea Using Literature Data', - ] - file_pathway_names = [ - 'Serine SP Pathway', - 'Serine to malZp', - 'Acetate (ALE Mutation Data)', - 'Glycerol (ALE Mutation Data)', - 'Hexanoic (ALE Mutation Data)', - 'Isobutyric (ALE Mutation Data)', - 'Putrescine (ALE Mutation Data)', - 'Serine (ALE Mutation Data)', - 'tpiA (ALE Mutation Data)', - 'Xylose (ALE Mutation Data)', - '42C Temperature (ALE Mutation Data)', - 'nagC (ALE Mutation Data)', - 'nagA/nagC (ALE Mutation Data)', - 'nagA/nagC Shortest Paths (ALE Mutation Data)', - 'metab2PTHLH Short', - 'PTHLH2metab Short', - 'metab2PTHLH Short Page', - 'PTHLH2metab Short Page', - 'PTHLH2Ca2metab Short Page', - 'AAK1', - 'Auxilin Recruits HSPA8', - 'CSNK1D Phosphorylates SEC23', - 'Dissociation of AAK1 and Dephosphorylation of AP-2 mu2', - 'Expression of PERIOD-1', - 'F_BAR proteins_ARP', - 'HSPA8-mediated ATP Hydrolysis Promotes Vesicle Uncoating', - 'Interleukin-1 Family are Secreted', - 'PER1 [cytosol]', - 'The Ligand_GPCR_Gs Complex Dissociates', - 'Vesicle Budding', - 'Min Mean Short Updown Serotonin', - 'Min Mean Short Metabs Acetate', - 'Min Mean Short Metabs Butyrate', - 'Min Mean Short Metabs Propionate', - 'Min Mean Short Metabs Serotonin', - 'Min Mean Short Metabs top10', - 'Min Mean Short Updown Acetate', - 'Min Mean Short Updown Butyrate', - 'AAK1 to Metab noOct', - 'FosB to PER1', - 'Uncharacterized iModulon Genes and Top 20 Metabolites', - 'Uncharacterized iModulon Genes Only', - 'Uncharacterized iModulon Genes to Methionine', - 'Uncharacterized iModulon Genes yjdI Metabolites', - 'Zink iModulon Metals', - 'Zink iModulon Test2' - # 'nagA (ALE Mutation Data)', - ] - return { - num: name - for num, name in enumerate(query_pathway_names + file_pathway_names) - } - - def get_query_id_to_func_map(self): - query_pathways = [ - self.get_three_hydroxisobuteric_acid_to_pykf_chebi_query, - self.get_three_hydroxisobuteric_acid_to_pykf_biocyc_query, - self.get_icd_to_rhse_query, - self.get_two_pathways_biocyc_query - # self.get_glycolisis_regulon_query, - # self.get_sirt5_to_nfe2l2_literature_query, - # self.get_ctnnb1_to_diarrhea_literature_query, - ] - file_pathways = [ - 'serine.json', - 'serine-to-malZp.json', - 'ale_mutation_data/acetate.json', - 'ale_mutation_data/glycerol.json', - 'ale_mutation_data/hexanoic.json', - 'ale_mutation_data/isobutyric.json', - 'ale_mutation_data/putrescine.json', - 'ale_mutation_data/serine.json', - 'ale_mutation_data/tpiA.json', - 'ale_mutation_data/xylose.json', - 'ale_mutation_data/42C.json', - 'ale_mutation_data/nagC.json', - 'ale_mutation_data/nagAC.json', - 'ale_mutation_data/nagAC_shortestpaths.json', - 'cytoscape_data/metab2PTHLH_short_graphml.json', - 'cytoscape_data/PTHLH2metab_short_graphml.json', - 'cytoscape_data/metab2PTHLH_shortPage_graphml.json', - 'cytoscape_data/PTHLH2metab_shortPage_graphml.json', - 'cytoscape_data/PTHLH2Ca2metab_shortPage_graphml.json', - 'cytoscape_data/aak1_graphml.json', - 'cytoscape_data/Auxilin recruits HSPA8.json', - 'cytoscape_data/CSNK1D phosphorylates SEC23.json', - 'cytoscape_data/Dissociation of AAK1 and dephosphorylation of AP-2 mu2.json', - 'cytoscape_data/Expression of PERIOD-1.json', - 'cytoscape_data/F_BAR proteins_ARP.json', - 'cytoscape_data/HSPA8-mediated ATP hydrolysis promotes vesicle uncoating.json', - 'cytoscape_data/Interleukin-1 family are secreted.json', - 'cytoscape_data/PER1 [cytosol].json', - 'cytoscape_data/The Ligand_GPCR_Gs complex dissociates.json', - 'cytoscape_data/Vesicle budding.json', - 'cytoscape_data/minMeanShort_updown_Serotonin_graphml.json', - 'cytoscape_data/minMeanShort_metabs_Acetate_graphml.json', - 'cytoscape_data/minMeanShort_metabs_Butyrate_graphml.json', - 'cytoscape_data/minMeanShort_metabs_Propionate_graphml.json', - 'cytoscape_data/minMeanShort_metabs_Serotonin_graphml.json', - 'cytoscape_data/minMeanShort_metabs_top10_graphml.json', - 'cytoscape_data/minMeanShort_updown_Acetate_graphml.json', - 'cytoscape_data/minMeanShort_updown_Butyrate_graphml.json', - 'cytoscape_data/aak1_to_metab_noOct_graphml.json', - 'cytoscape_data/FosB to PER1_vis_js.json', - 'marina_sankey_data/uncharacterized_iModulon_genes_and_top20_metabolites_vis_js.json', - 'marina_sankey_data/uncharacterized_iModulon_genes_only_vis_js.json', - 'marina_sankey_data/uncharacterized_iModulon_genes_to_methionine_vis_js.json', - 'marina_sankey_data/uncharacterized_iModulon_genes_yjdI_metabolites_vis_js.json', - 'marina_sankey_data/zink-imodulon-metals_vis_js.json', - 'marina_sankey_data/zink-imodulon-test2_vis_js.json' - # 'ale_mutation_data/nagA.json', - ] - - pathway_num = 0 - pathways = dict() - for query_pathway in query_pathways: - pathways[pathway_num] = [self.get_data_from_query, query_pathway] - pathway_num += 1 - - for file_pathway in file_pathways: - pathways[pathway_num] = [self.get_data_from_file, file_pathway] - pathway_num += 1 - - return pathways - - def get_shortest_path_data(self, query_id): - func, arg = self.get_query_id_to_func_map()[query_id] - return func(arg) - - def get_data_from_query(self, query_func): - result = self.graph.read_transaction(query_func) - return self.get_nodes_and_edges_from_paths(result) - - def get_data_from_file(self, filename): - directory = os.path.realpath(os.path.dirname(__file__)) - with open( - os.path.join(directory, f'./shortest_path_data/{filename}'), 'r' - ) as data_file: - return json.load(data_file) - - def get_uniprot_genes_query( - self, tx: Neo4jTx, ncbi_gene_ids: List[int] - ) -> List[dict]: - return tx.run( - """ - UNWIND $ncbi_gene_ids AS node_id - MATCH (g)-[:HAS_GENE]-(x:db_UniProt) - WHERE id(g)=node_id - RETURN node_id, x.function AS function, x.eid AS uniprot_id - """, - ncbi_gene_ids=ncbi_gene_ids, - ).data() - - def get_string_genes_query( - self, tx: Neo4jTx, ncbi_gene_ids: List[int] - ) -> List[dict]: - return tx.run( - """ - UNWIND $ncbi_gene_ids AS node_id - MATCH (g)-[:HAS_GENE]-(x:db_STRING) - WHERE id(g)=node_id - RETURN node_id, x.eid AS string_id, x.annotation AS annotation - """, - ncbi_gene_ids=ncbi_gene_ids, - ).data() - - def get_go_genes_query(self, tx: Neo4jTx, ncbi_gene_ids: List[int]) -> List[dict]: - return tx.run( - """ - UNWIND $ncbi_gene_ids AS node_id - MATCH(g) WHERE id(g) = node_id - OPTIONAL MATCH (g)-[:GO_LINK]-(go1:db_GO) - OPTIONAL MATCH (g)-[:IS]-(:db_BioCyc)-[:ENCODES]-()-[:GO_LINK]-(go2) - RETURN - id(g) as node_id, - apoc.convert.toSet(collect(go1.name) + collect(go2.name)) AS go_terms - """, - ncbi_gene_ids=ncbi_gene_ids, - ).data() - - def get_biocyc_genes_query( - self, tx: Neo4jTx, ncbi_gene_ids: List[int] - ) -> List[dict]: - return tx.run( - """ - UNWIND $ncbi_gene_ids AS node_id - MATCH (g)-[:IS]-(x:db_BioCyc) - WHERE id(g)=node_id - RETURN node_id, x.pathways AS pathways, x.biocyc_id AS biocyc_id - """, - ncbi_gene_ids=ncbi_gene_ids, - ).data() - - def get_regulon_genes_query( - self, tx: Neo4jTx, ncbi_gene_ids: List[int] - ) -> List[dict]: - return tx.run( - """ - UNWIND $ncbi_gene_ids AS node_id - MATCH (g)-[:IS]-(x:db_RegulonDB) - WHERE id(g)=node_id - RETURN node_id, x AS node, x.regulondb_id AS regulondb_id - """, - ncbi_gene_ids=ncbi_gene_ids, - ).data() - - def get_kegg_genes_query(self, tx: Neo4jTx, ncbi_gene_ids: List[int]) -> List[dict]: - return tx.run( - """ - UNWIND $ncbi_gene_ids AS node_id - MATCH (g)-[:IS]-(x:db_KEGG) - WHERE id(g)=node_id - WITH node_id, x - MATCH (x)-[:HAS_KO]-()-[:IN_PATHWAY]-(p:Pathway)-[:HAS_PATHWAY]-(gen:Genome) - WHERE gen.eid = x.genome - RETURN node_id, x.eid AS kegg_id, collect(p.name) AS pathway - """, - ncbi_gene_ids=ncbi_gene_ids, - ).data() - - def get_three_hydroxisobuteric_acid_to_pykf_chebi_query(self, tx: Neo4jTx): - return list( - tx.run( - """ - MATCH (chem:db_CHEBI:Chemical) WHERE chem.eid IN ['18064'] - WITH chem - MATCH p=allShortestPaths((gene:db_EcoCyc:Gene {name:'pykF'})-[*..9]-(chem)) - WHERE none(r IN relationships(p) WHERE type(r) IN [ - 'FUNCTION', - 'COMPONENT', - 'PROCESS', - 'HAS_TAXONOMY', - 'HAS_SYNONYM', - 'HAS_ROLE', - 'GO_LINK' - ]) - RETURN [ - node IN nodes(p) | - { - id: id(node), - name: node.name, - display_name: node.displayName, - labels: labels(node) - } - ] as nodes, [ - rel IN relationships(p) | - { - id: id(rel), - type: type(rel), - start_node: id(startNode(rel)), - end_node: id(endNode(rel)) - } - ] AS edges - """ - ) - ) - - def get_three_hydroxisobuteric_acid_to_pykf_biocyc_query(self, tx: Neo4jTx): - return list( - tx.run( - """ - MATCH (c:Compound {biocyc_id: 'CPD-12176'}), (g:Gene:db_BioCyc {name:'pykF'}) - MATCH p=allShortestPaths((c)-[*]-(g)) - WHERE none(r IN relationships(p) - WHERE type(r) IN [ - 'GO_LINK', - 'HAS_TAXONOMY', - 'HAS_SYNONYM', - 'REGULATES', - 'HAS_ROLE', - 'TYPE_OF' - ]) - RETURN [ - node IN nodes(p) | - { - id: id(node), - name: node.name, - display_name: node.displayName, - labels: labels(node) - } - ] as nodes, [ - rel IN relationships(p) | - { - id: id(rel), - type: type(rel), - start_node: id(startNode(rel)), - end_node: id(endNode(rel)) - } - ] AS edges - """ - ) - ) - - def get_icd_to_rhse_query(self, tx: Neo4jTx): - return list( - tx.run( - """ - MATCH p=allShortestPaths( - (gene:db_EcoCyc:Gene {name:'icd'})-[*..13]-(gene2:db_EcoCyc:Gene {name:'rhsE'}) - ) - WHERE none(r IN relationships(p) WHERE type(r) IN ['HAS_TAXONOMY']) - RETURN [ - node IN nodes(p) | - { - id: id(node), - name: node.name, - display_name: node.displayName, - labels: labels(node) - } - ] as nodes, [ - rel IN relationships(p) | - { - id: id(rel), - type: type(rel), - start_node: id(startNode(rel)), - end_node: id(endNode(rel)) - } - ] AS edges - """ - ) - ) - - def get_sirt5_to_nfe2l2_literature_query(self, tx: Neo4jTx): - return list( - tx.run( - """ - MATCH (g:db_Literature:Gene {name:'SIRT5'})-[:HAS_TAXONOMY]->(t:Taxonomy {eid:'9606'}), - (t)<-[:HAS_TAXONOMY]-(g2:db_Literature:Gene {name:'NFE2L2'}) - MATCH p=allShortestPaths((g)-[*]-(g2)) - WHERE all(rel IN relationships(p) WHERE type(rel) = 'ASSOCIATED') - RETURN [ - node IN nodes(p) | - { - id: id(node), - name: node.name, - display_name: node.displayName, - labels: labels(node) - } - ] as nodes, [ - rel IN relationships(p) | - { - id: id(rel), - type: type(rel), - start_node: id(startNode(rel)), - end_node: id(endNode(rel)) - } - ] AS edges - """ - ) - ) - - def get_ctnnb1_to_diarrhea_literature_query(self, tx: Neo4jTx): - return list( - tx.run( - """ - MATCH (g:db_Literature:Gene {name:'CTNNB1'})-[:HAS_TAXONOMY]->(t:Taxonomy {eid:'9606'}) - MATCH (d:Disease {name:'Diarrhea'}) - MATCH p=allShortestPaths((g)-[*]-(d)) - RETURN [ - node IN nodes(p) | - { - id: id(node), - name: node.name, - display_name: node.displayName, - labels: labels(node) - } - ] as nodes, [ - rel IN relationships(p) | - { - id: id(rel), - type: type(rel), - start_node: id(startNode(rel)), - end_node: id(endNode(rel)) - } - ] AS edges - """ - ) - ) - - def get_two_pathways_biocyc_query(self, tx: Neo4jTx): - return list( - tx.run( - """ - MATCH (p1:Pathway {biocyc_id:'PWY-6151'}), (p2:Pathway {biocyc_id: 'PWY-6123'}) - WITH p1, p2 - MATCH p=allShortestPaths((p1)-[*]-(p2)) - WHERE NONE (r IN relationships(p) WHERE type(r) IN ['TYPE_OF']) - AND NONE (n IN nodes(p) WHERE n.biocyc_id IN ['WATER','PROTON','Pi','ATP', 'ADP']) - RETURN [ - node IN nodes(p) | - { - id: id(node), - name: node.name, - display_name: node.displayName, - labels: labels(node) - } - ] as nodes, [ - rel IN relationships(p) | - { - id: id(rel), - type: type(rel), - start_node: id(startNode(rel)), - end_node: id(endNode(rel)) - } - ] AS edges - """ - ) - ) - - def get_glycolisis_regulon_query(self, tx: Neo4jTx): - return list( - tx.run( - """ - MATCH path= - (:Pathway {biocyc_id: 'GLYCOLYSIS'})--(r:Reaction)-- - (e:EnzReaction:db_EcoCyc)-[:CATALYZES]- - (:Protein)<-[:COMPONENT_OF*0..]- - (:Protein)-[:ENCODES]- - (:Gene:db_EcoCyc)-[:IS]- - (:db_NCBI)-[:IS]- - (g:db_RegulonDB) - WITH path, g, r - MATCH p1=(left)-[:CONSUMED_BY]->(r)-[:PRODUCES]->(right) - OPTIONAL MATCH p2=(g)--(:TranscriptionUnit)--(:Promoter)-[:REGULATES]-(rg:Regulon) - RETURN [ - node IN nodes(path) + nodes(p1) + nodes(p2) | - { - id: id(node), - name: node.name, - display_name: node.displayName, - labels: labels(node) - } - ] as nodes, [ - rel IN relationships(path) + relationships(p1) + relationships(p2) | - { - id: id(rel), - type: type(rel), - start_node: id(startNode(rel)), - end_node: id(endNode(rel)) - } - ] AS edges - """ - ) - ) diff --git a/appserver/neo4japp/services/search.py b/appserver/neo4japp/services/search.py index 8e5eca05cd..ca3d64a978 100644 --- a/appserver/neo4japp/services/search.py +++ b/appserver/neo4japp/services/search.py @@ -1,484 +1,605 @@ -import re +from arango.client import ArangoClient from typing import Any, Dict, List from flask import current_app -from neo4j import Record as N4jRecord, Transaction as Neo4jTx from neo4japp.constants import LogEventType -from neo4japp.data_transfer_objects import FTSQueryRecord, FTSResult, FTSTaxonomyRecord -from neo4japp.exceptions import ServerWarning +from neo4japp.data_transfer_objects import FTSQueryRecord, FTSTaxonomyRecord from neo4japp.models import GraphNode -from neo4japp.services.common import GraphBaseDao -from neo4japp.utils import snake_to_camel_dict, normalize_str, EventLog -from neo4japp.utils.globals import warn +from neo4japp.services.arangodb import execute_arango_query, get_db +from neo4japp.utils.string import snake_to_camel_dict, normalize_str from neo4japp.utils.labels import ( get_first_known_label_from_list, - get_known_domain_labels_from_list, + get_known_domain_labels_from_data_source, ) +from neo4japp.utils.logger import EventLog + + +def _get_collection_filters(domains: List[str]): + domains_list = [ + 'chebi', + 'go', + 'mesh', + 'ncbi', + # Include "taxonomy" here in case no domains were selected by the user. It has no use in + # the for loop below. + 'taxonomy', + 'uniprot', + ] + + result_domains = [] + + # NOTE: If the user supplies an domain that *isn't* in these maps, + # they may get unexpected results! We essentially silently ignore any + # unexpected values in favor of getting *some* results back. + + for domain in domains: + normalized_domain = normalize_str(domain) + if normalized_domain in domains_list: + result_domains.append(normalized_domain) + + # Add taxonomy if ncbi is included, since in the neo4j schema taxonomy nodes were part + # of ncbi. + if normalized_domain == 'ncbi': + result_domains.append('taxonomy') + else: + current_app.logger.info( + f'Found an unexpected value in `domains` list: {domain}', + extra=EventLog( + event_type=LogEventType.VISUALIZER_SEARCH.value + ).to_dict(), + ) + # If the domain list provided by the user is empty, then assume ALL domains/entities should be + # used. + result_domains = result_domains if len(result_domains) > 0 else domains_list + + return 'FILTER ' + ' OR '.join( + [f'IS_SAME_COLLECTION("{domain}", entity._id)' for domain in result_domains] + ) + + +def _get_labels_filter(entities: List[str]): + entities_map = { + 'biologicalprocess': 'BiologicalProcess', + 'cellularcomponent': 'CellularComponent', + 'chemical': 'Chemical', + 'disease': 'Disease', + 'gene': 'Gene', + 'molecularfunction': 'MolecularFunction', + 'protein': 'Protein', + 'taxonomy': 'Taxonomy', + } + result_entities = [] + + # NOTE: If the user supplies an entity that *isn't* in these maps, + # they may get unexpected results! We essentially silently ignore any + # unexpected values in favor of getting *some* results back. + + for entity in entities: + normalized_entity = normalize_str(entity) + if normalized_entity in entities_map: + result_entities.append(entities_map[normalized_entity]) + else: + current_app.logger.info( + f'Found an unexpected value in `entities` list: {entity}', + extra=EventLog( + event_type=LogEventType.VISUALIZER_SEARCH.value + ).to_dict(), + ) -class SearchService(GraphBaseDao): - def __init__(self, graph): - super().__init__(graph) + # If the entity list provided by the user is empty, then assume ALL domains/entities should be + # used. + return result_entities if len(result_entities) > 0 else list(entities_map.values()) - def _fulltext_query_sanitizer(self, query): - """Ensures the query is syntactically correct - and safe from cypher injections for Neo4j full - text search. - Special characters in Lucene - + - && || ! ( ) { } [ ] ^ " ~ * ? : \\ / - See docs: http://lucene.apache.org/ for more information - We will escape these characters with a forward ( \\ ) slash - """ - lucene_chars = re.compile(r'([\+\-\&\|!\(\)\{\}\[\]\^"~\*\?:\/])') +def _get_organism_match_string(organism: str): + return f""" + LET t = FIRST( + FOR tax IN OUTBOUND entity has_taxonomy + OPTIONS {{ vertexCollections: ["taxonomy"]}} + {'FILTER tax.eid == @organism' if organism else ''} + RETURN tax + ) + {'FILTER t != null' if organism else ''} + """ - def escape(m): - """Adds an escape '\' to reserved Lucene characters""" - char = m.group(1) - return r'\{c}'.format(c=char) - query = re.sub(lucene_chars, escape, query).strip() - if not query: - return query +def _get_organisms_match_string(organisms: List[str]): + return f""" + LET t = FIRST( + FOR tax IN OUTBOUND entity has_taxonomy + OPTIONS {{ vertexCollections: ["taxonomy"]}} + {'FILTER tax.eid IN @organisms' if organisms else ''} + RETURN tax + ) + {'FILTER t != null' if organisms else ''} + """ - # Wrap the query in backticks, doubling existing backticks. This effectively escapes the - # query input. - return f"`{query.replace('`', '``')}`" - def predictive_search(self, term: str, limit: int = 5): - """Performs a predictive search; not necessarily a prefix based autocomplete. - # TODO: FIX the search algorithm to perform a proper prefix based autocomplete - """ - raise NotImplementedError - - def _visualizer_search_result_formatter( - self, result: List[N4jRecord] - ) -> List[FTSQueryRecord]: - formatted_results: List[FTSQueryRecord] = [] - for record in result: - entity = record['entity'] - literature_id = record['literature_id'] - taxonomy_id = record.get('taxonomy_id', '') - taxonomy_name = record.get('taxonomy_name', '') - go_class = record.get('go_class', '') - - try: - entity_label = get_first_known_label_from_list(entity["labels"]) - except ValueError as e: - message = ( - f'Node with ID {entity["id"]} had an unexpected list of labels: ' - + f'{entity["labels"]}' - ) - current_app.logger.warning( - message, - extra=EventLog( - event_type=LogEventType.KNOWLEDGE_GRAPH.value - ).to_dict(), - ) - warn(ServerWarning(message=message), cause=e) - entity_label = 'Unknown' - - graph_node = GraphNode( - # When it exists, we use the literature node ID instead so the node can be expanded - # in the visualizer - id=literature_id or entity['id'], - label=entity_label, - sub_labels=entity['labels'], - domain_labels=( - get_known_domain_labels_from_list(entity['labels']) - + (['Literature'] if literature_id is not None else []) - ), - display_name=entity['name'], - data=snake_to_camel_dict(entity['data'], {}), - url=None, - ) - formatted_results.append( - FTSTaxonomyRecord( - node=graph_node, - taxonomy_id=taxonomy_id if taxonomy_id is not None else 'N/A', - taxonomy_name=taxonomy_name if taxonomy_name is not None else 'N/A', - go_class=go_class if go_class is not None else 'N/A', - ) - ) - return formatted_results - - def sanitize_filter( - self, - domains: List[str], - entities: List[str], - ): - domains_map = { - 'chebi': 'n:db_CHEBI', - 'go': 'n:db_GO', - 'mesh': 'n:db_MESH', - 'ncbi': 'n:db_NCBI', - 'uniprot': 'n:db_UniProt', - } - entities_map = { - 'biologicalprocess': 'n:BiologicalProcess', - 'cellularcomponent': 'n:CellularComponent', - 'chemical': 'n:Chemical', - 'disease': 'n:Disease', - 'gene': 'n:Gene', - 'molecularfunction': 'n:MolecularFunction', - 'protein': 'n:Protein', - 'taxonomy': 'n:Taxonomy', - } - result_domains = [] - result_entities = [] - - # NOTE: If the user supplies an entity/domain that *isn't* in these maps, - # they may get unexpected results! We essentially silently ignore any - # unexpected values in favor of getting *some* results back. - - for domain in domains: - normalized_domain = normalize_str(domain) - if normalized_domain in domains_map: - result_domains.append(domains_map[normalized_domain]) - else: - current_app.logger.info( - f'Found an unexpected value in `domains` list: {domain}', - extra=EventLog( - event_type=LogEventType.VISUALIZER_SEARCH.value - ).to_dict(), - ) +def _get_labels_match_string(types: List[str]): + return 'FILTER LENGTH(INTERSECTION(@types, entity.labels)) > 0' if types else '' - for entity in entities: - normalized_entity = normalize_str(entity) - if normalized_entity in entities_map: - result_entities.append(entities_map[normalized_entity]) - else: - current_app.logger.info( - f'Found an unexpected value in `entities` list: {entity}', - extra=EventLog( - event_type=LogEventType.VISUALIZER_SEARCH.value - ).to_dict(), - ) - # If the domain list or entity list provided by the user is empty, then assume ALL - # domains/entities should be used. - result_domains = ( - result_domains if len(result_domains) > 0 else list(domains_map.values()) +def _get_literature_match_string(domains: List[str]): + literature_in_selected_domains = any( + [normalize_str(domain) == 'literature' for domain in domains] + ) + + base_search_string = """ + LET literature_id = FIRST( + FOR lit_doc IN INBOUND entity mapped_to + RETURN lit_doc._id ) - result_entities = ( - result_entities if len(result_entities) > 0 else list(entities_map.values()) + """ + + # Return nodes in one or more domains, with mapped Literature data (if it exists) + if domains == [] or (len(domains) > 1 and literature_in_selected_domains): + return base_search_string + # Return nodes in one or more domains, and *exclude* Literature data from the result + elif not literature_in_selected_domains: + return "LET literature_id = null" + # Return only nodes mapped to Literature nodes + else: + return ( + base_search_string + + """ + \nFILTER literature_id != null + """ ) - return f'({" OR ".join(result_domains)}) AND ({" OR ".join(result_entities)})' - - def visualizer_search( - self, - term: str, - organism: str, - domains: List[str], - entities: List[str], - page: int = 1, - limit: int = 10, - ) -> FTSResult: - if not term: - return FTSResult(term, [], 0, page, limit) - - if organism: - organism_match_string = ( - 'MATCH (n)-[:HAS_TAXONOMY]-(t:Taxonomy {eid: $organism})' - ) - else: - organism_match_string = 'OPTIONAL MATCH (n)-[:HAS_TAXONOMY]-(t:Taxonomy)' - - result_filters = self.sanitize_filter(domains, entities) - literature_in_selected_domains = any( - [normalize_str(domain) == 'literature' for domain in domains] +def _visualizer_search_result_formatter(result: dict) -> dict: + formatted_results: List[FTSQueryRecord] = [] + for record in result['rows']: + entity = record['entity'] + literature_id = record['literature_id'] + taxonomy_id = record.get('taxonomy_id', '') + taxonomy_name = record.get('taxonomy_name', '') + go_class = record.get('go_class', '') + + try: + entity_label = get_first_known_label_from_list(entity["labels"]) + except ValueError: + current_app.logger.warning( + f'Node with ID {entity["id"]} had an unexpected list of labels: ' + + f'{entity["labels"]}', + extra=EventLog(event_type=LogEventType.KNOWLEDGE_GRAPH.value).to_dict(), + ) + entity_label = 'Unknown' + + graph_node = GraphNode( + # When it exists, we use the literature node ID instead so the node can be expanded + # in the visualizer + id=literature_id or entity['id'], + label=entity_label, + sub_labels=entity['labels'], + domain_labels=( + get_known_domain_labels_from_data_source(entity['data']['data_source']) + + (['Literature'] if literature_id is not None else []) + ), + display_name=entity['name'], + data=snake_to_camel_dict(entity['data'], {}), + url=None, ) - # Return nodes in one or more domains, with mapped Literature data (if it exists) - if domains == [] or (len(domains) > 1 and literature_in_selected_domains): - literature_match_string = """ - WITH n, t, n.namespace as go_class - OPTIONAL MATCH (n)<-[:MAPPED_TO]-(m:LiteratureEntity) - """ - # Return nodes in one or more domains, and *exclude* Literature data from the result - elif not literature_in_selected_domains: - literature_match_string = """ - WITH n, t, n.namespace as go_class, NULL as m - """ - # Return only nodes mapped to Literature nodes - else: - literature_match_string = """ - WITH n, t, n.namespace as go_class - MATCH (n)<-[:MAPPED_TO]-(m:LiteratureEntity) - """ - - result = self.graph.read_transaction( - self.visualizer_search_query, - term, - organism, - (page - 1) * limit, - limit, - result_filters, - organism_match_string, - literature_match_string, + formatted_results.append( + FTSTaxonomyRecord( + node=graph_node, + taxonomy_id=taxonomy_id if taxonomy_id is not None else 'N/A', + taxonomy_name=taxonomy_name if taxonomy_name is not None else 'N/A', + go_class=go_class if go_class is not None else 'N/A', + ) ) - - records = self._visualizer_search_result_formatter(result) - - # Wow, this seems barbarian. Fetch 1000 results just to count them? - # TODO: Counting should not fetch nor pre-process results! - total_results = len( - self.graph.read_transaction( - self.visualizer_search_query, - term, - organism, - 0, - 1001, - result_filters, - organism_match_string, - literature_match_string, + return {'rows': formatted_results, 'count': result['count']} + + +def get_organisms(arango_client: ArangoClient, term: str, limit: int) -> Dict[str, Any]: + nodes = execute_arango_query( + db=get_db(arango_client), query=get_organisms_query(), term=term, limit=limit + ) + return { + 'limit': limit, + 'nodes': nodes, + 'query': term, + 'total': len(nodes), + } + + +def get_organism_with_tax_id(arango_client: ArangoClient, tax_id: str): + result = execute_arango_query( + db=get_db(arango_client), query=get_organism_with_tax_id_query(), tax_id=tax_id + ) + return result[0] if len(result) else None + + +def visualizer_search( + arango_client: ArangoClient, + term: str, + organism: str, + domains: List[str], + entities: List[str], + page: int = 1, + limit: int = 10, +) -> dict: + collection_filters = _get_collection_filters(domains) + types = _get_labels_filter(entities) + literature_match_string = _get_literature_match_string(domains) + organism_match_string = _get_organism_match_string(organism) + query = visualizer_search_query( + collection_filters, + organism_match_string, + literature_match_string, + organism_required=True if organism else False, + literature_required=( + len(domains) == 1 + and any([normalize_str(domain) == 'literature' for domain in domains]) + ), + ) + query_args = { + 'term': term, + 'types': types, + 'skip': (page - 1) * limit, + 'limit': limit, + } + + # The call to arango needs to exclude the "organism" parameter if it isn't present in the query. + if organism: + query_args['organism'] = organism + + result = execute_arango_query(db=get_db(arango_client), query=query, **query_args)[ + 0 + ] + + return _visualizer_search_result_formatter(result) + + +def get_synonyms( + arango_client: ArangoClient, + search_term: str, + organisms: List[str], + types: List[str], + skip: int, + limit: int, +) -> List[dict]: + labels_match_str = _get_labels_match_string(types) + organism_match_string = _get_organisms_match_string(organisms) + + query_args = { + 'search_term': search_term, + 'types': types, + 'skip': skip, + 'limit': limit, + } + + # The call to arango needs to exclude the "organism" parameter if it isn't present in the query. + if organisms: + query_args['organisms'] = organisms + + results = execute_arango_query( + db=get_db(arango_client), + query=get_synonyms_query(labels_match_str, organism_match_string), + **query_args, + ) + + synonym_data = [] + for row in results: + try: + type = get_first_known_label_from_list(row['entity_labels']) + except ValueError: + type = 'Unknown' + current_app.logger.warning( + f"Node had an unexpected list of labels: {row['entity_labels']}", + extra=EventLog(event_type=LogEventType.KNOWLEDGE_GRAPH.value).to_dict(), ) + + synonym_data.append( + { + 'type': type, + 'name': row['entity_name'], + 'organism': row['taxonomy_name'], + 'synonyms': row['synonyms'], + } ) + return synonym_data + + +def get_synonyms_count( + arango_client: ArangoClient, + search_term: str, + organisms: List[str], + types: List[str], +) -> int: + labels_match_str = _get_labels_match_string(types) + organism_match_string = _get_organisms_match_string(organisms) + + query_args = { + 'search_term': search_term, + 'types': types, + } + + # The call to arango needs to exclude the "organism" parameter if it isn't present in the query. + if organisms: + query_args['organisms'] = organisms + + return execute_arango_query( + db=get_db(arango_client), + query=get_synonyms_count_query(labels_match_str, organism_match_string), + **query_args, + )[0] + + +def get_organisms_query() -> str: + return """ + FOR n IN synonym_ft + SEARCH PHRASE(n.name, @term, 'text_ll') + SORT BM25(n) DESC + FOR t IN INBOUND n has_synonym OPTIONS { vertexCollections: ["taxonomy" ] } + LIMIT @limit + RETURN { + tax_id: t.eid, + organism_name: t.name, + synonym: n.name + } + """ - return FTSResult(term, records, total_results, page, limit) - def get_organism_with_tax_id(self, tax_id: str): - result = self.graph.read_transaction( - self.get_organism_with_tax_id_query, tax_id - ) - return result[0] if len(result) else None - - def get_organisms(self, term: str, limit: int) -> Dict[str, Any]: - query_term = self._fulltext_query_sanitizer(term) - if not query_term: - return { - 'limit': limit, - 'nodes': [], - 'query': query_term, - 'total': 0, +def get_organism_with_tax_id_query() -> str: + return """ + FOR t IN taxonomy + FILTER t.eid == @tax_id + RETURN { + tax_id: t.eid, + organism_name: t.name, + synonym: t.name } + """ + + +def visualizer_search_query( + arango_col_filters: str, + organism_match_string: str, + literature_match_filter: str, + organism_required: bool, + literature_required: bool, +) -> str: + """Need to collect synonyms because a gene node can have multiple + synonyms. So it is possible to send duplicate internal node ids to + a later query.""" + + # The purpose of these dynamically chosen query strings is to prevent extra traversals from + # being calculated. If organism or literature matching is not strictly required for a match, + # we wait to do the matching until the last, paginated slice of data is acquired. This can mean + # the difference between performing a traversal on potentially hundreds or thousands of + # relationships, to instead just a handful. + + # It is especially useful when we need to find neither a literature nor an organism match. This + # also has the benefit of allowing us to return the total count of results as well, rather than + # do so in a separate query. + both_required_str = f""" + LET filtered_results = ( + FOR result IN unfiltered_results + LET entity = result.entity.id + {organism_match_string} + {literature_match_filter} + RETURN {{ + 'entity': result.entity, + 'literature_id': literature_id, + 'taxonomy_id': t.eid, + 'taxonomy_name': t.name, + 'go_class': result.go_class + }} + ) + LET final_count = LENGTH(filtered_results) + LET final_result = ( + FOR result in filtered_results + LIMIT @skip, @limit + RETURN {{ + 'entity': result.entity, + 'literature_id': result.literature_id, + 'taxonomy_id': result.taxonomy_id, + 'taxonomy_name': result.taxonomy_name, + 'go_class': result.go_class + }} + ) + """ - terms = query_term.split(' ') - query_term = ' AND '.join(terms) - nodes = self.graph.read_transaction(self.get_organisms_query, query_term, limit) - - return { - 'limit': limit, - 'nodes': nodes, - 'query': query_term, - 'total': len(nodes), - } - - def get_synonyms( - self, - search_term: str, - organisms: List[str], - types: List[str], - page: int, - limit: int, - ) -> List[dict]: - results = self.graph.read_transaction( - self.get_synonyms_query, search_term, organisms, types, page, limit + literature_required_str = f""" + LET filtered_results = ( + FOR result IN unfiltered_results + LET entity = result.entity.id + {literature_match_filter} + RETURN {{ + 'entity': result.entity, + 'literature_id': literature_id, + 'go_class': result.go_class + }} ) - synonym_data = [] - - for row in results: - try: - type = get_first_known_label_from_list(row['entity_labels']) - except ValueError as e: - type = 'Unknown' - message = ( - f"Node had an unexpected list of labels: {row['entity_labels']}" - ) - current_app.logger.warning( - message, - extra=EventLog( - event_type=LogEventType.KNOWLEDGE_GRAPH.value - ).to_dict(), - ) - warn(ServerWarning(message=message), cause=e) - - synonym_data.append( - { - 'type': type, - 'name': row['entity_name'], - 'organism': row['taxonomy_name'], - 'synonyms': row['synonyms'], - } - ) - return synonym_data + LET final_count = LENGTH(filtered_results) + LET final_result = ( + FOR result IN filtered_results + // Limit BEFORE the organism matching to prevent unnecessary traversals + LIMIT @skip, @limit + LET entity = result.entity.id + {organism_match_string} + RETURN {{ + 'entity': result.entity, + 'literature_id': result.literature_id, + 'taxonomy_id': t.eid, + 'taxonomy_name': t.name, + 'go_class': result.go_class + }} + ) + """ - def get_synonyms_count( - self, search_term: str, organisms: List[str], types: List[str] - ) -> List[dict]: - results = self.graph.read_transaction( - self.get_synonyms_count_query, search_term, organisms, types + organism_required_str = f""" + LET filtered_results = ( + FOR result IN unfiltered_results + LET entity = result.entity.id + {organism_match_string} + RETURN {{ + 'entity': result.entity, + 'taxonomy_id': t.eid, + 'taxonomy_name': t.name, + 'go_class': result.go_class + }} ) - return results[0]['count'] - - def visualizer_search_query( - self, - tx: Neo4jTx, - search_term: str, - organism: str, - amount: int, - limit: int, - result_filters: str, - organism_match_string: str, - literature_match_string: str, - ) -> List[N4jRecord]: - """Need to collect synonyms because a gene node can have multiple - synonyms. So it is possible to send duplicate internal node ids to - a later query.""" - return [ - record - for record in tx.run( - f""" - CALL db.index.fulltext.queryNodes("synonymIdx", $search_term) - YIELD node - MATCH (node)-[]-(n) - WHERE {result_filters} - WITH n + LET final_count = LENGTH(filtered_results) + LET final_result = ( + FOR result IN filtered_results + // Limit BEFORE the literature matching to prevent unnecessary traversals + LIMIT @skip, @limit + LET entity = result.entity.id + {literature_match_filter} + RETURN {{ + 'entity': result.entity, + 'literature_id': literature_id, + 'taxonomy_id': result.taxonomy_id, + 'taxonomy_name': result.taxonomy_name, + 'go_class': result.go_class + }} + ) + """ + + neither_required_str = f""" + LET final_count = LENGTH(unfiltered_results) + LET final_result = ( + FOR result IN unfiltered_results + // Limit BEFORE matching to prevent unnecessary traversals + LIMIT @skip, @limit + LET entity = result.entity.id {organism_match_string} - {literature_match_string} - WITH - {{ - id: id(n), - name: n.name, - labels: labels(n), - data: {{ - eid: n.eid, - data_source: n.data_source + {literature_match_filter} + RETURN {{ + 'entity': result.entity, + 'literature_id': literature_id, + 'taxonomy_id': t.eid, + 'taxonomy_name': t.name, + 'go_class': result.go_class + }} + ) + """ + + if organism_required and literature_required: + pagination_query_str = both_required_str + elif organism_required: + pagination_query_str = organism_required_str + elif literature_required: + pagination_query_str = literature_required_str + else: + pagination_query_str = neither_required_str + + return f""" + LET unfiltered_results = ( + FOR s IN synonym_ft + SEARCH + PHRASE(s.name, @term, 'text_ll') OR + PHRASE(s.name, {{STARTS_WITH: TOKENS(@term, "text_ll")[0]}}, 'text_ll') + FOR entity IN INBOUND s has_synonym + LET go_class = entity.namespace + // Need to manually add "Taxonomy" to the label list since taxonomy docs don't + // have labels as they would be redundant. + LET labels = UNION( + entity.labels, + IS_SAME_COLLECTION("taxonomy", entity._id) ? ["Taxonomy"] : [] + ) + {arango_col_filters} + FILTER LENGTH(INTERSECTION(@types, labels)) > 0 OR LENGTH(@types) == 0 + COLLECT + score = BM25(s), + id = entity._id, + name = entity.name, + entity_labels = labels, + eid = entity.eid, + data_source = entity.data_source, + entity_go_class = go_class + SORT score DESC, name ASC + RETURN DISTINCT {{ + 'entity': {{ + 'id': id, + 'name': name, + 'labels': entity_labels, + 'data': {{ + 'eid': eid, + 'data_source': data_source + }} + }}, + 'go_class': entity_go_class }} - }} as entity, id(m) as literature_id, t, go_class - RETURN DISTINCT entity, literature_id, t.eid AS taxonomy_id, - t.name AS taxonomy_name, go_class AS go_class - SKIP $amount - LIMIT $limit - """, - search_term=f'{search_term} OR {search_term}*', - organism=organism, - amount=amount, - limit=limit, - ) - # IMPORTANT: We do NOT use `data` here, because if we did we would lose some metadata - # attached to the `node` return value. We need this metadata to deterimine node labels. - # TODO: Should create a helper function that produces key-value pair records for all - # Neo4j driver data types, so we don't have to selectively use `data`. - ] - - def get_organism_with_tax_id_query(self, tx: Neo4jTx, tax_id: str) -> List[Dict]: - return [ - record - for record in tx.run( - """ - MATCH (t:Taxonomy {eid: $tax_id}) - RETURN t.eid AS tax_id, t.name AS organism_name, t.name AS synonym - """, - tax_id=tax_id, - ).data() - ] - - def get_organisms_query(self, tx: Neo4jTx, term: str, limit: int) -> List[Dict]: - return [ - record - for record in tx.run( - """ - CALL db.index.fulltext.queryNodes("synonymIdx", $term) - YIELD node, score - MATCH (node)-[]-(t:Taxonomy) - with t, collect(node.name) as synonyms LIMIT $limit - RETURN t.eid AS tax_id, t.name AS organism_name, synonyms[0] AS synonym - """, - term=term, - limit=limit, - ).data() - ] - - def get_synonyms_query( - self, - tx: Neo4jTx, - search_term: str, - organisms: List[str], - types: List[str], - page: int, - limit: int, - ) -> List[N4jRecord]: - """ - Gets a list of synoynm data for a given search term. Data includes any matched entities, as - well as any linked organism, if there is one. - """ - type_match_str = '' - if len(types): - type_match_str = ' AND any(x IN $types WHERE x IN labels(entity))' - - tax_match_str = 'OPTIONAL MATCH (entity)-[:HAS_TAXONOMY]-(t:Taxonomy)' - if len(organisms): - tax_match_str = ( - 'MATCH (entity)-[:HAS_TAXONOMY]-(t:Taxonomy) WHERE t.eid IN $organisms' - ) - - return list( - tx.run( - f""" - MATCH (synonym:Synonym {{lowercase_name: toLower($search_term)}}) - <-[:HAS_SYNONYM]-(entity) - WHERE NOT 'Protein' IN labels(entity){type_match_str} - MATCH (entity)-[:HAS_SYNONYM]->(synonyms) - WHERE - size(synonyms.name) > 2 OR - any(x IN ['Chemical', 'Compound'] WHERE x IN labels(entity)) - WITH - entity, - synonyms.name AS synonyms, - toLower(entity.name) = toLower($search_term) AS matches_term - ORDER BY size(synonyms) DESC - {tax_match_str} - RETURN - entity.name as entity_name, - t.name as taxonomy_name, - labels(entity) as entity_labels, - collect(DISTINCT synonyms) AS synonyms, - COUNT(DISTINCT synonyms) AS synonym_count, - matches_term - ORDER BY matches_term DESC - SKIP $page - LIMIT $limit - """, - search_term=search_term, - organisms=organisms, - types=types, - page=page, - limit=limit, - ) ) - - def get_synonyms_count_query( - self, tx: Neo4jTx, search_term: str, organisms: List[str], types: List[str] - ) -> List[N4jRecord]: - """ - Gets the count of synoynm data for a given search term. - """ - type_match_str = '' - if len(types): - type_match_str = ' AND all(x IN $types WHERE x IN labels(entity))' - - tax_match_str = '' - if len(organisms): - tax_match_str = ( - 'MATCH (entity)-[:HAS_TAXONOMY]-(t:Taxonomy) WHERE t.eid IN $organisms' - ) - - return tx.run( - f""" - MATCH (synonym:Synonym {{lowercase_name: toLower($search_term)}}) - <-[:HAS_SYNONYM]-(entity) - WHERE NOT 'Protein' IN labels(entity){type_match_str} - MATCH (entity)-[:HAS_SYNONYM]->(synonyms) - WHERE - size(synonyms.name) > 2 OR - any(x IN labels(entity) WHERE x IN ['Chemical', 'Compound']) - {tax_match_str} - RETURN count(DISTINCT entity) AS count - """, - search_term=search_term, - organisms=organisms, - types=types, - ).data() + {pagination_query_str} + RETURN {{ + 'count': final_count, + 'rows': final_result + }} + """ + + +def get_synonyms_query(labels_match_str: str, organism_match_string: str) -> str: + """ + Gets a list of synoynm data for a given search term. Data includes any matched entities, as + well as any linked organism, if there is one. + """ + return f""" + FOR syn IN synonym + FILTER syn.lowercase_name == @search_term + FOR entity IN INBOUND syn has_synonym + FILTER "Protein" NOT IN entity.labels + {labels_match_str} + LET synonyms = ( + FOR syn2 IN OUTBOUND entity has_synonym + // Could use INTERSECTION here? + FILTER + length(syn2.name) > 2 OR + "Chemical" IN entity.labels OR + "Compound" IN entity.labels + RETURN syn2.name + ) + LET matches_term = @search_term == LOWER(entity.name) + LET syn_len = length(synonyms) + {organism_match_string} + SORT matches_term DESC, syn_len DESC + LIMIT @skip, @limit + RETURN DISTINCT {{ + entity_name: entity.name, + taxonomy_name: t.name, + entity_labels: entity.labels, + synonyms: synonyms, + synonym_count: syn_len, + matches_term: matches_term + }} + """ + + +def get_synonyms_count_query(labels_match_str: str, organism_match_string: str) -> str: + """ + Gets the count of synoynm data for a given search term. + """ + return f""" + RETURN LENGTH( + FOR syn IN synonym + FILTER syn.lowercase_name == @search_term + FOR entity IN INBOUND syn has_synonym + FILTER "Protein" NOT IN entity.labels + {labels_match_str} + LET synonyms = ( + FOR syn2 IN OUTBOUND entity has_synonym + // Could use INTERSECTION here? + FILTER + length(syn2.name) > 2 OR + "Chemical" IN entity.labels OR + "Compound" IN entity.labels + RETURN syn2.name + ) + LET matches_term = @search_term == LOWER(entity.name) + LET syn_len = length(synonyms) + {organism_match_string} + RETURN DISTINCT {{ + entity_name: entity.name, + taxonomy_name: t.name, + entity_labels: entity.labels, + synonyms: synonyms, + synonym_count: syn_len, + matches_term: matches_term + }} + ) + """ diff --git a/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/42C.json b/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/42C.json deleted file mode 100644 index 857abbff3c..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/42C.json +++ /dev/null @@ -1,18937 +0,0 @@ -{ - "nodes": [ - { - "id": 90148186, - "label": "ycaN", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90282343, - "label": "ravA-viaA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90351973, - "label": "HypT", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90361194, - "label": "dinQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90303849, - "label": "ycdZp4", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90371437, - "label": "yjhIHG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90263921, - "label": "5S ribosomal RNA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90070348, - "label": "malG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90157388, - "label": "abgB", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90279291, - "label": "arcB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90290558, - "label": "cas3", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90363202, - "label": "ycaN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90255680, - "label": "formate channel FocA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90371393, - "label": "yjgR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90369351, - "label": "ydeM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90253639, - "label": "DNA topoisomerase 1", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90259782, - "label": "putative fimbrial chaperone YehC", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90370378, - "label": "ratA-yfjF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90267979, - "label": "Rac prophage; DNA-binding transcriptional repressor RacR", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372428, - "label": "tsaE-amiB-mutL-miaA-hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90271054, - "label": "CPS-53 (KpLE1) prophage; serotype specific glucosyl transferase", - "databaseLabel": "GeneProduct", - "value": 3, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350925, - "label": "PaaX", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90357074, - "label": "hypBCDE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90290513, - "label": "tff-rpsB-tsf", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90278227, - "label": "gcvR", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90262871, - "label": "intermembrane phospholipid transport system, integral membrane subunit MlaE", - "databaseLabel": "GeneProduct", - "value": 3, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90253657, - "label": "periplasmic trehalase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350939, - "label": "MprA", - "databaseLabel": "TranscriptionFactor", - "value": 5, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90279259, - "label": "pdxB-usg-truA-dedA", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90350943, - "label": "ArgR", - "databaseLabel": "TranscriptionFactor", - "value": 3, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90280286, - "label": "ycaN", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90288420, - "label": "iraP", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90350884, - "label": "PhoP", - "databaseLabel": "TranscriptionFactor", - "value": 6, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90278185, - "label": "adk", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90350899, - "label": "NarL", - "databaseLabel": "TranscriptionFactor", - "value": 4, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90267954, - "label": "p-aminobenzoyl-glutamate hydrolase subunit B", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90351927, - "label": "MlrA", - "databaseLabel": "TranscriptionFactor", - "value": 4, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90255668, - "label": "anti-adaptor protein for σS stabilization", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90174729, - "label": "astB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90368315, - "label": "abgABT-ogt", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90352958, - "label": "yeaGH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90129667, - "label": "mlaE", - "databaseLabel": "Gene", - "value": 3, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372355, - "label": "pstSCA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372352, - "label": "pstS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90137917, - "label": "ybbP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90084668, - "label": "focA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90365190, - "label": "yaeF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372358, - "label": "rph", - "databaseLabel": "TranscriptionUnit", - "value": 8, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90365191, - "label": "rcsF-trmO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90084658, - "label": "iraP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90272014, - "label": "2,3-diaminopropionate ammonia-lyase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90352914, - "label": "cydAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90352915, - "label": "cydAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90365201, - "label": "mltD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90232086, - "label": "DNA-binding transcriptional repressor DeoR", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90360084, - "label": "gcvR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90352917, - "label": "cydAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90180888, - "label": "yfdI", - "databaseLabel": "Gene", - "value": 3, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90260761, - "label": "curved DNA-binding protein", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90275097, - "label": "cydAB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 75950332, - "label": "creD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90365208, - "label": "dnaQ", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90283291, - "label": "rhsB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90351903, - "label": "MqsA", - "databaseLabel": "TranscriptionFactor", - "value": 5, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90291486, - "label": "mstA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90359267, - "label": "paaABCDEFGHIJK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90357216, - "label": "nlpD-rpoS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90069468, - "label": "ihfA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90352101, - "label": "MraZ", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90357230, - "label": "rpoS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351086, - "label": "GadE", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90084817, - "label": "mutL", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90255857, - "label": "manno(fructo)kinase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90365426, - "label": "rhsD-ybbC-ylbH-ybbD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90286576, - "label": "yfdGHI", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90359283, - "label": "ilvLXG_1G_2MEDA", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 81097799, - "label": "cysI", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90365425, - "label": "ybbAP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90216947, - "label": "aldehyde dehydrogenase A", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90069451, - "label": "hfq", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351095, - "label": "GntR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90370552, - "label": "insC-4CD-4D-4-ygeONM", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351101, - "label": "IdnR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90273278, - "label": "conserved protein YjiT", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90278336, - "label": "dnaQ", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90290626, - "label": "insCD-4C-4D-4-ygeONM", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90256834, - "label": "1-deoxy-D-xylulose 5-phosphate:thiol sulfurtransferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90174968, - "label": "yeaG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351050, - "label": "CdaR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90353099, - "label": "rfaD-waaFCL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90092023, - "label": "panB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90255823, - "label": "DNA mismatch repair protein MutL", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90295758, - "label": "dinQp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90233296, - "label": "DNA-binding transcriptional dual regulator Fis", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90359248, - "label": "garPLRK-rnpB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90271186, - "label": "CPZ-55 prophage; uncharacterized protein YffS", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90277335, - "label": "nlpD-rpoS", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90272214, - "label": "protein YqiK", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372574, - "label": "cbpAM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90102241, - "label": "alsA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351069, - "label": "AlsR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90260897, - "label": "putative c-di-GMP phosphodiesterase PdeK", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90088862, - "label": "rnt", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90157470, - "label": "racR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90363296, - "label": "dgcP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90365344, - "label": "iraP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351014, - "label": "NagC", - "databaseLabel": "TranscriptionFactor", - "value": 7, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90277284, - "label": "focA-pflB", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90359205, - "label": "cydAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90281385, - "label": "rrsH-ileV-alaV-rrlH-rrfH", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90370472, - "label": "cas3", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90281386, - "label": "rrsG-gltW-rrlG-rrfG", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90371502, - "label": "yjjI", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90276271, - "label": "aldA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90352050, - "label": "BasR", - "databaseLabel": "TranscriptionFactor", - "value": 4, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90277298, - "label": "csgDEFG", - "databaseLabel": "Operon", - "value": 4, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90135947, - "label": "isrC", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90371508, - "label": "slt", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90352052, - "label": "RcdA", - "databaseLabel": "TranscriptionFactor", - "value": 4, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90277304, - "label": "treA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90184122, - "label": "yffS", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372536, - "label": "glgAP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90273211, - "label": "KpLE2 phage-like element; putative DNA-binding transcriptional regulator YjhI", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90355129, - "label": "cysJIH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90104197, - "label": "yehQ", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90279357, - "label": "artPIQM", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90232254, - "label": "membrane-bound lytic murein transglycosylase D", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90269118, - "label": "putative anaerobic sulfatase maturation enzyme", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90195332, - "label": "zapE", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90081723, - "label": "gcvR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90290564, - "label": "mlaFEDCB", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90290566, - "label": "asnC-mioC-mnmG-rsmG", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90368394, - "label": "racR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90291595, - "label": "rrsGp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90350984, - "label": "DnaA", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90352009, - "label": "FliZ", - "databaseLabel": "TranscriptionFactor", - "value": 4, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90262925, - "label": "RNA chaperone ProQ", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90370446, - "label": "ygaZH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371470, - "label": "yjiT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90273164, - "label": "DUF853 domain-containing protein YjgR", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90288529, - "label": "hrpB", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90129837, - "label": "proQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90232212, - "label": "DNA polymerase III subunit ε", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90363287, - "label": "ydgC", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90081707, - "label": "xapR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90203542, - "label": "yjiT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90370453, - "label": "mltB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90072486, - "label": "pykF", - "databaseLabel": "Gene", - "value": 4, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90107302, - "label": "yaeF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90290585, - "label": "ilvLXG_1G_2MEDA", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372507, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90081698, - "label": "pdeA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90279324, - "label": "hyfABCDEFGHIJR-focB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90276255, - "label": "pykF", - "databaseLabel": "Operon", - "value": 5, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90271840, - "label": "L-valine exporter subunit YgaZ", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350688, - "label": "CRP", - "databaseLabel": "TranscriptionFactor", - "value": 30, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90356833, - "label": "rplJL-rpoBC", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90282082, - "label": "yjjI", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90282084, - "label": "slt", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90215530, - "label": "yejG5'", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90271853, - "label": "membrane-bound lytic murein transglycosylase B", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90262637, - "label": "arginine:agmatine antiporter", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90291308, - "label": "rfe-wzzE-wecBC-rffGHC-wecE-wzxE-rffT-wzyE-rffM", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90259566, - "label": "D-allose ABC transporter ATP binding subunit", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372205, - "label": "iraP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90274928, - "label": "xapR", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90356849, - "label": "tff-rpsB-tsf", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356852, - "label": "rpsJ-rplCDWB-rpsS-rplV-rpsC-rplP-rpmC-rpsQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90310772, - "label": "yibBp6", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90274936, - "label": "astCADBE", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90288248, - "label": "ybiO", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90350712, - "label": "Nac", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90350718, - "label": "H-NS", - "databaseLabel": "TranscriptionFactor", - "value": 11, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90287229, - "label": "ymfED", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372222, - "label": "rne", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90176578, - "label": "mepS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90354813, - "label": "malEFG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90291266, - "label": "dgcP", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90371142, - "label": "rfe-wzzE-wecBC-rffGHC-wecE-wzxE-rffT-wzyE-rffM", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350663, - "label": "CpxR", - "databaseLabel": "TranscriptionFactor", - "value": 5, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90253382, - "label": "30S ribosomal subunit protein S2", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90173560, - "label": "ydeM", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90264649, - "label": "erythronate-4-phosphate dehydrogenase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90267720, - "label": "DUF2770 domain-containing protein YceO", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90356814, - "label": "rfaD-waaFCL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90073203, - "label": "rpoC", - "databaseLabel": "Gene", - "value": 5, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90356819, - "label": "rnt-lhr", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90256467, - "label": "periplasmic protein GltF", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372182, - "label": "mutL-miaA-hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372186, - "label": "mutL-miaA-hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90257498, - "label": "3-methyl-2-oxobutanoate hydroxymethyltransferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350687, - "label": "FNR", - "databaseLabel": "TranscriptionFactor", - "value": 12, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90356831, - "label": "rph-pyrE", - "databaseLabel": "TranscriptionUnit", - "value": 16, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90291295, - "label": "pdeK", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90176609, - "label": "yfaV", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90356771, - "label": "nlpD-rpoS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90070043, - "label": "rpoS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90359847, - "label": "topA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351652, - "label": "NsrR", - "databaseLabel": "TranscriptionFactor", - "value": 5, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90359850, - "label": "topA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356776, - "label": "panBC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90154004, - "label": "ymfE", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90071057, - "label": "nagA", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90359858, - "label": "topA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90267696, - "label": "putative inner membrane protein", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90188850, - "label": "ygeN", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90090509, - "label": "mfd", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90188854, - "label": "ygeO", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90356788, - "label": "potFGHI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90370100, - "label": "yfaVU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350645, - "label": "Fis", - "databaseLabel": "TranscriptionFactor", - "value": 15, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90359861, - "label": "topA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90355770, - "label": "hypABCDE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90282041, - "label": "yjiT", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90274872, - "label": "YejG5'", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90371131, - "label": "ravA-viaA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90253371, - "label": "RNA polymerase subunit β'", - "databaseLabel": "GeneProduct", - "value": 5, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350648, - "label": "Rob", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90371128, - "label": "mnmG-rsmG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90256442, - "label": "outer membrane lipoprotein RcsF", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90370051, - "label": "preTA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90253312, - "label": "truncated RNase PH", - "databaseLabel": "GeneProduct", - "value": 8, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372103, - "label": "miaA-hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90129466, - "label": "nudL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90253319, - "label": "50S ribosomal subunit protein L4", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372104, - "label": "miaA-hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90354697, - "label": "dusB-fis", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372105, - "label": "hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372110, - "label": "nagC", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90246156, - "label": "maltose ABC transporter membrane subunit MalG", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372108, - "label": "hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90268689, - "label": "putative ring 1,2-epoxyphenylacetyl-CoA isomerase (oxepin-CoA forming)", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90122286, - "label": "pdeK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90282002, - "label": "yjhIHG", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90203156, - "label": "yjgR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90370071, - "label": "mepS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372116, - "label": "nagC", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90312725, - "label": "yejGp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90359834, - "label": "topA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90176550, - "label": "preT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90277915, - "label": "hns", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90370078, - "label": "yejG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90198045, - "label": "yhhZ", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90071075, - "label": "nagC", - "databaseLabel": "Gene", - "value": 3, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90198046, - "label": "yrhA", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90292449, - "label": "hnsp", - "databaseLabel": "Promoter", - "value": 2, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90275043, - "label": "mfd", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90356961, - "label": "treA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372321, - "label": "artPIQM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90279140, - "label": "alsRBACE", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372324, - "label": "artPIQM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372325, - "label": "artPIQM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90255590, - "label": "putative hydrolase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350826, - "label": "MarA", - "databaseLabel": "TranscriptionFactor", - "value": 4, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90084567, - "label": "ycaC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372334, - "label": "creD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90303725, - "label": "ycaKp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90371310, - "label": "adiC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90369263, - "label": "rhsE-ydcD", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90264817, - "label": "flagellar biosynthesis protein FliJ", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90303728, - "label": "ycaKp4", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90260725, - "label": "DUF3029 domain-containing protein YjjI", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90294516, - "label": "mprAp", - "databaseLabel": "Promoter", - "value": 5, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90091723, - "label": "potF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90262774, - "label": "putative NUDIX hydrolase with low 3-phosphohydroxypyruvate phosphatase activity", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90271993, - "label": "protein YgeN", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350843, - "label": "GadX", - "databaseLabel": "TranscriptionFactor", - "value": 4, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90275064, - "label": "topA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 65393276, - "label": "araG", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372350, - "label": "yfaX-rhmD-yfaVU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90279167, - "label": "idnK", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90271998, - "label": "protein YgeO", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90284286, - "label": "yffS", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90370245, - "label": "pdeA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372298, - "label": "kup", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 86007945, - "label": "mltD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90307784, - "label": "nadKp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90272973, - "label": "conserved protein YrhA", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90272972, - "label": "putative endonuclease YhhZ", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350797, - "label": "Lrp", - "databaseLabel": "TranscriptionFactor", - "value": 5, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90280145, - "label": "mak", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90356944, - "label": "cbpAM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90260690, - "label": "D-gluconate kinase, thermosensitive", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350804, - "label": "HyfR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90370266, - "label": "yffS", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90262744, - "label": "Cas3 nuclease/helicase", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90352856, - "label": "isrC-flu", - "databaseLabel": "TranscriptionUnit", - "value": 6, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90088677, - "label": "gltF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90283228, - "label": "yhhZ-yrhA-insA-6AB-6B-6", - "databaseLabel": "Operon", - "value": 4, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90351836, - "label": "CreB", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90350812, - "label": "FhlA", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90258655, - "label": "6-deoxy-6-sulfofructose-1-phosphate aldolase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90356896, - "label": "thiCEFSGH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90291362, - "label": "ratA-yfjF", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90289317, - "label": "cbpAM", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90288300, - "label": "yaeF", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372271, - "label": "rpoS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350771, - "label": "ArcA", - "databaseLabel": "TranscriptionFactor", - "value": 6, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90253488, - "label": "soluble lytic murein transglycosylase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90351792, - "label": "RstA", - "databaseLabel": "TranscriptionFactor", - "value": 4, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90288309, - "label": "mltD", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90359990, - "label": "clsA-yciU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90291380, - "label": "rpnC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372277, - "label": "rpoS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90260665, - "label": "peptidase C92 family protein", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372283, - "label": "rpoS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90203322, - "label": "yjhI", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372280, - "label": "rpoS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356920, - "label": "focA-pflB", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356924, - "label": "focA-pflB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356925, - "label": "focA-pflB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371201, - "label": "yihUTS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90291333, - "label": "yfaX-rhmD-yfaVU", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90350726, - "label": "SoxS", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90350727, - "label": "OxyR", - "databaseLabel": "TranscriptionFactor", - "value": 6, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90288260, - "label": "deoR", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90364036, - "label": "hrpB", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90267783, - "label": "e14 prophage; uncharacterized protein YmfE", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90279049, - "label": "yeaGH", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372234, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90270856, - "label": "NAD-dependent dihydropyrimidine dehydrogenase subunit PreT", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90354827, - "label": "nagBAC-umpH", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90073269, - "label": "rpsB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90370188, - "label": "yfdGHI", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372237, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90270865, - "label": "peptidoglycan DD-endopeptidase/peptidoglycan LD-carboxypeptidase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90256529, - "label": "RNase T", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350736, - "label": "PhoB", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90253458, - "label": "Sec translocon accessory complex subunit SecD", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372241, - "label": "yeaGH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90188949, - "label": "ygeX", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90088614, - "label": "rcsF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90091684, - "label": "artI", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90356895, - "label": "tehAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350748, - "label": "CysB", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90353820, - "label": "arcB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90270878, - "label": "putative transporter YfaV", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90291041, - "label": "agrA", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90269536, - "label": "protein kinase YeaG", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90276704, - "label": "tehAB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90072927, - "label": "rne", - "databaseLabel": "Gene", - "value": 5, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90276706, - "label": "thiCEFSGH", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90351463, - "label": "CsgD", - "databaseLabel": "TranscriptionFactor", - "value": 6, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90372965, - "label": "mlaFEDCB", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90230632, - "label": "cytochrome bd-I ubiquinol oxidase subunit I", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90169172, - "label": "paaG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90359657, - "label": "adk", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372975, - "label": "mlaFEDCB", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90261359, - "label": "putative ATP-dependent RNA helicase HrpB", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 79216311, - "label": "cydA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90269554, - "label": "diguanylate cyclase DgcP", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90145611, - "label": "ybiO", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90291060, - "label": "mepS", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90071880, - "label": "pstS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90356597, - "label": "yjeF-tsaE-amiB-mutL-miaA-hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90370938, - "label": "yhhZ-yrhA-insAB-6A-6B-6", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90291066, - "label": "nagBAC-umpH", - "databaseLabel": "Operon", - "value": 5, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90272637, - "label": "cell division factor ZapE with ATPase activity", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90355582, - "label": "glgCAP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356604, - "label": "artPIQM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90352456, - "label": "rrsG-gltW-rrlG-rrfG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90352460, - "label": "rrsH-ileV-alaV-rrlH-rrfH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90255185, - "label": "glycerate 2-kinase 1", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90352470, - "label": "rrsH-ileV-alaV-rrlH-rrfH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90128232, - "label": "hrpB", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90253145, - "label": "DNA repair protein RecN", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90277727, - "label": "cysJIH", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90277665, - "label": "malEFG", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90356515, - "label": "pstSCAB-phoU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90090262, - "label": "thiG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90099477, - "label": "tehB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90286895, - "label": "rhsE-ydcD", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90369837, - "label": "proQ-prc", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90087172, - "label": "wecC", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90109700, - "label": "yjjI", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90072836, - "label": "rhsB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90291002, - "label": "rfaD-waaFCL", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90257157, - "label": "putative ABC transporter periplasmic binding protein ArtI", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372871, - "label": "mepS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90277639, - "label": "dusB-fis", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90370826, - "label": "zapE", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351371, - "label": "Cra", - "databaseLabel": "TranscriptionFactor", - "value": 10, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90248968, - "label": "DNA-binding transcriptional dual regulator NagC", - "databaseLabel": "GeneProduct", - "value": 3, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90269450, - "label": "N-succinylarginine dihydrolase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90069811, - "label": "hypD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90279692, - "label": "rhoL-rho", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90279695, - "label": "rplKAJL-rpoBC", - "databaseLabel": "Operon", - "value": 5, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90366733, - "label": "ymfED", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90256142, - "label": "sensory histidine kinase BarA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90276624, - "label": "rpsJ-rplCDWB-rpsS-rplV-rpsC-rplP-rpmC-rpsQ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90369814, - "label": "pabB-nudL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90284824, - "label": "mltB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90257180, - "label": "putrescine ABC transporter periplasmic binding protein", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90293023, - "label": "adkp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90287072, - "label": "solA-yceO", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90186722, - "label": "mltB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90279906, - "label": "thrS-infC-rpmI-rplT-pheMST-ihfA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90359782, - "label": "rplKAJL-rpoBC", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90370022, - "label": "yehLMPQ", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90090457, - "label": "clsA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90230760, - "label": "sulfite reductase, hemoprotein subunit", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 84396950, - "label": "deoR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90234865, - "label": "glycogen phosphorylase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90264562, - "label": "IsrC", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90253304, - "label": "ribonuclease E", - "databaseLabel": "GeneProduct", - "value": 5, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90291199, - "label": "pdeA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372092, - "label": "alsBACE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90129345, - "label": "cas3", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372093, - "label": "hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90359805, - "label": "csgDEFG", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90353603, - "label": "usg-truA-dedA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90074108, - "label": "treA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90371008, - "label": "pdeK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90067964, - "label": "glgP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90274756, - "label": "AgrA", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90256331, - "label": "UDP-N-acetyl-D-mannosamine dehydrogenase", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90291150, - "label": "ydeNM", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90355666, - "label": "hns", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90312658, - "label": "agrAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90356691, - "label": "fliFGHIJK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90291156, - "label": "rcsF-trmO", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90287062, - "label": "ycdZ", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90370005, - "label": "yehDCBA", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90253273, - "label": "RhsB protein in rhs element", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90291160, - "label": "isrC-flu", - "databaseLabel": "Operon", - "value": 6, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90074084, - "label": "topA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90294236, - "label": "rfaDp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90372063, - "label": "rrlH-rrfH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90283998, - "label": "yqiJK", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90234847, - "label": "5-carboxymethylaminomethyluridine-tRNA synthase subunit MnmG", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90361762, - "label": "mstA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90072989, - "label": "rplD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90097565, - "label": "yihT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90236839, - "label": "Fe-(CN)2CO cofactor assembly scaffold protein HypD", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90359717, - "label": "rhoL-rho", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90109846, - "label": "cbpA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90186675, - "label": "ygaZ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90353589, - "label": "pdxB-usg-truA-dedA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90072967, - "label": "rph", - "databaseLabel": "Gene", - "value": 8, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90361784, - "label": "rpnC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90090373, - "label": "mstA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90299322, - "label": "ravAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90299325, - "label": "kupp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90351550, - "label": "AdiY", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90291135, - "label": "zapE", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90253246, - "label": "transcription termination factor Rho", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90067902, - "label": "mnmG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90359680, - "label": "pheMST-ihfA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90370955, - "label": "rhsB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90281866, - "label": "yjgR", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90267533, - "label": "putative LysR-type transcriptional regulator YcaN", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90260365, - "label": "protein YehQ", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90371983, - "label": "potFGHI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 65427721, - "label": "arcB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90292113, - "label": "usgp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90277781, - "label": "araFGH", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90136490, - "label": "fliJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90271636, - "label": "ribosome association toxin RatA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90132391, - "label": "rrfH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90356635, - "label": "creABCD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90361442, - "label": "barA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90254945, - "label": "DNA-binding transcriptional activator XapR", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90353249, - "label": "alsRBACE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90151516, - "label": "ycdZ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90352231, - "label": "NtrC", - "databaseLabel": "TranscriptionFactor", - "value": 3, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90276452, - "label": "garPLRK-rnpB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90254952, - "label": "putative transcriptional regulator GcvR", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90359401, - "label": "yajC-secDF", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90257002, - "label": "cardiolipin synthase A", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90269292, - "label": "GlpM family protein", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90361458, - "label": "hypBCDE-fhlA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90361456, - "label": "hypABCDE-fhlA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90285682, - "label": "yehLMPQ", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90258040, - "label": "recombination-promoting nuclease RpnC", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90255997, - "label": "tRNA-dihydrouridine synthase B", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90286718, - "label": "proQ-prc", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90354242, - "label": "dnaQ", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371654, - "label": "thrS-infC-rpmI-rplT-pheMST-ihfA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90069626, - "label": "hns", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90354247, - "label": "dnaQ", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90352197, - "label": "Fur", - "databaseLabel": "TranscriptionFactor", - "value": 3, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90095225, - "label": "rpnC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90359371, - "label": "xapR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90291787, - "label": "flup", - "databaseLabel": "Promoter", - "value": 2, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90359369, - "label": "xapR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351181, - "label": "AraC", - "databaseLabel": "TranscriptionFactor", - "value": 3, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90371664, - "label": "asnC-mioC-mnmG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90230357, - "label": "putative inner membrane protein", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90366551, - "label": "ycdZ", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90279510, - "label": "dinQ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90359386, - "label": "yjeF-tsaE-amiB-mutL-miaA-hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90290776, - "label": "preTA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90277464, - "label": "pstSCAB-phoU", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90359385, - "label": "yjeF-tsaE-amiB-mutL-miaA-hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90254941, - "label": "putative c-di-GMP phosphodiesterase PdeA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90351199, - "label": "CytR", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90285660, - "label": "yehDCBA", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90251871, - "label": "phosphate ABC transporter periplasmic binding protein", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90371676, - "label": "rne", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371677, - "label": "rne", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90353245, - "label": "alsRBACE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90256929, - "label": "3-mercaptopyruvate sulfurtransferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90073631, - "label": "secD", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90275363, - "label": "tgt-yajC-secDF", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90351142, - "label": "MalT", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90258980, - "label": "tellurite methyltransferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90280484, - "label": "ydgC", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90351146, - "label": "HdfR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90352171, - "label": "IHF", - "databaseLabel": "TranscriptionFactor", - "value": 16, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90084887, - "label": "mak", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90136085, - "label": "pdxB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351149, - "label": "SlyA", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90359346, - "label": "hyfABCDEFGHIJR-focB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90277424, - "label": "gltBDF", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90282547, - "label": "yihUTS", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90058246, - "label": "fis", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90290745, - "label": "glgBXCAP", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90107396, - "label": "idnK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372664, - "label": "araFGH", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90288703, - "label": "pabB-nudL", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90361405, - "label": "recN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372615, - "label": "ydeNM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90370568, - "label": "ygeX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90236429, - "label": "RNA-binding protein Hfq", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90288655, - "label": "mprA-emrAB", - "databaseLabel": "Operon", - "value": 5, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90185238, - "label": "ratA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90236440, - "label": "integration host factor subunit α", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90271257, - "label": "putative formate transporter", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90361369, - "label": "nagA", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90281503, - "label": "ygaZH", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90291936, - "label": "rfaDp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90102495, - "label": "yehC", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90352352, - "label": "astCADBE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 85819039, - "label": "dnaQ", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90287842, - "label": "ybbAP", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90151643, - "label": "yceO", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90352362, - "label": "astCADBE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90279657, - "label": "ycaC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90356458, - "label": "ihfA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90290920, - "label": "clsA-yciU", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90361582, - "label": "fliFGHIJK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90365679, - "label": "deoR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90085075, - "label": "dusB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90287852, - "label": "rhsD-ybbC-ylbH-ybbD", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90352364, - "label": "astCADBE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90276590, - "label": "rnt-lhr", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90277616, - "label": "panBC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90357489, - "label": "glgCAP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90354423, - "label": "rpoBC", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90129098, - "label": "adiC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90370811, - "label": "mlaFEDCB", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351355, - "label": "CspA", - "databaseLabel": "TranscriptionFactor", - "value": 3, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90258168, - "label": "putative uncharacterized protein YbbD", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372856, - "label": "gcvR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90357496, - "label": "glgCAP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90285818, - "label": "yejG", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90276604, - "label": "rph-pyrE", - "databaseLabel": "Operon", - "value": 16, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90279676, - "label": "rne", - "databaseLabel": "Operon", - "value": 5, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90356476, - "label": "gltBDF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90236608, - "label": "DNA-binding transcriptional dual regulator H-NS", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90277574, - "label": "fliFGHIJK", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90299081, - "label": "pykFp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90276553, - "label": "potFGHI", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90245832, - "label": "RNA polymerase, sigma S (sigma 38) factor", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90359499, - "label": "mfd", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372808, - "label": "agrA", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90286795, - "label": "abgABT-ogt", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90359497, - "label": "mfd", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372815, - "label": "cbpAM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90072816, - "label": "rho", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90353357, - "label": "idnK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372818, - "label": "cbpAM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90286801, - "label": "racR", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90095342, - "label": "ybbD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90281683, - "label": "adiC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90279637, - "label": "barA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90248916, - "label": "N-acetylglucosamine-6-phosphate deacetylase", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90351317, - "label": "AsnC", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90361563, - "label": "rne", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90365657, - "label": "ybiO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90290908, - "label": "yjeF-tsaE-amiB-mutL-miaA-hfq-hflXKC", - "databaseLabel": "Operon", - "value": 4, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90352351, - "label": "GadE-RcsB", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90279585, - "label": "hypABCDE-fhlA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90358435, - "label": "aldA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90355361, - "label": "cydAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90217128, - "label": "sensory histidine kinase ArcB", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90277547, - "label": "creABCD", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90257067, - "label": "transcription-repair coupling factor", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90366633, - "label": "solA-yceO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90289834, - "label": "kup", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90267306, - "label": "moderate conductance mechanosensitive channel", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90361517, - "label": "ycaC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90258099, - "label": "uncharacterized protein YdcD", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90073741, - "label": "slt", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90175111, - "label": "dgcP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 63214620, - "label": "aldA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90371771, - "label": "isrC", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90086018, - "label": "barA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90072705, - "label": "recN", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90276481, - "label": "paaABCDEFGHIJK", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90215040, - "label": "agrA", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90371712, - "label": "glgBXCAP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90192517, - "label": "yqiK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90352260, - "label": "FlhDC", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90082998, - "label": "garK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90174133, - "label": "ydgC", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90352264, - "label": "RcsAB", - "databaseLabel": "TranscriptionFactor", - "value": 4, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90217098, - "label": "arabinose ABC transporter ATP binding subunit", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90252938, - "label": "pyruvate kinase I", - "databaseLabel": "GeneProduct", - "value": 4, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90363534, - "label": "mak", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90095281, - "label": "ydcD", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90265232, - "label": "putative ABC transporter membrane subunit YbbP", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90352273, - "label": "OmpR", - "databaseLabel": "TranscriptionFactor", - "value": 4, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90283669, - "label": "ygeX", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90370709, - "label": "yqiJK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351259, - "label": "LexA", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90357403, - "label": "mprA-emrAB", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90279576, - "label": "recN", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90358424, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90355356, - "label": "araFGH", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90184351, - "label": "focB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - } - ], - "edges": [ - { - "id": 177524373, - "label": "REGULATES", - "from": 90276704, - "to": 90351652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520277, - "label": "REGULATES", - "from": 90277284, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519254, - "label": "REGULATES", - "from": 90277284, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528464, - "label": "ELEMENT_OF", - "from": 90174729, - "to": 90352352, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517200, - "label": "ENCODES", - "from": 90132391, - "to": 90263921, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520274, - "label": "REGULATES", - "from": 90276624, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533587, - "label": "ELEMENT_OF", - "from": 90203156, - "to": 90371393, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515164, - "label": "ENCODES", - "from": 90069811, - "to": 90236839, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524381, - "label": "REGULATES", - "from": 90279906, - "to": 90351652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528472, - "label": "ELEMENT_OF", - "from": 90174729, - "to": 90352362, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516184, - "label": "ENCODES", - "from": 90088862, - "to": 90256529, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528474, - "label": "ELEMENT_OF", - "from": 90174729, - "to": 90352364, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524378, - "label": "REGULATES", - "from": 90279585, - "to": 90351652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520257, - "label": "REGULATES", - "from": 90275097, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511053, - "label": "ELEMENT_OF", - "from": 90312658, - "to": 90372808, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520270, - "label": "REGULATES", - "from": 90276452, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523342, - "label": "REGULATES", - "from": 90277424, - "to": 90351146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513103, - "label": "ELEMENT_OF", - "from": 90366733, - "to": 90287229, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520265, - "label": "REGULATES", - "from": 90276271, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519242, - "label": "ENCODES", - "from": 90215530, - "to": 90274872, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515187, - "label": "ENCODES", - "from": 90070043, - "to": 90245832, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519292, - "label": "REGULATES", - "from": 90286795, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516221, - "label": "ENCODES", - "from": 90090262, - "to": 90256834, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534653, - "label": "ELEMENT_OF", - "from": 90215040, - "to": 90372808, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531582, - "label": "ELEMENT_OF", - "from": 90084887, - "to": 90363534, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534655, - "label": "ELEMENT_OF", - "from": 90109846, - "to": 90372815, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519295, - "label": "REGULATES", - "from": 90289317, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519289, - "label": "REGULATES", - "from": 90281385, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519290, - "label": "REGULATES", - "from": 90281386, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529507, - "label": "ELEMENT_OF", - "from": 90071880, - "to": 90356515, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530541, - "label": "ELEMENT_OF", - "from": 90184351, - "to": 90359346, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524398, - "label": "REGULATES", - "from": 90291308, - "to": 90351652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510057, - "label": "ELEMENT_OF", - "from": 90295758, - "to": 90361194, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519273, - "label": "REGULATES", - "from": 90277915, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523371, - "label": "REGULATES", - "from": 90276481, - "to": 90351149, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533611, - "label": "ELEMENT_OF", - "from": 90203322, - "to": 90371437, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528532, - "label": "ELEMENT_OF", - "from": 90132391, - "to": 90352460, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533653, - "label": "ELEMENT_OF", - "from": 90109700, - "to": 90371502, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511126, - "label": "ELEMENT_OF", - "from": 90352364, - "to": 90274936, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530582, - "label": "ELEMENT_OF", - "from": 90084817, - "to": 90359386, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513174, - "label": "ELEMENT_OF", - "from": 90368394, - "to": 90286801, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528534, - "label": "ELEMENT_OF", - "from": 90132391, - "to": 90352470, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519318, - "label": "REGULATES", - "from": 90277665, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530576, - "label": "ELEMENT_OF", - "from": 90069451, - "to": 90359385, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522385, - "label": "REGULATES", - "from": 90277335, - "to": 90350843, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519315, - "label": "REGULATES", - "from": 90277639, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522387, - "label": "REGULATES", - "from": 90277915, - "to": 90350843, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523421, - "label": "REGULATES", - "from": 90291150, - "to": 90351181, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512157, - "label": "ELEMENT_OF", - "from": 90359717, - "to": 90279692, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530591, - "label": "ELEMENT_OF", - "from": 90073631, - "to": 90359401, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530585, - "label": "ELEMENT_OF", - "from": 90069451, - "to": 90359386, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533658, - "label": "ELEMENT_OF", - "from": 90073741, - "to": 90371508, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516250, - "label": "ENCODES", - "from": 90090509, - "to": 90257067, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534683, - "label": "ELEMENT_OF", - "from": 90081723, - "to": 90372856, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521371, - "label": "REGULATES", - "from": 90277915, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533636, - "label": "ELEMENT_OF", - "from": 90203542, - "to": 90371470, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521350, - "label": "REGULATES", - "from": 90275097, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516231, - "label": "ENCODES", - "from": 90090373, - "to": 90256929, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534657, - "label": "ELEMENT_OF", - "from": 90109846, - "to": 90372818, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512129, - "label": "ELEMENT_OF", - "from": 90359657, - "to": 90278185, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530562, - "label": "ELEMENT_OF", - "from": 90081707, - "to": 90359369, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530563, - "label": "ELEMENT_OF", - "from": 90081707, - "to": 90359371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521356, - "label": "REGULATES", - "from": 90276452, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521358, - "label": "REGULATES", - "from": 90277298, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516239, - "label": "ENCODES", - "from": 90090457, - "to": 90257002, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513167, - "label": "ELEMENT_OF", - "from": 90368315, - "to": 90286795, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530568, - "label": "ELEMENT_OF", - "from": 90084817, - "to": 90359385, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529589, - "label": "ELEMENT_OF", - "from": 90091684, - "to": 90356604, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532663, - "label": "ELEMENT_OF", - "from": 90102495, - "to": 90370005, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525488, - "label": "REGULATES", - "from": 90277424, - "to": 90352197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521393, - "label": "REGULATES", - "from": 90281385, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521394, - "label": "REGULATES", - "from": 90281386, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517299, - "label": "ENCODES", - "from": 90136085, - "to": 90264649, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518333, - "label": "ENCODES", - "from": 90176578, - "to": 90270865, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512189, - "label": "ELEMENT_OF", - "from": 90359990, - "to": 90290920, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519358, - "label": "REGULATES", - "from": 90276452, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518331, - "label": "ENCODES", - "from": 90176550, - "to": 90270856, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516260, - "label": "ENCODES", - "from": 90091723, - "to": 90257180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517285, - "label": "ENCODES", - "from": 90135947, - "to": 90264562, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512166, - "label": "ELEMENT_OF", - "from": 90359805, - "to": 90277298, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525479, - "label": "REGULATES", - "from": 90276452, - "to": 90352197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534688, - "label": "ELEMENT_OF", - "from": 90176578, - "to": 90372871, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516256, - "label": "ENCODES", - "from": 90091684, - "to": 90257157, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515233, - "label": "ENCODES", - "from": 90070348, - "to": 90246156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519331, - "label": "REGULATES", - "from": 90275064, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529580, - "label": "ELEMENT_OF", - "from": 90069451, - "to": 90356597, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511144, - "label": "ELEMENT_OF", - "from": 90352456, - "to": 90281386, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525480, - "label": "REGULATES", - "from": 90277335, - "to": 90352197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512170, - "label": "ELEMENT_OF", - "from": 90359847, - "to": 90275064, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511146, - "label": "ELEMENT_OF", - "from": 90352470, - "to": 90281385, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529579, - "label": "ELEMENT_OF", - "from": 90084817, - "to": 90356597, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523435, - "label": "REGULATES", - "from": 90277781, - "to": 90351181, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520144, - "label": "REGULATES", - "from": 90282343, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533458, - "label": "ELEMENT_OF", - "from": 90097565, - "to": 90371201, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509907, - "label": "ELEMENT_OF", - "from": 90293023, - "to": 90359657, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511964, - "label": "ELEMENT_OF", - "from": 90359248, - "to": 90276452, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525276, - "label": "REGULATES", - "from": 90279585, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529348, - "label": "ELEMENT_OF", - "from": 90069626, - "to": 90355666, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520134, - "label": "REGULATES", - "from": 90279906, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530375, - "label": "ELEMENT_OF", - "from": 79216311, - "to": 90359205, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525251, - "label": "REGULATES", - "from": 90277639, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513987, - "label": "ELEMENT_OF", - "from": 90371310, - "to": 90281683, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517069, - "label": "ENCODES", - "from": 90129667, - "to": 90262871, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534479, - "label": "ELEMENT_OF", - "from": 90067964, - "to": 90372536, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522191, - "label": "REGULATES", - "from": 90279324, - "to": 90350804, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525258, - "label": "REGULATES", - "from": 90277727, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520181, - "label": "REGULATES", - "from": 90277424, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522230, - "label": "REGULATES", - "from": 90279585, - "to": 90350812, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520183, - "label": "REGULATES", - "from": 90277464, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515058, - "label": "ENCODES", - "from": 90067964, - "to": 90234865, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534515, - "label": "ELEMENT_OF", - "from": 90109846, - "to": 90372574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531443, - "label": "ELEMENT_OF", - "from": 90148186, - "to": 90363202, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530424, - "label": "ELEMENT_OF", - "from": 90082998, - "to": 90359248, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514040, - "label": "ELEMENT_OF", - "from": 90371437, - "to": 90282002, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522232, - "label": "REGULATES", - "from": 90279324, - "to": 90350812, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513017, - "label": "ELEMENT_OF", - "from": 90365657, - "to": 90288248, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511972, - "label": "ELEMENT_OF", - "from": 90359267, - "to": 90276481, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525284, - "label": "REGULATES", - "from": 90290585, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525280, - "label": "REGULATES", - "from": 90279906, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517091, - "label": "ENCODES", - "from": 90129837, - "to": 90262925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515053, - "label": "ENCODES", - "from": 90067902, - "to": 90234847, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529386, - "label": "ELEMENT_OF", - "from": 90069811, - "to": 90355770, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514026, - "label": "ELEMENT_OF", - "from": 90371393, - "to": 90281866, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511979, - "label": "ELEMENT_OF", - "from": 90359283, - "to": 90290585, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514070, - "label": "ELEMENT_OF", - "from": 90371508, - "to": 90282084, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522256, - "label": "REGULATES", - "from": 90276271, - "to": 90350826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531474, - "label": "ELEMENT_OF", - "from": 90174133, - "to": 90363287, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512018, - "label": "ELEMENT_OF", - "from": 90359371, - "to": 90274928, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514066, - "label": "ELEMENT_OF", - "from": 90371502, - "to": 90282082, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534547, - "label": "ELEMENT_OF", - "from": 90173560, - "to": 90372615, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512028, - "label": "ELEMENT_OF", - "from": 90359401, - "to": 90275363, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533533, - "label": "ELEMENT_OF", - "from": 90129098, - "to": 90371310, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518175, - "label": "ENCODES", - "from": 90174968, - "to": 90269536, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522271, - "label": "REGULATES", - "from": 90290564, - "to": 90350826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531480, - "label": "ELEMENT_OF", - "from": 90175111, - "to": 90363296, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529432, - "label": "ELEMENT_OF", - "from": 90069468, - "to": 90356458, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518148, - "label": "ENCODES", - "from": 90174729, - "to": 90269450, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514053, - "label": "ELEMENT_OF", - "from": 90371470, - "to": 90282041, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512006, - "label": "ELEMENT_OF", - "from": 90359346, - "to": 90279324, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523271, - "label": "REGULATES", - "from": 90277665, - "to": 90351142, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516098, - "label": "ENCODES", - "from": 90087172, - "to": 90256331, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513027, - "label": "ELEMENT_OF", - "from": 90365679, - "to": 90288260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530445, - "label": "ELEMENT_OF", - "from": 90169172, - "to": 90359267, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513079, - "label": "ELEMENT_OF", - "from": 90366551, - "to": 90287062, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532531, - "label": "ELEMENT_OF", - "from": 90129837, - "to": 90369837, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513085, - "label": "ELEMENT_OF", - "from": 90366633, - "to": 90287072, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512061, - "label": "ELEMENT_OF", - "from": 90359499, - "to": 90275043, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515135, - "label": "ENCODES", - "from": 90069626, - "to": 90236608, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516152, - "label": "ENCODES", - "from": 90088677, - "to": 90256467, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515116, - "label": "ENCODES", - "from": 90069451, - "to": 90236429, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516141, - "label": "ENCODES", - "from": 90088614, - "to": 90256442, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515118, - "label": "ENCODES", - "from": 90069468, - "to": 90236440, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529449, - "label": "ELEMENT_OF", - "from": 90088677, - "to": 90356476, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534569, - "label": "ELEMENT_OF", - "from": 65393276, - "to": 90372664, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518186, - "label": "ENCODES", - "from": 90175111, - "to": 90269554, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519210, - "label": "ENCODES", - "from": 90215040, - "to": 90274756, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532523, - "label": "ELEMENT_OF", - "from": 90129466, - "to": 90369814, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532821, - "label": "ELEMENT_OF", - "from": 90081698, - "to": 90370245, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512341, - "label": "ELEMENT_OF", - "from": 90361456, - "to": 90279585, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518485, - "label": "ENCODES", - "from": 90184351, - "to": 90271257, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530774, - "label": "ELEMENT_OF", - "from": 90069468, - "to": 90359680, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521559, - "label": "REGULATES", - "from": 90291160, - "to": 90350727, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514391, - "label": "ELEMENT_OF", - "from": 90372277, - "to": 90277335, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512336, - "label": "ELEMENT_OF", - "from": 90361442, - "to": 90279637, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522576, - "label": "REGULATES", - "from": 90286795, - "to": 90350899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515409, - "label": "ENCODES", - "from": 90071880, - "to": 90251871, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514399, - "label": "ELEMENT_OF", - "from": 90372298, - "to": 90289834, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523611, - "label": "REGULATES", - "from": 90279510, - "to": 90351259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513348, - "label": "ELEMENT_OF", - "from": 90369814, - "to": 90288703, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514373, - "label": "ELEMENT_OF", - "from": 90372234, - "to": 90276255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524608, - "label": "REGULATES", - "from": 90277665, - "to": 90351836, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524609, - "label": "REGULATES", - "from": 90277547, - "to": 90351836, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512321, - "label": "ELEMENT_OF", - "from": 90361405, - "to": 90279576, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511306, - "label": "ELEMENT_OF", - "from": 90353820, - "to": 90279291, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513355, - "label": "ELEMENT_OF", - "from": 90369837, - "to": 90286718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528757, - "label": "ELEMENT_OF", - "from": 90102241, - "to": 90353245, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514421, - "label": "ELEMENT_OF", - "from": 90372350, - "to": 90291333, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514417, - "label": "ELEMENT_OF", - "from": 90372334, - "to": 90277547, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528764, - "label": "ELEMENT_OF", - "from": 90102241, - "to": 90353249, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511359, - "label": "ELEMENT_OF", - "from": 90354242, - "to": 90278336, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530809, - "label": "ELEMENT_OF", - "from": 90073203, - "to": 90359782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523618, - "label": "REGULATES", - "from": 90279576, - "to": 90351259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522594, - "label": "REGULATES", - "from": 90277284, - "to": 90350899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512364, - "label": "ELEMENT_OF", - "from": 90361517, - "to": 90279657, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516460, - "label": "ENCODES", - "from": 90097565, - "to": 90258655, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530799, - "label": "ELEMENT_OF", - "from": 90072816, - "to": 90359717, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532843, - "label": "ELEMENT_OF", - "from": 90184122, - "to": 90370266, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525675, - "label": "REGULATES", - "from": 90277574, - "to": 90352260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531819, - "label": "ELEMENT_OF", - "from": 90084658, - "to": 90365344, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515479, - "label": "ENCODES", - "from": 90072486, - "to": 90252938, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516497, - "label": "ENCODES", - "from": 90099477, - "to": 90258980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513436, - "label": "ELEMENT_OF", - "from": 90370005, - "to": 90285660, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529821, - "label": "ELEMENT_OF", - "from": 90070043, - "to": 90356771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531869, - "label": "ELEMENT_OF", - "from": 90137917, - "to": 90365425, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524696, - "label": "REGULATES", - "from": 90277335, - "to": 90351903, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530843, - "label": "ELEMENT_OF", - "from": 90090457, - "to": 90359990, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530821, - "label": "ELEMENT_OF", - "from": 90074084, - "to": 90359834, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530822, - "label": "ELEMENT_OF", - "from": 90074084, - "to": 90359847, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530823, - "label": "ELEMENT_OF", - "from": 90074084, - "to": 90359850, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518529, - "label": "ENCODES", - "from": 90185238, - "to": 90271636, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512385, - "label": "ELEMENT_OF", - "from": 90361563, - "to": 90279676, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177249222, - "label": "ELEMENT_OF", - "from": 90291595, - "to": 90352456, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512396, - "label": "ELEMENT_OF", - "from": 90361582, - "to": 90277574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517517, - "label": "ENCODES", - "from": 90137917, - "to": 90265232, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524686, - "label": "REGULATES", - "from": 90277298, - "to": 90351903, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528782, - "label": "ELEMENT_OF", - "from": 90107396, - "to": 90353357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530824, - "label": "ELEMENT_OF", - "from": 90074084, - "to": 90359858, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530825, - "label": "ELEMENT_OF", - "from": 90074084, - "to": 90359861, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510391, - "label": "ELEMENT_OF", - "from": 90303849, - "to": 90366551, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513456, - "label": "ELEMENT_OF", - "from": 90370051, - "to": 90290776, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524722, - "label": "REGULATES", - "from": 90277298, - "to": 90351927, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529842, - "label": "ELEMENT_OF", - "from": 90092023, - "to": 90356776, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515506, - "label": "ENCODES", - "from": 90072705, - "to": 90253145, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177249271, - "label": "ELEMENT_OF", - "from": 90291787, - "to": 90352856, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513469, - "label": "ELEMENT_OF", - "from": 90370078, - "to": 90285818, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519615, - "label": "REGULATES", - "from": 90276271, - "to": 90350648, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511417, - "label": "ELEMENT_OF", - "from": 90354697, - "to": 90277639, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513466, - "label": "ELEMENT_OF", - "from": 90370071, - "to": 90291060, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521636, - "label": "REGULATES", - "from": 90277464, - "to": 90350736, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530853, - "label": "ELEMENT_OF", - "from": 90081723, - "to": 90360084, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525734, - "label": "REGULATES", - "from": 90277298, - "to": 90352264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518567, - "label": "ENCODES", - "from": 90186675, - "to": 90271840, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513442, - "label": "ELEMENT_OF", - "from": 90370022, - "to": 90285682, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531874, - "label": "ELEMENT_OF", - "from": 90095342, - "to": 90365426, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518572, - "label": "ENCODES", - "from": 90186722, - "to": 90271853, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521646, - "label": "REGULATES", - "from": 90281683, - "to": 90350736, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532910, - "label": "ELEMENT_OF", - "from": 90185238, - "to": 90370378, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509354, - "label": "ELEMENT_OF", - "from": 90292449, - "to": 90355666, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532693, - "label": "ELEMENT_OF", - "from": 90176550, - "to": 90370051, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514269, - "label": "ELEMENT_OF", - "from": 90371983, - "to": 90276553, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517342, - "label": "ENCODES", - "from": 90136490, - "to": 90264817, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531672, - "label": "ELEMENT_OF", - "from": 90128232, - "to": 90364036, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511193, - "label": "ELEMENT_OF", - "from": 90352856, - "to": 90291160, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518341, - "label": "ENCODES", - "from": 90176609, - "to": 90270878, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512198, - "label": "ELEMENT_OF", - "from": 90360084, - "to": 90278227, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513216, - "label": "ELEMENT_OF", - "from": 90369263, - "to": 90286895, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532675, - "label": "ELEMENT_OF", - "from": 90104197, - "to": 90370022, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516301, - "label": "ENCODES", - "from": 90092023, - "to": 90257498, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513229, - "label": "ELEMENT_OF", - "from": 90369351, - "to": 90291150, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523464, - "label": "REGULATES", - "from": 90287062, - "to": 90351199, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531701, - "label": "ELEMENT_OF", - "from": 85819039, - "to": 90365208, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515313, - "label": "ENCODES", - "from": 90071075, - "to": 90248968, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533745, - "label": "ELEMENT_OF", - "from": 90072927, - "to": 90371676, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533746, - "label": "ELEMENT_OF", - "from": 90072927, - "to": 90371677, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531699, - "label": "ELEMENT_OF", - "from": 86007945, - "to": 90365201, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532732, - "label": "ELEMENT_OF", - "from": 90176609, - "to": 90370100, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534776, - "label": "ELEMENT_OF", - "from": 90129667, - "to": 90372965, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511226, - "label": "ELEMENT_OF", - "from": 90353099, - "to": 90291002, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534779, - "label": "ELEMENT_OF", - "from": 90129667, - "to": 90372975, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524516, - "label": "REGULATES", - "from": 90277298, - "to": 90351792, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530656, - "label": "ELEMENT_OF", - "from": 90090509, - "to": 90359497, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529633, - "label": "ELEMENT_OF", - "from": 75950332, - "to": 90356635, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530657, - "label": "ELEMENT_OF", - "from": 90090509, - "to": 90359499, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525538, - "label": "REGULATES", - "from": 90274936, - "to": 90352231, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511202, - "label": "ELEMENT_OF", - "from": 90352917, - "to": 90275097, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533730, - "label": "ELEMENT_OF", - "from": 90069468, - "to": 90371654, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532707, - "label": "ELEMENT_OF", - "from": 90176578, - "to": 90370071, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531692, - "label": "ELEMENT_OF", - "from": 90107302, - "to": 90365190, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525549, - "label": "REGULATES", - "from": 90279049, - "to": 90352231, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515309, - "label": "ENCODES", - "from": 90071057, - "to": 90248916, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531694, - "label": "ELEMENT_OF", - "from": 90088614, - "to": 90365191, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511208, - "label": "ELEMENT_OF", - "from": 90352958, - "to": 90279049, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525545, - "label": "REGULATES", - "from": 90276553, - "to": 90352231, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533738, - "label": "ELEMENT_OF", - "from": 90067902, - "to": 90371664, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528660, - "label": "ELEMENT_OF", - "from": 79216311, - "to": 90352915, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528661, - "label": "ELEMENT_OF", - "from": 79216311, - "to": 90352917, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514326, - "label": "ELEMENT_OF", - "from": 90372116, - "to": 90291066, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514321, - "label": "ELEMENT_OF", - "from": 90372103, - "to": 90290908, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516369, - "label": "ENCODES", - "from": 90095225, - "to": 90258040, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528658, - "label": "ELEMENT_OF", - "from": 79216311, - "to": 90352914, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511251, - "label": "ELEMENT_OF", - "from": 90353357, - "to": 90279167, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522527, - "label": "REGULATES", - "from": 90290745, - "to": 90350884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521497, - "label": "REGULATES", - "from": 90276271, - "to": 90350726, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512282, - "label": "ELEMENT_OF", - "from": 90361194, - "to": 90279510, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533787, - "label": "ELEMENT_OF", - "from": 90067964, - "to": 90371712, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516379, - "label": "ENCODES", - "from": 90095281, - "to": 90258099, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518401, - "label": "ENCODES", - "from": 90180888, - "to": 90271054, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528648, - "label": "ELEMENT_OF", - "from": 90135947, - "to": 90352856, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511240, - "label": "ELEMENT_OF", - "from": 90353245, - "to": 90279140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532790, - "label": "ELEMENT_OF", - "from": 90180888, - "to": 90370188, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511281, - "label": "ELEMENT_OF", - "from": 90353589, - "to": 90279259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511282, - "label": "ELEMENT_OF", - "from": 90353603, - "to": 90279259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533820, - "label": "ELEMENT_OF", - "from": 90135947, - "to": 90371771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514361, - "label": "ELEMENT_OF", - "from": 90372205, - "to": 90288420, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518458, - "label": "ENCODES", - "from": 90184122, - "to": 90271186, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528676, - "label": "ELEMENT_OF", - "from": 90174968, - "to": 90352958, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516389, - "label": "ENCODES", - "from": 90095342, - "to": 90258168, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529698, - "label": "ELEMENT_OF", - "from": 90136490, - "to": 90356691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522530, - "label": "REGULATES", - "from": 90291066, - "to": 90350884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514349, - "label": "ELEMENT_OF", - "from": 90372182, - "to": 90290908, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511568, - "label": "ELEMENT_OF", - "from": 90356458, - "to": 90279906, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513618, - "label": "ELEMENT_OF", - "from": 90370453, - "to": 90284824, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534098, - "label": "ELEMENT_OF", - "from": 90102241, - "to": 90372092, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534099, - "label": "ELEMENT_OF", - "from": 90069451, - "to": 90372093, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531038, - "label": "ELEMENT_OF", - "from": 90071057, - "to": 90361369, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511576, - "label": "ELEMENT_OF", - "from": 90356476, - "to": 90277424, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513625, - "label": "ELEMENT_OF", - "from": 90370472, - "to": 90290558, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522843, - "label": "REGULATES", - "from": 90288655, - "to": 90350939, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512603, - "label": "ELEMENT_OF", - "from": 90363202, - "to": 90280286, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529984, - "label": "ELEMENT_OF", - "from": 90099477, - "to": 90356895, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517698, - "label": "ENCODES", - "from": 90148186, - "to": 90267533, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519747, - "label": "REGULATES", - "from": 90282084, - "to": 90350663, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529987, - "label": "ELEMENT_OF", - "from": 90090262, - "to": 90356896, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513613, - "label": "ELEMENT_OF", - "from": 90370446, - "to": 90281503, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518735, - "label": "ENCODES", - "from": 90192517, - "to": 90272214, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509512, - "label": "ELEMENT_OF", - "from": 90294236, - "to": 90356814, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519753, - "label": "REGULATES", - "from": 90277298, - "to": 90350663, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534133, - "label": "ELEMENT_OF", - "from": 90069451, - "to": 90372105, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529013, - "label": "ELEMENT_OF", - "from": 85819039, - "to": 90354242, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529014, - "label": "ELEMENT_OF", - "from": 85819039, - "to": 90354247, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514678, - "label": "ELEMENT_OF", - "from": 90372975, - "to": 90290564, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534135, - "label": "ELEMENT_OF", - "from": 90069451, - "to": 90372108, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516721, - "label": "ENCODES", - "from": 90107302, - "to": 90260665, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531058, - "label": "ELEMENT_OF", - "from": 90072705, - "to": 90361405, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534140, - "label": "ELEMENT_OF", - "from": 90071075, - "to": 90372116, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516733, - "label": "ENCODES", - "from": 90107396, - "to": 90260690, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513663, - "label": "ELEMENT_OF", - "from": 90370552, - "to": 90290626, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530041, - "label": "ELEMENT_OF", - "from": 90074108, - "to": 90356961, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512634, - "label": "ELEMENT_OF", - "from": 90363287, - "to": 90280484, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534139, - "label": "ELEMENT_OF", - "from": 90071075, - "to": 90372110, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522852, - "label": "REGULATES", - "from": 90279357, - "to": 90350943, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530021, - "label": "ELEMENT_OF", - "from": 90084668, - "to": 90356925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515686, - "label": "ENCODES", - "from": 90074084, - "to": 90253639, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524896, - "label": "REGULATES", - "from": 90290566, - "to": 90352101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522849, - "label": "REGULATES", - "from": 90274936, - "to": 90350943, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530018, - "label": "ELEMENT_OF", - "from": 90084668, - "to": 90356920, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530019, - "label": "ELEMENT_OF", - "from": 90084668, - "to": 90356924, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511596, - "label": "ELEMENT_OF", - "from": 90356515, - "to": 90277464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534125, - "label": "ELEMENT_OF", - "from": 90069451, - "to": 90372103, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534126, - "label": "ELEMENT_OF", - "from": 90069451, - "to": 90372104, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530031, - "label": "ELEMENT_OF", - "from": 90109846, - "to": 90356944, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515690, - "label": "ENCODES", - "from": 90074108, - "to": 90253657, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532118, - "label": "ELEMENT_OF", - "from": 90151643, - "to": 90366633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522903, - "label": "REGULATES", - "from": 90277424, - "to": 90350943, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533137, - "label": "ELEMENT_OF", - "from": 90192517, - "to": 90370709, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523921, - "label": "REGULATES", - "from": 90277298, - "to": 90351371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511633, - "label": "ELEMENT_OF", - "from": 90356604, - "to": 90279357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531089, - "label": "ELEMENT_OF", - "from": 90069811, - "to": 90361458, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517779, - "label": "ENCODES", - "from": 90151643, - "to": 90267720, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516764, - "label": "ENCODES", - "from": 90109846, - "to": 90260761, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514715, - "label": "ENCODES", - "from": 63214620, - "to": 90216947, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513669, - "label": "ELEMENT_OF", - "from": 90370568, - "to": 90283669, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523911, - "label": "REGULATES", - "from": 90275097, - "to": 90351371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517767, - "label": "ENCODES", - "from": 90151516, - "to": 90267696, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512640, - "label": "ELEMENT_OF", - "from": 90363296, - "to": 90291266, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531074, - "label": "ELEMENT_OF", - "from": 90086018, - "to": 90361442, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510604, - "label": "ELEMENT_OF", - "from": 90299322, - "to": 90371131, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516748, - "label": "ENCODES", - "from": 90109700, - "to": 90260725, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523917, - "label": "REGULATES", - "from": 90276255, - "to": 90351371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531085, - "label": "ELEMENT_OF", - "from": 90069811, - "to": 90361456, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532110, - "label": "ELEMENT_OF", - "from": 90151516, - "to": 90366551, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534196, - "label": "ELEMENT_OF", - "from": 90069451, - "to": 90372186, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514741, - "label": "ENCODES", - "from": 65427721, - "to": 90217128, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509622, - "label": "ELEMENT_OF", - "from": 90294516, - "to": 90357403, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534199, - "label": "ELEMENT_OF", - "from": 90084817, - "to": 90372186, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532151, - "label": "ELEMENT_OF", - "from": 90154004, - "to": 90366733, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534193, - "label": "ELEMENT_OF", - "from": 90084817, - "to": 90372182, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514737, - "label": "ENCODES", - "from": 65393276, - "to": 90217098, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531129, - "label": "ELEMENT_OF", - "from": 90084567, - "to": 90361517, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530105, - "label": "ELEMENT_OF", - "from": 90070043, - "to": 90357216, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530107, - "label": "ELEMENT_OF", - "from": 90070043, - "to": 90357230, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529056, - "label": "ELEMENT_OF", - "from": 90073203, - "to": 90354423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518817, - "label": "ENCODES", - "from": 90195332, - "to": 90272637, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530082, - "label": "ELEMENT_OF", - "from": 90069811, - "to": 90357074, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534189, - "label": "ELEMENT_OF", - "from": 90069451, - "to": 90372182, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517807, - "label": "ENCODES", - "from": 90154004, - "to": 90267783, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532949, - "label": "ELEMENT_OF", - "from": 90186675, - "to": 90370446, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515542, - "label": "ENCODES", - "from": 90072989, - "to": 90253319, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512471, - "label": "ELEMENT_OF", - "from": 90361784, - "to": 90291380, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177249302, - "label": "ELEMENT_OF", - "from": 90291936, - "to": 90353099, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515538, - "label": "ENCODES", - "from": 90072967, - "to": 90253312, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529886, - "label": "ELEMENT_OF", - "from": 90088862, - "to": 90356819, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516569, - "label": "ENCODES", - "from": 90102241, - "to": 90259566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532955, - "label": "ELEMENT_OF", - "from": 90186722, - "to": 90370453, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525765, - "label": "REGULATES", - "from": 90277298, - "to": 90352273, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529861, - "label": "ELEMENT_OF", - "from": 90091723, - "to": 90356788, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515520, - "label": "ENCODES", - "from": 90072816, - "to": 90253246, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515522, - "label": "ENCODES", - "from": 90072836, - "to": 90253273, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524748, - "label": "REGULATES", - "from": 90277727, - "to": 90351973, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524749, - "label": "REGULATES", - "from": 90275097, - "to": 90351973, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515534, - "label": "ENCODES", - "from": 90072927, - "to": 90253304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511439, - "label": "ELEMENT_OF", - "from": 90354827, - "to": 90291066, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528841, - "label": "ELEMENT_OF", - "from": 90136085, - "to": 90353589, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512458, - "label": "ELEMENT_OF", - "from": 90361762, - "to": 90291486, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511434, - "label": "ELEMENT_OF", - "from": 90354813, - "to": 90277665, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516597, - "label": "ENCODES", - "from": 90102495, - "to": 90259782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518647, - "label": "ENCODES", - "from": 90188949, - "to": 90272014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511474, - "label": "ELEMENT_OF", - "from": 90355129, - "to": 90277727, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515570, - "label": "ENCODES", - "from": 90073203, - "to": 90253371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524786, - "label": "REGULATES", - "from": 90277298, - "to": 90352009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513532, - "label": "ELEMENT_OF", - "from": 90370245, - "to": 90291199, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516605, - "label": "ENCODES", - "from": 90104197, - "to": 90260365, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515576, - "label": "ENCODES", - "from": 90073269, - "to": 90253382, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534009, - "label": "ELEMENT_OF", - "from": 90091723, - "to": 90371983, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514554, - "label": "ELEMENT_OF", - "from": 90372664, - "to": 90277781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529892, - "label": "ELEMENT_OF", - "from": 90073203, - "to": 90356833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529889, - "label": "ELEMENT_OF", - "from": 90072967, - "to": 90356831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520674, - "label": "REGULATES", - "from": 90290745, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520675, - "label": "REGULATES", - "from": 90290776, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518636, - "label": "ENCODES", - "from": 90188850, - "to": 90271993, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518637, - "label": "ENCODES", - "from": 90188854, - "to": 90271998, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520685, - "label": "REGULATES", - "from": 90291066, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520681, - "label": "REGULATES", - "from": 90290908, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532970, - "label": "ELEMENT_OF", - "from": 90129345, - "to": 90370472, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521707, - "label": "REGULATES", - "from": 90277727, - "to": 90350748, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513515, - "label": "ELEMENT_OF", - "from": 90370188, - "to": 90286576, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523798, - "label": "REGULATES", - "from": 90290566, - "to": 90351317, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529937, - "label": "ELEMENT_OF", - "from": 90072989, - "to": 90356852, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517649, - "label": "ENCODES", - "from": 90145611, - "to": 90267306, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524830, - "label": "REGULATES", - "from": 90277298, - "to": 90352050, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515611, - "label": "ENCODES", - "from": 90073631, - "to": 90253458, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529924, - "label": "ELEMENT_OF", - "from": 90073269, - "to": 90356849, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525829, - "label": "REGULATES", - "from": 90281683, - "to": 90352351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520718, - "label": "REGULATES", - "from": 90287062, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177249355, - "label": "ELEMENT_OF", - "from": 90292113, - "to": 90353603, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513544, - "label": "ELEMENT_OF", - "from": 90370266, - "to": 90284286, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528907, - "label": "ELEMENT_OF", - "from": 65427721, - "to": 90353820, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513589, - "label": "ELEMENT_OF", - "from": 90370378, - "to": 90291362, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534070, - "label": "ELEMENT_OF", - "from": 90132391, - "to": 90372063, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514609, - "label": "ELEMENT_OF", - "from": 90372808, - "to": 90291041, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514611, - "label": "ELEMENT_OF", - "from": 90372815, - "to": 90289317, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532027, - "label": "ELEMENT_OF", - "from": 84396950, - "to": 90365679, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523814, - "label": "REGULATES", - "from": 90277915, - "to": 90351355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515623, - "label": "ENCODES", - "from": 90073741, - "to": 90253488, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533025, - "label": "ELEMENT_OF", - "from": 90188854, - "to": 90370552, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510497, - "label": "ELEMENT_OF", - "from": 90312725, - "to": 90370078, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533027, - "label": "ELEMENT_OF", - "from": 90188850, - "to": 90370552, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533036, - "label": "ELEMENT_OF", - "from": 90188949, - "to": 90370568, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511534, - "label": "ELEMENT_OF", - "from": 90355666, - "to": 90277915, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524841, - "label": "REGULATES", - "from": 90277298, - "to": 90352052, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522794, - "label": "REGULATES", - "from": 90276481, - "to": 90350925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532010, - "label": "ELEMENT_OF", - "from": 90145611, - "to": 90365657, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514901, - "label": "ENCODES", - "from": 84396950, - "to": 90232086, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523089, - "label": "REGULATES", - "from": 90279140, - "to": 90351069, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529234, - "label": "ELEMENT_OF", - "from": 81097799, - "to": 90355129, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511836, - "label": "ELEMENT_OF", - "from": 90357403, - "to": 90288655, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531291, - "label": "ELEMENT_OF", - "from": 90090373, - "to": 90361762, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533317, - "label": "ELEMENT_OF", - "from": 90122286, - "to": 90371008, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523075, - "label": "REGULATES", - "from": 90276452, - "to": 90351050, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518989, - "label": "ENCODES", - "from": 90203322, - "to": 90273211, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515917, - "label": "ENCODES", - "from": 90084668, - "to": 90255680, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521032, - "label": "REGULATES", - "from": 90277781, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515915, - "label": "ENCODES", - "from": 90084658, - "to": 90255668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534388, - "label": "ELEMENT_OF", - "from": 90069451, - "to": 90372428, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529268, - "label": "ELEMENT_OF", - "from": 79216311, - "to": 90355361, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532340, - "label": "ELEMENT_OF", - "from": 90095281, - "to": 90369263, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513908, - "label": "ELEMENT_OF", - "from": 90371142, - "to": 90291308, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521076, - "label": "REGULATES", - "from": 90279324, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530294, - "label": "ELEMENT_OF", - "from": 63214620, - "to": 90358435, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534386, - "label": "ELEMENT_OF", - "from": 90084817, - "to": 90372428, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530291, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90358424, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516988, - "label": "ENCODES", - "from": 90129098, - "to": 90262637, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515965, - "label": "ENCODES", - "from": 90085075, - "to": 90255997, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525181, - "label": "REGULATES", - "from": 90277284, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525182, - "label": "REGULATES", - "from": 90277298, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525178, - "label": "REGULATES", - "from": 90276481, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523131, - "label": "REGULATES", - "from": 90277424, - "to": 90351086, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511846, - "label": "ELEMENT_OF", - "from": 90357496, - "to": 90290745, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519015, - "label": "ENCODES", - "from": 90203542, - "to": 90273278, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515937, - "label": "ENCODES", - "from": 90084817, - "to": 90255823, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517996, - "label": "ENCODES", - "from": 90173560, - "to": 90269118, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514925, - "label": "ENCODES", - "from": 86007945, - "to": 90232254, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513901, - "label": "ELEMENT_OF", - "from": 90371131, - "to": 90282343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529263, - "label": "ELEMENT_OF", - "from": 65393276, - "to": 90355356, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515944, - "label": "ENCODES", - "from": 90084887, - "to": 90255857, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531304, - "label": "ELEMENT_OF", - "from": 90095225, - "to": 90361784, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514921, - "label": "ENCODES", - "from": 85819039, - "to": 90232212, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521066, - "label": "REGULATES", - "from": 90279167, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513899, - "label": "ELEMENT_OF", - "from": 90371128, - "to": 90290566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522135, - "label": "REGULATES", - "from": 90290585, - "to": 90350797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522128, - "label": "REGULATES", - "from": 90281386, - "to": 90350797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533394, - "label": "ELEMENT_OF", - "from": 90067902, - "to": 90371128, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511901, - "label": "ELEMENT_OF", - "from": 90358424, - "to": 90276255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511903, - "label": "ELEMENT_OF", - "from": 90358435, - "to": 90276271, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529306, - "label": "ELEMENT_OF", - "from": 90067964, - "to": 90355582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510875, - "label": "ELEMENT_OF", - "from": 90299325, - "to": 90372298, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532357, - "label": "ELEMENT_OF", - "from": 90173560, - "to": 90369351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510849, - "label": "ELEMENT_OF", - "from": 90299081, - "to": 90372234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513935, - "label": "ELEMENT_OF", - "from": 90371201, - "to": 90282547, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522127, - "label": "REGULATES", - "from": 90281385, - "to": 90350797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514996, - "label": "ENCODES", - "from": 90058246, - "to": 90233296, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521142, - "label": "REGULATES", - "from": 90277424, - "to": 90350712, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517040, - "label": "ENCODES", - "from": 90129466, - "to": 90262774, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516018, - "label": "ENCODES", - "from": 90086018, - "to": 90256142, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521138, - "label": "REGULATES", - "from": 90290566, - "to": 90350712, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525244, - "label": "REGULATES", - "from": 90277424, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523196, - "label": "REGULATES", - "from": 90279167, - "to": 90351101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525246, - "label": "REGULATES", - "from": 90277464, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534463, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90372507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518072, - "label": "ENCODES", - "from": 90174133, - "to": 90269292, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520121, - "label": "REGULATES", - "from": 90279324, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520123, - "label": "REGULATES", - "from": 90279585, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523173, - "label": "REGULATES", - "from": 90279167, - "to": 90351095, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524199, - "label": "REGULATES", - "from": 90277424, - "to": 90351550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512928, - "label": "ELEMENT_OF", - "from": 90365425, - "to": 90287842, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512929, - "label": "ELEMENT_OF", - "from": 90365426, - "to": 90287852, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517027, - "label": "ENCODES", - "from": 90129345, - "to": 90262744, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522159, - "label": "REGULATES", - "from": 90277424, - "to": 90350797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533416, - "label": "ELEMENT_OF", - "from": 90087172, - "to": 90371142, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511702, - "label": "ELEMENT_OF", - "from": 90356776, - "to": 90277616, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520918, - "label": "REGULATES", - "from": 90276481, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516819, - "label": "ENCODES", - "from": 90122286, - "to": 90260897, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534227, - "label": "ELEMENT_OF", - "from": 90072927, - "to": 90372222, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534232, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90372234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534233, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90372237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533210, - "label": "ELEMENT_OF", - "from": 90195332, - "to": 90370826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534234, - "label": "ELEMENT_OF", - "from": 90174968, - "to": 90372241, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520903, - "label": "REGULATES", - "from": 90276271, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513731, - "label": "ELEMENT_OF", - "from": 90370709, - "to": 90283998, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533197, - "label": "ELEMENT_OF", - "from": 90129667, - "to": 90370811, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534217, - "label": "ELEMENT_OF", - "from": 90084658, - "to": 90372205, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531191, - "label": "ELEMENT_OF", - "from": 90136490, - "to": 90361582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520951, - "label": "REGULATES", - "from": 90277665, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534256, - "label": "ELEMENT_OF", - "from": 90070043, - "to": 90372277, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530161, - "label": "ELEMENT_OF", - "from": 90067964, - "to": 90357496, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534257, - "label": "ELEMENT_OF", - "from": 90070043, - "to": 90372280, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511729, - "label": "ELEMENT_OF", - "from": 90356849, - "to": 90290513, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534258, - "label": "ELEMENT_OF", - "from": 90070043, - "to": 90372283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513779, - "label": "ELEMENT_OF", - "from": 90370826, - "to": 90291135, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511731, - "label": "ELEMENT_OF", - "from": 90356852, - "to": 90276624, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520959, - "label": "REGULATES", - "from": 90277424, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523002, - "label": "REGULATES", - "from": 90277547, - "to": 90351014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529124, - "label": "ELEMENT_OF", - "from": 90058246, - "to": 90354697, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511716, - "label": "ELEMENT_OF", - "from": 90356814, - "to": 90291002, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531172, - "label": "ELEMENT_OF", - "from": 90072927, - "to": 90361563, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522980, - "label": "REGULATES", - "from": 90276271, - "to": 90350984, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515813, - "label": "ENCODES", - "from": 90081698, - "to": 90254941, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529125, - "label": "ELEMENT_OF", - "from": 90085075, - "to": 90354697, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512742, - "label": "ELEMENT_OF", - "from": 90363534, - "to": 90280145, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515814, - "label": "ENCODES", - "from": 90081707, - "to": 90254945, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511719, - "label": "ELEMENT_OF", - "from": 90356819, - "to": 90276590, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530158, - "label": "ELEMENT_OF", - "from": 90067964, - "to": 90357489, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534255, - "label": "ELEMENT_OF", - "from": 90070043, - "to": 90372271, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515816, - "label": "ENCODES", - "from": 90081723, - "to": 90254952, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511720, - "label": "ELEMENT_OF", - "from": 90356831, - "to": 90276604, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518888, - "label": "ENCODES", - "from": 90198045, - "to": 90272972, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511721, - "label": "ELEMENT_OF", - "from": 90356833, - "to": 90279695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518889, - "label": "ENCODES", - "from": 90198046, - "to": 90272973, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534292, - "label": "ELEMENT_OF", - "from": 90091684, - "to": 90372321, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522004, - "label": "REGULATES", - "from": 90275097, - "to": 90350771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520981, - "label": "REGULATES", - "from": 90277639, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534294, - "label": "ELEMENT_OF", - "from": 90091684, - "to": 90372324, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516886, - "label": "ENCODES", - "from": 90128232, - "to": 90261359, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529174, - "label": "ELEMENT_OF", - "from": 90071057, - "to": 90354827, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529168, - "label": "ELEMENT_OF", - "from": 90070348, - "to": 90354813, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520988, - "label": "REGULATES", - "from": 90277298, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522012, - "label": "REGULATES", - "from": 90277284, - "to": 90350771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534301, - "label": "ELEMENT_OF", - "from": 90091684, - "to": 90372325, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522014, - "label": "REGULATES", - "from": 90277335, - "to": 90350771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513816, - "label": "ELEMENT_OF", - "from": 90370938, - "to": 90283228, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529176, - "label": "ELEMENT_OF", - "from": 90071075, - "to": 90354827, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522008, - "label": "REGULATES", - "from": 90276271, - "to": 90350771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522010, - "label": "REGULATES", - "from": 90276624, - "to": 90350771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520987, - "label": "REGULATES", - "from": 90277284, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511748, - "label": "ELEMENT_OF", - "from": 90356896, - "to": 90276706, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515841, - "label": "ENCODES", - "from": 90082998, - "to": 90255185, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523009, - "label": "REGULATES", - "from": 90291066, - "to": 90351014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511747, - "label": "ELEMENT_OF", - "from": 90356895, - "to": 90276704, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517891, - "label": "ENCODES", - "from": 90157388, - "to": 90267954, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523011, - "label": "REGULATES", - "from": 90291150, - "to": 90351014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517901, - "label": "ENCODES", - "from": 90157470, - "to": 90267979, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511759, - "label": "ELEMENT_OF", - "from": 90356920, - "to": 90277284, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514824, - "label": "ENCODES", - "from": 75950332, - "to": 90230357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512820, - "label": "ELEMENT_OF", - "from": 90365191, - "to": 90291156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513844, - "label": "ELEMENT_OF", - "from": 90371008, - "to": 90291295, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534324, - "label": "ELEMENT_OF", - "from": 90072967, - "to": 90372358, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514869, - "label": "ENCODES", - "from": 81097799, - "to": 90230760, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524085, - "label": "REGULATES", - "from": 90277298, - "to": 90351463, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524086, - "label": "REGULATES", - "from": 90277574, - "to": 90351463, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534321, - "label": "ELEMENT_OF", - "from": 90071880, - "to": 90372355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512819, - "label": "ELEMENT_OF", - "from": 90365190, - "to": 90288300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515902, - "label": "ENCODES", - "from": 90084567, - "to": 90255590, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524094, - "label": "REGULATES", - "from": 90288420, - "to": 90351463, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512824, - "label": "ELEMENT_OF", - "from": 90365201, - "to": 90288309, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532280, - "label": "ELEMENT_OF", - "from": 90157470, - "to": 90368394, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518970, - "label": "ENCODES", - "from": 90203156, - "to": 90273164, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534308, - "label": "ELEMENT_OF", - "from": 75950332, - "to": 90372334, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533284, - "label": "ELEMENT_OF", - "from": 90198045, - "to": 90370938, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514852, - "label": "ENCODES", - "from": 79216311, - "to": 90230632, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512806, - "label": "ELEMENT_OF", - "from": 90364036, - "to": 90288529, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520992, - "label": "REGULATES", - "from": 90277335, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513824, - "label": "ELEMENT_OF", - "from": 90370955, - "to": 90283291, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511777, - "label": "ELEMENT_OF", - "from": 90356961, - "to": 90277304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533282, - "label": "ELEMENT_OF", - "from": 90198046, - "to": 90370938, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517932, - "label": "ENCODES", - "from": 90169172, - "to": 90268689, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534316, - "label": "ELEMENT_OF", - "from": 90176609, - "to": 90372350, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533293, - "label": "ELEMENT_OF", - "from": 90072836, - "to": 90370955, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534318, - "label": "ELEMENT_OF", - "from": 90071880, - "to": 90372352, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532265, - "label": "ELEMENT_OF", - "from": 90157388, - "to": 90368315, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/acetate.json b/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/acetate.json deleted file mode 100644 index 9f6bcb9e51..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/acetate.json +++ /dev/null @@ -1,4332 +0,0 @@ -{ - "nodes": [ - { - "id": 90350688, - "label": "CRP", - "databaseLabel": "TranscriptionFactor", - "value": 4, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90356833, - "label": "rplJL-rpoBC", - "databaseLabel": "TranscriptionUnit", - "value": 9, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351201, - "label": "GcvA", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90353766, - "label": "mutY-yggX-mltC-nupG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356837, - "label": "rplNXE-rpsNH-rplFR-rpsE-rpmD-rplO-secY-rpmJ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90287979, - "label": "ybcK", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372467, - "label": "yobF-cspC", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90360179, - "label": "rirA-waaQGPSBOJYZU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90360182, - "label": "waaQGPSBOJYZU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90353786, - "label": "mutY-yggX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90286716, - "label": "yobF-cspC", - "databaseLabel": "Operon", - "value": 4, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90286718, - "label": "proQ-prc", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90351229, - "label": "DeoR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90084990, - "label": "rng", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90072186, - "label": "secY", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90352197, - "label": "Fur", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90073203, - "label": "rpoC", - "databaseLabel": "Gene", - "value": 5, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90069870, - "label": "icd", - "databaseLabel": "Gene", - "value": 14, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90257232, - "label": "cysteine/O-acetylserine exporter EamA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90109804, - "label": "ptsP", - "databaseLabel": "Gene", - "value": 7, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90073197, - "label": "rpoB", - "databaseLabel": "Gene", - "value": 4, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90138731, - "label": "ybcK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90293844, - "label": "rphp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90357076, - "label": "icd", - "databaseLabel": "TranscriptionUnit", - "value": 14, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90353748, - "label": "mutY-yggX-mltC-nupG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350687, - "label": "FNR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90356831, - "label": "rph-pyrE", - "databaseLabel": "TranscriptionUnit", - "value": 10, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351199, - "label": "CytR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90369826, - "label": "rlmA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90310691, - "label": "yiaYp7", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90258976, - "label": "putative lipid binding hydrolase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90356771, - "label": "nlpD-rpoS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90369831, - "label": "yobF-cspC", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90070043, - "label": "rpoS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351652, - "label": "NsrR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90091801, - "label": "eamA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90137366, - "label": "mhpT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90260781, - "label": "stress protein, member of the CspA family", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90246700, - "label": "adenine DNA glycosylase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90260783, - "label": "23S rRNA m1G745 methyltransferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90286895, - "label": "rhsE-ydcD", - "databaseLabel": "Operon", - "value": 11, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90311468, - "label": "yihVp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90369837, - "label": "proQ-prc", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90099471, - "label": "yiiX", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90253371, - "label": "RNA polymerase subunit β'", - "databaseLabel": "GeneProduct", - "value": 5, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90253370, - "label": "RNA polymerase subunit β", - "databaseLabel": "GeneProduct", - "value": 4, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90255930, - "label": "RNase G", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90175295, - "label": "yobF", - "databaseLabel": "Gene", - "value": 3, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90253312, - "label": "truncated RNase PH", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90265091, - "label": "3-hydroxyphenylpropionate/3-hydroxycinnamate:H+ symporter", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372358, - "label": "rph", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90265861, - "label": "DLP12 prophage; putative recombinase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90083131, - "label": "yicC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90085947, - "label": "waaO", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351108, - "label": "UxuR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90351371, - "label": "Cra", - "databaseLabel": "TranscriptionFactor", - "value": 16, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 60645110, - "label": "rhsE", - "databaseLabel": "Gene", - "value": 11, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90310671, - "label": "yiaYp4", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90279692, - "label": "rhoL-rho", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90279695, - "label": "rplKAJL-rpoBC", - "databaseLabel": "Operon", - "value": 9, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90365458, - "label": "ybcK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90288400, - "label": "mhpT", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90252304, - "label": "Sec translocon subunit SecY", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90260752, - "label": "phosphoenolpyruvate-protein phosphotransferase PtsP", - "databaseLabel": "GeneProduct", - "value": 7, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90280467, - "label": "eamA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90281237, - "label": "yjgN", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90277396, - "label": "gcvTHP", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90290452, - "label": "rppH-ptsP", - "databaseLabel": "Operon", - "value": 7, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90216726, - "label": "RhsE protein in rhs element", - "databaseLabel": "GeneProduct", - "value": 11, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90310683, - "label": "yiaYp6", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90351129, - "label": "UidR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90351903, - "label": "MqsA", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90306079, - "label": "cspCp8", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90261217, - "label": "putrescine ABC exporter ATP binding protein SapD", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90357216, - "label": "nlpD-rpoS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90071005, - "label": "mutY", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90359782, - "label": "rplKAJL-rpoBC", - "databaseLabel": "TranscriptionUnit", - "value": 9, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350826, - "label": "MarA", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90357230, - "label": "rpoS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90369263, - "label": "rhsE-ydcD", - "databaseLabel": "TranscriptionUnit", - "value": 11, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90203117, - "label": "yjgN", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90277877, - "label": "mutY-yggX-mltC-nupG", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90354423, - "label": "rpoBC", - "databaseLabel": "TranscriptionUnit", - "value": 9, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90080454, - "label": "uidA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90087110, - "label": "gcvT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90350843, - "label": "GadX", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90371064, - "label": "yicC", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90276604, - "label": "rph-pyrE", - "databaseLabel": "Operon", - "value": 10, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90276607, - "label": "rplNXE-rpsNH-rplFR-rpsE-rpmD-rplO-secY-rpmJ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90136318, - "label": "sapA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90283458, - "label": "yicC", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90264770, - "label": "putative periplasmic binding protein SapA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90136311, - "label": "sapB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90245832, - "label": "RNA polymerase, sigma S (sigma 38) factor", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90356169, - "label": "gcvTHP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90370511, - "label": "rppH-ptsP", - "databaseLabel": "TranscriptionUnit", - "value": 7, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90072816, - "label": "rho", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90350797, - "label": "Lrp", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90255312, - "label": "UPF0701 family protein YicC", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90109932, - "label": "rlmA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90277335, - "label": "nlpD-rpoS", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90281433, - "label": "uidABC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90128103, - "label": "sapD", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90299609, - "label": "yicCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90368219, - "label": "sapABCDF", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90109924, - "label": "cspC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90256092, - "label": "UDP-D-glucose:(glucosyl)LPS α-1,3-glucosyltransferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90279331, - "label": "icd", - "databaseLabel": "Operon", - "value": 14, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90269607, - "label": "DUF2527 domain-containing protein YobF", - "databaseLabel": "GeneProduct", - "value": 3, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90359717, - "label": "rhoL-rho", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351279, - "label": "PurR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90372271, - "label": "rpoS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90353836, - "label": "mutY-yggX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90256304, - "label": "aminomethyltransferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350771, - "label": "ArcA", - "databaseLabel": "TranscriptionFactor", - "value": 15, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90253747, - "label": "β-glucuronidase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90236850, - "label": "isocitrate dehydrogenase", - "databaseLabel": "GeneProduct", - "value": 14, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90355376, - "label": "icd", - "databaseLabel": "TranscriptionUnit", - "value": 14, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90290871, - "label": "rlmA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372277, - "label": "rpoS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90072967, - "label": "rph", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372283, - "label": "rpoS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372280, - "label": "rpoS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90363070, - "label": "yjgN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90353852, - "label": "mutY-yggX-mltC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90264766, - "label": "putrescine ABC exporter membrane subunit SapB", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90253246, - "label": "transcription termination factor Rho", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90282626, - "label": "yiiX", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90350726, - "label": "SoxS", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90273156, - "label": "conserved inner membrane protein YjgN", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90353797, - "label": "mutY-yggX-mltC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90353546, - "label": "uidABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372234, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90365321, - "label": "mhpT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90252938, - "label": "pyruvate kinase I", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90262925, - "label": "RNA chaperone ProQ", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90363278, - "label": "eamA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90281614, - "label": "sapABCDF", - "databaseLabel": "Operon", - "value": 4, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372237, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90291344, - "label": "rirA-waaQGPSBOJYZU", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90129837, - "label": "proQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90072486, - "label": "pykF", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372507, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90358424, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371225, - "label": "yiiX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90276255, - "label": "pykF", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - } - ], - "edges": [ - { - "id": 177521044, - "label": "REGULATES", - "from": 90277877, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517461, - "label": "ENCODES", - "from": 90137366, - "to": 90265091, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514391, - "label": "ELEMENT_OF", - "from": 90372277, - "to": 90277335, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513873, - "label": "ELEMENT_OF", - "from": 90371064, - "to": 90283458, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515167, - "label": "ENCODES", - "from": 90069870, - "to": 90236850, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531800, - "label": "ELEMENT_OF", - "from": 90137366, - "to": 90365321, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511298, - "label": "ELEMENT_OF", - "from": 90353748, - "to": 90277877, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511564, - "label": "ELEMENT_OF", - "from": 90356169, - "to": 90277396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523855, - "label": "REGULATES", - "from": 90279331, - "to": 90351371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513352, - "label": "ELEMENT_OF", - "from": 90369826, - "to": 90290871, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509514, - "label": "ELEMENT_OF", - "from": 90293844, - "to": 90356831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513355, - "label": "ELEMENT_OF", - "from": 90369837, - "to": 90286718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532341, - "label": "ELEMENT_OF", - "from": 60645110, - "to": 90369263, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512631, - "label": "ELEMENT_OF", - "from": 90363278, - "to": 90280467, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515441, - "label": "ENCODES", - "from": 90072186, - "to": 90252304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515955, - "label": "ENCODES", - "from": 90084990, - "to": 90255930, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530291, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90358424, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515187, - "label": "ENCODES", - "from": 90070043, - "to": 90245832, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530808, - "label": "ELEMENT_OF", - "from": 90073197, - "to": 90359782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530809, - "label": "ELEMENT_OF", - "from": 90073203, - "to": 90359782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524391, - "label": "REGULATES", - "from": 90288400, - "to": 90351652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513644, - "label": "ELEMENT_OF", - "from": 90370511, - "to": 90290452, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512879, - "label": "ELEMENT_OF", - "from": 90365321, - "to": 90288400, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530799, - "label": "ELEMENT_OF", - "from": 90072816, - "to": 90359717, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521064, - "label": "REGULATES", - "from": 90281433, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533355, - "label": "ELEMENT_OF", - "from": 90083131, - "to": 90371064, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515479, - "label": "ENCODES", - "from": 90072486, - "to": 90252938, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516759, - "label": "ENCODES", - "from": 90109804, - "to": 90260752, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515728, - "label": "ENCODES", - "from": 90080454, - "to": 90253747, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522385, - "label": "REGULATES", - "from": 90277335, - "to": 90350843, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512157, - "label": "ELEMENT_OF", - "from": 90359717, - "to": 90279692, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513949, - "label": "ELEMENT_OF", - "from": 90371225, - "to": 90282626, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511901, - "label": "ELEMENT_OF", - "from": 90358424, - "to": 90276255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529821, - "label": "ELEMENT_OF", - "from": 90070043, - "to": 90356771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534424, - "label": "ELEMENT_OF", - "from": 90175295, - "to": 90372467, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524696, - "label": "REGULATES", - "from": 90277335, - "to": 90351903, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534425, - "label": "ELEMENT_OF", - "from": 90109924, - "to": 90372467, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510596, - "label": "ELEMENT_OF", - "from": 90299609, - "to": 90371064, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529281, - "label": "ELEMENT_OF", - "from": 90069870, - "to": 90355376, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513153, - "label": "ELEMENT_OF", - "from": 90368219, - "to": 90281614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514691, - "label": "ENCODES", - "from": 60645110, - "to": 90216726, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523917, - "label": "REGULATES", - "from": 90276255, - "to": 90351371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516495, - "label": "ENCODES", - "from": 90099471, - "to": 90258976, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510900, - "label": "ELEMENT_OF", - "from": 90293844, - "to": 90372358, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530871, - "label": "ELEMENT_OF", - "from": 90085947, - "to": 90360179, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534463, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90372507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531897, - "label": "ELEMENT_OF", - "from": 90138731, - "to": 90365458, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530105, - "label": "ELEMENT_OF", - "from": 90070043, - "to": 90357216, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528826, - "label": "ELEMENT_OF", - "from": 90080454, - "to": 90353546, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530107, - "label": "ELEMENT_OF", - "from": 90070043, - "to": 90357230, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516004, - "label": "ENCODES", - "from": 90085947, - "to": 90256092, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530085, - "label": "ELEMENT_OF", - "from": 90069870, - "to": 90357076, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514470, - "label": "ELEMENT_OF", - "from": 90372467, - "to": 90286716, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517542, - "label": "ENCODES", - "from": 90138731, - "to": 90265861, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516774, - "label": "ENCODES", - "from": 90109924, - "to": 90260781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529056, - "label": "ELEMENT_OF", - "from": 90073203, - "to": 90354423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529057, - "label": "ELEMENT_OF", - "from": 90073197, - "to": 90354423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516268, - "label": "ENCODES", - "from": 90091801, - "to": 90257232, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522158, - "label": "REGULATES", - "from": 90277396, - "to": 90350797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512942, - "label": "ELEMENT_OF", - "from": 90365458, - "to": 90287979, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516776, - "label": "ENCODES", - "from": 90109932, - "to": 90260783, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525480, - "label": "REGULATES", - "from": 90277335, - "to": 90352197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512212, - "label": "ELEMENT_OF", - "from": 90360179, - "to": 90291344, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515538, - "label": "ENCODES", - "from": 90072967, - "to": 90253312, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521438, - "label": "REGULATES", - "from": 90291344, - "to": 90350726, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534232, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90372234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523737, - "label": "REGULATES", - "from": 90277396, - "to": 90351279, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534233, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90372237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513216, - "label": "ELEMENT_OF", - "from": 90369263, - "to": 90286895, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531392, - "label": "ELEMENT_OF", - "from": 90203117, - "to": 90363070, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515520, - "label": "ENCODES", - "from": 90072816, - "to": 90253246, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517324, - "label": "ENCODES", - "from": 90136311, - "to": 90264766, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523468, - "label": "REGULATES", - "from": 90277877, - "to": 90351199, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517325, - "label": "ENCODES", - "from": 90136318, - "to": 90264770, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530888, - "label": "ELEMENT_OF", - "from": 90085947, - "to": 90360182, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520180, - "label": "REGULATES", - "from": 90277396, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528885, - "label": "ELEMENT_OF", - "from": 90071005, - "to": 90353748, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534256, - "label": "ELEMENT_OF", - "from": 90070043, - "to": 90372277, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515569, - "label": "ENCODES", - "from": 90073197, - "to": 90253370, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534257, - "label": "ELEMENT_OF", - "from": 90070043, - "to": 90372280, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515570, - "label": "ENCODES", - "from": 90073203, - "to": 90253371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534258, - "label": "ELEMENT_OF", - "from": 90070043, - "to": 90372283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528892, - "label": "ELEMENT_OF", - "from": 90071005, - "to": 90353766, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520957, - "label": "REGULATES", - "from": 90277396, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516089, - "label": "ENCODES", - "from": 90087110, - "to": 90256304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529892, - "label": "ELEMENT_OF", - "from": 90073203, - "to": 90356833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523238, - "label": "REGULATES", - "from": 90281433, - "to": 90351129, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523232, - "label": "REGULATES", - "from": 90281433, - "to": 90351108, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529889, - "label": "ELEMENT_OF", - "from": 90072967, - "to": 90356831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521954, - "label": "REGULATES", - "from": 90279331, - "to": 90350771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529891, - "label": "ELEMENT_OF", - "from": 90073197, - "to": 90356833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523491, - "label": "REGULATES", - "from": 90277396, - "to": 90351201, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517091, - "label": "ENCODES", - "from": 90129837, - "to": 90262925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534255, - "label": "ELEMENT_OF", - "from": 90070043, - "to": 90372271, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511720, - "label": "ELEMENT_OF", - "from": 90356831, - "to": 90276604, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515304, - "label": "ENCODES", - "from": 90071005, - "to": 90246700, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511721, - "label": "ELEMENT_OF", - "from": 90356833, - "to": 90279695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533481, - "label": "ELEMENT_OF", - "from": 90099471, - "to": 90371225, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529898, - "label": "ELEMENT_OF", - "from": 90072186, - "to": 90356837, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511723, - "label": "ELEMENT_OF", - "from": 90356837, - "to": 90276607, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515857, - "label": "ENCODES", - "from": 90083131, - "to": 90255312, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528913, - "label": "ELEMENT_OF", - "from": 90071005, - "to": 90353836, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528914, - "label": "ELEMENT_OF", - "from": 90071005, - "to": 90353852, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522014, - "label": "REGULATES", - "from": 90277335, - "to": 90350771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523551, - "label": "REGULATES", - "from": 90277877, - "to": 90351229, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532228, - "label": "ELEMENT_OF", - "from": 90128103, - "to": 90368219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528900, - "label": "ELEMENT_OF", - "from": 90071005, - "to": 90353797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532230, - "label": "ELEMENT_OF", - "from": 90136311, - "to": 90368219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532231, - "label": "ELEMENT_OF", - "from": 90136318, - "to": 90368219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516865, - "label": "ENCODES", - "from": 90128103, - "to": 90261217, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528897, - "label": "ELEMENT_OF", - "from": 90071005, - "to": 90353786, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529422, - "label": "ELEMENT_OF", - "from": 90087110, - "to": 90356169, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531471, - "label": "ELEMENT_OF", - "from": 90091801, - "to": 90363278, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533003, - "label": "ELEMENT_OF", - "from": 90109804, - "to": 90370511, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534324, - "label": "ELEMENT_OF", - "from": 90072967, - "to": 90372358, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518967, - "label": "ENCODES", - "from": 90203117, - "to": 90273156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532528, - "label": "ELEMENT_OF", - "from": 90175295, - "to": 90369831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532529, - "label": "ELEMENT_OF", - "from": 90109924, - "to": 90369831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532531, - "label": "ELEMENT_OF", - "from": 90129837, - "to": 90369837, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511804, - "label": "ELEMENT_OF", - "from": 90357076, - "to": 90279331, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518206, - "label": "ENCODES", - "from": 90175295, - "to": 90269607, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520992, - "label": "REGULATES", - "from": 90277335, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522275, - "label": "REGULATES", - "from": 90291344, - "to": 90350826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511276, - "label": "ELEMENT_OF", - "from": 90353546, - "to": 90281433, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532527, - "label": "ELEMENT_OF", - "from": 90109932, - "to": 90369826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512553, - "label": "ELEMENT_OF", - "from": 90363070, - "to": 90281237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/glycerol.json b/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/glycerol.json deleted file mode 100644 index 4dff8e3d14..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/glycerol.json +++ /dev/null @@ -1,7507 +0,0 @@ -{ - "nodes": [ - { - "id": 90230626, - "label": "adenylate cyclase", - "databaseLabel": "GeneProduct", - "value": 21, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372455, - "label": "flhDC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371428, - "label": "insO-2-yjhWV", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351973, - "label": "HypT", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90279785, - "label": "pdxK", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90358123, - "label": "ptsHI-crr", - "databaseLabel": "TranscriptionUnit", - "value": 10, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90358127, - "label": "ptsHI-crr", - "databaseLabel": "TranscriptionUnit", - "value": 10, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90358124, - "label": "ptsHI-crr", - "databaseLabel": "TranscriptionUnit", - "value": 10, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90279283, - "label": "ynfEFGH-dmsD", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90355569, - "label": "crp", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90157384, - "label": "insH-4", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90157383, - "label": "ynaI", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90157381, - "label": "mppA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90157380, - "label": "pgrR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90291068, - "label": "yfdX-frc-oxc-yfdVE", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90128193, - "label": "yadK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351936, - "label": "AidB", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90279751, - "label": "ybhD", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90291019, - "label": "pgrR", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90358094, - "label": "ptsHI-crr", - "databaseLabel": "TranscriptionUnit", - "value": 11, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371919, - "label": "crp", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90090353, - "label": "moaA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90371917, - "label": "crp", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90290515, - "label": "ypfJ-tmcA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90371920, - "label": "cyaA", - "databaseLabel": "TranscriptionUnit", - "value": 21, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371921, - "label": "cyaA", - "databaseLabel": "TranscriptionUnit", - "value": 21, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90352983, - "label": "metBL", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90261335, - "label": "putative fimbrial protein YadK", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350933, - "label": "EvgA", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90091881, - "label": "yafD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90209113, - "label": "yjhW", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90307421, - "label": "rplYp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90350943, - "label": "ArgR", - "databaseLabel": "TranscriptionFactor", - "value": 3, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90358111, - "label": "ptsHI-crr", - "databaseLabel": "TranscriptionUnit", - "value": 10, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356573, - "label": "gntKU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90368288, - "label": "pgrR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350884, - "label": "PhoP", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90368293, - "label": "mppA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90290473, - "label": "menFDHBCE", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90353450, - "label": "gntRKU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90104599, - "label": "napA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90281259, - "label": "ynaI", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90368297, - "label": "insH-4", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351406, - "label": "LeuO", - "databaseLabel": "TranscriptionFactor", - "value": 3, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90267949, - "label": "DNA-binding transcriptional repressor PgrR", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90267951, - "label": "small conductance mechanosensitive channel YnaI", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90267950, - "label": "murein tripeptide ABC transporter periplasmic binding protein", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90279726, - "label": "yaiT", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90350899, - "label": "NarL", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 78406909, - "label": "crr", - "databaseLabel": "Gene", - "value": 10, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90230580, - "label": "Enzyme IIAGlc", - "databaseLabel": "GeneProduct", - "value": 10, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90361653, - "label": "pdxK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90352442, - "label": "rrsB-gltT-rrlB-rrfB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350904, - "label": "NarP", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90370873, - "label": "yhdN-zntR", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90370876, - "label": "gspCDEFGHIJKLMO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90277632, - "label": "cyaA", - "databaseLabel": "Operon", - "value": 21, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90183938, - "label": "pdxK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90128699, - "label": "dgcE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351879, - "label": "MetJ", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90288391, - "label": "yahIJ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90365194, - "label": "yafDE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90073398, - "label": "rpsM", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90371850, - "label": "gspCDEFGHIJKLMO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351371, - "label": "Cra", - "databaseLabel": "TranscriptionFactor", - "value": 13, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90279691, - "label": "hisLGDCBHAFI", - "databaseLabel": "Operon", - "value": 6, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90371849, - "label": "gspCDEFGHIJKLMO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90353423, - "label": "crr", - "databaseLabel": "TranscriptionUnit", - "value": 10, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90353421, - "label": "crr", - "databaseLabel": "TranscriptionUnit", - "value": 10, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90352402, - "label": "moaABCDE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90254101, - "label": "putative LuxR family transcriptional regulator FimZ", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90246420, - "label": "fused aspartate kinase/homoserine dehydrogenase 2", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90353940, - "label": "metY-rimP-nusA-infB-rbfA-truB-rpsO-pnp", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90276638, - "label": "rpsMKD-rpoA-rplQ", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90352925, - "label": "rrsB-gltT-rrlB-rrfB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372067, - "label": "rrlB-rrfB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90260456, - "label": "putative DNA repair helicase RadD", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90256874, - "label": "GTP 3',8'-cyclase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90137553, - "label": "yaiT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90354668, - "label": "cyaA", - "databaseLabel": "TranscriptionUnit", - "value": 21, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90229744, - "label": "cytidine/deoxycytidine deaminase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90356723, - "label": "hisLGDCBHAFI", - "databaseLabel": "TranscriptionUnit", - "value": 6, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90267123, - "label": "putative DNA-binding transcriptional regulator YbhD", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90351095, - "label": "GntR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90281977, - "label": "insO-2-yjhWV", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90361854, - "label": "ybhD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90352124, - "label": "YjjQ", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90351101, - "label": "IdnR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90355657, - "label": "flhDC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90128368, - "label": "ettA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90355666, - "label": "hns", - "databaseLabel": "TranscriptionUnit", - "value": 6, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90233301, - "label": "DNA-binding transcriptional dual regulator FlhD", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90361815, - "label": "yaiT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90287063, - "label": "yceK", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 89738211, - "label": "fbaA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90291167, - "label": "radD", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90265054, - "label": "carbamate kinase-like protein YahI", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90277793, - "label": "carAB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90287011, - "label": "mppA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90279333, - "label": "epd-pgk-fbaA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90351014, - "label": "NagC", - "databaseLabel": "TranscriptionFactor", - "value": 11, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90129300, - "label": "gntK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 78389351, - "label": "crp", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90277805, - "label": "crp", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90363311, - "label": "dgcE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90359215, - "label": "napFDAGHBC-ccmABCDEFGH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90363308, - "label": "yedP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90353072, - "label": "opgGH", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90291126, - "label": "ettA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90258361, - "label": "putative acyl-CoA dehydrogenase AidB", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90261434, - "label": "energy-dependent translational throttle protein EttA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90352006, - "label": "MatA", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90365318, - "label": "yahIJ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356613, - "label": "atpIBEFHAGDC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90132407, - "label": "rrlB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90263944, - "label": "23S ribosomal RNA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90352009, - "label": "FliZ", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90099635, - "label": "gldA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90303887, - "label": "yceQp6", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90257294, - "label": "endonuclease/exonuclease/phosphatase domain-containing protein YafD", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90286994, - "label": "clcB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372502, - "label": "pgk-fbaA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90277780, - "label": "aidB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372500, - "label": "pgk-fbaA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90281367, - "label": "rrsB-gltT-rrlB-rrfB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90290582, - "label": "metY-rimP-nusA-infB-rbfA-truB-rpsO-pnp", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90261913, - "label": "putative diguanylate cyclase DgcE", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90271129, - "label": "pyridoxal kinase I", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90291099, - "label": "opgGH", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90274719, - "label": "IS5 transposase and trans-activator", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90253408, - "label": "30S ribosomal subunit protein S13", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350688, - "label": "CRP", - "databaseLabel": "TranscriptionFactor", - "value": 71, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90288740, - "label": "yadMLKC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90350693, - "label": "Mlc", - "databaseLabel": "TranscriptionFactor", - "value": 11, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90306160, - "label": "flhCp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90355315, - "label": "aidB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351221, - "label": "Ada", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90366584, - "label": "yceK", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356857, - "label": "rpsMKD-rpoA-rplQ", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350718, - "label": "H-NS", - "databaseLabel": "TranscriptionFactor", - "value": 9, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90371710, - "label": "yadMLKC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 74639727, - "label": "cdd", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90277500, - "label": "gntRKU", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90291269, - "label": "dgcE", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90069626, - "label": "hns", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351684, - "label": "PepA", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90081400, - "label": "fimZ", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90352197, - "label": "Fur", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90184264, - "label": "tmcA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90363464, - "label": "fimZ", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90369608, - "label": "clcB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90269261, - "label": "putative voltage-gated ClC-type chloride channel ClcB", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90269260, - "label": "redox enzyme maturation protein DmsD", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90298956, - "label": "ynaIp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90350668, - "label": "ModE", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90070640, - "label": "metL", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90174064, - "label": "clcB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90275409, - "label": "ptsHI-crr", - "databaseLabel": "Operon", - "value": 11, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90174057, - "label": "dmsD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90234971, - "label": "glycerol kinase", - "databaseLabel": "GeneProduct", - "value": 30, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350687, - "label": "FNR", - "databaseLabel": "TranscriptionFactor", - "value": 3, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90351199, - "label": "CytR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90277408, - "label": "leuLABCD", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90370083, - "label": "radD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351652, - "label": "NsrR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 78876660, - "label": "cyaA", - "databaseLabel": "Gene", - "value": 21, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351146, - "label": "HdfR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90354218, - "label": "atpBEFHAGDC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90352171, - "label": "IHF", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90058263, - "label": "flhD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90283051, - "label": "gspCDEFGHIJKLMO", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90283050, - "label": "yhdN-zntR", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90354220, - "label": "atpBEFHAGDC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90276399, - "label": "napFDAGHBC-ccmABCDEFGH", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90351149, - "label": "SlyA", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90272816, - "label": "Type II secretion system protein GspE", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350645, - "label": "Fis", - "databaseLabel": "TranscriptionFactor", - "value": 11, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90351162, - "label": "QseB", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90129415, - "label": "yceK", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90261560, - "label": "isochorismate synthase MenF", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90352191, - "label": "CueR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90279998, - "label": "fimZ", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90271233, - "label": "tRNAMet cytidine acetyltransferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90128439, - "label": "menF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90361354, - "label": "yfdX-frc-oxc-yfdVE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356744, - "label": "menFDHBCE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356749, - "label": "moaABCDE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90260494, - "label": "periplasmic nitrate reductase subunit NapA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90277905, - "label": "flhDC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90351633, - "label": "AcrR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90361873, - "label": "napFDAGHBC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90277401, - "label": "glpFKX", - "databaseLabel": "Operon", - "value": 32, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90297368, - "label": "yhdNp", - "databaseLabel": "Promoter", - "value": 2, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90275352, - "label": "cdd", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90277915, - "label": "hns", - "databaseLabel": "Operon", - "value": 6, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90356761, - "label": "napFDAGHBC-ccmABCDEFGH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90265117, - "label": "putative uncharacterized protein YaiT", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90353694, - "label": "ynfEFGH-dmsD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90292449, - "label": "hnsp", - "databaseLabel": "Promoter", - "value": 4, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90363107, - "label": "ynaI", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356455, - "label": "glpFKX", - "databaseLabel": "TranscriptionUnit", - "value": 32, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90229478, - "label": "ATP synthase F1 complex subunit δ", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90269926, - "label": "putative mannosyl-3-phosphoglycerate phosphatase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90233067, - "label": "fructose-bisphosphate aldolase class II", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90361070, - "label": "pgk-fbaA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90361071, - "label": "epd-pgk-fbaA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90262766, - "label": "DUF1375 domain-containing lipoprotein YceK", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350829, - "label": "IscR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90175693, - "label": "yedP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90356471, - "label": "leuLABCD", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350843, - "label": "GadX", - "databaseLabel": "TranscriptionFactor", - "value": 6, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90351355, - "label": "CspA", - "databaseLabel": "TranscriptionFactor", - "value": 6, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90298619, - "label": "yfdXp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90370296, - "label": "ypfJ-tmcA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 70418351, - "label": "atpH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90230527, - "label": "DNA-binding transcriptional dual regulator CRP", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90236608, - "label": "DNA-binding transcriptional dual regulator H-NS", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372293, - "label": "rpsMKD-rpoA-rplQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90286790, - "label": "insH-4", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90262730, - "label": "D-gluconate kinase, thermostable", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90355405, - "label": "carAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90363085, - "label": "ettA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350797, - "label": "Lrp", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90104478, - "label": "radD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90371232, - "label": "ptsA-fsaB-gldA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90279078, - "label": "metBL", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90097302, - "label": "aidB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90305194, - "label": "mppAp13", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90372782, - "label": "gntK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351279, - "label": "PurR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90350767, - "label": "LrhA", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90259118, - "label": "L-1,2-propanediol dehydrogenase / glycerol dehydrogenase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90351794, - "label": "RutR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90197683, - "label": "gspE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90288308, - "label": "yafDE", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90305207, - "label": "insHp7", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90145417, - "label": "ybhD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90068099, - "label": "glpK", - "databaseLabel": "Gene", - "value": 30, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90305156, - "label": "mppAp4", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90305159, - "label": "mppAp5", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90352260, - "label": "FlhDC", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90274955, - "label": "moaABCDE", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90352264, - "label": "RcsAB", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90352273, - "label": "OmpR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90351249, - "label": "GlpR", - "databaseLabel": "TranscriptionFactor", - "value": 32, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90282646, - "label": "ptsA-fsaB-gldA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90281112, - "label": "yedP", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90277531, - "label": "atpIBEFHAGDC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90359967, - "label": "cdd", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90137249, - "label": "yahI", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90305182, - "label": "mppAp9", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - } - ], - "edges": [ - { - "id": 177511573, - "label": "ELEMENT_OF", - "from": 90356471, - "to": 90277408, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523856, - "label": "REGULATES", - "from": 90279333, - "to": 90351371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522833, - "label": "REGULATES", - "from": 90291068, - "to": 90350933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517202, - "label": "ENCODES", - "from": 90132407, - "to": 90263944, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524371, - "label": "REGULATES", - "from": 90275352, - "to": 90351652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522332, - "label": "REGULATES", - "from": 90276399, - "to": 90350829, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520269, - "label": "REGULATES", - "from": 90276399, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523343, - "label": "REGULATES", - "from": 90277905, - "to": 90351146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511567, - "label": "ELEMENT_OF", - "from": 90356455, - "to": 90277401, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523851, - "label": "REGULATES", - "from": 90277805, - "to": 90351371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519285, - "label": "REGULATES", - "from": 90281367, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510070, - "label": "ELEMENT_OF", - "from": 90298619, - "to": 90361354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528508, - "label": "ELEMENT_OF", - "from": 90132407, - "to": 90352442, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523385, - "label": "REGULATES", - "from": 90277905, - "to": 90351162, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525433, - "label": "REGULATES", - "from": 90283051, - "to": 90352197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533604, - "label": "ELEMENT_OF", - "from": 90209113, - "to": 90371428, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519270, - "label": "REGULATES", - "from": 90277793, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519271, - "label": "REGULATES", - "from": 90277805, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528999, - "label": "ELEMENT_OF", - "from": 70418351, - "to": 90354218, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531555, - "label": "ELEMENT_OF", - "from": 90081400, - "to": 90363464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514156, - "label": "ELEMENT_OF", - "from": 90371710, - "to": 90288740, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510573, - "label": "ELEMENT_OF", - "from": 90297368, - "to": 90370873, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534637, - "label": "ELEMENT_OF", - "from": 90129300, - "to": 90372782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529006, - "label": "ELEMENT_OF", - "from": 70418351, - "to": 90354220, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528495, - "label": "ELEMENT_OF", - "from": 90090353, - "to": 90352402, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522856, - "label": "REGULATES", - "from": 90290582, - "to": 90350943, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518249, - "label": "ENCODES", - "from": 90175693, - "to": 90269926, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519273, - "label": "REGULATES", - "from": 90277915, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523369, - "label": "REGULATES", - "from": 90283051, - "to": 90351149, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522859, - "label": "REGULATES", - "from": 90277793, - "to": 90350943, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511636, - "label": "ELEMENT_OF", - "from": 90356613, - "to": 90277531, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532114, - "label": "ELEMENT_OF", - "from": 90129415, - "to": 90366584, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522387, - "label": "REGULATES", - "from": 90277915, - "to": 90350843, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511133, - "label": "ELEMENT_OF", - "from": 90352402, - "to": 90274955, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529560, - "label": "ELEMENT_OF", - "from": 90129300, - "to": 90356573, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521370, - "label": "REGULATES", - "from": 90277905, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521371, - "label": "REGULATES", - "from": 90277915, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512646, - "label": "ELEMENT_OF", - "from": 90363308, - "to": 90281112, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519297, - "label": "REGULATES", - "from": 90290582, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516226, - "label": "ENCODES", - "from": 90090353, - "to": 90256874, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524428, - "label": "REGULATES", - "from": 90277793, - "to": 90351684, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523916, - "label": "REGULATES", - "from": 90275409, - "to": 90351371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513164, - "label": "ELEMENT_OF", - "from": 90368297, - "to": 90286790, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512648, - "label": "ELEMENT_OF", - "from": 90363311, - "to": 90291269, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524938, - "label": "REGULATES", - "from": 90277905, - "to": 90352124, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513162, - "label": "ELEMENT_OF", - "from": 90368288, - "to": 90291019, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513163, - "label": "ELEMENT_OF", - "from": 90368293, - "to": 90287011, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516277, - "label": "ENCODES", - "from": 90091881, - "to": 90257294, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518838, - "label": "ENCODES", - "from": 90197683, - "to": 90272816, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521399, - "label": "REGULATES", - "from": 90283051, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511677, - "label": "ELEMENT_OF", - "from": 90356723, - "to": 90279691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525502, - "label": "REGULATES", - "from": 90277905, - "to": 90352197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515775, - "label": "ENCODES", - "from": 90081400, - "to": 90254101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512187, - "label": "ELEMENT_OF", - "from": 90359967, - "to": 90275352, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529595, - "label": "ELEMENT_OF", - "from": 70418351, - "to": 90356613, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519852, - "label": "REGULATES", - "from": 90274955, - "to": 90350668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519853, - "label": "REGULATES", - "from": 90276399, - "to": 90350668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521390, - "label": "REGULATES", - "from": 90281367, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514217, - "label": "ELEMENT_OF", - "from": 90371849, - "to": 90283051, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523733, - "label": "REGULATES", - "from": 90277793, - "to": 90351279, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530390, - "label": "ELEMENT_OF", - "from": 90104599, - "to": 90359215, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531408, - "label": "ELEMENT_OF", - "from": 90157383, - "to": 90363107, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524767, - "label": "REGULATES", - "from": 90277905, - "to": 90352006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529348, - "label": "ELEMENT_OF", - "from": 90069626, - "to": 90355666, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532421, - "label": "ELEMENT_OF", - "from": 90174064, - "to": 90369608, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529344, - "label": "ELEMENT_OF", - "from": 90058263, - "to": 90355657, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523200, - "label": "REGULATES", - "from": 90277500, - "to": 90351101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511948, - "label": "ELEMENT_OF", - "from": 90359215, - "to": 90276399, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525261, - "label": "REGULATES", - "from": 90277793, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525263, - "label": "REGULATES", - "from": 90277905, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525768, - "label": "REGULATES", - "from": 90277905, - "to": 90352273, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531400, - "label": "ELEMENT_OF", - "from": 90128368, - "to": 90363085, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524747, - "label": "REGULATES", - "from": 90279078, - "to": 90351973, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514036, - "label": "ELEMENT_OF", - "from": 90371428, - "to": 90281977, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512496, - "label": "ELEMENT_OF", - "from": 90361854, - "to": 90279751, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524787, - "label": "REGULATES", - "from": 90277905, - "to": 90352009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517630, - "label": "ENCODES", - "from": 90145417, - "to": 90267123, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512481, - "label": "ELEMENT_OF", - "from": 90361815, - "to": 90279726, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533484, - "label": "ELEMENT_OF", - "from": 90099635, - "to": 90371232, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522728, - "label": "REGULATES", - "from": 90276399, - "to": 90350904, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528875, - "label": "ELEMENT_OF", - "from": 90174057, - "to": 90353694, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529429, - "label": "ELEMENT_OF", - "from": 90068099, - "to": 90356455, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511504, - "label": "ELEMENT_OF", - "from": 90355405, - "to": 90277793, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513554, - "label": "ELEMENT_OF", - "from": 90370296, - "to": 90290515, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531486, - "label": "ELEMENT_OF", - "from": 90175693, - "to": 90363308, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529946, - "label": "ELEMENT_OF", - "from": 90073398, - "to": 90356857, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515076, - "label": "ENCODES", - "from": 90068099, - "to": 90234971, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524294, - "label": "REGULATES", - "from": 90277905, - "to": 90351633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511491, - "label": "ELEMENT_OF", - "from": 90355315, - "to": 90277780, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515587, - "label": "ENCODES", - "from": 90073398, - "to": 90253408, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525320, - "label": "REGULATES", - "from": 90274955, - "to": 90352191, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512560, - "label": "ELEMENT_OF", - "from": 90363085, - "to": 90291126, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516659, - "label": "ENCODES", - "from": 90104599, - "to": 90260494, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520253, - "label": "REGULATES", - "from": 90274955, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515135, - "label": "ENCODES", - "from": 90069626, - "to": 90236608, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512568, - "label": "ELEMENT_OF", - "from": 90363107, - "to": 90281259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513082, - "label": "ELEMENT_OF", - "from": 90366584, - "to": 90287063, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534075, - "label": "ELEMENT_OF", - "from": 90132407, - "to": 90372067, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520740, - "label": "REGULATES", - "from": 90290582, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516644, - "label": "ENCODES", - "from": 90104478, - "to": 90260456, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523814, - "label": "REGULATES", - "from": 90277915, - "to": 90351355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521760, - "label": "REGULATES", - "from": 90277905, - "to": 90350767, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531488, - "label": "ELEMENT_OF", - "from": 90128699, - "to": 90363311, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511534, - "label": "ELEMENT_OF", - "from": 90355666, - "to": 90277915, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530984, - "label": "ELEMENT_OF", - "from": 89738211, - "to": 90361070, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530986, - "label": "ELEMENT_OF", - "from": 89738211, - "to": 90361071, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511531, - "label": "ELEMENT_OF", - "from": 90355657, - "to": 90277905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531797, - "label": "ELEMENT_OF", - "from": 90137249, - "to": 90365318, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511324, - "label": "ELEMENT_OF", - "from": 90353940, - "to": 90290582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522591, - "label": "REGULATES", - "from": 90276399, - "to": 90350899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521050, - "label": "REGULATES", - "from": 90277905, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517447, - "label": "ENCODES", - "from": 90137249, - "to": 90265054, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528706, - "label": "ELEMENT_OF", - "from": 90070640, - "to": 90352983, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516428, - "label": "ENCODES", - "from": 90097302, - "to": 90258361, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521036, - "label": "REGULATES", - "from": 90277805, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516941, - "label": "ENCODES", - "from": 90128699, - "to": 90261913, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523597, - "label": "REGULATES", - "from": 90277401, - "to": 90351249, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518474, - "label": "ENCODES", - "from": 90184264, - "to": 90271233, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522570, - "label": "REGULATES", - "from": 90279283, - "to": 90350899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521077, - "label": "REGULATES", - "from": 90279333, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533879, - "label": "ELEMENT_OF", - "from": 90197683, - "to": 90371850, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511856, - "label": "ELEMENT_OF", - "from": 90358111, - "to": 90275409, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529778, - "label": "ELEMENT_OF", - "from": 90090353, - "to": 90356749, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531314, - "label": "ELEMENT_OF", - "from": 90137553, - "to": 90361815, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524658, - "label": "REGULATES", - "from": 90279078, - "to": 90351879, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517474, - "label": "ENCODES", - "from": 90137553, - "to": 90265117, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512876, - "label": "ELEMENT_OF", - "from": 90365318, - "to": 90288391, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511855, - "label": "ELEMENT_OF", - "from": 90358094, - "to": 90275409, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529256, - "label": "ELEMENT_OF", - "from": 90097302, - "to": 90355315, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529769, - "label": "ELEMENT_OF", - "from": 90128439, - "to": 90356744, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533865, - "label": "ELEMENT_OF", - "from": 90197683, - "to": 90371849, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529303, - "label": "ELEMENT_OF", - "from": 78389351, - "to": 90355569, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529808, - "label": "ELEMENT_OF", - "from": 90104599, - "to": 90356761, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534417, - "label": "ELEMENT_OF", - "from": 90058263, - "to": 90372455, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514961, - "label": "ENCODES", - "from": 89738211, - "to": 90233067, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528798, - "label": "ELEMENT_OF", - "from": 78406909, - "to": 90353421, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517023, - "label": "ENCODES", - "from": 90129300, - "to": 90262730, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530840, - "label": "ELEMENT_OF", - "from": 74639727, - "to": 90359967, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532864, - "label": "ELEMENT_OF", - "from": 90184264, - "to": 90370296, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531329, - "label": "ELEMENT_OF", - "from": 90145417, - "to": 90361854, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522124, - "label": "REGULATES", - "from": 90281367, - "to": 90350797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531343, - "label": "ELEMENT_OF", - "from": 90104599, - "to": 90361873, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521099, - "label": "REGULATES", - "from": 90275409, - "to": 90350693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522166, - "label": "REGULATES", - "from": 90277780, - "to": 90350797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524726, - "label": "REGULATES", - "from": 90277780, - "to": 90351936, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523190, - "label": "REGULATES", - "from": 90277500, - "to": 90351095, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514999, - "label": "ENCODES", - "from": 90058263, - "to": 90233301, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514487, - "label": "ELEMENT_OF", - "from": 90372500, - "to": 90279333, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513471, - "label": "ELEMENT_OF", - "from": 90370083, - "to": 90291167, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520120, - "label": "REGULATES", - "from": 90279283, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534457, - "label": "ELEMENT_OF", - "from": 89738211, - "to": 90372500, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534459, - "label": "ELEMENT_OF", - "from": 89738211, - "to": 90372502, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516516, - "label": "ENCODES", - "from": 90099635, - "to": 90259118, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533924, - "label": "ELEMENT_OF", - "from": 78389351, - "to": 90371919, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533925, - "label": "ELEMENT_OF", - "from": 78876660, - "to": 90371920, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533926, - "label": "ELEMENT_OF", - "from": 78876660, - "to": 90371921, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512422, - "label": "ELEMENT_OF", - "from": 90361653, - "to": 90279785, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513952, - "label": "ELEMENT_OF", - "from": 90371232, - "to": 90282646, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528801, - "label": "ELEMENT_OF", - "from": 78406909, - "to": 90353423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533923, - "label": "ELEMENT_OF", - "from": 78389351, - "to": 90371917, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525731, - "label": "REGULATES", - "from": 90276399, - "to": 90352260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517036, - "label": "ENCODES", - "from": 90129415, - "to": 90262766, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525736, - "label": "REGULATES", - "from": 90277905, - "to": 90352264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528810, - "label": "ELEMENT_OF", - "from": 90129300, - "to": 90353450, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509354, - "label": "ELEMENT_OF", - "from": 90292449, - "to": 90355666, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518058, - "label": "ENCODES", - "from": 90174057, - "to": 90269260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518059, - "label": "ENCODES", - "from": 90174064, - "to": 90269261, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529108, - "label": "ELEMENT_OF", - "from": 78876660, - "to": 90354668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523473, - "label": "REGULATES", - "from": 90275352, - "to": 90351199, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514245, - "label": "ELEMENT_OF", - "from": 90371917, - "to": 90277805, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511687, - "label": "ELEMENT_OF", - "from": 90356744, - "to": 90290473, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515267, - "label": "ENCODES", - "from": 90070640, - "to": 90246420, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514248, - "label": "ELEMENT_OF", - "from": 90371921, - "to": 90277632, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512715, - "label": "ELEMENT_OF", - "from": 90363464, - "to": 90279998, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511733, - "label": "ELEMENT_OF", - "from": 90356857, - "to": 90276638, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522998, - "label": "REGULATES", - "from": 90275409, - "to": 90351014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511223, - "label": "ELEMENT_OF", - "from": 90353072, - "to": 90291099, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531698, - "label": "ELEMENT_OF", - "from": 90091881, - "to": 90365194, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520958, - "label": "REGULATES", - "from": 90277401, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517886, - "label": "ENCODES", - "from": 90157380, - "to": 90267949, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517887, - "label": "ENCODES", - "from": 90157381, - "to": 90267950, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524537, - "label": "REGULATES", - "from": 90277793, - "to": 90351794, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513273, - "label": "ELEMENT_OF", - "from": 90369608, - "to": 90286994, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534266, - "label": "ELEMENT_OF", - "from": 90073398, - "to": 90372293, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524006, - "label": "REGULATES", - "from": 90277408, - "to": 90351406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514784, - "label": "ENCODES", - "from": 70418351, - "to": 90229478, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511215, - "label": "ELEMENT_OF", - "from": 90352983, - "to": 90279078, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533231, - "label": "ELEMENT_OF", - "from": 90197683, - "to": 90370876, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532715, - "label": "ELEMENT_OF", - "from": 90104478, - "to": 90370083, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533780, - "label": "ELEMENT_OF", - "from": 90128193, - "to": 90371710, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523538, - "label": "REGULATES", - "from": 90277780, - "to": 90351221, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516882, - "label": "ENCODES", - "from": 90128193, - "to": 90261335, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520979, - "label": "REGULATES", - "from": 90277632, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514844, - "label": "ENCODES", - "from": 78389351, - "to": 90230527, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514845, - "label": "ENCODES", - "from": 78406909, - "to": 90230580, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528664, - "label": "ELEMENT_OF", - "from": 90132407, - "to": 90352925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517888, - "label": "ENCODES", - "from": 90157383, - "to": 90267951, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514816, - "label": "ENCODES", - "from": 74639727, - "to": 90229744, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530176, - "label": "ELEMENT_OF", - "from": 78406909, - "to": 90358094, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513793, - "label": "ELEMENT_OF", - "from": 90370873, - "to": 90283050, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514305, - "label": "ELEMENT_OF", - "from": 90372067, - "to": 90281367, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517889, - "label": "ENCODES", - "from": 90157384, - "to": 90274719, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530179, - "label": "ELEMENT_OF", - "from": 78406909, - "to": 90358111, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530188, - "label": "ELEMENT_OF", - "from": 78406909, - "to": 90358127, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522511, - "label": "REGULATES", - "from": 90279078, - "to": 90350884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510223, - "label": "ELEMENT_OF", - "from": 90298956, - "to": 90363107, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530184, - "label": "ELEMENT_OF", - "from": 78406909, - "to": 90358123, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530186, - "label": "ELEMENT_OF", - "from": 78406909, - "to": 90358124, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520971, - "label": "REGULATES", - "from": 90277500, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531252, - "label": "ELEMENT_OF", - "from": 90183938, - "to": 90361653, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512823, - "label": "ELEMENT_OF", - "from": 90365194, - "to": 90288308, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516912, - "label": "ENCODES", - "from": 90128439, - "to": 90261560, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511293, - "label": "ELEMENT_OF", - "from": 90353694, - "to": 90279283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516900, - "label": "ENCODES", - "from": 90128368, - "to": 90261434, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532260, - "label": "ELEMENT_OF", - "from": 90157384, - "to": 90368297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518437, - "label": "ENCODES", - "from": 90183938, - "to": 90271129, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511264, - "label": "ELEMENT_OF", - "from": 90353450, - "to": 90277500, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514850, - "label": "ENCODES", - "from": 78876660, - "to": 90230626, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532258, - "label": "ELEMENT_OF", - "from": 90157380, - "to": 90368288, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532259, - "label": "ELEMENT_OF", - "from": 90157381, - "to": 90368293, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521005, - "label": "REGULATES", - "from": 90275352, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521007, - "label": "REGULATES", - "from": 90275409, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512297, - "label": "ELEMENT_OF", - "from": 90361354, - "to": 90291068, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/hexanoic.json b/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/hexanoic.json deleted file mode 100644 index 8429323cd6..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/hexanoic.json +++ /dev/null @@ -1,5611 +0,0 @@ -{ - "nodes": [ - { - "id": 90361442, - "label": "barA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90234977, - "label": "DNA-binding transcriptional repressor GlpR", - "databaseLabel": "GeneProduct", - "value": 7, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350688, - "label": "CRP", - "databaseLabel": "TranscriptionFactor", - "value": 38, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90356833, - "label": "rplJL-rpoBC", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90365537, - "label": "rsfS-rlmH-mrdAB-rlpA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90370406, - "label": "abpAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372455, - "label": "flhDC", - "databaseLabel": "TranscriptionUnit", - "value": 7, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351973, - "label": "HypT", - "databaseLabel": "TranscriptionFactor", - "value": 3, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90350954, - "label": "EnvY", - "databaseLabel": "TranscriptionFactor", - "value": 8, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90350959, - "label": "SdiA", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90372211, - "label": "ybbY-glxK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351223, - "label": "BirA", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90274680, - "label": "InsAB' transposase", - "databaseLabel": "GeneProduct", - "value": 7, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90071364, - "label": "ompR", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90356857, - "label": "rpsMKD-rpoA-rplQ", - "databaseLabel": "TranscriptionUnit", - "value": 11, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350718, - "label": "H-NS", - "databaseLabel": "TranscriptionFactor", - "value": 25, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90371966, - "label": "ftsLI-murEF-mraY-murD-ftsW-murGC-ddlB-ftsQAZ-lpxC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371964, - "label": "rsmH-ftsLI-murEF-mraY-murD-ftsW-murGC-ddlB-ftsQAZ-lpxC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90354301, - "label": "ptrA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90286718, - "label": "proQ-prc", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90185280, - "label": "abpA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90292289, - "label": "ompCp1", - "databaseLabel": "Promoter", - "value": 2, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90069626, - "label": "hns", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90350663, - "label": "CpxR", - "databaseLabel": "TranscriptionFactor", - "value": 8, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90275399, - "label": "ompC", - "databaseLabel": "Operon", - "value": 8, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90352197, - "label": "Fur", - "databaseLabel": "TranscriptionFactor", - "value": 21, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90276425, - "label": "glpEGR", - "databaseLabel": "Operon", - "value": 7, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90369870, - "label": "insA-5AB-5B-5", - "databaseLabel": "TranscriptionUnit", - "value": 28, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90176627, - "label": "rhmD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90073203, - "label": "rpoC", - "databaseLabel": "Gene", - "value": 3, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90354509, - "label": "mraZ-rsmH-ftsLI-murEF-mraY-murD-ftsW-murGC-ddlB-ftsQAZ-lpxC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90128752, - "label": "mdtK", - "databaseLabel": "Gene", - "value": 4, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90130032, - "label": "emrY", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90073197, - "label": "rpoB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90294871, - "label": "cydAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90350933, - "label": "EvgA", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90073191, - "label": "rpoA", - "databaseLabel": "Gene", - "value": 11, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90350687, - "label": "FNR", - "databaseLabel": "TranscriptionFactor", - "value": 4, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90169698, - "label": "dosP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90262560, - "label": "galactitol-specific PTS enzyme IIC component", - "databaseLabel": "GeneProduct", - "value": 7, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90175517, - "label": "insA-5", - "databaseLabel": "Gene", - "value": 7, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90357536, - "label": "ompC", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90072349, - "label": "ptrA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90274596, - "label": "OppA5'", - "databaseLabel": "GeneProduct", - "value": 3, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90351143, - "label": "PdhR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90175512, - "label": "insB-5", - "databaseLabel": "Gene", - "value": 7, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90081305, - "label": "crl", - "databaseLabel": "Gene", - "value": 7, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90252838, - "label": "protease 3", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90279974, - "label": "dsrA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90351146, - "label": "HdfR", - "databaseLabel": "TranscriptionFactor", - "value": 21, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90352171, - "label": "IHF", - "databaseLabel": "TranscriptionFactor", - "value": 31, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90361641, - "label": "dosCP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351406, - "label": "LeuO", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90255662, - "label": "ribosomal silencing factor RsfS", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90369837, - "label": "proQ-prc", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90258993, - "label": "osmoregulated periplasmic glucans (OPGs) biosynthesis protein H", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90363441, - "label": "dsrA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90253366, - "label": "RNA polymerase subunit α", - "databaseLabel": "GeneProduct", - "value": 11, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90370101, - "label": "yfaX-rhmD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350645, - "label": "Fis", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90295097, - "label": "bioAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90351162, - "label": "QseB", - "databaseLabel": "TranscriptionFactor", - "value": 21, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90253371, - "label": "RNA polymerase subunit β'", - "databaseLabel": "GeneProduct", - "value": 3, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90253370, - "label": "RNA polymerase subunit β", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90359552, - "label": "prpBCDE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90299141, - "label": "insA-5p", - "databaseLabel": "Promoter", - "value": 7, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90356742, - "label": "opgGH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90071355, - "label": "ompC", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351371, - "label": "Cra", - "databaseLabel": "TranscriptionFactor", - "value": 5, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90279695, - "label": "rplKAJL-rpoBC", - "databaseLabel": "Operon", - "value": 4, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90294543, - "label": "ompCp3", - "databaseLabel": "Promoter", - "value": 2, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90256142, - "label": "sensory histidine kinase BarA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90352914, - "label": "cydAB", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90277905, - "label": "flhDC", - "databaseLabel": "Operon", - "value": 21, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90084655, - "label": "rsfS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90294544, - "label": "ompCp2", - "databaseLabel": "Promoter", - "value": 2, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90351633, - "label": "AcrR", - "databaseLabel": "TranscriptionFactor", - "value": 21, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90099498, - "label": "opgH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90275097, - "label": "cydAB", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90277915, - "label": "hns", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90357529, - "label": "ompC", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90246685, - "label": "N-acetylglucosaminyl transferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90351390, - "label": "GatR", - "databaseLabel": "TranscriptionFactor", - "value": 7, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90276638, - "label": "rpsMKD-rpoA-rplQ", - "databaseLabel": "Operon", - "value": 11, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90279649, - "label": "emrKY", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90281697, - "label": "ptrA-recBD", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90291170, - "label": "abpAB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90269922, - "label": "DsrA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90359782, - "label": "rplKAJL-rpoBC", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90128858, - "label": "gatC", - "databaseLabel": "Gene", - "value": 7, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90290919, - "label": "rsfS-rlmH-mrdAB-rlpA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90354661, - "label": "bioA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90290662, - "label": "mraZ-rsmH-ftsLI-murEF-mraY-murD-ftsW-murGC-ddlB-ftsQAZ-lpxC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90352101, - "label": "MraZ", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90351597, - "label": "AllR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90249198, - "label": "outer membrane porin C", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90175692, - "label": "dsrA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90354423, - "label": "rpoBC", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90070985, - "label": "murG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90356469, - "label": "ompR-envZ", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350843, - "label": "GadX", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90351355, - "label": "CspA", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90372350, - "label": "yfaX-rhmD-yfaVU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90249212, - "label": "DNA-binding transcriptional dual regulator OmpR", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90352124, - "label": "YjjQ", - "databaseLabel": "TranscriptionFactor", - "value": 29, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90265087, - "label": "propionyl-CoA synthetase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90277630, - "label": "bioA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90236608, - "label": "DNA-binding transcriptional dual regulator H-NS", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90137342, - "label": "prpE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90136318, - "label": "sapA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90212034, - "label": "oppA5'", - "databaseLabel": "Gene", - "value": 3, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90280131, - "label": "mdtK", - "databaseLabel": "Operon", - "value": 4, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90264770, - "label": "putative periplasmic binding protein SapA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90359233, - "label": "glpR", - "databaseLabel": "TranscriptionUnit", - "value": 7, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372293, - "label": "rpsMKD-rpoA-rplQ", - "databaseLabel": "TranscriptionUnit", - "value": 11, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90136311, - "label": "sapB", - "databaseLabel": "Gene", - "value": 3, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351562, - "label": "PrpR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90358474, - "label": "ompR-envZ", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90370507, - "label": "ptrA-recBD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90276296, - "label": "ompR-envZ", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90355657, - "label": "flhDC", - "databaseLabel": "TranscriptionUnit", - "value": 14, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90262988, - "label": "multidrug efflux pump membrane subunit EmrY", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90279375, - "label": "gatYZABCD", - "databaseLabel": "Operon", - "value": 7, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90350797, - "label": "Lrp", - "databaseLabel": "TranscriptionFactor", - "value": 8, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90355666, - "label": "hns", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90261973, - "label": "multidrug efflux pump MdtK", - "databaseLabel": "GeneProduct", - "value": 4, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90279637, - "label": "barA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90358487, - "label": "ompR-envZ", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372052, - "label": "glxK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90274775, - "label": "IS1 transposase B", - "databaseLabel": "GeneProduct", - "value": 7, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90359508, - "label": "emrKY", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90290646, - "label": "dosCP", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90368219, - "label": "sapABCDF", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90274781, - "label": "IS5 transposase and trans-activator", - "databaseLabel": "GeneProduct", - "value": 3, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90358494, - "label": "ompR-envZ", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90274780, - "label": "IS1 repressor TnpA", - "databaseLabel": "GeneProduct", - "value": 7, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90270881, - "label": "L-rhamnonate dehydratase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350752, - "label": "RcsB", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90274722, - "label": "IS1 protein InsA", - "databaseLabel": "GeneProduct", - "value": 7, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90265253, - "label": "glycerate 2-kinase 2", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90359205, - "label": "cydAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90215083, - "label": "insB9", - "databaseLabel": "Gene", - "value": 7, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90215084, - "label": "insA9", - "databaseLabel": "Gene", - "value": 7, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90350767, - "label": "LrhA", - "databaseLabel": "TranscriptionFactor", - "value": 21, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90350771, - "label": "ArcA", - "databaseLabel": "TranscriptionFactor", - "value": 10, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90215089, - "label": "insH21", - "databaseLabel": "Gene", - "value": 3, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90353072, - "label": "opgGH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90354864, - "label": "ompC", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90290613, - "label": "insAB-5A-5B-5", - "databaseLabel": "Operon", - "value": 28, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90359222, - "label": "glpEGR", - "databaseLabel": "TranscriptionUnit", - "value": 7, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90269108, - "label": "oxygen-sensing c-di-GMP phosphodiesterase DosP", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90271671, - "label": "CP4-57 prophage; anti-bacteriophage protein", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90068104, - "label": "glpR", - "databaseLabel": "Gene", - "value": 7, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90355899, - "label": "gatYZABCD", - "databaseLabel": "TranscriptionUnit", - "value": 7, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90209211, - "label": "insAB-5", - "databaseLabel": "Gene", - "value": 7, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90359225, - "label": "glpGR", - "databaseLabel": "TranscriptionUnit", - "value": 7, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90086018, - "label": "barA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90359230, - "label": "glpR", - "databaseLabel": "TranscriptionUnit", - "value": 7, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90264766, - "label": "putrescine ABC exporter membrane subunit SapB", - "databaseLabel": "GeneProduct", - "value": 3, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90371970, - "label": "ftsLI-murEF-mraY-murD-ftsW-murGC-ddlB-ftsQAZ-lpxC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90352006, - "label": "MatA", - "databaseLabel": "TranscriptionFactor", - "value": 21, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90291333, - "label": "yfaX-rhmD-yfaVU", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90363530, - "label": "mdtK", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372234, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90352264, - "label": "RcsAB", - "databaseLabel": "TranscriptionFactor", - "value": 21, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90352009, - "label": "FliZ", - "databaseLabel": "TranscriptionFactor", - "value": 21, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90252938, - "label": "pyruvate kinase I", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90360974, - "label": "gcl-hyi-glxR-ybbW-allB-ybbY-glxK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90262925, - "label": "RNA chaperone ProQ", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90281614, - "label": "sapABCDF", - "databaseLabel": "Operon", - "value": 4, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372237, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90290833, - "label": "gcl-hyi-glxR-ybbW-allB-ybbY-glxK", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90129837, - "label": "proQ", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90352273, - "label": "OmpR", - "databaseLabel": "TranscriptionFactor", - "value": 29, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90138026, - "label": "glxK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90072486, - "label": "pykF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351259, - "label": "LexA", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90300824, - "label": "flhDp2", - "databaseLabel": "Promoter", - "value": 7, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90372507, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90291099, - "label": "opgGH", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90358424, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372249, - "label": "gatZABCD", - "databaseLabel": "TranscriptionUnit", - "value": 7, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90253978, - "label": "RNA polymerase holoenzyme assembly factor Crl", - "databaseLabel": "GeneProduct", - "value": 7, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90279580, - "label": "prpBCDE", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90276255, - "label": "pykF", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - } - ], - "edges": [ - { - "id": 177532560, - "label": "ELEMENT_OF", - "from": 90175517, - "to": 90369870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516944, - "label": "ENCODES", - "from": 90128752, - "to": 90261973, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512336, - "label": "ELEMENT_OF", - "from": 90361442, - "to": 90279637, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528721, - "label": "ELEMENT_OF", - "from": 90099498, - "to": 90353072, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532561, - "label": "ELEMENT_OF", - "from": 90209211, - "to": 90369870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509265, - "label": "ELEMENT_OF", - "from": 90292289, - "to": 90354864, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517458, - "label": "ENCODES", - "from": 90137342, - "to": 90265087, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523859, - "label": "REGULATES", - "from": 90279580, - "to": 90351371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511571, - "label": "ELEMENT_OF", - "from": 90356469, - "to": 90276296, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514397, - "label": "ELEMENT_OF", - "from": 90372293, - "to": 90276638, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516958, - "label": "ENCODES", - "from": 90128858, - "to": 90262560, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513375, - "label": "ELEMENT_OF", - "from": 90369870, - "to": 90290613, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524895, - "label": "REGULATES", - "from": 90290662, - "to": 90352101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512088, - "label": "ELEMENT_OF", - "from": 90359552, - "to": 90279580, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521050, - "label": "REGULATES", - "from": 90277905, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518235, - "label": "ENCODES", - "from": 90175517, - "to": 90274722, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531547, - "label": "ELEMENT_OF", - "from": 90175692, - "to": 90363441, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519751, - "label": "REGULATES", - "from": 90275399, - "to": 90350663, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520257, - "label": "REGULATES", - "from": 90275097, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512067, - "label": "ELEMENT_OF", - "from": 90359508, - "to": 90279649, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532559, - "label": "ELEMENT_OF", - "from": 90175512, - "to": 90369870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523343, - "label": "REGULATES", - "from": 90277905, - "to": 90351146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522831, - "label": "REGULATES", - "from": 90279649, - "to": 90350933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515914, - "label": "ENCODES", - "from": 90084655, - "to": 90255662, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511563, - "label": "ELEMENT_OF", - "from": 90355899, - "to": 90279375, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513355, - "label": "ELEMENT_OF", - "from": 90369837, - "to": 90286718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521078, - "label": "REGULATES", - "from": 90279375, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530291, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90358424, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530808, - "label": "ELEMENT_OF", - "from": 90073197, - "to": 90359782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530809, - "label": "ELEMENT_OF", - "from": 90073203, - "to": 90359782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523385, - "label": "REGULATES", - "from": 90277905, - "to": 90351162, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531579, - "label": "ELEMENT_OF", - "from": 90128752, - "to": 90363530, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521083, - "label": "REGULATES", - "from": 90279580, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529767, - "label": "ELEMENT_OF", - "from": 90099498, - "to": 90356742, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523619, - "label": "REGULATES", - "from": 90281697, - "to": 90351259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523628, - "label": "REGULATES", - "from": 90290662, - "to": 90351259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511852, - "label": "ELEMENT_OF", - "from": 90357529, - "to": 90275399, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511853, - "label": "ELEMENT_OF", - "from": 90357536, - "to": 90275399, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517992, - "label": "ENCODES", - "from": 90169698, - "to": 90269108, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518248, - "label": "ENCODES", - "from": 90175692, - "to": 90269922, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519273, - "label": "REGULATES", - "from": 90277915, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513642, - "label": "ELEMENT_OF", - "from": 90370507, - "to": 90281697, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515479, - "label": "ENCODES", - "from": 90072486, - "to": 90252938, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516499, - "label": "ENCODES", - "from": 90099498, - "to": 90258993, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522387, - "label": "REGULATES", - "from": 90277915, - "to": 90350843, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511901, - "label": "ELEMENT_OF", - "from": 90358424, - "to": 90276255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517528, - "label": "ENCODES", - "from": 90138026, - "to": 90265253, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521370, - "label": "REGULATES", - "from": 90277905, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522906, - "label": "REGULATES", - "from": 90275399, - "to": 90350954, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521371, - "label": "REGULATES", - "from": 90277915, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530308, - "label": "ELEMENT_OF", - "from": 90071364, - "to": 90358487, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515461, - "label": "ENCODES", - "from": 90072349, - "to": 90252838, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530309, - "label": "ELEMENT_OF", - "from": 90071364, - "to": 90358494, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521350, - "label": "REGULATES", - "from": 90275097, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518534, - "label": "ENCODES", - "from": 90185280, - "to": 90271671, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523911, - "label": "REGULATES", - "from": 90275097, - "to": 90351371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513153, - "label": "ELEMENT_OF", - "from": 90368219, - "to": 90281614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530305, - "label": "ELEMENT_OF", - "from": 90071364, - "to": 90358474, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531074, - "label": "ELEMENT_OF", - "from": 90086018, - "to": 90361442, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523917, - "label": "REGULATES", - "from": 90276255, - "to": 90351371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529033, - "label": "ELEMENT_OF", - "from": 90072349, - "to": 90354301, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524938, - "label": "REGULATES", - "from": 90277905, - "to": 90352124, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524939, - "label": "REGULATES", - "from": 90275399, - "to": 90352124, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515764, - "label": "ENCODES", - "from": 90081305, - "to": 90253978, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532916, - "label": "ELEMENT_OF", - "from": 90185280, - "to": 90370406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511409, - "label": "ELEMENT_OF", - "from": 90354661, - "to": 90277630, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516018, - "label": "ENCODES", - "from": 90086018, - "to": 90256142, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525502, - "label": "REGULATES", - "from": 90277905, - "to": 90352197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520127, - "label": "REGULATES", - "from": 90279649, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534463, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90372507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524216, - "label": "REGULATES", - "from": 90279580, - "to": 90351562, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522150, - "label": "REGULATES", - "from": 90275399, - "to": 90350797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529056, - "label": "ELEMENT_OF", - "from": 90073203, - "to": 90354423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529057, - "label": "ELEMENT_OF", - "from": 90073197, - "to": 90354423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514466, - "label": "ELEMENT_OF", - "from": 90372455, - "to": 90277905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512419, - "label": "ELEMENT_OF", - "from": 90361641, - "to": 90290646, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525736, - "label": "REGULATES", - "from": 90277905, - "to": 90352264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529067, - "label": "ELEMENT_OF", - "from": 90070985, - "to": 90354509, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511445, - "label": "ELEMENT_OF", - "from": 90354864, - "to": 90275399, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514262, - "label": "ELEMENT_OF", - "from": 90371966, - "to": 90290662, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533969, - "label": "ELEMENT_OF", - "from": 90070985, - "to": 90371966, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511953, - "label": "ELEMENT_OF", - "from": 90359222, - "to": 90276425, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520913, - "label": "REGULATES", - "from": 90276425, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533981, - "label": "ELEMENT_OF", - "from": 90070985, - "to": 90371970, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524767, - "label": "REGULATES", - "from": 90277905, - "to": 90352006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534232, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90372234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534233, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90372237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510939, - "label": "ELEMENT_OF", - "from": 90300824, - "to": 90372455, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533956, - "label": "ELEMENT_OF", - "from": 90070985, - "to": 90371964, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529348, - "label": "ELEMENT_OF", - "from": 90069626, - "to": 90355666, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518342, - "label": "ENCODES", - "from": 90176627, - "to": 90270881, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509638, - "label": "ELEMENT_OF", - "from": 90294544, - "to": 90357529, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524231, - "label": "REGULATES", - "from": 90290833, - "to": 90351597, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519111, - "label": "ENCODES", - "from": 90209211, - "to": 90274680, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509639, - "label": "ELEMENT_OF", - "from": 90294543, - "to": 90357536, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525762, - "label": "REGULATES", - "from": 90275399, - "to": 90352273, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523971, - "label": "REGULATES", - "from": 90279375, - "to": 90351390, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512707, - "label": "ELEMENT_OF", - "from": 90363441, - "to": 90279974, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534220, - "label": "ELEMENT_OF", - "from": 90138026, - "to": 90372211, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517324, - "label": "ENCODES", - "from": 90136311, - "to": 90264766, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524749, - "label": "REGULATES", - "from": 90275097, - "to": 90351973, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517325, - "label": "ENCODES", - "from": 90136318, - "to": 90264770, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512974, - "label": "ELEMENT_OF", - "from": 90365537, - "to": 90290919, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525263, - "label": "REGULATES", - "from": 90277905, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511944, - "label": "ELEMENT_OF", - "from": 90359205, - "to": 90275097, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525768, - "label": "REGULATES", - "from": 90277905, - "to": 90352273, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522953, - "label": "REGULATES", - "from": 90290662, - "to": 90350959, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513481, - "label": "ELEMENT_OF", - "from": 90370101, - "to": 90291333, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520907, - "label": "REGULATES", - "from": 90276296, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511223, - "label": "ELEMENT_OF", - "from": 90353072, - "to": 90291099, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515568, - "label": "ENCODES", - "from": 90073191, - "to": 90253366, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515569, - "label": "ENCODES", - "from": 90073197, - "to": 90253370, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525297, - "label": "REGULATES", - "from": 90275399, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515570, - "label": "ENCODES", - "from": 90073203, - "to": 90253371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525298, - "label": "REGULATES", - "from": 90276296, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524787, - "label": "REGULATES", - "from": 90277905, - "to": 90352009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530173, - "label": "ELEMENT_OF", - "from": 90071355, - "to": 90357529, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532734, - "label": "ELEMENT_OF", - "from": 90176627, - "to": 90370101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517118, - "label": "ENCODES", - "from": 90130032, - "to": 90262988, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530174, - "label": "ELEMENT_OF", - "from": 90071355, - "to": 90357536, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512248, - "label": "ELEMENT_OF", - "from": 90360974, - "to": 90290833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534265, - "label": "ELEMENT_OF", - "from": 90073191, - "to": 90372293, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529892, - "label": "ELEMENT_OF", - "from": 90073203, - "to": 90356833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515300, - "label": "ENCODES", - "from": 90070985, - "to": 90246685, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534244, - "label": "ELEMENT_OF", - "from": 90128858, - "to": 90372249, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521956, - "label": "REGULATES", - "from": 90279375, - "to": 90350771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530406, - "label": "ELEMENT_OF", - "from": 90068104, - "to": 90359225, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530407, - "label": "ELEMENT_OF", - "from": 90068104, - "to": 90359230, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511200, - "label": "ELEMENT_OF", - "from": 90352914, - "to": 90275097, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529891, - "label": "ELEMENT_OF", - "from": 90073197, - "to": 90356833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512739, - "label": "ELEMENT_OF", - "from": 90363530, - "to": 90280131, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517091, - "label": "ENCODES", - "from": 90129837, - "to": 90262925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530403, - "label": "ELEMENT_OF", - "from": 90068104, - "to": 90359222, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531944, - "label": "ELEMENT_OF", - "from": 90084655, - "to": 90365537, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530408, - "label": "ELEMENT_OF", - "from": 90068104, - "to": 90359233, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511721, - "label": "ELEMENT_OF", - "from": 90356833, - "to": 90279695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530665, - "label": "ELEMENT_OF", - "from": 90130032, - "to": 90359508, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524009, - "label": "REGULATES", - "from": 90279974, - "to": 90351406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522004, - "label": "REGULATES", - "from": 90275097, - "to": 90350771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515349, - "label": "ENCODES", - "from": 90071364, - "to": 90249212, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515347, - "label": "ENCODES", - "from": 90071355, - "to": 90249198, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529436, - "label": "ELEMENT_OF", - "from": 90071364, - "to": 90356469, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523550, - "label": "REGULATES", - "from": 90277630, - "to": 90351223, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529947, - "label": "ELEMENT_OF", - "from": 90073191, - "to": 90356857, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532996, - "label": "ELEMENT_OF", - "from": 90072349, - "to": 90370507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530949, - "label": "ELEMENT_OF", - "from": 90138026, - "to": 90360974, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510470, - "label": "ELEMENT_OF", - "from": 90299141, - "to": 90369870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524294, - "label": "REGULATES", - "from": 90277905, - "to": 90351633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532230, - "label": "ELEMENT_OF", - "from": 90136311, - "to": 90368219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515078, - "label": "ENCODES", - "from": 90068104, - "to": 90234977, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532231, - "label": "ELEMENT_OF", - "from": 90136318, - "to": 90368219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521729, - "label": "REGULATES", - "from": 90290662, - "to": 90350752, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530700, - "label": "ELEMENT_OF", - "from": 90137342, - "to": 90359552, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519182, - "label": "ENCODES", - "from": 90212034, - "to": 90274596, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529416, - "label": "ELEMENT_OF", - "from": 90128858, - "to": 90355899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519216, - "label": "ENCODES", - "from": 90215083, - "to": 90274775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531248, - "label": "ELEMENT_OF", - "from": 90169698, - "to": 90361641, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519217, - "label": "ENCODES", - "from": 90215084, - "to": 90274780, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519218, - "label": "ENCODES", - "from": 90215089, - "to": 90274781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532531, - "label": "ELEMENT_OF", - "from": 90129837, - "to": 90369837, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515135, - "label": "ENCODES", - "from": 90069626, - "to": 90236608, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513594, - "label": "ELEMENT_OF", - "from": 90370406, - "to": 90291170, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523814, - "label": "REGULATES", - "from": 90277915, - "to": 90351355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529191, - "label": "ELEMENT_OF", - "from": 90071355, - "to": 90354864, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521760, - "label": "REGULATES", - "from": 90277905, - "to": 90350767, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509729, - "label": "ELEMENT_OF", - "from": 90294871, - "to": 90359205, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509229, - "label": "ELEMENT_OF", - "from": 90295097, - "to": 90354661, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534061, - "label": "ELEMENT_OF", - "from": 90138026, - "to": 90372052, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523310, - "label": "REGULATES", - "from": 90290662, - "to": 90351143, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511534, - "label": "ELEMENT_OF", - "from": 90355666, - "to": 90277915, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534315, - "label": "ELEMENT_OF", - "from": 90176627, - "to": 90372350, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511531, - "label": "ELEMENT_OF", - "from": 90355657, - "to": 90277905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/isobutyric.json b/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/isobutyric.json deleted file mode 100644 index dc48ab1c54..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/isobutyric.json +++ /dev/null @@ -1,21559 +0,0 @@ -{ - "nodes": [ - { - "id": 90253665, - "label": "K+ transporter TrkG", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90173791, - "label": "sad", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90354016, - "label": "pepD", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90264931, - "label": "CP4-6 prophage; conserved protein YkfC", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372449, - "label": "crl_1", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372455, - "label": "flhDC", - "databaseLabel": "TranscriptionUnit", - "value": 8, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350959, - "label": "SdiA", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90136914, - "label": "insI-1", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90080593, - "label": "vsr", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372467, - "label": "yobF-cspC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90086732, - "label": "fliT", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372464, - "label": "xdhABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90086731, - "label": "fliS", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90357111, - "label": "lrhA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90136904, - "label": "insN-1", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90262902, - "label": "putative autotransporter adhesin YfaL", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90086724, - "label": "amyA", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90358137, - "label": "rcsA", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90281281, - "label": "yodD", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90365249, - "label": "perR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90291525, - "label": "hprRS", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90137978, - "label": "allA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90365255, - "label": "ykfC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90365252, - "label": "insN-1I-1O-1", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90270025, - "label": "putative outer membrane protein YedS, N-terminal fragment", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372427, - "label": "ivbL-ilvBN-uhpABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90290504, - "label": "sad", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90370377, - "label": "nadK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90086770, - "label": "yijD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90232141, - "label": "dimethyl sulfoxide reductase subunit A", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90264908, - "label": "CP4-6 prophage; toxin of the YkfI-YafW toxin-antitoxin system", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90264913, - "label": "antitoxin of the YkfI-YafW toxin-antitoxin pair", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90270032, - "label": "sensory histidine kinase HprS", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90129774, - "label": "yfaL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90264915, - "label": "CP4-6 prophage; protein YafX", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90264914, - "label": "CP4-6 prophage; RadC-like JAB domain-containing protein YkfG", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90300754, - "label": "crlp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90264919, - "label": "CP4-6 prophage; protein YkfB", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90264918, - "label": "CP4-6 prophage; protein YkfF", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350933, - "label": "EvgA", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90264921, - "label": "CP4-6 prophage; conserved protein YafZ", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90136934, - "label": "ykfC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90264920, - "label": "CP4-6 prophage; inner membrane lipoprotein YafY", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90136932, - "label": "insO-1", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90264922, - "label": "CP4-6 prophage; putative GTP-binding protein YkfA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90278234, - "label": "glnS", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90264925, - "label": "CP4-6 prophage; IS911A regulator fragment", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350943, - "label": "ArgR", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90264924, - "label": "putative transcriptional regulator PerR", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90264927, - "label": "CP4-6 prophage; IS911A transposase fragment", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90264926, - "label": "IS30 transposase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90312994, - "label": "sdiAp2b", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90073375, - "label": "rpsI", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90312995, - "label": "sdsNp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90357024, - "label": "fliAZ-tcyJ", - "databaseLabel": "TranscriptionUnit", - "value": 14, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90284322, - "label": "yffB-dapE-ypfN", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90278178, - "label": "pepD", - "databaseLabel": "Operon", - "value": 5, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90350884, - "label": "PhoP", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90175767, - "label": "yedS_3", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90291499, - "label": "crl_1", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90136847, - "label": "yafZ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90350899, - "label": "NarL", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90069260, - "label": "glyQ", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90175756, - "label": "yedS_2", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90365238, - "label": "gpt", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90175755, - "label": "yedS_1", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90294581, - "label": "thrWp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90136843, - "label": "yafY", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90175752, - "label": "yedR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90280249, - "label": "intG", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90365243, - "label": "yafY-ykfBF-yafX-ykfGH-yafW-ykfI", - "databaseLabel": "TranscriptionUnit", - "value": 11, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90365240, - "label": "frsA", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90291515, - "label": "yedS_1S_2S_3", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90365241, - "label": "crl_1", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90365246, - "label": "ykfA-yafZ", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90272005, - "label": "putative xanthine dehydrogenase molybdenum-binding subunit XdhA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372358, - "label": "rph", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90136888, - "label": "perR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90294536, - "label": "fliAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90136882, - "label": "ykfA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90291473, - "label": "yedMN_2N_3", - "databaseLabel": "Operon", - "value": 4, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90260752, - "label": "phosphoenolpyruvate-protein phosphotransferase PtsP", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90107181, - "label": "lrhA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90290452, - "label": "rppH-ptsP", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90269975, - "label": "putative inner membrane protein", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90353940, - "label": "metY-rimP-nusA-infB-rbfA-truB-rpsO-pnp", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90260759, - "label": "NAD kinase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90262806, - "label": "conserved inner membrane protein YedI", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90069289, - "label": "gpt", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90289433, - "label": "rseX", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90312986, - "label": "sdsNp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90279192, - "label": "bglGFB", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90175782, - "label": "hprS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90262811, - "label": "putative HD superfamily phosphohydrolase YedJ", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90073381, - "label": "rpsL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90284317, - "label": "nudK", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90294556, - "label": "rcsAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90351903, - "label": "MqsA", - "databaseLabel": "TranscriptionFactor", - "value": 3, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90272030, - "label": "fused putative xanthine/hypoxanthine oxidase: molybdopterin-binding subunit and Fe-S binding subunit", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90233313, - "label": "flagellar protein FliL", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90357216, - "label": "nlpD-rpoS", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90128858, - "label": "gatC", - "databaseLabel": "Gene", - "value": 9, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351079, - "label": "ChbR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90157529, - "label": "b1364", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90290662, - "label": "mraZ-rsmH-ftsLI-murEF-mraY-murD-ftsW-murGC-ddlB-ftsQAZ-lpxC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90352101, - "label": "MraZ", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90352105, - "label": "SutR", - "databaseLabel": "TranscriptionFactor", - "value": 16, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90269162, - "label": "NAD+-dependent succinate semialdehyde dehydrogenase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90351086, - "label": "GadE", - "databaseLabel": "TranscriptionFactor", - "value": 6, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90255853, - "label": "acetylornithine deacetylase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90357230, - "label": "rpoS", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90282478, - "label": "pepQ-yigZ-trkH-hemG", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90281456, - "label": "yaiP", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90070473, - "label": "manY", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90352124, - "label": "YjjQ", - "databaseLabel": "TranscriptionFactor", - "value": 24, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90288577, - "label": "ygfM-xdhD", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90359233, - "label": "glpR", - "databaseLabel": "TranscriptionUnit", - "value": 8, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90084854, - "label": "argE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90281417, - "label": "allA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90211784, - "label": "ykfL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90355151, - "label": "ilvIH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90370511, - "label": "rppH-ptsP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90279375, - "label": "gatYZABCD", - "databaseLabel": "Operon", - "value": 9, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90277328, - "label": "lysU", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90253781, - "label": "DNA mismatch endonuclease of the very short patch (VSP) mismatch repair pathway", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90277335, - "label": "nlpD-rpoS", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90233304, - "label": "flagellar filament structural protein", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90264024, - "label": "16S ribosomal RNA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90211804, - "label": "ykfK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90278367, - "label": "srlAEBD-gutM-srlR-gutQ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90363298, - "label": "yecF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90091935, - "label": "yedD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351014, - "label": "NagC", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90285479, - "label": "yeeED", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90252711, - "label": "glutamate-5-semialdehyde dehydrogenase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90371492, - "label": "holD-rimI-yjjG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90363307, - "label": "yedD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90363305, - "label": "yedA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90069397, - "label": "hemC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90138002, - "label": "ybbW", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90363308, - "label": "yedP", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90252719, - "label": "glutamate 5-kinase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90291631, - "label": "fliCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90073484, - "label": "rpsT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90290613, - "label": "insAB-5A-5B-5", - "databaseLabel": "Operon", - "value": 32, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90359222, - "label": "glpEGR", - "databaseLabel": "TranscriptionUnit", - "value": 8, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90369462, - "label": "sad", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90081675, - "label": "yedA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90290617, - "label": "ivbL-ilvBN-uhpABC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90294713, - "label": "fliLp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90294715, - "label": "fliLp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90091909, - "label": "fliH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90274234, - "label": "RseX", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90300858, - "label": "dsrAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90359225, - "label": "glpGR", - "databaseLabel": "TranscriptionUnit", - "value": 8, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90363321, - "label": "yfaL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90091906, - "label": "fliG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90359230, - "label": "glpR", - "databaseLabel": "TranscriptionUnit", - "value": 8, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90236349, - "label": "hydroxymethylbilane synthase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90128831, - "label": "nudK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90352006, - "label": "MatA", - "databaseLabel": "TranscriptionFactor", - "value": 42, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90372487, - "label": "ykfBF-yafX-ykfGH-yafW-ykfI", - "databaseLabel": "TranscriptionUnit", - "value": 8, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372490, - "label": "ykfBF-yafX-ykfGH-yafW-ykfI", - "databaseLabel": "TranscriptionUnit", - "value": 8, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90262922, - "label": "DUF2594 domain-containing protein YecF", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90352009, - "label": "FliZ", - "databaseLabel": "TranscriptionFactor", - "value": 24, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90358159, - "label": "thrW", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 76270694, - "label": "cheR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90081712, - "label": "yffB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90271118, - "label": "Mn2+/Fe2+: H+ symporter MntH", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90359186, - "label": "metY-rimP-nusA-infB-rbfA-truB-rpsO-pnp", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90288528, - "label": "yadE", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90365329, - "label": "yaiP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90357137, - "label": "lysU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90129832, - "label": "yecF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90290582, - "label": "metY-rimP-nusA-infB-rbfA-truB-rpsO-pnp", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90072486, - "label": "pykF", - "databaseLabel": "Gene", - "value": 9, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90091943, - "label": "yedK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372507, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 9, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90300824, - "label": "flhDp2", - "databaseLabel": "Promoter", - "value": 8, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90368409, - "label": "trkG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90091938, - "label": "yedF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90281373, - "label": "rrsA-ileT-alaT-rrlA-rrfA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90276255, - "label": "pykF", - "databaseLabel": "Operon", - "value": 9, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90091937, - "label": "yedE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90068063, - "label": "glnS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90234977, - "label": "DNA-binding transcriptional repressor GlpR", - "databaseLabel": "GeneProduct", - "value": 8, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350688, - "label": "CRP", - "databaseLabel": "TranscriptionFactor", - "value": 54, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90188898, - "label": "xdhA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90356833, - "label": "rplJL-rpoBC", - "databaseLabel": "TranscriptionUnit", - "value": 12, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90294370, - "label": "fliAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90215524, - "label": "yecC3'", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90356836, - "label": "rplM-rpsI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350693, - "label": "Mlc", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90372200, - "label": "yafZ", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90253419, - "label": "30S ribosomal subunit protein S20", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90297450, - "label": "crlp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90371180, - "label": "pepQ-yigZ-trkH-hemG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90215535, - "label": "ygfI5'", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90356852, - "label": "rpsJ-rplCDWB-rpsS-rplV-rpsC-rplP-rpmC-rpsQ", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356853, - "label": "rpsLG-fusA-tufA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90246265, - "label": "mannose-specific PTS enzyme IIC component", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90356857, - "label": "rpsMKD-rpoA-rplQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350718, - "label": "H-NS", - "databaseLabel": "TranscriptionFactor", - "value": 55, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90372222, - "label": "rne", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90260606, - "label": "pyrimidine nucleotidase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90274880, - "label": "YgfI5'", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90356803, - "label": "proBA", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90360896, - "label": "amyA", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90175612, - "label": "tcyJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90175611, - "label": "dcyD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90352708, - "label": "gcd", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90270790, - "label": "protein-tyrosine kinase Wzc", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90129527, - "label": "yedJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90253387, - "label": "30S ribosomal subunit protein S3", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90282058, - "label": "yjjQ-bglJ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90291276, - "label": "fliAZ-tcyJ", - "databaseLabel": "Operon", - "value": 16, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90073203, - "label": "rpoC", - "databaseLabel": "Gene", - "value": 3, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90129522, - "label": "yedI", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90307660, - "label": "yffQp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90253388, - "label": "30S ribosomal subunit protein S4", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90175602, - "label": "tcyL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90350668, - "label": "ModE", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90307662, - "label": "yffQp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90073197, - "label": "rpoB", - "databaseLabel": "Gene", - "value": 8, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90354775, - "label": "ivbL-ilvBN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90274903, - "label": "lrhA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90253401, - "label": "30S ribosomal subunit protein S9", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350687, - "label": "FNR", - "databaseLabel": "TranscriptionFactor", - "value": 7, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90356831, - "label": "rph-pyrE", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90253407, - "label": "30S ribosomal subunit protein S12", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372188, - "label": "yjjQ-bglJ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90262560, - "label": "galactitol-specific PTS enzyme IIC component", - "databaseLabel": "GeneProduct", - "value": 9, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90356771, - "label": "nlpD-rpoS", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90175517, - "label": "insA-5", - "databaseLabel": "Gene", - "value": 8, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90234916, - "label": "glutamine—tRNA ligase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90070043, - "label": "rpoS", - "databaseLabel": "Gene", - "value": 3, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351652, - "label": "NsrR", - "databaseLabel": "TranscriptionFactor", - "value": 16, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90356773, - "label": "rimP-nusA-infB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90279974, - "label": "dsrA", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90175512, - "label": "insB-5", - "databaseLabel": "Gene", - "value": 8, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90081305, - "label": "crl", - "databaseLabel": "Gene", - "value": 9, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90274854, - "label": "RNA polymerase holoenzyme assembly factor Crl, N-terminal fragment", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90279979, - "label": "dsrB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90128405, - "label": "tcyN", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90081301, - "label": "frsA", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90074125, - "label": "trkG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90291253, - "label": "dcyD-tcyLN", - "databaseLabel": "Operon", - "value": 5, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90369079, - "label": "ydbA_2", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90274871, - "label": "YecC3'", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350645, - "label": "Fis", - "databaseLabel": "TranscriptionFactor", - "value": 9, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90291256, - "label": "dgcQ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90253371, - "label": "RNA polymerase subunit β'", - "databaseLabel": "GeneProduct", - "value": 3, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90299451, - "label": "yafZp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90253370, - "label": "RNA polymerase subunit β", - "databaseLabel": "GeneProduct", - "value": 8, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372156, - "label": "ykfGH-yafW-ykfI", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90229760, - "label": "N,N'-diacetylchitobiose-specific PTS enzyme IIB component", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90253312, - "label": "truncated RNase PH", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90305545, - "label": "ydcLp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90083383, - "label": "fliO", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90253325, - "label": "50S ribosomal subunit protein L10", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90277905, - "label": "flhDC", - "databaseLabel": "Operon", - "value": 24, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90305552, - "label": "ydcLp4", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90262547, - "label": "GDP-mannose hydrolase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90351633, - "label": "AcrR", - "databaseLabel": "TranscriptionFactor", - "value": 24, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 84893819, - "label": "dmsA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372118, - "label": "rrsA-ileT-alaT-rrlA-rrfA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90295316, - "label": "amyAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90305564, - "label": "ydcLp7", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90259681, - "label": "flagellar biosynthesis protein FliP", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90275040, - "label": "gcd", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90269922, - "label": "DsrA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90370279, - "label": "nudK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90107096, - "label": "yjjG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90175704, - "label": "dgcQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90269926, - "label": "putative mannosyl-3-phosphoglycerate phosphatase", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90269931, - "label": "putative diguanylate cyclase DgcQ", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90264811, - "label": "flagellum-specific ATP synthase FliI", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90259691, - "label": "flagellar biosynthesis protein FliQ", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372329, - "label": "gpt", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90284269, - "label": "yffQR", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90253548, - "label": "sorbitol-6-phosphate 2-dehydrogenase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90259694, - "label": "flagellar biosynthesis protein FliR", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90264817, - "label": "flagellar biosynthesis protein FliJ", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90183921, - "label": "mntH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90175693, - "label": "yedP", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90175692, - "label": "dsrA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90264821, - "label": "flagellar hook-length control protein", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90073290, - "label": "rpsD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90189045, - "label": "xdhD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90370293, - "label": "yffB-dapE-ypfN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350843, - "label": "GadX", - "databaseLabel": "TranscriptionFactor", - "value": 3, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90363131, - "label": "yodD", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90073285, - "label": "rpsC", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90269951, - "label": "protein YodC", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90269888, - "label": "putative defective phage integrase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90351808, - "label": "StpA", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90136829, - "label": "ykfB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90264770, - "label": "putative periplasmic binding protein SapA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90361030, - "label": "rpsT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90361031, - "label": "rpsT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372293, - "label": "rpsMKD-rpoA-rplQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90288329, - "label": "gpt", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90175735, - "label": "yodC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90288330, - "label": "frsA", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90253514, - "label": "arginine decarboxylase, biosynthetic", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90232011, - "label": "DNA-cytosine methyltransferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90288333, - "label": "ykfA-yafZ", - "databaseLabel": "Operon", - "value": 5, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90235085, - "label": "xanthine-guanine phsophoribosyltransferase", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90288332, - "label": "yafY-ykfBF-yafX-ykfGH-yafW-ykfI", - "databaseLabel": "Operon", - "value": 13, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90288335, - "label": "perR", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90269903, - "label": "protein DsrB", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350797, - "label": "Lrp", - "databaseLabel": "TranscriptionFactor", - "value": 4, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90288337, - "label": "insN-1I-1O-1", - "databaseLabel": "Operon", - "value": 4, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90136815, - "label": "ykfF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 69400978, - "label": "asnA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90136814, - "label": "yafX", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90288339, - "label": "ykfC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90136811, - "label": "ykfG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90256599, - "label": "carnitine-CoA ligase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90269910, - "label": "stress-induced protein", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90368219, - "label": "sapABCDF", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90294491, - "label": "fliDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90370265, - "label": "yffQR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90136801, - "label": "yafW", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90136800, - "label": "ykfI", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90350752, - "label": "RcsB", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90249381, - "label": "Xaa-Pro dipeptidase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90274980, - "label": "fliC", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90175642, - "label": "yedN_2", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90299559, - "label": "gptp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90299561, - "label": "frsAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90269865, - "label": "cystine/cysteine ABC transporter periplasmic binding protein", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90371240, - "label": "fabR-yijD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372271, - "label": "rpoS", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350767, - "label": "LrhA", - "databaseLabel": "TranscriptionFactor", - "value": 25, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90173584, - "label": "safA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90350771, - "label": "ArcA", - "databaseLabel": "TranscriptionFactor", - "value": 15, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90279091, - "label": "secMA-mutT", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90289330, - "label": "hsdRMS", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90068104, - "label": "glpR", - "databaseLabel": "Gene", - "value": 8, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90269878, - "label": "putative acetyltransferase YedL", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372277, - "label": "rpoS", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90281142, - "label": "yfaL", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90355899, - "label": "gatYZABCD", - "databaseLabel": "TranscriptionUnit", - "value": 9, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372283, - "label": "rpoS", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90269883, - "label": "putative type III secreted effector, N-terminal fragment", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372280, - "label": "rpoS", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90072197, - "label": "proB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90264765, - "label": "putrescine ABC exporter membrane protein SapC", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90072194, - "label": "proA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90175618, - "label": "yedN_3", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90175617, - "label": "yedL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90291391, - "label": "infA-serW", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90264766, - "label": "putrescine ABC exporter membrane subunit SapB", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90360962, - "label": "allA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90364034, - "label": "yadE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350727, - "label": "OxyR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90372234, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 9, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90274954, - "label": "dmsABC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90291338, - "label": "sdsN", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90360974, - "label": "gcl-hyi-glxR-ybbW-allB-ybbY-glxK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90281103, - "label": "yecF", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372237, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 9, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90253454, - "label": "DNA-binding transcriptional dual regulator SdiA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90269838, - "label": "cystine/cysteine ABC transporter membrane subunit", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90281105, - "label": "yedA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90255507, - "label": "flagellar biosynthesis protein FliO", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90249363, - "label": "peptidase D", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350736, - "label": "PhoB", - "databaseLabel": "TranscriptionFactor", - "value": 6, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90269843, - "label": "D-cysteine desulfhydrase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90260626, - "label": "DNA-binding transcriptional dual regulator LrhA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90235029, - "label": "glycine—tRNA ligase subunit α", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90281111, - "label": "yedD", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90175656, - "label": "yodD", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90294425, - "label": "lysUp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90281112, - "label": "yedP", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90209434, - "label": "rseX", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372249, - "label": "gatZABCD", - "databaseLabel": "TranscriptionUnit", - "value": 9, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90175652, - "label": "dsrB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90175649, - "label": "intG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90350748, - "label": "CysB", - "databaseLabel": "TranscriptionFactor", - "value": 16, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90274975, - "label": "fliLMNOPQR", - "databaseLabel": "Operon", - "value": 11, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90175648, - "label": "yedM", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90369890, - "label": "yedL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372962, - "label": "infA-serW", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90359651, - "label": "pepD", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90072927, - "label": "rne", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90369888, - "label": "yedK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90277730, - "label": "ilvIH", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90312545, - "label": "insN-1p", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90369894, - "label": "dgcQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351463, - "label": "CsgD", - "databaseLabel": "TranscriptionFactor", - "value": 36, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90212197, - "label": "och5", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90369895, - "label": "yodC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90369892, - "label": "yedMN_2N_3", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90369897, - "label": "yedI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90135379, - "label": "thrW", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90369900, - "label": "yedRJ", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90206063, - "label": "ykfH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90369907, - "label": "hchA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90369905, - "label": "yedS_1S_2S_3", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90359665, - "label": "glnS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90277748, - "label": "phoE", - "databaseLabel": "Operon", - "value": 6, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90369908, - "label": "hprRS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90274680, - "label": "InsAB' transposase", - "databaseLabel": "GeneProduct", - "value": 8, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90296184, - "label": "fliFp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90297210, - "label": "hchAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90371966, - "label": "ftsLI-murEF-mraY-murD-ftsW-murGC-ddlB-ftsQAZ-lpxC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371964, - "label": "rsmH-ftsLI-murEF-mraY-murD-ftsW-murGC-ddlB-ftsQAZ-lpxC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90297214, - "label": "hchAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90274628, - "label": "EyeA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90256199, - "label": "flagellar biosynthesis protein FliS", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90256198, - "label": "α-amylase", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90274633, - "label": "small regulatory RNA SdsN", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90356555, - "label": "lysU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90369870, - "label": "insA-5AB-5B-5", - "databaseLabel": "TranscriptionUnit", - "value": 32, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90256204, - "label": "flagellar biosynthesis protein FliT", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372943, - "label": "sdsN", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90354509, - "label": "mraZ-rsmH-ftsLI-murEF-mraY-murD-ftsW-murGC-ddlB-ftsQAZ-lpxC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372946, - "label": "sdiA", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90256211, - "label": "conserved inner membrane protein YijD", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372944, - "label": "sdiA", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90109804, - "label": "ptsP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90274644, - "label": "small regulatory RNA Och5", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90371924, - "label": "hchA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372954, - "label": "sdsN", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90369882, - "label": "sdiA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90369883, - "label": "dcyD-tcyLN", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356569, - "label": "argE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90137442, - "label": "yaiP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90369884, - "label": "yedEF", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90212128, - "label": "eyeA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90071838, - "label": "phoE", - "databaseLabel": "Gene", - "value": 5, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90297123, - "label": "rseXp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90356518, - "label": "speAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90274596, - "label": "OppA5'", - "databaseLabel": "GeneProduct", - "value": 5, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90369831, - "label": "yobF-cspC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351396, - "label": "GutM", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90351400, - "label": "SrlR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90351406, - "label": "LeuO", - "databaseLabel": "TranscriptionFactor", - "value": 5, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90356524, - "label": "wza-wzb-wzc-wcaAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90352433, - "label": "rrsA-ileT-alaT-rrlA-rrfA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90212154, - "label": "sdsN", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90176256, - "label": "wzc", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90175295, - "label": "yobF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90357505, - "label": "fliAZ-tcyJ", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90299141, - "label": "insA-5p", - "databaseLabel": "Promoter", - "value": 8, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90281732, - "label": "xdhABC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90352389, - "label": "dmsABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90299142, - "label": "dcyDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90351371, - "label": "Cra", - "databaseLabel": "TranscriptionFactor", - "value": 10, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90279695, - "label": "rplKAJL-rpoBC", - "databaseLabel": "Operon", - "value": 12, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90356498, - "label": "manXYZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90276624, - "label": "rpsJ-rplCDWB-rpsS-rplV-rpsC-rplP-rpmC-rpsQ", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90305301, - "label": "ynaKp8", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90276628, - "label": "rpsLG-fusA-tufA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90305300, - "label": "ynaKp6", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90305303, - "label": "ynaKp10", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90351390, - "label": "GatR", - "databaseLabel": "TranscriptionFactor", - "value": 9, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90353437, - "label": "bglGFB", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90276638, - "label": "rpsMKD-rpoA-rplQ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90069983, - "label": "infA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90359782, - "label": "rplKAJL-rpoBC", - "databaseLabel": "TranscriptionUnit", - "value": 12, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356711, - "label": "glyQS", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372068, - "label": "caiCDE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90132437, - "label": "rrsA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90069971, - "label": "ilvN", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351597, - "label": "AllR", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 75538962, - "label": "chbB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90356721, - "label": "hemCDXY", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90354678, - "label": "dmsABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90257396, - "label": "putative sulfurtransferase YedF", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90360823, - "label": "mntH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90070985, - "label": "murG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90257400, - "label": "putative SOS response-associated peptidase YedK", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372091, - "label": "safA-ydeO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90253304, - "label": "ribonuclease E", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90215421, - "label": "crl_2", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90257344, - "label": "flagellar motor switch protein FliG", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90257348, - "label": "flagellar biosynthesis protein FliH", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90070006, - "label": "infB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90261448, - "label": "cystine/cysteine ABC transporter ATP binding subunit", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90355657, - "label": "flhDC", - "databaseLabel": "TranscriptionUnit", - "value": 16, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356691, - "label": "fliFGHIJK", - "databaseLabel": "TranscriptionUnit", - "value": 9, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356688, - "label": "fliDST", - "databaseLabel": "TranscriptionUnit", - "value": 10, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372054, - "label": "tcyJ", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90274775, - "label": "IS1 transposase B", - "databaseLabel": "GeneProduct", - "value": 9, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90356693, - "label": "fliLMNOPQR", - "databaseLabel": "TranscriptionUnit", - "value": 8, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90257373, - "label": "putative selenium transporter YedE", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90274781, - "label": "IS5 transposase and trans-activator", - "databaseLabel": "GeneProduct", - "value": 5, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90257372, - "label": "lipoprotein YedD", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90274780, - "label": "IS1 repressor TnpA", - "databaseLabel": "GeneProduct", - "value": 9, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90215389, - "label": "crl_1", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90279902, - "label": "tar-tap-cheRBYZ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90067871, - "label": "gcd", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90277795, - "label": "asnA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90274722, - "label": "IS1 protein InsA", - "databaseLabel": "GeneProduct", - "value": 8, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90356647, - "label": "dcm-vsr", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90269607, - "label": "DUF2527 domain-containing protein YobF", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90351530, - "label": "CaiF", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90099604, - "label": "yeeE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90109844, - "label": "nadK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90355635, - "label": "srlAEBD-gutM-srlR-gutQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90234806, - "label": "quinoprotein glucose dehydrogenase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90072967, - "label": "rph", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90209211, - "label": "insAB-5", - "databaseLabel": "Gene", - "value": 8, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90359741, - "label": "argE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371970, - "label": "ftsLI-murEF-mraY-murD-ftsW-murGC-ddlB-ftsQAZ-lpxC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90296192, - "label": "fliEp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90069946, - "label": "ilvH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90136506, - "label": "fliK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90371972, - "label": "wza-wzb-wzc", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90073017, - "label": "rplJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90296198, - "label": "fliFp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90356622, - "label": "caiTABCDE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90298255, - "label": "tcyJp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90363794, - "label": "pepD", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90295185, - "label": "phoEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90356626, - "label": "chbBCARFG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90312595, - "label": "sdiAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90312598, - "label": "sdiAp4", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90136490, - "label": "fliJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90312596, - "label": "sdiAp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90371995, - "label": "glnS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90253211, - "label": "flagellar filament capping protein", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90352542, - "label": "fliLMNOPQR", - "databaseLabel": "TranscriptionUnit", - "value": 10, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90136480, - "label": "fliI", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90369949, - "label": "yeeED", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371686, - "label": "fliDST", - "databaseLabel": "TranscriptionUnit", - "value": 6, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90361446, - "label": "fliE", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90358375, - "label": "metY-rimP-nusA-infB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90254951, - "label": "putative reductase YffB", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90275433, - "label": "rcsA", - "databaseLabel": "Operon", - "value": 4, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90352239, - "label": "RcsB-BglJ", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90085971, - "label": "fliZ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90102352, - "label": "fliQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90102351, - "label": "fliP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90274416, - "label": "two-component system connector SafA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90259059, - "label": "inner membrane protein YeeE", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90273396, - "label": "DUF987 domain-containing protein YkfH", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90085960, - "label": "fliA", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90258041, - "label": "putative polysaccharide deacetylase lipoprotein", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90277498, - "label": "argE", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90264188, - "label": "tRNA-Thr(CGU)", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90286716, - "label": "yobF-cspC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90279548, - "label": "mntH", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90290753, - "label": "safA-ydeO", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90281536, - "label": "yedRJ", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90095226, - "label": "yadE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90281542, - "label": "hchA", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90352197, - "label": "Fur", - "databaseLabel": "TranscriptionFactor", - "value": 31, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90276425, - "label": "glpEGR", - "databaseLabel": "Operon", - "value": 8, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90351179, - "label": "YdeO", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90284619, - "label": "nadK", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90277457, - "label": "manXYZ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90102378, - "label": "fliR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372693, - "label": "sdiA", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90277466, - "label": "speAB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90352222, - "label": "MntR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90230364, - "label": "chemotaxis protein methyltransferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372700, - "label": "sdiA", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371676, - "label": "rne", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372701, - "label": "sdiA", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371677, - "label": "rne", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90277470, - "label": "wza-wzb-wzc-wcaAB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90058271, - "label": "fliL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90371622, - "label": "ygfM-xdhD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351143, - "label": "PdhR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90372644, - "label": "rpsI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90058265, - "label": "fliC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351146, - "label": "HdfR", - "databaseLabel": "TranscriptionFactor", - "value": 24, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90352171, - "label": "IHF", - "databaseLabel": "TranscriptionFactor", - "value": 42, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90073623, - "label": "sdiA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90279467, - "label": "rpsT", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90300970, - "label": "ykfBp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90071570, - "label": "pepD", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90085901, - "label": "fliF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90363441, - "label": "dsrA", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90300983, - "label": "ykfBp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90254902, - "label": "putative transporter YedA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90363445, - "label": "dsrB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90085894, - "label": "fliE", - "databaseLabel": "Gene", - "value": 3, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351162, - "label": "QseB", - "databaseLabel": "TranscriptionFactor", - "value": 24, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90295864, - "label": "fliEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90205756, - "label": "yjjQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90233345, - "label": "flagellar motor switch protein FliM", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90292742, - "label": "lysUp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90251789, - "label": "outer membrane porin PhoE", - "databaseLabel": "GeneProduct", - "value": 5, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90072625, - "label": "rcsA", - "databaseLabel": "Gene", - "value": 3, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90233359, - "label": "flagellar motor switch protein FliN", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90273297, - "label": "DNA-binding transcriptional repressor YjjQ", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90265107, - "label": "putative glucosyltransferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90058280, - "label": "fliN", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90355221, - "label": "phoE", - "databaseLabel": "TranscriptionUnit", - "value": 6, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90071590, - "label": "pepQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90090023, - "label": "caiC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90246685, - "label": "N-acetylglucosaminyl transferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90058275, - "label": "fliM", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 82757523, - "label": "dcm", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372636, - "label": "sdiA", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90353180, - "label": "secMA-mutT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90261217, - "label": "putrescine ABC exporter ATP binding protein SapD", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90354401, - "label": "gcd", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90256103, - "label": "RNA polymerase, sigma 28 (sigma F) factor", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90253030, - "label": "DNA-binding transcriptional activator RcsA", - "databaseLabel": "GeneProduct", - "value": 3, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90261226, - "label": "putrescine ABC exporter ATP binding protein SapF", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90361582, - "label": "fliFGHIJK", - "databaseLabel": "TranscriptionUnit", - "value": 7, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90256108, - "label": "DNA-binding transcriptional regulator FliZ", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90354423, - "label": "rpoBC", - "databaseLabel": "TranscriptionUnit", - "value": 11, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90286836, - "label": "ydbA_2", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90276604, - "label": "rph-pyrE", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90279676, - "label": "rne", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90276606, - "label": "rplM-rpsI", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90306241, - "label": "yedJp4", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90136318, - "label": "sapA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90306240, - "label": "yedJp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90277571, - "label": "fliDST", - "databaseLabel": "Operon", - "value": 10, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90212034, - "label": "oppA5'", - "databaseLabel": "Gene", - "value": 5, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90292932, - "label": "pepDp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90277574, - "label": "fliFGHIJK", - "databaseLabel": "Operon", - "value": 10, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90136311, - "label": "sapB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90277576, - "label": "glyQS", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90245832, - "label": "RNA polymerase, sigma S (sigma 38) factor", - "databaseLabel": "GeneProduct", - "value": 3, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90136309, - "label": "sapC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90354376, - "label": "ilvIH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90277580, - "label": "hemCDXY", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90236622, - "label": "type I restriction enzyme EcoKI endonuclease component", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90073840, - "label": "srlD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90302158, - "label": "proBp8", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90302163, - "label": "proBp11", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90072808, - "label": "fliD", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90256087, - "label": "flagellar basal-body MS-ring and collar protein", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90128105, - "label": "sapF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90256086, - "label": "flagellar basal-body protein FliE", - "databaseLabel": "GeneProduct", - "value": 3, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90302166, - "label": "ykfIp7", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90351317, - "label": "AsnC", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90363610, - "label": "intG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90128103, - "label": "sapD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90361563, - "label": "rne", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90286810, - "label": "trkG", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90355417, - "label": "asnA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90361566, - "label": "fliE", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90359519, - "label": "xdhABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90276574, - "label": "proBA", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90277536, - "label": "caiTABCDE", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90286757, - "label": "yedEF", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90306213, - "label": "yodCp7", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90245796, - "label": "acetohydroxy acid synthase I subunit IlvN", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90286756, - "label": "sdiA", - "databaseLabel": "Operon", - "value": 7, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90277540, - "label": "chbBCARFG", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90205861, - "label": "ydbA_2", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90245803, - "label": "translation initiation factor IF-1", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90286762, - "label": "yedK", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90215083, - "label": "insB9", - "databaseLabel": "Gene", - "value": 9, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90279597, - "label": "fliE", - "databaseLabel": "Operon", - "value": 5, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90215084, - "label": "insA9", - "databaseLabel": "Gene", - "value": 9, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90286765, - "label": "yodC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90286764, - "label": "yedL", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90351279, - "label": "PurR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90286766, - "label": "yedI", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90245806, - "label": "translation initiation factor IF-2", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90354349, - "label": "ilvIH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90215089, - "label": "insH21", - "databaseLabel": "Gene", - "value": 5, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90277552, - "label": "dcm-vsr", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90306224, - "label": "yedIp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90069644, - "label": "hsdR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90371766, - "label": "rseX", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90361530, - "label": "infA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90297017, - "label": "pepDp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90361529, - "label": "infA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90292925, - "label": "pepDp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90306237, - "label": "yedIp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90354365, - "label": "ilvIH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90352260, - "label": "FlhDC", - "databaseLabel": "TranscriptionFactor", - "value": 52, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90279558, - "label": "amyA", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90229384, - "label": "asparagine synthetase A", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90245768, - "label": "acetolactate synthase / acetohydroxybutanoate synthase, regulatory subunit", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90352264, - "label": "RcsAB", - "databaseLabel": "TranscriptionFactor", - "value": 29, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90252938, - "label": "pyruvate kinase I", - "databaseLabel": "GeneProduct", - "value": 9, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90073781, - "label": "speA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90306191, - "label": "sdiAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90281614, - "label": "sapABCDF", - "databaseLabel": "Operon", - "value": 5, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90306190, - "label": "sdiAp6", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90359442, - "label": "fliC", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90290833, - "label": "gcl-hyi-glxR-ybbW-allB-ybbY-glxK", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90306193, - "label": "yecCp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90306192, - "label": "sdiAp1b", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90275472, - "label": "thrW", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90306194, - "label": "yedDp5", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90352273, - "label": "OmpR", - "databaseLabel": "TranscriptionFactor", - "value": 24, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90306196, - "label": "yedEp8", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90253977, - "label": "fermentation-respiration switch protein", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90265240, - "label": "ureidoglycolate lyase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90351259, - "label": "LexA", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90358424, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 9, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90306203, - "label": "dsrBp5", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90253978, - "label": "RNA polymerase holoenzyme assembly factor Crl", - "databaseLabel": "GeneProduct", - "value": 9, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90359454, - "label": "tar-tap-cheRBYZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90282652, - "label": "fabR-yijD", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90306204, - "label": "yodCp6", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90265244, - "label": "putative allantoin transporter", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90371741, - "label": "hsdRMS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90281630, - "label": "holD-rimI-yjjG", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - } - ], - "edges": [ - { - "id": 177519253, - "label": "REGULATES", - "from": 90276606, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532566, - "label": "ELEMENT_OF", - "from": 90073623, - "to": 90369882, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532567, - "label": "ELEMENT_OF", - "from": 90128405, - "to": 90369883, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532560, - "label": "ELEMENT_OF", - "from": 90175517, - "to": 90369870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520273, - "label": "REGULATES", - "from": 90276606, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532561, - "label": "ELEMENT_OF", - "from": 90209211, - "to": 90369870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520274, - "label": "REGULATES", - "from": 90276624, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532572, - "label": "ELEMENT_OF", - "from": 90091943, - "to": 90369888, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531548, - "label": "ELEMENT_OF", - "from": 90175652, - "to": 90363445, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532573, - "label": "ELEMENT_OF", - "from": 90175617, - "to": 90369890, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514142, - "label": "ELEMENT_OF", - "from": 90371686, - "to": 90277571, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532574, - "label": "ELEMENT_OF", - "from": 90175618, - "to": 90369892, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532575, - "label": "ELEMENT_OF", - "from": 90175642, - "to": 90369892, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517208, - "label": "ENCODES", - "from": 90132437, - "to": 90264024, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532568, - "label": "ELEMENT_OF", - "from": 90175602, - "to": 90369883, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532569, - "label": "ELEMENT_OF", - "from": 90175611, - "to": 90369883, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532570, - "label": "ELEMENT_OF", - "from": 90091937, - "to": 90369884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532571, - "label": "ELEMENT_OF", - "from": 90091938, - "to": 90369884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531547, - "label": "ELEMENT_OF", - "from": 90175692, - "to": 90363441, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518235, - "label": "ENCODES", - "from": 90175517, - "to": 90274722, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514116, - "label": "ELEMENT_OF", - "from": 90371622, - "to": 90288577, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534596, - "label": "ELEMENT_OF", - "from": 90073623, - "to": 90372693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534597, - "label": "ELEMENT_OF", - "from": 90073623, - "to": 90372700, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534598, - "label": "ELEMENT_OF", - "from": 90073623, - "to": 90372701, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510016, - "label": "ELEMENT_OF", - "from": 90295316, - "to": 90360896, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515137, - "label": "ENCODES", - "from": 90069644, - "to": 90236622, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529475, - "label": "ELEMENT_OF", - "from": 90070473, - "to": 90356498, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523343, - "label": "REGULATES", - "from": 90277905, - "to": 90351146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532559, - "label": "ELEMENT_OF", - "from": 90175512, - "to": 90369870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519241, - "label": "ENCODES", - "from": 90215524, - "to": 90274871, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519243, - "label": "ENCODES", - "from": 90215535, - "to": 90274880, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519286, - "label": "REGULATES", - "from": 90281373, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521335, - "label": "REGULATES", - "from": 90290753, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519280, - "label": "REGULATES", - "from": 90279192, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525425, - "label": "REGULATES", - "from": 90279548, - "to": 90352197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529521, - "label": "ELEMENT_OF", - "from": 90176256, - "to": 90356524, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515187, - "label": "ENCODES", - "from": 90070043, - "to": 90245832, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514172, - "label": "ELEMENT_OF", - "from": 90371741, - "to": 90289330, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523389, - "label": "REGULATES", - "from": 90290753, - "to": 90351179, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512126, - "label": "ELEMENT_OF", - "from": 90359651, - "to": 90278178, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528504, - "label": "ELEMENT_OF", - "from": 90132437, - "to": 90352433, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523385, - "label": "REGULATES", - "from": 90277905, - "to": 90351162, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521339, - "label": "REGULATES", - "from": 90291276, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532580, - "label": "ELEMENT_OF", - "from": 90129527, - "to": 90369900, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518244, - "label": "ENCODES", - "from": 90175648, - "to": 90269883, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518245, - "label": "ENCODES", - "from": 90175649, - "to": 90269888, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532581, - "label": "ELEMENT_OF", - "from": 90175752, - "to": 90369900, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529509, - "label": "ELEMENT_OF", - "from": 90073781, - "to": 90356518, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518246, - "label": "ENCODES", - "from": 90175652, - "to": 90269903, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532582, - "label": "ELEMENT_OF", - "from": 90175767, - "to": 90369905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518247, - "label": "ENCODES", - "from": 90175656, - "to": 90269910, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532583, - "label": "ELEMENT_OF", - "from": 90175756, - "to": 90369905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532576, - "label": "ELEMENT_OF", - "from": 90175648, - "to": 90369892, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518240, - "label": "ENCODES", - "from": 90175602, - "to": 90269838, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532577, - "label": "ELEMENT_OF", - "from": 90175704, - "to": 90369894, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518241, - "label": "ENCODES", - "from": 90175611, - "to": 90269843, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518242, - "label": "ENCODES", - "from": 90175612, - "to": 90269865, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532578, - "label": "ELEMENT_OF", - "from": 90175735, - "to": 90369895, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516194, - "label": "ENCODES", - "from": 90090023, - "to": 90256599, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532579, - "label": "ELEMENT_OF", - "from": 90129522, - "to": 90369897, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518243, - "label": "ENCODES", - "from": 90175617, - "to": 90269878, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518252, - "label": "ENCODES", - "from": 90175752, - "to": 90269975, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517228, - "label": "ENCODES", - "from": 90135379, - "to": 90264188, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524397, - "label": "REGULATES", - "from": 90291276, - "to": 90351652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515181, - "label": "ENCODES", - "from": 90069983, - "to": 90245803, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518253, - "label": "ENCODES", - "from": 90175755, - "to": 90270025, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515182, - "label": "ENCODES", - "from": 90070006, - "to": 90245806, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518255, - "label": "ENCODES", - "from": 90175782, - "to": 90270032, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515176, - "label": "ENCODES", - "from": 90069946, - "to": 90245768, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518248, - "label": "ENCODES", - "from": 90175692, - "to": 90269922, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532584, - "label": "ELEMENT_OF", - "from": 90175755, - "to": 90369905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518249, - "label": "ENCODES", - "from": 90175693, - "to": 90269926, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528489, - "label": "ELEMENT_OF", - "from": 84893819, - "to": 90352389, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518250, - "label": "ENCODES", - "from": 90175704, - "to": 90269931, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532586, - "label": "ELEMENT_OF", - "from": 90175782, - "to": 90369908, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515179, - "label": "ENCODES", - "from": 90069971, - "to": 90245796, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518251, - "label": "ENCODES", - "from": 90175735, - "to": 90269951, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521364, - "label": "REGULATES", - "from": 90277536, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529557, - "label": "ELEMENT_OF", - "from": 90084854, - "to": 90356569, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510103, - "label": "ELEMENT_OF", - "from": 90295864, - "to": 90361446, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522385, - "label": "REGULATES", - "from": 90277335, - "to": 90350843, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511132, - "label": "ELEMENT_OF", - "from": 90352389, - "to": 90274954, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519324, - "label": "REGULATES", - "from": 90274954, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518301, - "label": "ENCODES", - "from": 90176256, - "to": 90270790, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521374, - "label": "REGULATES", - "from": 90278367, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521368, - "label": "REGULATES", - "from": 90277730, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513177, - "label": "ELEMENT_OF", - "from": 90368409, - "to": 90286810, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521370, - "label": "REGULATES", - "from": 90277905, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525467, - "label": "REGULATES", - "from": 90291499, - "to": 90352197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511108, - "label": "ELEMENT_OF", - "from": 90312994, - "to": 90372944, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511109, - "label": "ELEMENT_OF", - "from": 90306192, - "to": 90372946, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514182, - "label": "ELEMENT_OF", - "from": 90371766, - "to": 90289433, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532615, - "label": "ELEMENT_OF", - "from": 90099604, - "to": 90369949, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511111, - "label": "ELEMENT_OF", - "from": 90312995, - "to": 90372954, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521344, - "label": "REGULATES", - "from": 90274980, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513153, - "label": "ELEMENT_OF", - "from": 90368219, - "to": 90281614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519297, - "label": "REGULATES", - "from": 90290582, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511107, - "label": "ELEMENT_OF", - "from": 90312986, - "to": 90372943, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533647, - "label": "ELEMENT_OF", - "from": 90107096, - "to": 90371492, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531592, - "label": "ELEMENT_OF", - "from": 90175649, - "to": 90363610, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521354, - "label": "REGULATES", - "from": 90275433, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521398, - "label": "REGULATES", - "from": 90282058, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521395, - "label": "REGULATES", - "from": 90281542, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516285, - "label": "ENCODES", - "from": 90091935, - "to": 90257372, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510141, - "label": "ELEMENT_OF", - "from": 90296192, - "to": 90361566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516286, - "label": "ENCODES", - "from": 90091937, - "to": 90257373, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528574, - "label": "ELEMENT_OF", - "from": 90058271, - "to": 90352542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525502, - "label": "REGULATES", - "from": 90277905, - "to": 90352197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516287, - "label": "ENCODES", - "from": 90091938, - "to": 90257396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528575, - "label": "ELEMENT_OF", - "from": 90058275, - "to": 90352542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516281, - "label": "ENCODES", - "from": 90091906, - "to": 90257344, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511161, - "label": "ELEMENT_OF", - "from": 90352542, - "to": 90274975, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516282, - "label": "ENCODES", - "from": 90091909, - "to": 90257348, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513190, - "label": "ELEMENT_OF", - "from": 90369079, - "to": 90286836, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521378, - "label": "REGULATES", - "from": 90279192, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512163, - "label": "ELEMENT_OF", - "from": 90359782, - "to": 90279695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515245, - "label": "ENCODES", - "from": 90070473, - "to": 90246265, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525480, - "label": "REGULATES", - "from": 90277335, - "to": 90352197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531624, - "label": "ELEMENT_OF", - "from": 90071570, - "to": 90363794, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519338, - "label": "REGULATES", - "from": 90275472, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519125, - "label": "ENCODES", - "from": 90209434, - "to": 90274234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509904, - "label": "ELEMENT_OF", - "from": 90292932, - "to": 90359651, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511953, - "label": "ELEMENT_OF", - "from": 90359222, - "to": 90276425, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531420, - "label": "ELEMENT_OF", - "from": 90175656, - "to": 90363131, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177291805, - "label": "ELEMENT_OF", - "from": 90292925, - "to": 90354016, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510936, - "label": "ELEMENT_OF", - "from": 90300754, - "to": 90372449, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517081, - "label": "ENCODES", - "from": 90129774, - "to": 90262902, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510939, - "label": "ELEMENT_OF", - "from": 90300824, - "to": 90372455, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533444, - "label": "ELEMENT_OF", - "from": 90071590, - "to": 90371180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516037, - "label": "ENCODES", - "from": 90086724, - "to": 90256198, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520133, - "label": "REGULATES", - "from": 90279902, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516038, - "label": "ENCODES", - "from": 90086731, - "to": 90256199, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524230, - "label": "REGULATES", - "from": 90281417, - "to": 90351597, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516039, - "label": "ENCODES", - "from": 90086732, - "to": 90256204, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524231, - "label": "REGULATES", - "from": 90290833, - "to": 90351597, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519111, - "label": "ENCODES", - "from": 90209211, - "to": 90274680, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516045, - "label": "ENCODES", - "from": 90086770, - "to": 90256211, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520143, - "label": "REGULATES", - "from": 90281732, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525263, - "label": "REGULATES", - "from": 90277905, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533491, - "label": "ELEMENT_OF", - "from": 90086770, - "to": 90371240, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515068, - "label": "ENCODES", - "from": 90068063, - "to": 90234916, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520188, - "label": "REGULATES", - "from": 90277536, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530406, - "label": "ELEMENT_OF", - "from": 90068104, - "to": 90359225, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515047, - "label": "ENCODES", - "from": 90067871, - "to": 90234806, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530407, - "label": "ELEMENT_OF", - "from": 90068104, - "to": 90359230, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517089, - "label": "ENCODES", - "from": 90129832, - "to": 90262922, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530403, - "label": "ELEMENT_OF", - "from": 90068104, - "to": 90359222, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510956, - "label": "ELEMENT_OF", - "from": 90300983, - "to": 90372490, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525288, - "label": "REGULATES", - "from": 90291276, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530408, - "label": "ELEMENT_OF", - "from": 90068104, - "to": 90359233, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510955, - "label": "ELEMENT_OF", - "from": 90300970, - "to": 90372487, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515092, - "label": "ENCODES", - "from": 90069289, - "to": 90235085, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510999, - "label": "ELEMENT_OF", - "from": 90306191, - "to": 90372636, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531484, - "label": "ELEMENT_OF", - "from": 90081675, - "to": 90363305, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531485, - "label": "ELEMENT_OF", - "from": 90091935, - "to": 90363307, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519197, - "label": "ENCODES", - "from": 90212154, - "to": 90274633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531486, - "label": "ELEMENT_OF", - "from": 90175693, - "to": 90363308, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519199, - "label": "ENCODES", - "from": 90212197, - "to": 90274644, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534553, - "label": "ELEMENT_OF", - "from": 90073623, - "to": 90372636, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531482, - "label": "ELEMENT_OF", - "from": 90129832, - "to": 90363298, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534554, - "label": "ELEMENT_OF", - "from": 90073375, - "to": 90372644, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519195, - "label": "ENCODES", - "from": 90212128, - "to": 90274628, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524294, - "label": "REGULATES", - "from": 90277905, - "to": 90351633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515078, - "label": "ENCODES", - "from": 90068104, - "to": 90234977, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514061, - "label": "ELEMENT_OF", - "from": 90371492, - "to": 90281630, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519182, - "label": "ENCODES", - "from": 90212034, - "to": 90274596, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515087, - "label": "ENCODES", - "from": 90069260, - "to": 90235029, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529416, - "label": "ELEMENT_OF", - "from": 90128858, - "to": 90355899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519216, - "label": "ENCODES", - "from": 90215083, - "to": 90274775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532528, - "label": "ELEMENT_OF", - "from": 90175295, - "to": 90369831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512048, - "label": "ELEMENT_OF", - "from": 90359454, - "to": 90279902, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519217, - "label": "ENCODES", - "from": 90215084, - "to": 90274780, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519218, - "label": "ENCODES", - "from": 90215089, - "to": 90274781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520252, - "label": "REGULATES", - "from": 90274954, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518206, - "label": "ENCODES", - "from": 90175295, - "to": 90269607, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519227, - "label": "ENCODES", - "from": 90215389, - "to": 90274854, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511014, - "label": "ELEMENT_OF", - "from": 90312595, - "to": 90372693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511015, - "label": "ELEMENT_OF", - "from": 90312596, - "to": 90372700, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531495, - "label": "ELEMENT_OF", - "from": 90129774, - "to": 90363321, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515107, - "label": "ENCODES", - "from": 90069397, - "to": 90236349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523310, - "label": "REGULATES", - "from": 90290662, - "to": 90351143, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511016, - "label": "ELEMENT_OF", - "from": 90312598, - "to": 90372701, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512043, - "label": "ELEMENT_OF", - "from": 90359442, - "to": 90274980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514391, - "label": "ELEMENT_OF", - "from": 90372277, - "to": 90277335, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521553, - "label": "REGULATES", - "from": 90279548, - "to": 90350727, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512338, - "label": "ELEMENT_OF", - "from": 90361446, - "to": 90279597, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517469, - "label": "ENCODES", - "from": 90137442, - "to": 90265107, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514397, - "label": "ELEMENT_OF", - "from": 90372293, - "to": 90276638, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513375, - "label": "ELEMENT_OF", - "from": 90369870, - "to": 90290613, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510297, - "label": "ELEMENT_OF", - "from": 90297017, - "to": 90363794, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522587, - "label": "REGULATES", - "from": 90274954, - "to": 90350899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515404, - "label": "ENCODES", - "from": 90071838, - "to": 90251789, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530765, - "label": "ELEMENT_OF", - "from": 90068063, - "to": 90359665, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530760, - "label": "ELEMENT_OF", - "from": 90071570, - "to": 90359651, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525685, - "label": "REGULATES", - "from": 90291276, - "to": 90352260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509302, - "label": "ELEMENT_OF", - "from": 90295185, - "to": 90355221, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513392, - "label": "ELEMENT_OF", - "from": 90369908, - "to": 90291525, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510321, - "label": "ELEMENT_OF", - "from": 90299561, - "to": 90365240, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515442, - "label": "ENCODES", - "from": 90072194, - "to": 90252711, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510322, - "label": "ELEMENT_OF", - "from": 90297450, - "to": 90365241, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530803, - "label": "ELEMENT_OF", - "from": 90084854, - "to": 90359741, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515443, - "label": "ENCODES", - "from": 90072197, - "to": 90252719, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510323, - "label": "ELEMENT_OF", - "from": 90312545, - "to": 90365252, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532862, - "label": "ELEMENT_OF", - "from": 90081712, - "to": 90370293, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530808, - "label": "ELEMENT_OF", - "from": 90073197, - "to": 90359782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530809, - "label": "ELEMENT_OF", - "from": 90073203, - "to": 90359782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530810, - "label": "ELEMENT_OF", - "from": 90073017, - "to": 90359782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532858, - "label": "ELEMENT_OF", - "from": 90128831, - "to": 90370279, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513380, - "label": "ELEMENT_OF", - "from": 90369882, - "to": 90286756, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511333, - "label": "ELEMENT_OF", - "from": 90354016, - "to": 90278178, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513381, - "label": "ELEMENT_OF", - "from": 90369883, - "to": 90291253, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513382, - "label": "ELEMENT_OF", - "from": 90369884, - "to": 90286757, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513383, - "label": "ELEMENT_OF", - "from": 90369888, - "to": 90286762, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531811, - "label": "ELEMENT_OF", - "from": 90137442, - "to": 90365329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513388, - "label": "ELEMENT_OF", - "from": 90369897, - "to": 90286766, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523628, - "label": "REGULATES", - "from": 90290662, - "to": 90351259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513389, - "label": "ELEMENT_OF", - "from": 90369900, - "to": 90281536, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525678, - "label": "REGULATES", - "from": 90279597, - "to": 90352260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514414, - "label": "ELEMENT_OF", - "from": 90372329, - "to": 90288329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513390, - "label": "ELEMENT_OF", - "from": 90369905, - "to": 90291515, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513391, - "label": "ELEMENT_OF", - "from": 90369907, - "to": 90281542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513384, - "label": "ELEMENT_OF", - "from": 90369890, - "to": 90286764, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513385, - "label": "ELEMENT_OF", - "from": 90369892, - "to": 90291473, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525674, - "label": "REGULATES", - "from": 90277571, - "to": 90352260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513386, - "label": "ELEMENT_OF", - "from": 90369894, - "to": 90291256, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525675, - "label": "REGULATES", - "from": 90277574, - "to": 90352260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513387, - "label": "ELEMENT_OF", - "from": 90369895, - "to": 90286765, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517525, - "label": "ENCODES", - "from": 90138002, - "to": 90265244, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511383, - "label": "ELEMENT_OF", - "from": 90354401, - "to": 90275040, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515479, - "label": "ENCODES", - "from": 90072486, - "to": 90252938, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517521, - "label": "ENCODES", - "from": 90137978, - "to": 90265240, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511379, - "label": "ELEMENT_OF", - "from": 90354365, - "to": 90277730, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514451, - "label": "ELEMENT_OF", - "from": 90372427, - "to": 90290617, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177249239, - "label": "ELEMENT_OF", - "from": 90294715, - "to": 90352542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516508, - "label": "ENCODES", - "from": 90099604, - "to": 90259059, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529821, - "label": "ELEMENT_OF", - "from": 90070043, - "to": 90356771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514463, - "label": "ELEMENT_OF", - "from": 90372449, - "to": 90291499, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524696, - "label": "REGULATES", - "from": 90277335, - "to": 90351903, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512385, - "label": "ELEMENT_OF", - "from": 90361563, - "to": 90279676, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512386, - "label": "ELEMENT_OF", - "from": 90361566, - "to": 90279597, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513411, - "label": "ELEMENT_OF", - "from": 90369949, - "to": 90285479, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512396, - "label": "ELEMENT_OF", - "from": 90361582, - "to": 90277574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514482, - "label": "ELEMENT_OF", - "from": 90372487, - "to": 90288332, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514483, - "label": "ELEMENT_OF", - "from": 90372490, - "to": 90288332, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515516, - "label": "ENCODES", - "from": 90072808, - "to": 90253211, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514468, - "label": "ELEMENT_OF", - "from": 90372464, - "to": 90281732, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525733, - "label": "REGULATES", - "from": 90275433, - "to": 90352264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514470, - "label": "ELEMENT_OF", - "from": 90372467, - "to": 90286716, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515495, - "label": "ENCODES", - "from": 90072625, - "to": 90253030, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525735, - "label": "REGULATES", - "from": 90277470, - "to": 90352264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525728, - "label": "REGULATES", - "from": 90274975, - "to": 90352260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514466, - "label": "ELEMENT_OF", - "from": 90372455, - "to": 90277905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529837, - "label": "ELEMENT_OF", - "from": 90070006, - "to": 90356773, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532909, - "label": "ELEMENT_OF", - "from": 90109844, - "to": 90370377, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521640, - "label": "REGULATES", - "from": 90277748, - "to": 90350736, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525736, - "label": "REGULATES", - "from": 90277905, - "to": 90352264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534741, - "label": "ELEMENT_OF", - "from": 90212154, - "to": 90372943, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534742, - "label": "ELEMENT_OF", - "from": 90073623, - "to": 90372944, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531670, - "label": "ELEMENT_OF", - "from": 90095226, - "to": 90364034, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514262, - "label": "ELEMENT_OF", - "from": 90371966, - "to": 90290662, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534743, - "label": "ELEMENT_OF", - "from": 90073623, - "to": 90372946, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525527, - "label": "REGULATES", - "from": 90279548, - "to": 90352222, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529616, - "label": "ELEMENT_OF", - "from": 90090023, - "to": 90356622, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530641, - "label": "ELEMENT_OF", - "from": 76270694, - "to": 90359454, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529618, - "label": "ELEMENT_OF", - "from": 75538962, - "to": 90356626, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534748, - "label": "ELEMENT_OF", - "from": 90212154, - "to": 90372954, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517341, - "label": "ENCODES", - "from": 90136480, - "to": 90264811, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517342, - "label": "ENCODES", - "from": 90136490, - "to": 90264817, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517343, - "label": "ENCODES", - "from": 90136506, - "to": 90264821, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513242, - "label": "ELEMENT_OF", - "from": 90369462, - "to": 90290504, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528580, - "label": "ELEMENT_OF", - "from": 90058280, - "to": 90352542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510150, - "label": "ELEMENT_OF", - "from": 90296198, - "to": 90361582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516288, - "label": "ENCODES", - "from": 90091943, - "to": 90257400, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528576, - "label": "ELEMENT_OF", - "from": 90102378, - "to": 90352542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528577, - "label": "ELEMENT_OF", - "from": 90102352, - "to": 90352542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528578, - "label": "ELEMENT_OF", - "from": 90102351, - "to": 90352542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528579, - "label": "ELEMENT_OF", - "from": 90083383, - "to": 90352542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517324, - "label": "ENCODES", - "from": 90136311, - "to": 90264766, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517325, - "label": "ENCODES", - "from": 90136318, - "to": 90264770, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533710, - "label": "ELEMENT_OF", - "from": 90189045, - "to": 90371622, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530632, - "label": "ELEMENT_OF", - "from": 90058265, - "to": 90359442, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514249, - "label": "ELEMENT_OF", - "from": 90371924, - "to": 90281542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517323, - "label": "ENCODES", - "from": 90136309, - "to": 90264765, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512246, - "label": "ELEMENT_OF", - "from": 90360962, - "to": 90281417, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512240, - "label": "ELEMENT_OF", - "from": 90360896, - "to": 90279558, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534769, - "label": "ELEMENT_OF", - "from": 90069983, - "to": 90372962, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530673, - "label": "ELEMENT_OF", - "from": 90188898, - "to": 90359519, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533745, - "label": "ELEMENT_OF", - "from": 90072927, - "to": 90371676, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533746, - "label": "ELEMENT_OF", - "from": 90072927, - "to": 90371677, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533752, - "label": "ELEMENT_OF", - "from": 90086732, - "to": 90371686, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512248, - "label": "ELEMENT_OF", - "from": 90360974, - "to": 90290833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533753, - "label": "ELEMENT_OF", - "from": 90086731, - "to": 90371686, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533754, - "label": "ELEMENT_OF", - "from": 90072808, - "to": 90371686, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514299, - "label": "ELEMENT_OF", - "from": 90372054, - "to": 90291276, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515300, - "label": "ENCODES", - "from": 90070985, - "to": 90246685, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514275, - "label": "ELEMENT_OF", - "from": 90371995, - "to": 90278234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528616, - "label": "ELEMENT_OF", - "from": 90067871, - "to": 90352708, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512233, - "label": "ELEMENT_OF", - "from": 90360823, - "to": 90279548, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529642, - "label": "ELEMENT_OF", - "from": 90080593, - "to": 90356647, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529643, - "label": "ELEMENT_OF", - "from": 82757523, - "to": 90356647, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517396, - "label": "ENCODES", - "from": 90136934, - "to": 90264931, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531732, - "label": "ELEMENT_OF", - "from": 90136847, - "to": 90365246, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531733, - "label": "ELEMENT_OF", - "from": 90136882, - "to": 90365246, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531734, - "label": "ELEMENT_OF", - "from": 90136888, - "to": 90365249, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514327, - "label": "ELEMENT_OF", - "from": 90372118, - "to": 90281373, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531735, - "label": "ELEMENT_OF", - "from": 90136904, - "to": 90365252, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517392, - "label": "ENCODES", - "from": 90136888, - "to": 90264924, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531728, - "label": "ELEMENT_OF", - "from": 90136829, - "to": 90365243, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517393, - "label": "ENCODES", - "from": 90136904, - "to": 90264925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531729, - "label": "ELEMENT_OF", - "from": 90136815, - "to": 90365243, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531730, - "label": "ELEMENT_OF", - "from": 90136811, - "to": 90365243, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516370, - "label": "ENCODES", - "from": 90095226, - "to": 90258041, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517394, - "label": "ENCODES", - "from": 90136914, - "to": 90264926, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517395, - "label": "ENCODES", - "from": 90136932, - "to": 90264927, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531731, - "label": "ELEMENT_OF", - "from": 90136814, - "to": 90365243, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511261, - "label": "ELEMENT_OF", - "from": 90353437, - "to": 90279192, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529693, - "label": "ELEMENT_OF", - "from": 90086731, - "to": 90356688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529694, - "label": "ELEMENT_OF", - "from": 90086732, - "to": 90356688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529695, - "label": "ELEMENT_OF", - "from": 90072808, - "to": 90356688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531736, - "label": "ELEMENT_OF", - "from": 90136914, - "to": 90365252, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531737, - "label": "ELEMENT_OF", - "from": 90136932, - "to": 90365252, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531738, - "label": "ELEMENT_OF", - "from": 90136934, - "to": 90365255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517383, - "label": "ENCODES", - "from": 90136800, - "to": 90264908, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512256, - "label": "ELEMENT_OF", - "from": 90361030, - "to": 90279467, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511232, - "label": "ELEMENT_OF", - "from": 90353180, - "to": 90279091, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514306, - "label": "ELEMENT_OF", - "from": 90372068, - "to": 90277536, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531724, - "label": "ELEMENT_OF", - "from": 90206063, - "to": 90365243, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517388, - "label": "ENCODES", - "from": 90136829, - "to": 90264919, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531725, - "label": "ELEMENT_OF", - "from": 90136801, - "to": 90365243, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517389, - "label": "ENCODES", - "from": 90136843, - "to": 90264920, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531726, - "label": "ELEMENT_OF", - "from": 90136843, - "to": 90365243, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517390, - "label": "ENCODES", - "from": 90136847, - "to": 90264921, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531727, - "label": "ELEMENT_OF", - "from": 90136800, - "to": 90365243, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517391, - "label": "ENCODES", - "from": 90136882, - "to": 90264922, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517384, - "label": "ENCODES", - "from": 90136801, - "to": 90264913, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531721, - "label": "ELEMENT_OF", - "from": 90069289, - "to": 90365238, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517385, - "label": "ENCODES", - "from": 90136811, - "to": 90264914, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531722, - "label": "ELEMENT_OF", - "from": 90081301, - "to": 90365240, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514314, - "label": "ELEMENT_OF", - "from": 90372091, - "to": 90290753, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517386, - "label": "ENCODES", - "from": 90136814, - "to": 90264915, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517387, - "label": "ENCODES", - "from": 90136815, - "to": 90264918, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531723, - "label": "ELEMENT_OF", - "from": 90215389, - "to": 90365241, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529718, - "label": "ELEMENT_OF", - "from": 90069260, - "to": 90356711, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514358, - "label": "ELEMENT_OF", - "from": 90372200, - "to": 90288333, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510270, - "label": "ELEMENT_OF", - "from": 90300858, - "to": 90363441, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533818, - "label": "ELEMENT_OF", - "from": 90209434, - "to": 90371766, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529722, - "label": "ELEMENT_OF", - "from": 90069397, - "to": 90356721, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525604, - "label": "REGULATES", - "from": 90279192, - "to": 90352239, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529700, - "label": "ELEMENT_OF", - "from": 90091909, - "to": 90356691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529701, - "label": "ELEMENT_OF", - "from": 90091906, - "to": 90356691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529702, - "label": "ELEMENT_OF", - "from": 90102352, - "to": 90356693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514342, - "label": "ELEMENT_OF", - "from": 90372156, - "to": 90288332, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529703, - "label": "ELEMENT_OF", - "from": 90058275, - "to": 90356693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529696, - "label": "ELEMENT_OF", - "from": 90085901, - "to": 90356691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522528, - "label": "REGULATES", - "from": 90290753, - "to": 90350884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518432, - "label": "ENCODES", - "from": 90183921, - "to": 90271118, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529697, - "label": "ELEMENT_OF", - "from": 90136506, - "to": 90356691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529698, - "label": "ELEMENT_OF", - "from": 90136490, - "to": 90356691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529699, - "label": "ELEMENT_OF", - "from": 90136480, - "to": 90356691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529708, - "label": "ELEMENT_OF", - "from": 90102378, - "to": 90356693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515374, - "label": "ENCODES", - "from": 90071590, - "to": 90249381, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533807, - "label": "ELEMENT_OF", - "from": 90069644, - "to": 90371741, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514351, - "label": "ELEMENT_OF", - "from": 90372188, - "to": 90282058, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529704, - "label": "ELEMENT_OF", - "from": 90058280, - "to": 90356693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529705, - "label": "ELEMENT_OF", - "from": 90083383, - "to": 90356693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524586, - "label": "REGULATES", - "from": 90279192, - "to": 90351808, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529706, - "label": "ELEMENT_OF", - "from": 90102351, - "to": 90356693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529707, - "label": "ELEMENT_OF", - "from": 90058271, - "to": 90356693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515371, - "label": "ENCODES", - "from": 90071570, - "to": 90249363, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522832, - "label": "REGULATES", - "from": 90290753, - "to": 90350933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516701, - "label": "ENCODES", - "from": 90107096, - "to": 90260606, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524895, - "label": "REGULATES", - "from": 90290662, - "to": 90352101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512580, - "label": "ELEMENT_OF", - "from": 90363131, - "to": 90281281, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523845, - "label": "REGULATES", - "from": 90277457, - "to": 90351371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534094, - "label": "ELEMENT_OF", - "from": 90173584, - "to": 90372091, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511563, - "label": "ELEMENT_OF", - "from": 90355899, - "to": 90279375, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511601, - "label": "ELEMENT_OF", - "from": 90356524, - "to": 90277470, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514674, - "label": "ELEMENT_OF", - "from": 90372962, - "to": 90291391, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534141, - "label": "ELEMENT_OF", - "from": 90132437, - "to": 90372118, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511614, - "label": "ELEMENT_OF", - "from": 90356555, - "to": 90277328, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516708, - "label": "ENCODES", - "from": 90107181, - "to": 90260626, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511590, - "label": "ELEMENT_OF", - "from": 90356498, - "to": 90277457, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513644, - "label": "ELEMENT_OF", - "from": 90370511, - "to": 90290452, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515693, - "label": "ENCODES", - "from": 90074125, - "to": 90253665, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514669, - "label": "ELEMENT_OF", - "from": 90372954, - "to": 90291338, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511598, - "label": "ELEMENT_OF", - "from": 90356518, - "to": 90277466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522856, - "label": "REGULATES", - "from": 90290582, - "to": 90350943, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514665, - "label": "ELEMENT_OF", - "from": 90372943, - "to": 90291338, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524906, - "label": "REGULATES", - "from": 90291276, - "to": 90352105, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522858, - "label": "REGULATES", - "from": 90277498, - "to": 90350943, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514666, - "label": "ELEMENT_OF", - "from": 90372944, - "to": 90286756, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514667, - "label": "ELEMENT_OF", - "from": 90372946, - "to": 90286756, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529045, - "label": "ELEMENT_OF", - "from": 90069946, - "to": 90354349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529046, - "label": "ELEMENT_OF", - "from": 90069946, - "to": 90354365, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534166, - "label": "ELEMENT_OF", - "from": 90206063, - "to": 90372156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534167, - "label": "ELEMENT_OF", - "from": 90136800, - "to": 90372156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516759, - "label": "ENCODES", - "from": 90109804, - "to": 90260752, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530064, - "label": "ELEMENT_OF", - "from": 90175612, - "to": 90357024, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530065, - "label": "ELEMENT_OF", - "from": 90085960, - "to": 90357024, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509596, - "label": "ELEMENT_OF", - "from": 90294425, - "to": 90357137, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515741, - "label": "ENCODES", - "from": 90080593, - "to": 90253781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529055, - "label": "ELEMENT_OF", - "from": 90067871, - "to": 90354401, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534168, - "label": "ELEMENT_OF", - "from": 90136801, - "to": 90372156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529049, - "label": "ELEMENT_OF", - "from": 90069946, - "to": 90354376, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534169, - "label": "ELEMENT_OF", - "from": 90136811, - "to": 90372156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511641, - "label": "ELEMENT_OF", - "from": 90356626, - "to": 90277540, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516763, - "label": "ENCODES", - "from": 90109844, - "to": 90260759, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512644, - "label": "ELEMENT_OF", - "from": 90363305, - "to": 90281105, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531076, - "label": "ELEMENT_OF", - "from": 90085894, - "to": 90361446, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512645, - "label": "ELEMENT_OF", - "from": 90363307, - "to": 90281111, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512646, - "label": "ELEMENT_OF", - "from": 90363308, - "to": 90281112, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512642, - "label": "ELEMENT_OF", - "from": 90363298, - "to": 90281103, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511619, - "label": "ELEMENT_OF", - "from": 90356569, - "to": 90277498, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523917, - "label": "REGULATES", - "from": 90276255, - "to": 90351371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509583, - "label": "ELEMENT_OF", - "from": 90294370, - "to": 90357024, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530063, - "label": "ELEMENT_OF", - "from": 90085971, - "to": 90357024, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512655, - "label": "ELEMENT_OF", - "from": 90363321, - "to": 90281142, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524938, - "label": "REGULATES", - "from": 90277905, - "to": 90352124, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511668, - "label": "ELEMENT_OF", - "from": 90356693, - "to": 90274975, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515764, - "label": "ENCODES", - "from": 90081305, - "to": 90253978, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511666, - "label": "ELEMENT_OF", - "from": 90356688, - "to": 90277571, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511667, - "label": "ELEMENT_OF", - "from": 90356691, - "to": 90277574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515763, - "label": "ENCODES", - "from": 90081301, - "to": 90253977, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511673, - "label": "ELEMENT_OF", - "from": 90356711, - "to": 90277576, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530105, - "label": "ELEMENT_OF", - "from": 90070043, - "to": 90357216, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534202, - "label": "ELEMENT_OF", - "from": 90205756, - "to": 90372188, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530107, - "label": "ELEMENT_OF", - "from": 90070043, - "to": 90357230, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511675, - "label": "ELEMENT_OF", - "from": 90356721, - "to": 90277580, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529056, - "label": "ELEMENT_OF", - "from": 90073203, - "to": 90354423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529057, - "label": "ELEMENT_OF", - "from": 90073197, - "to": 90354423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511650, - "label": "ELEMENT_OF", - "from": 90356647, - "to": 90277552, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530088, - "label": "ELEMENT_OF", - "from": 90107181, - "to": 90357111, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519851, - "label": "REGULATES", - "from": 90274954, - "to": 90350668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529067, - "label": "ELEMENT_OF", - "from": 90070985, - "to": 90354509, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533969, - "label": "ELEMENT_OF", - "from": 90070985, - "to": 90371966, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515538, - "label": "ENCODES", - "from": 90072967, - "to": 90253312, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533981, - "label": "ELEMENT_OF", - "from": 90070985, - "to": 90371970, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524766, - "label": "REGULATES", - "from": 90274980, - "to": 90352006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524767, - "label": "REGULATES", - "from": 90277905, - "to": 90352006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515546, - "label": "ENCODES", - "from": 90073017, - "to": 90253325, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533956, - "label": "ELEMENT_OF", - "from": 90070985, - "to": 90371964, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515534, - "label": "ENCODES", - "from": 90072927, - "to": 90253304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521672, - "label": "REGULATES", - "from": 90291276, - "to": 90350748, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525768, - "label": "REGULATES", - "from": 90277905, - "to": 90352273, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523721, - "label": "REGULATES", - "from": 90277466, - "to": 90351279, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529866, - "label": "ELEMENT_OF", - "from": 90072194, - "to": 90356803, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529867, - "label": "ELEMENT_OF", - "from": 90072197, - "to": 90356803, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530933, - "label": "ELEMENT_OF", - "from": 90086724, - "to": 90360896, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515569, - "label": "ENCODES", - "from": 90073197, - "to": 90253370, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514545, - "label": "ELEMENT_OF", - "from": 90372636, - "to": 90286756, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515570, - "label": "ENCODES", - "from": 90073203, - "to": 90253371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518642, - "label": "ENCODES", - "from": 90188898, - "to": 90272005, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524787, - "label": "REGULATES", - "from": 90277905, - "to": 90352009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530941, - "label": "ELEMENT_OF", - "from": 90137978, - "to": 90360962, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515583, - "label": "ENCODES", - "from": 90073375, - "to": 90253401, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515577, - "label": "ENCODES", - "from": 90073285, - "to": 90253387, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511482, - "label": "ELEMENT_OF", - "from": 90355221, - "to": 90277748, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515578, - "label": "ENCODES", - "from": 90073290, - "to": 90253388, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509434, - "label": "ELEMENT_OF", - "from": 90292742, - "to": 90356555, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529892, - "label": "ELEMENT_OF", - "from": 90073203, - "to": 90356833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529893, - "label": "ELEMENT_OF", - "from": 90073017, - "to": 90356833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516583, - "label": "ENCODES", - "from": 90102351, - "to": 90259681, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529895, - "label": "ELEMENT_OF", - "from": 90073375, - "to": 90356836, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533991, - "label": "ELEMENT_OF", - "from": 90176256, - "to": 90371972, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529889, - "label": "ELEMENT_OF", - "from": 90072967, - "to": 90356831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529891, - "label": "ELEMENT_OF", - "from": 90073197, - "to": 90356833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530926, - "label": "ELEMENT_OF", - "from": 90183921, - "to": 90360823, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524776, - "label": "REGULATES", - "from": 90291276, - "to": 90352006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516584, - "label": "ENCODES", - "from": 90102352, - "to": 90259691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516585, - "label": "ENCODES", - "from": 90102378, - "to": 90259694, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529943, - "label": "ELEMENT_OF", - "from": 90073381, - "to": 90356853, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513552, - "label": "ELEMENT_OF", - "from": 90370293, - "to": 90284322, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530961, - "label": "ELEMENT_OF", - "from": 90073484, - "to": 90361030, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530962, - "label": "ELEMENT_OF", - "from": 90073484, - "to": 90361031, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511507, - "label": "ELEMENT_OF", - "from": 90355417, - "to": 90277795, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523795, - "label": "REGULATES", - "from": 90277795, - "to": 90351317, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515608, - "label": "ENCODES", - "from": 90073623, - "to": 90253454, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529945, - "label": "ELEMENT_OF", - "from": 90073290, - "to": 90356857, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534021, - "label": "ELEMENT_OF", - "from": 90068063, - "to": 90371995, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510470, - "label": "ELEMENT_OF", - "from": 90299141, - "to": 90369870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514566, - "label": "ELEMENT_OF", - "from": 90372693, - "to": 90286756, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514567, - "label": "ELEMENT_OF", - "from": 90372700, - "to": 90286756, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513543, - "label": "ELEMENT_OF", - "from": 90370265, - "to": 90284269, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530944, - "label": "ELEMENT_OF", - "from": 90138002, - "to": 90360974, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518657, - "label": "ENCODES", - "from": 90189045, - "to": 90272030, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521729, - "label": "REGULATES", - "from": 90290662, - "to": 90350752, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515586, - "label": "ENCODES", - "from": 90073381, - "to": 90253407, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521730, - "label": "REGULATES", - "from": 90290753, - "to": 90350752, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529932, - "label": "ELEMENT_OF", - "from": 90073285, - "to": 90356852, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513550, - "label": "ELEMENT_OF", - "from": 90370279, - "to": 90284317, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514568, - "label": "ELEMENT_OF", - "from": 90372701, - "to": 90286756, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510472, - "label": "ELEMENT_OF", - "from": 90299142, - "to": 90369883, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510473, - "label": "ELEMENT_OF", - "from": 90297210, - "to": 90369907, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515594, - "label": "ENCODES", - "from": 90073484, - "to": 90253419, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533003, - "label": "ELEMENT_OF", - "from": 90109804, - "to": 90370511, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513588, - "label": "ELEMENT_OF", - "from": 90370377, - "to": 90284619, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515632, - "label": "ENCODES", - "from": 90073781, - "to": 90253514, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528945, - "label": "ELEMENT_OF", - "from": 90070006, - "to": 90353940, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515644, - "label": "ENCODES", - "from": 90073840, - "to": 90253548, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534077, - "label": "ELEMENT_OF", - "from": 90090023, - "to": 90372068, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528958, - "label": "ELEMENT_OF", - "from": 90071570, - "to": 90354016, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520740, - "label": "REGULATES", - "from": 90290582, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509476, - "label": "ELEMENT_OF", - "from": 90294491, - "to": 90356688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520741, - "label": "REGULATES", - "from": 90290617, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509477, - "label": "ELEMENT_OF", - "from": 90296184, - "to": 90356691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509478, - "label": "ELEMENT_OF", - "from": 90294713, - "to": 90356693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521760, - "label": "REGULATES", - "from": 90277905, - "to": 90350767, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521762, - "label": "REGULATES", - "from": 90274903, - "to": 90350767, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534063, - "label": "ELEMENT_OF", - "from": 90175612, - "to": 90372054, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511528, - "label": "ELEMENT_OF", - "from": 90355635, - "to": 90278367, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511531, - "label": "ELEMENT_OF", - "from": 90355657, - "to": 90277905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532309, - "label": "ELEMENT_OF", - "from": 90205861, - "to": 90369079, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529239, - "label": "ELEMENT_OF", - "from": 90069946, - "to": 90355151, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514910, - "label": "ENCODES", - "from": 84893819, - "to": 90232141, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516958, - "label": "ENCODES", - "from": 90128858, - "to": 90262560, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529247, - "label": "ELEMENT_OF", - "from": 90071838, - "to": 90355221, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516953, - "label": "ENCODES", - "from": 90128831, - "to": 90262547, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521050, - "label": "REGULATES", - "from": 90277905, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530267, - "label": "ELEMENT_OF", - "from": 90070006, - "to": 90358375, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512839, - "label": "ELEMENT_OF", - "from": 90365238, - "to": 90288329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532288, - "label": "ELEMENT_OF", - "from": 90074125, - "to": 90368409, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524096, - "label": "REGULATES", - "from": 90291276, - "to": 90351463, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511808, - "label": "ELEMENT_OF", - "from": 90357137, - "to": 90277328, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512844, - "label": "ELEMENT_OF", - "from": 90365249, - "to": 90288335, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512845, - "label": "ELEMENT_OF", - "from": 90365252, - "to": 90288337, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512846, - "label": "ELEMENT_OF", - "from": 90365255, - "to": 90288339, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512840, - "label": "ELEMENT_OF", - "from": 90365240, - "to": 90288330, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514889, - "label": "ENCODES", - "from": 82757523, - "to": 90232011, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512841, - "label": "ELEMENT_OF", - "from": 90365241, - "to": 90291499, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512842, - "label": "ELEMENT_OF", - "from": 90365243, - "to": 90288332, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512843, - "label": "ELEMENT_OF", - "from": 90365246, - "to": 90288333, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512885, - "label": "ELEMENT_OF", - "from": 90365329, - "to": 90281456, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511862, - "label": "ELEMENT_OF", - "from": 90358137, - "to": 90275433, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521078, - "label": "REGULATES", - "from": 90279375, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510834, - "label": "ELEMENT_OF", - "from": 90299451, - "to": 90372200, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530291, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90358424, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523128, - "label": "REGULATES", - "from": 90274980, - "to": 90351086, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523129, - "label": "REGULATES", - "from": 90275433, - "to": 90351086, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511866, - "label": "ELEMENT_OF", - "from": 90358159, - "to": 90275472, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523109, - "label": "REGULATES", - "from": 90277540, - "to": 90351079, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515942, - "label": "ENCODES", - "from": 90084854, - "to": 90255853, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511847, - "label": "ELEMENT_OF", - "from": 90357505, - "to": 90291276, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521068, - "label": "REGULATES", - "from": 90279192, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519022, - "label": "ENCODES", - "from": 90205756, - "to": 90273297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534383, - "label": "ELEMENT_OF", - "from": 90069971, - "to": 90372427, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517999, - "label": "ENCODES", - "from": 90173584, - "to": 90274416, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534422, - "label": "ELEMENT_OF", - "from": 90188898, - "to": 90372464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532374, - "label": "ELEMENT_OF", - "from": 90173791, - "to": 90369462, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519058, - "label": "ENCODES", - "from": 90206063, - "to": 90273396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511901, - "label": "ELEMENT_OF", - "from": 90358424, - "to": 90276255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534424, - "label": "ELEMENT_OF", - "from": 90175295, - "to": 90372467, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513924, - "label": "ELEMENT_OF", - "from": 90371180, - "to": 90282478, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518020, - "label": "ENCODES", - "from": 90173791, - "to": 90269162, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524160, - "label": "REGULATES", - "from": 90277536, - "to": 90351530, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509825, - "label": "ELEMENT_OF", - "from": 90291631, - "to": 90359442, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525186, - "label": "REGULATES", - "from": 90274954, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522125, - "label": "REGULATES", - "from": 90281373, - "to": 90350797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521103, - "label": "REGULATES", - "from": 90277457, - "to": 90350693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529288, - "label": "ELEMENT_OF", - "from": 69400978, - "to": 90355417, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534408, - "label": "ELEMENT_OF", - "from": 90215389, - "to": 90372449, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525193, - "label": "REGULATES", - "from": 90275040, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522164, - "label": "REGULATES", - "from": 90277730, - "to": 90350797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534452, - "label": "ELEMENT_OF", - "from": 90136800, - "to": 90372490, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534448, - "label": "ELEMENT_OF", - "from": 90206063, - "to": 90372490, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534449, - "label": "ELEMENT_OF", - "from": 90136815, - "to": 90372490, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534450, - "label": "ELEMENT_OF", - "from": 90136829, - "to": 90372490, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534451, - "label": "ELEMENT_OF", - "from": 90136801, - "to": 90372490, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511933, - "label": "ELEMENT_OF", - "from": 90359186, - "to": 90290582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534463, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90372507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515000, - "label": "ENCODES", - "from": 90058265, - "to": 90233304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529336, - "label": "ELEMENT_OF", - "from": 90073840, - "to": 90355635, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517049, - "label": "ENCODES", - "from": 90129522, - "to": 90262806, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515001, - "label": "ENCODES", - "from": 90058271, - "to": 90233313, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517050, - "label": "ENCODES", - "from": 90129527, - "to": 90262811, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515002, - "label": "ENCODES", - "from": 90058275, - "to": 90233345, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515003, - "label": "ENCODES", - "from": 90058280, - "to": 90233359, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530363, - "label": "ELEMENT_OF", - "from": 90070006, - "to": 90359186, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513956, - "label": "ELEMENT_OF", - "from": 90371240, - "to": 90282652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516007, - "label": "ENCODES", - "from": 90085960, - "to": 90256103, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534439, - "label": "ELEMENT_OF", - "from": 90136829, - "to": 90372487, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516000, - "label": "ENCODES", - "from": 90085894, - "to": 90256086, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516001, - "label": "ENCODES", - "from": 90085901, - "to": 90256087, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534444, - "label": "ELEMENT_OF", - "from": 90136801, - "to": 90372487, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534445, - "label": "ELEMENT_OF", - "from": 90136800, - "to": 90372487, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534446, - "label": "ELEMENT_OF", - "from": 90136811, - "to": 90372490, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534447, - "label": "ELEMENT_OF", - "from": 90136814, - "to": 90372490, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516008, - "label": "ENCODES", - "from": 90085971, - "to": 90256108, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534440, - "label": "ELEMENT_OF", - "from": 90136814, - "to": 90372487, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534441, - "label": "ELEMENT_OF", - "from": 90136815, - "to": 90372487, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534442, - "label": "ELEMENT_OF", - "from": 90136811, - "to": 90372487, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510890, - "label": "ELEMENT_OF", - "from": 90299559, - "to": 90372329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534443, - "label": "ELEMENT_OF", - "from": 90206063, - "to": 90372487, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522155, - "label": "REGULATES", - "from": 90277328, - "to": 90350797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509652, - "label": "ELEMENT_OF", - "from": 90294581, - "to": 90358159, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523990, - "label": "REGULATES", - "from": 90278367, - "to": 90351400, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509648, - "label": "ELEMENT_OF", - "from": 90294556, - "to": 90358137, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520913, - "label": "REGULATES", - "from": 90276425, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514770, - "label": "ENCODES", - "from": 69400978, - "to": 90229384, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534227, - "label": "ELEMENT_OF", - "from": 90072927, - "to": 90372222, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529119, - "label": "ELEMENT_OF", - "from": 84893819, - "to": 90354678, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534232, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90372234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534233, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90372237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512708, - "label": "ELEMENT_OF", - "from": 90363445, - "to": 90279979, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509633, - "label": "ELEMENT_OF", - "from": 90294536, - "to": 90357505, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531138, - "label": "ELEMENT_OF", - "from": 90069983, - "to": 90361529, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523971, - "label": "REGULATES", - "from": 90279375, - "to": 90351390, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531139, - "label": "ELEMENT_OF", - "from": 90069983, - "to": 90361530, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512707, - "label": "ELEMENT_OF", - "from": 90363441, - "to": 90279974, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534211, - "label": "ELEMENT_OF", - "from": 90136847, - "to": 90372200, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523980, - "label": "REGULATES", - "from": 90278367, - "to": 90351396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522953, - "label": "REGULATES", - "from": 90290662, - "to": 90350959, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530164, - "label": "ELEMENT_OF", - "from": 90085960, - "to": 90357505, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531188, - "label": "ELEMENT_OF", - "from": 90085901, - "to": 90361582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511732, - "label": "ELEMENT_OF", - "from": 90356853, - "to": 90276628, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530165, - "label": "ELEMENT_OF", - "from": 90085971, - "to": 90357505, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531189, - "label": "ELEMENT_OF", - "from": 90091906, - "to": 90361582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531190, - "label": "ELEMENT_OF", - "from": 90136506, - "to": 90361582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530166, - "label": "ELEMENT_OF", - "from": 90175612, - "to": 90357505, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531191, - "label": "ELEMENT_OF", - "from": 90136490, - "to": 90361582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512752, - "label": "ELEMENT_OF", - "from": 90363610, - "to": 90280249, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534256, - "label": "ELEMENT_OF", - "from": 90070043, - "to": 90372277, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534257, - "label": "ELEMENT_OF", - "from": 90070043, - "to": 90372280, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531186, - "label": "ELEMENT_OF", - "from": 90091909, - "to": 90361582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534258, - "label": "ELEMENT_OF", - "from": 90070043, - "to": 90372283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531187, - "label": "ELEMENT_OF", - "from": 90136480, - "to": 90361582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511731, - "label": "ELEMENT_OF", - "from": 90356852, - "to": 90276624, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523000, - "label": "REGULATES", - "from": 90277457, - "to": 90351014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534264, - "label": "ELEMENT_OF", - "from": 90073290, - "to": 90372293, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523001, - "label": "REGULATES", - "from": 90277540, - "to": 90351014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534244, - "label": "ELEMENT_OF", - "from": 90128858, - "to": 90372249, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521956, - "label": "REGULATES", - "from": 90279375, - "to": 90350771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531172, - "label": "ELEMENT_OF", - "from": 90072927, - "to": 90361563, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531173, - "label": "ELEMENT_OF", - "from": 90085894, - "to": 90361566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515815, - "label": "ENCODES", - "from": 90081712, - "to": 90254951, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510688, - "label": "ELEMENT_OF", - "from": 90297123, - "to": 90371766, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511712, - "label": "ELEMENT_OF", - "from": 90356803, - "to": 90276574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515809, - "label": "ENCODES", - "from": 90081675, - "to": 90254902, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520931, - "label": "REGULATES", - "from": 90275040, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534255, - "label": "ELEMENT_OF", - "from": 90070043, - "to": 90372271, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524008, - "label": "REGULATES", - "from": 90279192, - "to": 90351406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511720, - "label": "ELEMENT_OF", - "from": 90356831, - "to": 90276604, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511721, - "label": "ELEMENT_OF", - "from": 90356833, - "to": 90279695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524009, - "label": "REGULATES", - "from": 90279974, - "to": 90351406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511722, - "label": "ELEMENT_OF", - "from": 90356836, - "to": 90276606, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524010, - "label": "REGULATES", - "from": 90282058, - "to": 90351406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530197, - "label": "ELEMENT_OF", - "from": 90072625, - "to": 90358137, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520982, - "label": "REGULATES", - "from": 90276606, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520976, - "label": "REGULATES", - "from": 90277540, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522014, - "label": "REGULATES", - "from": 90277335, - "to": 90350771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530206, - "label": "ELEMENT_OF", - "from": 90135379, - "to": 90358159, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522010, - "label": "REGULATES", - "from": 90276624, - "to": 90350771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520964, - "label": "REGULATES", - "from": 90277457, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532228, - "label": "ELEMENT_OF", - "from": 90128103, - "to": 90368219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532229, - "label": "ELEMENT_OF", - "from": 90136309, - "to": 90368219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532230, - "label": "ELEMENT_OF", - "from": 90136311, - "to": 90368219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510726, - "label": "ELEMENT_OF", - "from": 90297214, - "to": 90371924, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512774, - "label": "ELEMENT_OF", - "from": 90363794, - "to": 90278178, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532231, - "label": "ELEMENT_OF", - "from": 90136318, - "to": 90368219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516865, - "label": "ENCODES", - "from": 90128103, - "to": 90261217, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529153, - "label": "ELEMENT_OF", - "from": 90069971, - "to": 90354775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516866, - "label": "ENCODES", - "from": 90128105, - "to": 90261226, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532227, - "label": "ELEMENT_OF", - "from": 90128105, - "to": 90368219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514819, - "label": "ENCODES", - "from": 75538962, - "to": 90229760, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514828, - "label": "ENCODES", - "from": 76270694, - "to": 90230364, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520975, - "label": "REGULATES", - "from": 90277536, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521995, - "label": "REGULATES", - "from": 90277536, - "to": 90350771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534324, - "label": "ELEMENT_OF", - "from": 90072967, - "to": 90372358, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524086, - "label": "REGULATES", - "from": 90277574, - "to": 90351463, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510775, - "label": "ELEMENT_OF", - "from": 90298255, - "to": 90372054, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524087, - "label": "REGULATES", - "from": 90278178, - "to": 90351463, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511795, - "label": "ELEMENT_OF", - "from": 90357024, - "to": 90291276, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511807, - "label": "ELEMENT_OF", - "from": 90357111, - "to": 90274903, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524088, - "label": "REGULATES", - "from": 90279597, - "to": 90351463, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521018, - "label": "REGULATES", - "from": 90278367, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512804, - "label": "ELEMENT_OF", - "from": 90364034, - "to": 90288528, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516903, - "label": "ENCODES", - "from": 90128405, - "to": 90261448, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534304, - "label": "ELEMENT_OF", - "from": 90069289, - "to": 90372329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520992, - "label": "REGULATES", - "from": 90277335, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515886, - "label": "ENCODES", - "from": 90083383, - "to": 90255507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/nagA.json b/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/nagA.json deleted file mode 100644 index 1e6b5f7011..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/nagA.json +++ /dev/null @@ -1,467786 +0,0 @@ -{ - "nodes": [ - { - "id": 3702846, - "label": "yfcP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702835, - "label": "bglX", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702836, - "label": "elfG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702818, - "label": "malI", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702821, - "label": "mglA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702813, - "label": "ebgC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702807, - "label": "hcaE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702797, - "label": "rplF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702799, - "label": "yadC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702784, - "label": "yihQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702787, - "label": "ygiL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702791, - "label": "rplU", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702901, - "label": "gudX", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3670120, - "label": "a [2-Cys peroxiredoxin] with hydroxylated L-cysteine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702891, - "label": "arcB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702881, - "label": "rpiA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3670119, - "label": "a ThiS persulfide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702874, - "label": "prmB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702865, - "label": "yeaG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3670103, - "label": "a c-type cytochrome", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702856, - "label": "htpX", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702858, - "label": "dcuB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702861, - "label": "ascF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702863, - "label": "yfaE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702961, - "label": "fucP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702966, - "label": "manA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702957, - "label": "cheA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702944, - "label": "glxK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702948, - "label": "map", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702949, - "label": "glcA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702942, - "label": "ompA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702930, - "label": "cvpA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702933, - "label": "mgtS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702913, - "label": "fucI", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3670256, - "label": "tetrahydrofolate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670250, - "label": "adenine in RNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670251, - "label": "cytosine in RNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670255, - "label": "7,8-dihydrofolate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670244, - "label": "single-stranded oligodeoxyribonucleotide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670236, - "label": "organophosphorus compound", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670237, - "label": "DL-glyceraldehyde", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670330, - "label": "N6-methyladenine in DNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670335, - "label": "ribonucleoside 5'-monophosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670327, - "label": "5-methylcytosine in DNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670312, - "label": "2'-deoxyribonucleoside 5'-monophosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670314, - "label": "2'-deoxyribonucleoside 5'-triphosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670309, - "label": "apurinic site within DNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670311, - "label": "guanine in DNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670300, - "label": "[50S ribosomal subunit protein L16]-(3R)-3-hydroxy-L-arginine81", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670275, - "label": "diribonucleotide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670385, - "label": "[DNA ligase]-L-lysine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670388, - "label": "[lipoyl-carrier protein]-L-lysine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670390, - "label": "N-acetylarylamine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670382, - "label": "ribonucleoside diphosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670347, - "label": "5-carboxymethylaminomethyl-2'-O-methyluridine34 in tRNALeu", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670453, - "label": "organic hydroperoxide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670441, - "label": "cellodextrin", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670431, - "label": "debranched α-limit dextrin", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670406, - "label": "poly-β-1,6-N-acetyl-D-glucosamine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670482, - "label": "D-glucopyranose 6-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670483, - "label": "D-mannopyranose 6-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670485, - "label": "D-fructofuranose 6-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670487, - "label": "D-ribofuranose 5-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670478, - "label": "D-fructofuranose 1-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670479, - "label": "D-fructopyranose 1-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670589, - "label": "aldehyde", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670581, - "label": "acetoin", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670572, - "label": "topaquinone", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670552, - "label": "N-acetoxyarylamine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670554, - "label": "D-fructose 1-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670550, - "label": "keto-D-fructose 6-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670537, - "label": "2-deoxy-D-ribose 5-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670533, - "label": "D-ribose 5-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670653, - "label": "nucleobase within DNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670604, - "label": "(1→4)-α-D-glucan", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670598, - "label": "α-limit dextrin", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670713, - "label": "3-[(3S)-3-amino-3-carboxypropyl]-uridine47 in tRNAPhe", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670714, - "label": "2-thiouridine34 in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670689, - "label": "2'-deoxyribonucleoside", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670690, - "label": "ribonucleoside", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670756, - "label": "methylated methyl donor", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670744, - "label": "menaquinone", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670737, - "label": "ubiquinol", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670738, - "label": "menaquinol", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670742, - "label": "ubiquinone", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670743, - "label": "5-methyluracil54 in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670723, - "label": "α-D-aldose 1-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670725, - "label": "N-acetyl-D-glucosamine 6-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3670727, - "label": "D-glucosamine 6-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3704120, - "label": "D-sedoheptulose 7-phosphate isomerase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3671355, - "label": "a 2,3,4-saturated fatty acyl-[acp]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3671356, - "label": "a malonyl-[acp]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3704124, - "label": "malate dehydrogenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704114, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704105, - "label": "DUF883 domain-containing protein YgaM", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704110, - "label": "5-methylcytosine-specific restriction enzyme subunit McrB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704097, - "label": "ATP-binding lipopolysaccharide transport protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704101, - "label": "acetolactate synthase / acetohydroxybutanoate synthase, catalytic subunit", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3671335, - "label": "a 3-oxoacyl-[acp]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3671322, - "label": "a 2,3-dihydroxybenzoyl-[EntB aryl-carrier protein]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3704090, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704084, - "label": "outer membrane protein A", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704078, - "label": "Qin prophage; cold shock protein YdfK", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704168, - "label": "MarC family putative inner membrane protein YchE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704166, - "label": "isocitrate dehydrogenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3671386, - "label": "a reduced electron-transfer flavoprotein", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3704157, - "label": "carbohydrate-specific outer membrane porin, cryptic", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3671376, - "label": "a malonyl-[acp] methyl ester", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3704144, - "label": "putative oxidoreductase YeiQ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704145, - "label": "RNA polymerase sigma 28", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3671380, - "label": "a reduced flavodoxin", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3704148, - "label": "L-fuculokinase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3671381, - "label": "a flavodoxin semiquinone", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3704150, - "label": "RNA-binding protein Hfq", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704139, - "label": "RNA polymerase sigma 54", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704140, - "label": "Sec translocon subunit SecG", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704135, - "label": "branched chain amino acid/phenylalanine ABC transporter membrane subunit LivH", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704249, - "label": "prepilin-type N-terminal cleavage/methylation domain-containing protein PpdC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704253, - "label": "UFP0181 family protein YoaH", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704255, - "label": "dipeptide ABC transporter membrane subunit DppB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3671472, - "label": "a peptide with an N-terminal L-proline", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3671475, - "label": "an oxidized [peroxiredoxin disulfide reductase]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3704243, - "label": "KdpD-N-phospho-L-histidine", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3671476, - "label": "a reduced [peroxiredoxin disulfide reductase]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3704245, - "label": "moderate conductance mechanosensitive channel YbiO", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704246, - "label": "glucose-1-phosphate adenylyltransferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704239, - "label": "putative sulfoquinovose transporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704224, - "label": "metal phosphate:H+ symporter PitB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704227, - "label": "putative ferritin-like protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704217, - "label": "biotin sulfoxide reductase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3671440, - "label": "a reduced glutaredoxin", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3671441, - "label": "a [glutaredoxin]-glutathione dithiol", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3704210, - "label": "PyrS-N-phospho-L-histidine", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704212, - "label": "phosphopentomutase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704201, - "label": "transglutaminase-like/TPR repeat-containing protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704206, - "label": "colicin V production protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704316, - "label": "ATP-dependent DNA helicase Rep", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704317, - "label": "PQQ-like domain-containing protein YncE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704309, - "label": "putative transporter YaaU", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704311, - "label": "cobinamide-P guanylyltransferase / cobinamide kinase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704300, - "label": "DUF1870 domain-containing protein YdiL", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704301, - "label": "cytochrome bd-I ubiquinol oxidase subunit I", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704302, - "label": "L-valine exporter, YgaZ component", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3671513, - "label": "a reduced hydrogenase", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3671516, - "label": "an active ribonucleoside triphosphate reductase", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3704273, - "label": "tRNA U34 hydroxylase TrhO", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3671501, - "label": "a [DsbA protein] carrying a disulfide bond", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3671502, - "label": "a [DsbA protein] with reduced L-cysteine residues", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3704257, - "label": "multidrug efflux pump accessory protein AcrZ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3671492, - "label": "an oxidized thioredoxin 1", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3671495, - "label": "a reduced thioredoxin", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3704376, - "label": "PF04293 family protein YcgB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704377, - "label": "threonine—tRNA ligase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704378, - "label": "putative fimbrial adhesin protein YdeQ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704371, - "label": "transcription antitermination protein NusB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704361, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704366, - "label": "glycolate/lactate:H+ symporter GlcA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3671588, - "label": "a double stranded DNA with 5'-terminal phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3704358, - "label": "aminopeptidase N", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704359, - "label": "Rac prophage; putative tail fiber assembly protein TfaR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704348, - "label": "entericidin A lipoprotein, antidote to entericidin B", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704339, - "label": "DNA-binding transcriptional dual regulator NarL", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704340, - "label": "putative dethiobiotin synthetase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704328, - "label": "protein YjfZ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704330, - "label": "putative enzyme YdcK", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704441, - "label": "RssB-P", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704442, - "label": "arabinose ABC transporter periplasmic binding protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704447, - "label": "permease family protein YraQ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704434, - "label": "L-fucose isomerase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704424, - "label": "DNA-binding protein HU-α", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704429, - "label": "periplasmic chaperone OsmY", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704431, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704408, - "label": "ATP synthase F1 complex subunit α", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704409, - "label": "DNA-binding transcriptional repressor AcrR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704400, - "label": "chemotaxis protein CheA(S)", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704402, - "label": "chemotaxis protein CheA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704396, - "label": "chemotaxis protein CheY", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704398, - "label": "protein-glutamate methylesterase/protein glutamine deamidase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704507, - "label": "sensory histidine kinase UhpB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704498, - "label": "sensor histidine kinase HprS", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704499, - "label": "cell division coordinator CpoB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704494, - "label": "PF05981 family protein CreA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704483, - "label": "HprS-N-phospho-L-histidine", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704474, - "label": "PTS enzyme I", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704477, - "label": "colanic acid biosynthesis fucosyltransferase WcaE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704466, - "label": "uncharacterized protein YegR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704468, - "label": "Ton complex subunit ExbB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704451, - "label": "lipopolysaccharide glucosyltransferase I", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704455, - "label": "DUF2135 domain-containing protein YfaP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3671802, - "label": "a [DsbD protein] with reduced L-cysteine residues", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3671803, - "label": "a [DsbD protein] carrying a disulfide bond", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3671804, - "label": "a [DsbB protein] with reduced L-cysteine residues", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3671805, - "label": "a [DsbB protein] carrying a disulfide bond", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3671806, - "label": "a [protein disulfide isomerase] carrying a disulfide bond", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3671807, - "label": "a [disulfide-bond carrier protein] carrying a disulfide bond", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3704575, - "label": "periplasmic nitrate reductase cytochrome c protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704560, - "label": "DNA-binding transcriptional dual regulator SdiA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704565, - "label": "D-cysteine desulfhydrase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704552, - "label": "N-acetylmuramoyl-L-alanine amidase C", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704548, - "label": "L-arginine exporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704538, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704531, - "label": "phosphoglycerate dehydrogenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704520, - "label": "putative transcriptional regulator YihL", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3671746, - "label": "a holo-[EntB aryl-carrier protein]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3704518, - "label": "protein YhaB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3671833, - "label": "a [2-Cys peroxiredoxin] with reduced L-cysteine residues", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3671834, - "label": "a [disulfide-bond carrier protein] with reduced L-cysteine residues", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3671835, - "label": "a [protein disulfide isomerase] with reduced L-cysteine residues", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3704603, - "label": "phosphotransferase system enzyme IIA(Ntr)", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3671836, - "label": "a [2-Cys peroxiredoxin] with a disulfide bond", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3704606, - "label": "mannitol-specific PTS enzyme IIA component CmtB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3671824, - "label": "a tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3704597, - "label": "thiosulfate sulfurtransferase YgaP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704584, - "label": "50S ribosomal subunit protein L6", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704590, - "label": "succinate:quinone oxidoreductase, membrane protein SdhC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704577, - "label": "hexitol phosphatase B", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704580, - "label": "cysteine—tRNA ligase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3704582, - "label": "DLP12 prophage; prophage lipoprotein BorD", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705209, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705210, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705211, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705213, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705214, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705215, - "label": "UDP-N-acetylmuramoyl-L-alanyl-D-glutamyl-meso-2,6-diaminopimelyl-D-alanyl-D-alanine:undecaprenyl-phosphate transferase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705200, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705201, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705202, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705203, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705204, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705205, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705206, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705207, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705192, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672424, - "label": "non glucosylated D-glucose acceptor", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705193, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672426, - "label": "nucleoside 5'-monophosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705197, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705198, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705199, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705184, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705185, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705188, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705189, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705190, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705191, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705176, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705177, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705178, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705180, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705181, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705183, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705168, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705169, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705170, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705172, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705173, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705160, - "label": "hydrogenase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705161, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705162, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705163, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705165, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705166, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705156, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705159, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705276, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705278, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705279, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705265, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705266, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705268, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705269, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705270, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705271, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705256, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705257, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705258, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705259, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705260, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705261, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705262, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705250, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705251, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705252, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705253, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705254, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705240, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705241, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705242, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705243, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705244, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705245, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705246, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705232, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705233, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705234, - "label": "N-acetyl-D-mannosamine-6-phosphate epimerase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705236, - "label": "L-aspartate : fumarate oxidoreductase (deaminating)", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705238, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705239, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705224, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705225, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705226, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705227, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705229, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705230, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705216, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705218, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705219, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705220, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705221, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705223, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705336, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705337, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705338, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705339, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672572, - "label": "N2-methylguanine1835 in 23S rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3672573, - "label": "N2-methylguanine2445 in 23S rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705342, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705343, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705328, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705329, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672562, - "label": "2-O-methylcytidine2498 in 23S rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705330, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705331, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705332, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705333, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705334, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705335, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705320, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705321, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705322, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705323, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705324, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672557, - "label": "5-methylcytosine1962 in 23S rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705325, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705326, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672558, - "label": "2-O-methylguanosine2251 in 23S rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705327, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705312, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705313, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705316, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705318, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705319, - "label": "1-pyrroline-5-carboxylate dehydrogenase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705304, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672537, - "label": "N1-methylguanine745 in 23S rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705306, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705307, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705308, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705310, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705311, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705296, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705297, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705298, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672530, - "label": "pseudouridine2457 in 23S rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705299, - "label": "D-deoxyribose 1,5-phosphomutase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672531, - "label": "N3-methylpseudouridine1915 in 23S rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705300, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705301, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705302, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705303, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705289, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705290, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705291, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705292, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705293, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705294, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672526, - "label": "N6-methyladenine1618 in 23S rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705295, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672527, - "label": "N6-methyladenine2030 in 23S rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705281, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705283, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705284, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705287, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705400, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705401, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705402, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705403, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705405, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705407, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705392, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705393, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705395, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705396, - "label": "Fenton reaction", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705397, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705398, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705399, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705384, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705385, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672618, - "label": "thymine in DNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705386, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705387, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672621, - "label": "2'-O-methyluridine2552 in 23S rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705390, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705391, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705376, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672608, - "label": "D-glycero-D-manno-heptose 7-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705378, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705379, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705380, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705381, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705382, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672615, - "label": "cytosine in DNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705368, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705371, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705372, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705373, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705374, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705375, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705361, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705362, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705363, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705364, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705365, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705366, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705352, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705353, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672586, - "label": "cyclic N6-L-threonylcarbamoyladenosine 37 in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705356, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705359, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705344, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705345, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705346, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705347, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705348, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705351, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672583, - "label": "N6-methyl-threonylcarbamoyladenosine 37 in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705464, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705467, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705468, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705470, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705471, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705456, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705457, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705458, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672690, - "label": "2'-O-methylcytidine34 in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705459, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705460, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705461, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672694, - "label": "2'-O-methylcytidine32 in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705462, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705463, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672695, - "label": "lysidine34 in tRNAIle2", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705449, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672681, - "label": "5-methylaminomethyl-2-selenouridine34 in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705450, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672682, - "label": "2'-O-methyluridine32 in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705451, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705452, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705453, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705454, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705455, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705441, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705442, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705443, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672676, - "label": "5-(methoxycarbonylmethoxy)-2'-O-methyluridine34 in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705446, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705447, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705432, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705433, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705434, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705435, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672668, - "label": "5-carboxymethylaminomethyluridine34 in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705436, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705437, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672670, - "label": "3-[(3S)-3-amino-3-carboxypropyl]-uridine in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705438, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672656, - "label": "5-(carboxymethoxy)uridine34 in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3672657, - "label": "5-methylaminomethyl-2-thiouridine34 in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705425, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705426, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672658, - "label": "5-hydroxyuridine34 in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705427, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705428, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705429, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672661, - "label": "5-methylaminomethyl-2-(Se-phospho)selenouridine34 in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705430, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705416, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705417, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705418, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672650, - "label": "5-methylaminomethyl-2-(S-geranyl)thiouridine34 in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705419, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705420, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705421, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672655, - "label": "5-carboxymethylaminomethyl-2-thiouridine34 in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705423, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705408, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705410, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705411, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705412, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672645, - "label": "5-(methoxycarbonylmethoxy)uridine34 in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705414, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705415, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672647, - "label": "5-aminomethyl-2-thiouridine34 in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705528, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705529, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672762, - "label": "[protein] C-terminal α-L-glutamate-α-L-glutamate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705530, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705531, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705532, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705533, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705534, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705535, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705520, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705521, - "label": "2-oxoglutarate dehydrogenase complex", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705522, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705523, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705526, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705527, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705512, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705513, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705515, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705517, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705518, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705519, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705504, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705506, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705507, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705508, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672741, - "label": "glycogen", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705509, - "label": "dehydroascorbate hydrolase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705510, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705496, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705498, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705499, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705500, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705501, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705503, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705488, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705489, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705491, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705492, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705493, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705494, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705480, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705481, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705482, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705483, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672718, - "label": "electron-transfer quinol", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705486, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705472, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705473, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672706, - "label": "N4-acetylcytidine34 in [elongator tRNAmet]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705475, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705476, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705477, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705478, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705479, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705592, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705593, - "label": "UDP-N-acetyl-D-glucosamine:N-acetylmuramoyl-L-alanyl-D-glutamyl-meso-2,6-diaminopimelyl-D-alanyl-D-alanine-diphosphoundecaprenol 4-β-N-acetylglucosaminlytransferase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705594, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705597, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705598, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705599, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705584, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705585, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705586, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705587, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705588, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705589, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705590, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705576, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705578, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705579, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705580, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705581, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705582, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705583, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705568, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705569, - "label": "peptidoglycan transpeptidase (Gram-negative bacteria)", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705570, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705571, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705572, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705573, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705574, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705560, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705561, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705562, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672795, - "label": "L-methionine S-oxide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705563, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705565, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672797, - "label": "lipopolysaccharide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705566, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705567, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705552, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705554, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705555, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705556, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705557, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672789, - "label": "phosphoethanolamine cellulose", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705558, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705559, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705544, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672776, - "label": "[protein]-α-L-glutamate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705545, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705546, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705547, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705549, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705550, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705551, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705536, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705538, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705539, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705540, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705541, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705542, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705543, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705656, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705658, - "label": "(KDO)3-lipid IVA (2->4) 3-deoxy-D-manno-octulosonic acid transferase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705661, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705662, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672880, - "label": "CDP-diacylglycerol", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705648, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705650, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705651, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705652, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672884, - "label": "amine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705655, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705640, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705641, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672873, - "label": "[protein]-phospho-L-aspartate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705642, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705643, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705644, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705645, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672877, - "label": "[ribosomal protein S12]-3-methylsulfanyl-L-aspartate89", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705646, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705647, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705632, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672864, - "label": "5'-phosphooligonucleotide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705634, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705635, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672867, - "label": "nucleoside", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3672868, - "label": "ribonucleoside 3'-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705637, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705638, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672870, - "label": "5'-phosphomononucleotide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705639, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705625, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705627, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672859, - "label": "nucleotide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705628, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705630, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705616, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705617, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705618, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705619, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705620, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705621, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705622, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705623, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705609, - "label": "decanoyl-CoA C-acyltransferase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705611, - "label": "2-aceto-2-hydroxy-butyrate synthase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705612, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705613, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705614, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705615, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3672847, - "label": "[protein]-L-proline (ω = 0)", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705600, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705601, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705602, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705603, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705604, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705606, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705722, - "label": "putative oxidoreductase YnfG", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705712, - "label": "DUF4154 domain-containing protein YfiR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705718, - "label": "PanD β cleavage product", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705697, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705698, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705699, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705701, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705702, - "label": "γ-glutamylamine cyclotransferase family protein YtfP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705688, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705689, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705691, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705693, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705694, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705695, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705681, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705682, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705684, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705687, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705672, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705673, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705674, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705675, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705676, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705677, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705678, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705679, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705665, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705666, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705668, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705669, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705670, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3705776, - "label": "ATP synthase F1 complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705773, - "label": "sensor lipoprotein NlpE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705774, - "label": "glutamate—pyruvate aminotransferase AlaC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3672996, - "label": "a reduced c-type cytochrome", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3672997, - "label": "an oxidized c-type cytochrome", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3672986, - "label": "an oxidized [2Fe-2S] ferredoxin", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705758, - "label": "putative sulfatase YdeN", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705744, - "label": "small heat shock protein IbpB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705746, - "label": "succinate semialdehyde dehydrogenase (NAD(P)+) Sad", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705734, - "label": "Qin prophage; protein YdfR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705841, - "label": "phosphoribosylformylglycinamide cyclo-ligase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705842, - "label": "putative formate-dependent nitrite reductase complex subunit NrfG", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705845, - "label": "serine protease inhibitor ecotin", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3673066, - "label": "a (7Z)-3-oxotetradec-7-enoyl-[acp]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705834, - "label": "type 1 fimbriae major subunit", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3673067, - "label": "a (5Z)-3-oxododec-5-enoyl-[acp]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3673070, - "label": "a trans-2-enoyl-[acyl-carrier protein]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705829, - "label": "ribose-5-phosphate isomerase A", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705830, - "label": "AMP nucleosidase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705821, - "label": "formate channel FocA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3673040, - "label": "a (9Z)-3-oxohexadec-9-enoyl-[acp]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705800, - "label": "chaperone protein HtpG", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3673033, - "label": "a long-chain 3-oxoacyl-[acp]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705801, - "label": "DUF1471 domain-containing stress-induced protein YhcN", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705792, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705794, - "label": "DNA protection during starvation protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705797, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705798, - "label": "putative fimbrial protein YfcP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705912, - "label": "putative signal transduction protein (SH3 domain)", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705913, - "label": "nicotinate-nucleotide—dimethylbenzimidazole phosphoribosyltransferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705907, - "label": "DNA-binding transcriptional activator XapR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705903, - "label": "putative inner membrane protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705893, - "label": "outer membrane channel TolC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705880, - "label": "glycerate 2-kinase 2", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705884, - "label": "OmpR-Phosphorylated", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705885, - "label": "putative DNA-binding transcriptional regulator YiiE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705875, - "label": "protein YodC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3673110, - "label": "an octanoyl-[acp]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3673111, - "label": "an acetyl-[acp]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3673210, - "label": "a reduced thioredoxin 1", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3673213, - "label": "an oxidized hydrogenase 3", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3673214, - "label": "a reduced hydrogenase 3", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705969, - "label": "xylose ABC transporter periplasmic binding protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3673206, - "label": "a reduced NrdH glutaredoxin-like protein", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705960, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705961, - "label": "putative fimbrial protein YadM", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705953, - "label": "N-acetylneuraminic acid outer membrane channel", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705945, - "label": "DNA-binding transcriptional dual regulator SoxS", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705936, - "label": "chemotaxis signaling complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705938, - "label": "anaerobic C4-dicarboxylate transporter DcuB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705939, - "label": "chemotaxis signaling complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705940, - "label": "putative anti-terminator regulatory protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3673162, - "label": "a reduced ferredoxin [iron-sulfur] cluster", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3705935, - "label": "CDP-alcohol phosphatidyltransferase domain-containing protein YnjF", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705922, - "label": "Mn2+/Fe2+: H+ symporter MntH", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705925, - "label": "diaminopimelate decarboxylase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705927, - "label": "DUF1266 domain-containing protein YbeU", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706042, - "label": "chaperonin GroEL", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706043, - "label": "γ-glutamyl-γ-aminobutyrate hydrolase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706032, - "label": "periplasmic nitrate reductase cytochrome c550 protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706039, - "label": "cell division protein ZipA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706016, - "label": "IS150 conserved protein InsB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706006, - "label": "DNA-binding transcriptional activator FeaR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705998, - "label": "DUF1161 domain-containing protein YnfD", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705989, - "label": "putative 4Fe-4S cluster-containing protein YfhL", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3705990, - "label": "DUF2754 domain-containing protein YaiZ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3673337, - "label": "a tRNA containing a 3' CCA end", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3673338, - "label": "a tRNA fragment", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3706101, - "label": "octanoyl-ACP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3673334, - "label": "an uncharged tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3706084, - "label": "lactate/glycolate:H+ symporter LldP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706072, - "label": "chemotaxis signaling complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706078, - "label": "holocytochrome c synthetase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3673311, - "label": "a 5'-phospho-adenosine-[RNA]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3706067, - "label": "carbonic anhydrase 2", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706069, - "label": "chemotaxis signaling complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3673301, - "label": "an mRNA fragment", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3706057, - "label": "dihydroxyacetone kinase subunit K", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706060, - "label": "trans-hexadec-2-enoyl-ACP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706050, - "label": "sensor histidine kinase ArcB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706051, - "label": "DNA-binding transcriptional dual regulator ArcA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706167, - "label": "DcuS-N-phospho-L-histidine", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706146, - "label": "DNA-binding transcriptional activator Cbl", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706148, - "label": "molybdopterin molybdotransferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706149, - "label": "putative ATP-binding protein YghS", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706138, - "label": "DUF2645 domain-containing inner membrane protein YgiZ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706140, - "label": "GTP cyclohydrolase 1", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706130, - "label": "coproporphyrinogen III dehydrogenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706132, - "label": "RNase R", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706113, - "label": "putative fimbrial usher protein HtrE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3673465, - "label": "an RNase product with a 3' phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3673467, - "label": "an RNase product with a 5' OH", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3673470, - "label": "RNase II substrate with no poly-A tail", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3706225, - "label": "miniconductance mechanosensitive channel YbdG", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706226, - "label": "fused putative DNA-binding transcriptional regulator/putative aminotransferase YjiR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706229, - "label": "DNA-binding transcriptional repressor MarR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706209, - "label": "PF09600 family protein YbgE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706211, - "label": "7-cyano-7-deazaguanine reductase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706212, - "label": "DUF1266 domain-containing protein YbeR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706200, - "label": "galactitol-specific PTS enzyme IIA component", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706204, - "label": "chromosomal replication initiator protein DnaA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706207, - "label": "putative oligopeptide ABC transporter membrane subunit YejB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706197, - "label": "thiol:disulfide oxidoreductase DsbA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706184, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706185, - "label": "XdhC-CoxI family protein YqeB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706187, - "label": "glycerol facilitator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706188, - "label": "antitoxin PrlF", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706189, - "label": "outer membrane phospholipase A", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706191, - "label": "phosphoenolpyruvate synthetase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706180, - "label": "DUF1040 domain-containing protein YihD", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706181, - "label": "putative xyloside transporter YicJ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3706296, - "label": "thiamin phosphate synthase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706297, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706298, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706300, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706301, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706302, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706303, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706289, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706290, - "label": "heme o biosynthesis", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706291, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706293, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706294, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706295, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706280, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706281, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706283, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706272, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706273, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706278, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706279, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706264, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706266, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706267, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706270, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706271, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706257, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706258, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706260, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706262, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706263, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706248, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706249, - "label": "ETF:quinone oxidoreductase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706250, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706251, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706252, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706253, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706254, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706360, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706361, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706362, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706363, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706364, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706365, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706366, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706367, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706352, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706353, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706354, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706355, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706356, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706357, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706358, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706344, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706345, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706346, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706347, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706349, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706350, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706351, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706336, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706337, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706339, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706340, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706341, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706328, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706329, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706330, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706331, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706332, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706333, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706334, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706335, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706320, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706321, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706322, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706323, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706324, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706327, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706312, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706313, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706316, - "label": "GTP:uridine 5'-phosphotransferase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706317, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706318, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706319, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706305, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706306, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706308, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706311, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706425, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706426, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706427, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706428, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706430, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706431, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706417, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706418, - "label": "isocitrate dehydrogenase (NADP+)", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706419, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706420, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706421, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706422, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706423, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706410, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706411, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706412, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706414, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706400, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706401, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706402, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706404, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706406, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706407, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706392, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706393, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706395, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706397, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706399, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706384, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706385, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706387, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706391, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706377, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706378, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706379, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706380, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706382, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706383, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706368, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706369, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706370, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706371, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706372, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706373, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706375, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706488, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706489, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706490, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706491, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706492, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706493, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706494, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706481, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706483, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706484, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706486, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706487, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706473, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706475, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706476, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706477, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706478, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706479, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706465, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706466, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706467, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706468, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706469, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706471, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706456, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706457, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706460, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706461, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706462, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706463, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706449, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706450, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706451, - "label": "cis-aconitate hydratase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706452, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706453, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706454, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706455, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706441, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706442, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706445, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706433, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706434, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706435, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706436, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706437, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706438, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706439, - "label": "heme d biosynthesis", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706552, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706553, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706554, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706555, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706558, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706559, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706545, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706546, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706547, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706548, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706549, - "label": "cyanase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706550, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706551, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706537, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706540, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706542, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706543, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706528, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706529, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706533, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706534, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706535, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706522, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706523, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706524, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706526, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706527, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706512, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706514, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706515, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706516, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706517, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706518, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706504, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706506, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706507, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706508, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706509, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706510, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706511, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706496, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706497, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706498, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706502, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706616, - "label": "Fe2+:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706617, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706618, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706619, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706620, - "label": "asparagine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706608, - "label": "erythromycin export", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706609, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706610, - "label": "nalidixate:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706611, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706613, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706614, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706600, - "label": "nitrate:nitrite antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706601, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706602, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706603, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706604, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706605, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706606, - "label": "drug:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706607, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706592, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706593, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706594, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706595, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706597, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706599, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706584, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706585, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706586, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706587, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706588, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706589, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706591, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706576, - "label": "fumarate:succinate antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706578, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706579, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706580, - "label": "cholate:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706581, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706582, - "label": "D-alanine dehydrogenase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706583, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706568, - "label": "formate dehydrogenase (menaquinone)", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706569, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706570, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706571, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706572, - "label": "uracil:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706573, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706574, - "label": "cytosine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706575, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706560, - "label": "glucose-6-phosphate:phosphate antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706562, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706563, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706565, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706566, - "label": "glycerol-3-phosphate:phosphate antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706567, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706680, - "label": "L-valine:Na+ symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706681, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706682, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706683, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706684, - "label": "inosine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706685, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706686, - "label": "drug:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706687, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706672, - "label": "L-cystine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706673, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706674, - "label": "N-acetylneuraminate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706675, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706676, - "label": "L-iodonate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706677, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706678, - "label": "D-cycloserine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706679, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706664, - "label": "L-arabinose:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706665, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706666, - "label": "carbonylcyanide m-chlorophenylhydrazone export", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706667, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706668, - "label": "ethidium:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706669, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706671, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706657, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706659, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706660, - "label": "4-hydroxybenzoate:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706661, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706662, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706663, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706648, - "label": "acetate:Na+ symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706649, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706651, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706652, - "label": "transport of N-acetyl-D-muramate", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706654, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706641, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706644, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706645, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706646, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706647, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706633, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706635, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706636, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706639, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706624, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706626, - "label": "transport of chitobiose", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706627, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706628, - "label": "electrogenic sodium:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706629, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706630, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706631, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706744, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706745, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706747, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706748, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706749, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706750, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706751, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706737, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706738, - "label": "aspartate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706739, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706740, - "label": "deoxycytidine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706741, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706742, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706728, - "label": "K+:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706730, - "label": "L-valine:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706731, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706732, - "label": "Mn2+:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706733, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706734, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706735, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706720, - "label": "protein translocation", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706721, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706722, - "label": "L-threonine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706723, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706725, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706716, - "label": "L-leucine:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706717, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706719, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706704, - "label": "O-acetyl-L-serine export", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706706, - "label": "D-arabinose:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706707, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706709, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706710, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706711, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706696, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706697, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706698, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706699, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706700, - "label": "D-glycerate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706701, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706702, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706688, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706689, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706690, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706691, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706692, - "label": "export of hypoxanthine", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706693, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706694, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706695, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706808, - "label": "groL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3706812, - "label": "ydgC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3706792, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706793, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706794, - "label": "srlR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3706796, - "label": "nrdG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3706798, - "label": "zipA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3706784, - "label": "enterobactin export", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706785, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706787, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706790, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706791, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706776, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706777, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706778, - "label": "choline:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706779, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706780, - "label": "lysine:cadaverine antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706781, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706782, - "label": "L-aspartate:fumarate antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706783, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706768, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706769, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706770, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706771, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706772, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706773, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706774, - "label": "tripeptide:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706775, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706760, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706761, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706764, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706765, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706766, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706754, - "label": "fructose-6-phosphate:phosphate antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706756, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706757, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706758, - "label": "arginine:agmatine antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706759, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3706857, - "label": "exuT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3706858, - "label": "nlpE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3706848, - "label": "ybeX", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3706849, - "label": "rpiB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3706854, - "label": "nfrB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3706834, - "label": "hofC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3706825, - "label": "uxaC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3706826, - "label": "msrA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3706821, - "label": "fxsA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3706940, - "label": "groS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3706943, - "label": "dsbA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3706935, - "label": "ybcV", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3706919, - "label": "ppiB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3706909, - "label": "kbaY", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3706886, - "label": "msrB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3706984, - "label": "fucA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3706991, - "label": "dsbG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3706981, - "label": "bglB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3706970, - "label": "hchA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3706971, - "label": "stfR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3706973, - "label": "htpG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3706952, - "label": "oppA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707067, - "label": "fadE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707056, - "label": "atoD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707057, - "label": "pyrS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707054, - "label": "phoH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707037, - "label": "tfaQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707020, - "label": "paaK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707009, - "label": "lepB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707128, - "label": "ptsN", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707121, - "label": "gcvT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707125, - "label": "eco", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707112, - "label": "tnaC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707116, - "label": "yafN", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707118, - "label": "kbl", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707108, - "label": "intD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707096, - "label": "fadL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707094, - "label": "fadI", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707087, - "label": "borD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707074, - "label": "yafO", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707187, - "label": "ansB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707190, - "label": "sdaA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707176, - "label": "bfd", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707178, - "label": "pal", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707180, - "label": "brnQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707183, - "label": "ompX", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707148, - "label": "iaaA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707149, - "label": "yifB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707150, - "label": "dppA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707137, - "label": "cpoB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707139, - "label": "glaH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707142, - "label": "asnB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707143, - "label": "rdcA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707258, - "label": "ynaK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707260, - "label": "mscK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707263, - "label": "mscL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707248, - "label": "gltF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707250, - "label": "aspC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707240, - "label": "tdcA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707233, - "label": "aer", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707237, - "label": "putA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707238, - "label": "abpA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707228, - "label": "ydaU", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707230, - "label": "uspA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707218, - "label": "yieP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707222, - "label": "feaR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707214, - "label": "dadA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707205, - "label": "tnaA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707326, - "label": "ompN", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707313, - "label": "puuB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707315, - "label": "tfaR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707305, - "label": "yncD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707310, - "label": "puuE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707311, - "label": "tolB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707296, - "label": "bglH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707299, - "label": "pgaA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707288, - "label": "ydfR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707290, - "label": "ompF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707293, - "label": "tolC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707294, - "label": "caiF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707295, - "label": "intZ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707274, - "label": "puuA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707264, - "label": "tauA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707269, - "label": "mscS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707270, - "label": "rnlB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3674616, - "label": "non-specific ion/solute", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707385, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707387, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707388, - "label": "acriflavine efflux", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707389, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707390, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707391, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707378, - "label": "arsenite:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707379, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707380, - "label": "putrescine:ornithine antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707381, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707383, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707369, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707370, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707371, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707372, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707373, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707374, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3674606, - "label": "cleaved DNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3674607, - "label": "hydrophilic solute or ion < 600 Da", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707375, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707360, - "label": "lactate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707361, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707362, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707363, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707365, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707366, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707352, - "label": "chenodeoxycholate export", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707353, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3674585, - "label": "2-hydroxyglutarate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707355, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707356, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707357, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707358, - "label": "glyceraldehyde-3-phosphate:phosphate antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707346, - "label": "malate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707347, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707348, - "label": "adenosine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707349, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707350, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707351, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707338, - "label": "yhjE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707340, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707341, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707342, - "label": "L-glutamate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707343, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707332, - "label": "proP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3707449, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707451, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707452, - "label": "deoxycholate:Na+ antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707453, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707454, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707455, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707440, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707441, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707445, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707446, - "label": "phenylalanine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707447, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707433, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707435, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3674669, - "label": "N-acetyl-β-D-hexosamine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707438, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707439, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707425, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707426, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707427, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3674659, - "label": "nucleobase", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707428, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707429, - "label": "alanine:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707430, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707431, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707416, - "label": "arsenate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707417, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707418, - "label": "urate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707420, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3674652, - "label": "2'-O-methylguanosine18 in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707421, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707422, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707423, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707408, - "label": "aspartate:succinate antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707409, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707410, - "label": "diffusion of H2", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707411, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707412, - "label": "deoxycholate:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707414, - "label": "pyruvate export", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707415, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707400, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707401, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707402, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707403, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707404, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707405, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707406, - "label": "pantothenate:Na+ symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707407, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707392, - "label": "sulfocysteine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707393, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3674625, - "label": "osmoregulated periplasmic glucan with phosphoglycerol substituent", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707394, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3674628, - "label": "E. coli osmoregulated periplasmic glucan with phosphotidylethanolamine substituent", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707397, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707398, - "label": "hydrogen:menaquinone oxidoreductase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707512, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707514, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707515, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707516, - "label": "L-leucine:Na+ symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707517, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3674749, - "label": "amide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707518, - "label": "thymidine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707519, - "label": "2-(α-hydroxyethyl)-TPP:[dihydrolipoyllysine-residue acetyltransferase]-lipoyllysine acetyltransferase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3674751, - "label": "1,2-diglyceride", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707504, - "label": "deoxycholate export", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707505, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707506, - "label": "Zn2+:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707507, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707508, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707509, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3674743, - "label": "1,2-diacyl-sn-glycerol", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707496, - "label": "2,3-dioxo-L-gulonate:Na+ symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3674730, - "label": "peptidoglycan tripeptide crosslinked to lipopolysaccharide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707500, - "label": "fructuronate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3674732, - "label": "nascent peptidoglycan with (L-alanyl-γ-D-glutamyl-meso-2,6-diaminopimeloyl-D-alanine) tetrapeptide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707488, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707489, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3674721, - "label": "drug", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707490, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707492, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707494, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707495, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707481, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707482, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707485, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707486, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707487, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707472, - "label": "sulfate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707474, - "label": "export of IMP", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707475, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707477, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707478, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3674696, - "label": "N-acetyl-D-mannosamine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707464, - "label": "2-dehydro-3-deoxy-D-gluconate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707465, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707466, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707467, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707468, - "label": "lactate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707469, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707470, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707471, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707458, - "label": "galactose:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3674690, - "label": "aromatic compound", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707460, - "label": "D-mannitol PTS permease", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3674692, - "label": "nascent peptidoglycan with (L-alanyl-γ-D-glutamyl-meso-2,6-diaminopimeloyl-D-alanyl-D-alanine) pentapeptide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707461, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707576, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707577, - "label": "dihydroorotate dehydrogenase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707578, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707579, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707581, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707582, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707583, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707568, - "label": "tryptophan:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707569, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707570, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707571, - "label": "5-aminopentanaote:H+ symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707573, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707574, - "label": "thymine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707575, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707560, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707561, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3674794, - "label": "nucleotide sugar", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707563, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707564, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707565, - "label": "Zn2+:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707567, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3674784, - "label": "sugar phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707553, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707554, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707555, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707556, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707557, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707558, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707544, - "label": "L-galactose:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707546, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707550, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707551, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707536, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707537, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707539, - "label": "tRNA-queuosine glutamyltransferase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707540, - "label": "1-acylglycerol-3-phosphate O-acyltransferase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707541, - "label": "L-cysteine export", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707542, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707528, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707529, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707530, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707531, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707532, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707533, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707534, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707535, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707520, - "label": "glycolate:Na+ symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707522, - "label": "arabinose:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707523, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707524, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707526, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707527, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707641, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3674873, - "label": "glycerol 1-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707642, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707643, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707644, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707645, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707646, - "label": "antimonite:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707647, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707632, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707633, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707634, - "label": "guanosine:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707636, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707637, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707638, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707624, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707626, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3674860, - "label": "intra-protein disulfide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707628, - "label": "β-methylgalactoside:Na+ symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707630, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707631, - "label": "mannose-6-phosphate:phosphate antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707616, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3674849, - "label": "alcohol", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707617, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707618, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707619, - "label": "transport of adenine", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707621, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707622, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707623, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707608, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707610, - "label": "hydroxybutanoate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707611, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707612, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707613, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707615, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707600, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707601, - "label": "D-galacturonate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707602, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707604, - "label": "D-serine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707605, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707606, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707607, - "label": "deoxyinosine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707592, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707593, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707594, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3674826, - "label": "glycoside", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707596, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707597, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3674830, - "label": "6-acetyl-β-D-galactoside", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707598, - "label": "β-alanine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707599, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707585, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707586, - "label": "xylose:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707588, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707589, - "label": "L-homoserine:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707590, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707591, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707704, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707705, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3674937, - "label": "rhamnosyl lipopolysaccharide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707708, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707710, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707711, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707696, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707697, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707698, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707699, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707700, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707701, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707702, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3674920, - "label": "CDP-2,3,4-saturated-diacylglycerol", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707689, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707690, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707691, - "label": "orotate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707692, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707693, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707694, - "label": "cytidine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707680, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707682, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707683, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707684, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707685, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707686, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707687, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707673, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707674, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707675, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707676, - "label": "fumarate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707677, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707678, - "label": "menaquinol-cytochrome c reductase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707664, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707667, - "label": "ethidium export", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707668, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707670, - "label": "ethidium:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707671, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707656, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707657, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707658, - "label": "L-threonine:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707659, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707660, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707661, - "label": "putrescine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707662, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707663, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707648, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707649, - "label": "lipid II flippase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707650, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707651, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707652, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707653, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707654, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707655, - "label": "D-glucose:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707768, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707769, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707773, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707774, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707775, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707760, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3674992, - "label": "short-chain fatty alcohol", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707763, - "label": "L-proline:Na+ symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707764, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707765, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707766, - "label": "malate:succinate antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707767, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707753, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707755, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707756, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707757, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707758, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707759, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707744, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707745, - "label": "magnesium hydrogenphosphate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707746, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707747, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707748, - "label": "2-oxoglutarate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707750, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707751, - "label": "sn-glycerol 3-phosphate:ubiquinone oxidoreductase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707736, - "label": "D-alanine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707738, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707739, - "label": "n-hexane export", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707741, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707742, - "label": "pyruvate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707743, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707728, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707730, - "label": "cadaverine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707731, - "label": "spermidine N8-acetyltransferase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707734, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707735, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707720, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707721, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707722, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707723, - "label": "lipoate--GcvH protein ligase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707725, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707726, - "label": "trans oct-2-enoyl-[acp] reductase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707727, - "label": "amino acid export", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707712, - "label": "succinate:tartrate antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707713, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707715, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707716, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707717, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675065, - "label": "L-phenylalanyl-L-arginyl-[protein]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707834, - "label": "transport of β-D-glucose by PTS", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707837, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707838, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707824, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675057, - "label": "L-phenylalanyl-L-lysyl-[protein]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707825, - "label": "deoxycholate export", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707826, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707827, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707829, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707830, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707831, - "label": "shikimate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707817, - "label": "L-methionine:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707818, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707819, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707820, - "label": "dodecyl sulfate export", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707821, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707822, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707823, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707809, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707810, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707811, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707813, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707815, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707800, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707801, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707802, - "label": "inosine:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707803, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707805, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707806, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707792, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707793, - "label": "enterobactin export", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707794, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707795, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707796, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707797, - "label": "hexanoyl-CoA C-acyltransferase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707798, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707799, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707784, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707785, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707787, - "label": "glycine betaine:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707788, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707789, - "label": "3-oxo-decanoyl-[acyl-carrier protein] synthase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707790, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707776, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707777, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707778, - "label": "acetate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707779, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707780, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707781, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707782, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707900, - "label": "glutamine synthetase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3707893, - "label": "DNA-binding transcriptional dual regulator ArgR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675112, - "label": "N-terminal N-acetyl-L-alanyl-[S5 protein of 30S ribosome]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707880, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707881, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707883, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707884, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707872, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707873, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707874, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707875, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675108, - "label": "N-terminal N-acetyl-L-alanyl-[S18 protein of 30S ribosome]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707876, - "label": "adenine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707877, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707878, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707879, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707864, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707865, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675097, - "label": "[protein] N-terminal L-leucyl-L-arginine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707866, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707868, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707869, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707870, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707871, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707856, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707857, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707858, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707860, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707861, - "label": "Fe2+:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707862, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707863, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707848, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707849, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707851, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707840, - "label": "phosphate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707841, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675073, - "label": "[protein] N-terminal L-leucyl-L-lysine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707843, - "label": "glycolate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707845, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707846, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707847, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3707962, - "label": "DNA polymerase III subunit θ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3707958, - "label": "D-galactose/methyl-galactoside ABC transporter ATP binding subunit", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3707959, - "label": "N-acetylmannosamine kinase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3707944, - "label": "osmotically-inducible lipoprotein OsmB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3707945, - "label": "Rac prophage; protein YdaT", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675177, - "label": "a tRNAPhe", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3675178, - "label": "a tRNALeu", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707928, - "label": "DNA-binding transcriptional dual regulator GadX", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675154, - "label": "a tRNA precursor with a 5' extension", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707925, - "label": "lipoyl-ACP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3707919, - "label": "peptidyl-prolyl cis-trans isomerase B", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3707906, - "label": "murein tripeptide ABC transporter / oligopeptide ABC transporter inner membrane subunit OppC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708017, - "label": "ubiquinone biosynthesis protein UbiU", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708019, - "label": "3-deoxy-D-manno-octulosonate 8-phosphate synthase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708012, - "label": "arginine—tRNA ligase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708002, - "label": "putative DNA repair helicase RadD", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708004, - "label": "fumarase A", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3707994, - "label": "lipoprotein YhdV", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3707996, - "label": "L-serine deaminase I", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3707997, - "label": "CsqR-6-sulfo-D-quinovose", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675216, - "label": "a reduced [NapC protein]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707987, - "label": "methionine sulfoxide reductase A", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3707988, - "label": "SucB-lipoate", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3707989, - "label": "aspartate carbamoyltransferase, PyrI subunit", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3707977, - "label": "ATP synthase F1 complex subunit δ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675211, - "label": "a reduced TorC protein", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707980, - "label": "antitoxin/DNA-binding transcriptional repressor DinJ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675214, - "label": "a reduced TorY protein", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707982, - "label": "signal peptidase I", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675215, - "label": "a reduced [NrfB protein]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3707974, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675321, - "label": "a (2E)-oct-2-enoyl-[acp]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708083, - "label": "ribosome assembly factor YhbY", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708074, - "label": "specificity factor for ClpA-ClpP chaperone-protease complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708076, - "label": "exodeoxyribonuclease III", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708064, - "label": "PtsN-phosphorylated", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708056, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708057, - "label": "putative inorganic phosphate export protein YjbB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708061, - "label": "DNA-binding transcriptional repressor YgiV", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708062, - "label": "putative fimbrial-like adhesin protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708048, - "label": "outer membrane polysaccharide export protein Wza", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708049, - "label": "hexuronate transporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708051, - "label": "putrescine aminotransferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708047, - "label": "uncharacterized protein YjcB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708038, - "label": "polysaccharide co-polymerase family protein FepE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708153, - "label": "DNA-binding transcriptional dual regulator Lrp", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708154, - "label": "putative phosphopantetheinyl transferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708157, - "label": "DNA-binding transcriptional activator CdaR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708144, - "label": "putative fimbrial protein YgiL", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708147, - "label": "fumarate reductase iron-sulfur protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708150, - "label": "putative ATPase, activator of (R)-hydroxyglutaryl-CoA dehdratase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708137, - "label": "RNA polymerase subunit ω", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708135, - "label": "sensor histidine kinase DpiB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675352, - "label": "a 3-oxopimeloyl-[acp] methyl ester", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708121, - "label": "putative LuxR family transcriptional regulator YqeH", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675355, - "label": "a 3-oxododecanoyl-[acp]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3675356, - "label": "a 3-oxooctanoyl-[acp]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3675357, - "label": "a 3-oxohexanoyl-[acp]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3675346, - "label": "a 3-oxotetradecanoyl-[acp]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3675351, - "label": "a 3-oxodecanoyl-[acp]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708119, - "label": "DUF1471 domain-containing protein YbiJ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675336, - "label": "an acetoacetyl-[acp]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3675339, - "label": "a 3-oxohexadecanoyl-[acp]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708108, - "label": "thiol-disulfide exchange protein DsbDoxidized", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675343, - "label": "an (11Z)-3-oxooctadec-11-enoyl-[acp]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3675335, - "label": "a 3-oxoglutaryl-[acp] methyl ester", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3675448, - "label": "an L-phenylalanyl-[tRNAPhe]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3675449, - "label": "an L-methionyl-[initiator tRNAMet]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3675450, - "label": "an L-leucyl-[tRNALeu]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3675452, - "label": "a glycyl-[tRNAGly]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3675453, - "label": "an L-tyrosyl-[tRNATyr]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708221, - "label": "putative endonuclease YhhZ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675454, - "label": "an L-asparaginyl-[tRNAAsn]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3675455, - "label": "an L-seryl-[tRNAser]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708211, - "label": "outer membrane porin N", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708212, - "label": "NADPH-dependent FMN reductase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675445, - "label": "an L-selenocysteinyl-[tRNAsec]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708203, - "label": "soluble pyridine nucleotide transhydrogenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708207, - "label": "cyclic di-GMP phosphodiesterase PdeF", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708192, - "label": "DUF1471 domain-containing protein YdgH", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708193, - "label": "heme trafficking system membrane protein CcmB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708194, - "label": "PF10945 family protein YhjR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708198, - "label": "DNA polymerase I", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675417, - "label": "an oxidized [NrfB protein]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708187, - "label": "inner membrane protein YhiM", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675420, - "label": "an oxidized [NapC protein]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708188, - "label": "DNA-binding transcriptional dual regulator OmpR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708178, - "label": "valine—pyruvate aminotransferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708180, - "label": "cis-Δ3-decenoyl-ACP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708280, - "label": "shikimate kinase 1", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708281, - "label": "protein YejG", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708283, - "label": "fumarate reductase flavoprotein subunit", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708286, - "label": "23S rRNA pseudouridine2457 synthase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708272, - "label": "DUF2502 domain-containing protein YaaX", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708276, - "label": "branched chain amino acid/phenylalanine ABC transporter periplasmic binding protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708264, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708268, - "label": "aspartate aminotransferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708270, - "label": "3-ketoacyl-CoA thiolase FadI", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708258, - "label": "isoaspartyl dipeptidase proenzyme", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708263, - "label": "hemolysin E", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708249, - "label": "putative DNA-binding transcriptional regulator YciT", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708254, - "label": "nitrogen regulator GlnK", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708255, - "label": "tagatose-1,6-bisphosphate aldolase 1 subunit KbaY", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675472, - "label": "an L-isoleucyl-[tRNAIle]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3675474, - "label": "an L-glutaminyl-[tRNAGln]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3675475, - "label": "an L-tryptophanyl-[tRNATrp]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3675476, - "label": "an L-arginyl-[tRNAArg]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3675464, - "label": "an L-cysteinyl-[tRNACys]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3675465, - "label": "an L-threonyl-[tRNAThr]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3675466, - "label": "an L-alanyl-[tRNAAla]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708234, - "label": "ADP-sugar diphosphatase NudE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708236, - "label": "lipid hydroperoxide peroxidase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708238, - "label": "N-acetylglucosamine-6-phosphate deacetylase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675470, - "label": "an L-methionyl-[elongator tRNAMet]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708225, - "label": "nitrate:nitrite antiporter NarK", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675458, - "label": "an L-prolyl-[tRNAPro]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708226, - "label": "aminodeoxychorismate lyase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708227, - "label": "DUF2517 domain-containing protein YbfA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675459, - "label": "an L-seryl-[tRNAsec]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3675460, - "label": "an L-lysyl-[tRNALys]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708228, - "label": "trimethylamine N-oxide reductase 1", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675462, - "label": "an L-histidyl-[tRNAHis]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3675463, - "label": "an L-valyl-[tRNAVal]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708346, - "label": "phosphorylated DNA-binding transcriptional dual regulator PyrR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708348, - "label": "polyphosphate kinase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708337, - "label": "chromosome partitioning protein MukE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708328, - "label": "phage shock protein G", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708326, - "label": "fused DNA-binding transcriptional repressor / proline dehydrogenase / 1-pyrroline-5-carboxylate dehydrogenase PutA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708327, - "label": "aldehyde/alcohol dehydrogenase AdhE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708314, - "label": "lipoyl synthase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708315, - "label": "GDP/GTP pyrophosphokinase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708304, - "label": "tRNA-specific 2-thiouridylase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708290, - "label": "DNA-binding transcriptional dual regulator BasR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708293, - "label": "putative arginine:ornithine antiporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708295, - "label": "β-D-glucoside glucohydrolase, periplasmic", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708409, - "label": "putative lipid-binding lipoprotein YceB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708400, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675633, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3675634, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3675624, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3675625, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3708384, - "label": "DUF2509 domain-containing protein YgdB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675618, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3708386, - "label": "γ-glutamylputrescine oxidase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708387, - "label": "dipeptide/tripeptide:H+ symporter DtpB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675620, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3708389, - "label": "DUF2799 domain-containing lipoprotein YfiL", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708391, - "label": "acyl carrier protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675608, - "label": "an L-aspartyl-[tRNAasp]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708377, - "label": "sensor histidine kinase QseC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675610, - "label": "an L-glutamyl-[tRNAGlu]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708378, - "label": "subunit of E1(0) component of 2-oxoglutarate dehydrogenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708382, - "label": "cell division inhibitor SulA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675602, - "label": "an N-formyl-L-methionyl-[initiator tRNAmet]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708372, - "label": "ribosome maturation factor RimP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708361, - "label": "2-amino-6-N-hydroxylaminopurine resistance protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708472, - "label": "uridine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708476, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708477, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708478, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708464, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708465, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675698, - "label": "[TusD]-L-cysteine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708466, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708468, - "label": "L-tartrate:succinate antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675700, - "label": "substituted β-amino acid", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708469, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708470, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708456, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708457, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708458, - "label": "L-glutamate:4-aminobutanoate antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708459, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708461, - "label": "L-fucose:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708462, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708463, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708448, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708449, - "label": "norfloxacin:Na+ antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708451, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708452, - "label": "D-alanine:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708453, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675686, - "label": "[L-cysteine desulfurase]-L-cysteine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708454, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708455, - "label": "L-proline:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708440, - "label": "potassium:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708441, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708443, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708444, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708446, - "label": "D-glucuronate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708447, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675664, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3708432, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708433, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675665, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3675666, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3708434, - "label": "lactose:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708437, - "label": "xanthine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708439, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708429, - "label": "holo-[acyl-carrier protein]", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3675662, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3675648, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3675650, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3675651, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3675653, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3708422, - "label": "ATP dependent, structure specific DNA nuclease", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708423, - "label": "DNA-binding transcriptional dual regulator LeuO", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3708536, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708537, - "label": "L-homoserine lactone:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708538, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708539, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708540, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675772, - "label": "[TusA]-L-cysteine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708542, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675775, - "label": "[3-mercaptopyruvate sulfurtransferase]-L-cysteine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708529, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708530, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708531, - "label": "succinate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708532, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708533, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708535, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708521, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708523, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708524, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708525, - "label": "nalidixate export", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708527, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708512, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708513, - "label": "5-ketogluconate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708515, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708516, - "label": "citrate:succinate antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708517, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675749, - "label": "gentamicin", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708518, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708519, - "label": "L-tyrosine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708505, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708506, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708509, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708510, - "label": "dimethyl sulfoxide diffusion", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675728, - "label": "[TusE sulfur carrier protein]-L-cysteine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708496, - "label": "Mn2+ export", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708497, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708500, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708501, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708502, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708503, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675720, - "label": "two reduced cysteine residues in a protein", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708488, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708489, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708490, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708492, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675724, - "label": "[arsenate reductase]-L-cysteine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708493, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708494, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708495, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708483, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708485, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708486, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708600, - "label": "HypF carbamoyltransferase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708601, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675834, - "label": "methylcob(III)alamin-[methionine synthase]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708603, - "label": "L-isoleucine:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708605, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708606, - "label": "lactose:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708592, - "label": "gentamicin export", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708593, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708594, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708595, - "label": "carbonylcyanide m-chlorophenylhydrazone:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675828, - "label": "cob(I)alamin-[corrinoid adenosyltranferase]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708597, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708598, - "label": "glycine betaine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708599, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708584, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675816, - "label": "adenosylcob(III)alamin-[corrinoid adenosyltranferase]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708586, - "label": "L-serine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708587, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675819, - "label": "heme d", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708588, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708589, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708590, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708577, - "label": "dipeptide:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708578, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708579, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708580, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708581, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708582, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708583, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708569, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708570, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708571, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675803, - "label": "cob(II)alamin-[corrinoid adenosyltranferase]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708572, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708573, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708574, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708562, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708566, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708567, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708552, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708554, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708555, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708556, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708557, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708558, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708559, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708544, - "label": "L-alanine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708545, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708546, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708547, - "label": "L-isoleucine:Na+ symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675780, - "label": "5,10-methenyltetrahydrofolate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708548, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708549, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708550, - "label": "deoxyuridine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708664, - "label": "3-oxo-octanoyl-[acyl-carrier protein] synthase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708665, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708667, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708669, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708670, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708671, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708656, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708658, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708659, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708660, - "label": "L-idonate 2-dehydrogenase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708662, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708663, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708648, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708649, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708650, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708651, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708652, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708653, - "label": "N-acetylneuraminate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708640, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708641, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708642, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708643, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708644, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708646, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708647, - "label": "drug:Na+ antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708632, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708633, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708635, - "label": "L-serine:Na+ symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708637, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708638, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708639, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708624, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708627, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708628, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708629, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675862, - "label": "ion", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708631, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708617, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708618, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708619, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708620, - "label": "deoxyadenosine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708621, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708622, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708623, - "label": "D-cystine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708609, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708610, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708612, - "label": "indole:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708613, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708615, - "label": "glutamate:Na+ symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708728, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708730, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708731, - "label": "chloride:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708732, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708733, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675953, - "label": "2,3,4-saturated 3-oxoacyl-CoA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708721, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708722, - "label": "fumarate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675954, - "label": "5'-deoxyribose-5-phosphate-[DNA]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708723, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708725, - "label": "choline:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708726, - "label": "L-4-hydroxy-2-oxoglutarate aldolase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708727, - "label": "3-oxo-hexanoyl-[acyl-carrier protein] synthase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708712, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708713, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708714, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708715, - "label": "Long-chain-fatty-acid--acyl-carrier protein ligase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708716, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708718, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675950, - "label": "adenosine-5'-diphospho-5'-[DNA]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708705, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708706, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708707, - "label": "succinate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708708, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708710, - "label": "nucleoside:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708711, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708696, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708697, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675930, - "label": "[DNA]-3'-hydroxyl", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708698, - "label": "Trimethylamine-N-oxide reductase (menaquinone)", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708699, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708700, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708701, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708702, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708703, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675920, - "label": "Unknown Display Name", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708688, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708689, - "label": "decanoate export", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708690, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708691, - "label": "2,3,4-saturated fatty acyl-[acp] dehydrogenase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708692, - "label": "electrogenic potassium:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675925, - "label": "[3-mercaptopyruvate sulfurtransferase]-S-sulfanyl-L-cysteine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708693, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708694, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708695, - "label": "calcium hydrogenphosphate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708681, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708682, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708684, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708685, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708686, - "label": "glycine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708687, - "label": "2,3,4-saturated fatty acyl-CoA synthetase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708672, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708673, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708674, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708675, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708676, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708677, - "label": "spermidine:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708678, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675910, - "label": "organosulfur compound", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708793, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708794, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708796, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3676028, - "label": "[protein]-Nπ-phospho-L-histidine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708798, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3676031, - "label": "[protein]-Nτ-phospho-L-histidine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708799, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708785, - "label": "3-oxo-palmitoyl-[acyl-carrier protein] synthase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708786, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708787, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708788, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708789, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708790, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708791, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708776, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708777, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708778, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708779, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708781, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3676014, - "label": "[PTS enzyme I]-Nπ-phospho-L-histidine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708782, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708783, - "label": "cysteine:[ThiI sulfur-carrier protein]-L-cysteine sulfurtransferase desulfurase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3676000, - "label": "proteinogenic amino acid", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708768, - "label": "novobiocin export", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708771, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708772, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708774, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708775, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708761, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708763, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708765, - "label": "L-lysine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708766, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708767, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3675985, - "label": "5'-phospho-[DNA]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708754, - "label": "dephosphorylation of isocitrate dehydrogenase enzyme", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708755, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708756, - "label": "muropeptide:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708757, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708758, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708759, - "label": "D-gluconate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708744, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708745, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708746, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708747, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708748, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708749, - "label": "p-aminobenzoyl glutamate: proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708750, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708751, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708736, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708737, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708739, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708741, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708743, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708856, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708857, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708858, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3676091, - "label": "2,3,4-saturated fatty acyl CoA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708859, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708862, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708863, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708848, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708849, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3676082, - "label": "(2E)-2-enoyl-CoA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708851, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708852, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708854, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708855, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708840, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708842, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708843, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708844, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708845, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708832, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708833, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708834, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708837, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708838, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708824, - "label": "Transport of D-fructopyranose", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3676057, - "label": "siderophore-bound Fe(III)", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708825, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708826, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708827, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708828, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708830, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708831, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708816, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708817, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708818, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708819, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708821, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708823, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708808, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708809, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708811, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708812, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3676044, - "label": "erythromycin", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708813, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708814, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708815, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3676032, - "label": "[HPr protein]-Nπ-phospho-L-histidine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708800, - "label": "3-oxo-glutaryl-[acp] methyl ester synthase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708802, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708804, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708805, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708806, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708807, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708920, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3676152, - "label": "[protein]-L-methionine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708922, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708923, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708924, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708925, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708927, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708913, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708914, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708916, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708919, - "label": "export of 2,4-dinitrophenyl-S-glutathione", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3676151, - "label": "[TusE sulfur carrier protein]-S-sulfanylcysteine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3676136, - "label": "[protein]-L-histidine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708905, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708906, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708907, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708908, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708909, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708910, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708911, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708896, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708898, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3676130, - "label": "[protein]-L-aspartate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708901, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708902, - "label": "3-oxo-dodecanoyl-[acyl-carrier protein] synthase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708903, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708888, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708889, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708890, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3676123, - "label": "[protein]-L-lysine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708891, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708893, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708895, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708881, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708882, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708884, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3676116, - "label": "[protein] Ser/Thr", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708885, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708886, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708872, - "label": "ADP reductase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708873, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708874, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708876, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708877, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708878, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708879, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3676111, - "label": "[protein]-L-tyrosine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708864, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708865, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708866, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708867, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708868, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708870, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708871, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708984, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708985, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708986, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708989, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708990, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708976, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708977, - "label": "enterobactin hydrolase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708978, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708979, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708980, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708983, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708968, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708969, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708973, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708974, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708975, - "label": "xylose ABC transporter", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708961, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708963, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708964, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708965, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708966, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708967, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708952, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708954, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708955, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708957, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3676190, - "label": "aminated amino group donor", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708958, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3676191, - "label": "deaminated amino group donor", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708959, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708944, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708947, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3676180, - "label": "[protein]-L-cysteine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708948, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708949, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708950, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708951, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3676168, - "label": "[protein]-L-arginine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708938, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708939, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708940, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708941, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708942, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708928, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708929, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708930, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3676162, - "label": "Unknown Display Name", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3676163, - "label": "hepta-acylated core oligosaccharide lipid A (E. coli K-12 type)", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3708931, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708933, - "label": "hydroxypyruvate reductase (NADP+)", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708935, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709048, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709049, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709050, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709051, - "label": "phosphoribosyl 1,2-cyclic phosphodiesterase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709052, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709054, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709055, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709040, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709041, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709043, - "label": "L-idonate 2-dehydrogenase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709044, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709045, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709046, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709032, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709033, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709035, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709036, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709037, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709039, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709025, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709026, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709027, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709028, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709030, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709031, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709016, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709020, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709022, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709023, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709008, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709009, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709010, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709011, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709012, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709013, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709014, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709002, - "label": "export of (glutathion-S-yl)-bimane", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709003, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709004, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709005, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709007, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708992, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708993, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708995, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3708998, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709112, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709113, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709117, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709118, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709119, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709104, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709105, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709106, - "label": "5-dehydro-D-gluconate 2-dehydrogenase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709107, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709109, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709110, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709097, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709099, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709100, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709102, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709103, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709089, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709091, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709092, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709094, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709095, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709086, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709087, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709073, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709074, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709075, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709076, - "label": "pyruvate:thiamin diphosphate acetaldehydetransferase (decarboxylating)", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709077, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709078, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709064, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709065, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709066, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709067, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709068, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709070, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709071, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709056, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709057, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709058, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709059, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709060, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709061, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709062, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709063, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709176, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709178, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709179, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709180, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709181, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709182, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709168, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709169, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709170, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709171, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709174, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709160, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709161, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709162, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709163, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709164, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709165, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709166, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709153, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709155, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709158, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709159, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709144, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709145, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709146, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709147, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709149, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709150, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709151, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709136, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709137, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709138, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709139, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709140, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709141, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709142, - "label": "anaerobic ribonucleoside-triphosphate reductase activating enzyme", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709128, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709129, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709130, - "label": "UDP-N-acetylmuramoyl-L-alanyl-D-glutamyl-meso-2,6-diaminopimelate ligase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709135, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709120, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709121, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709123, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709126, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709127, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709243, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709244, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709247, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709232, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709233, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709234, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709235, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709237, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709238, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709239, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709224, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709225, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709226, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709229, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709230, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709217, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709218, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709221, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709222, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709223, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709209, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709210, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709211, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709213, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709215, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709200, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709201, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709202, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709205, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709206, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709207, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709192, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709193, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709194, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709196, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709197, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709198, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709199, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709186, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709187, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709188, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709189, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709304, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709305, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709306, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709308, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709309, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709310, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709311, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709297, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709298, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709299, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709300, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709301, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709302, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709303, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709288, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709289, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709290, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709291, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709292, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709294, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709295, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709280, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709282, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709283, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709285, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709286, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709272, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709273, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709274, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709275, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709276, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709277, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709278, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709279, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709264, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709265, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709266, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709268, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709269, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709270, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709256, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709257, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709258, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709259, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709260, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709262, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709263, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709248, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709250, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709252, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709255, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709368, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709369, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709371, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709372, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709374, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709375, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709360, - "label": "peroxyureidoacrylate/ureidoacrylate amidohydrolase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709361, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709362, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709363, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709364, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709365, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709366, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709367, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709354, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709355, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709356, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709357, - "label": "Painter reaction", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709359, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709344, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709346, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709347, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709348, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709350, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709336, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709337, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709339, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709342, - "label": "glycerophosphorylethanolamine phosphodiesterase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709329, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709330, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709331, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709332, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709333, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709334, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709320, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709321, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709323, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709324, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709325, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709327, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709312, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709313, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709314, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709315, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709317, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709318, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709319, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709432, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709433, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709434, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709437, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709438, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709439, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709425, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709426, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709427, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709428, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709429, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709431, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709416, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709417, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709418, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709419, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709422, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709423, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709409, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709410, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709412, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709413, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709414, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709415, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709400, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709403, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709404, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709405, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709406, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709392, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709393, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709394, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709395, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709396, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709397, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709398, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709399, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709384, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709385, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709386, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709387, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709388, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709389, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709390, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709391, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709376, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709377, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709378, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709379, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709381, - "label": "2-octaprenyl-6-hydroxyphenyl methylase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709382, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709383, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709497, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709498, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709500, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709501, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709502, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709503, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709488, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709489, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709490, - "label": "4-aminobutanoate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709491, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709492, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709493, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709494, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709495, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709481, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709482, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709484, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709485, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709486, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709487, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709473, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709474, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709475, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709478, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709479, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709464, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709465, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709466, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709467, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709471, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709459, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709461, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709448, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709449, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709451, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709452, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709454, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709455, - "label": "hexanoyl-CoA dehydrogenase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709441, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709442, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709443, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709444, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709445, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709447, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709560, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709563, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709564, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709566, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709567, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709553, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709554, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709555, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709556, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709557, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709558, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709559, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709544, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709545, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709546, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709547, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709548, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709550, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709551, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709536, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709537, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709538, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709539, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709540, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709541, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709542, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709543, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709529, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709530, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709535, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709520, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709522, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709523, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709526, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709527, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709513, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709514, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709515, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709517, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709506, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709507, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709508, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709510, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709511, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709624, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709626, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709627, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709628, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709630, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709631, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709616, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709618, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3676851, - "label": "S-glutathionyl-thiarsahydroxy-[arsenate reductase]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709621, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709608, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709612, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3676845, - "label": "[lipoyl-carrier protein]-N6-[(R)-dihydrolipoyl]-L-lysine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709613, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709614, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709600, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709601, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3676837, - "label": "[protein]-L-lysine-N-2-(4,5-dihydro-4-methyl-1H-imidazol-5-one)", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3676839, - "label": "cellulose", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709592, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3676824, - "label": "inositol", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709593, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709594, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709595, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709597, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709585, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709586, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709590, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709591, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709577, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709578, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3676810, - "label": "osmoregulated periplasmic glucan", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709579, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709580, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709568, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709569, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709570, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709571, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3676804, - "label": "[TusA sulfur-carrier protein]-S-sulfanyl-L-cysteine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709574, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709575, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3709689, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709690, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3676914, - "label": "[protein chain elongation factor EF-P]-N-(β-lysyl)-5-hydroxy-L-lysine34", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709682, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709683, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709677, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3676896, - "label": "[glutamine synthetase]-O4-(5'-adenylyl)-L-tyrosine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709665, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709669, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3676901, - "label": "[TusD sulfur-carrier protein]-S-sulfanyl-L-cysteine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3676902, - "label": "[release factor]-N5-methyl-L-glutamine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709671, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709660, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3676881, - "label": "macrolide antibiotic", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709651, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709652, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709640, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709641, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709642, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709644, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709645, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3676878, - "label": "[lipoyl-carrier protein]-N6-lipoyl-L-lysine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709646, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709633, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3676866, - "label": "[DNA ligase]-N6-(5'-adenylyl)-L-lysine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3676868, - "label": "[carboxyl-carrier protein dimer]-N6-carboxybiotinyl-L-lysine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709637, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709752, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709746, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3676979, - "label": "[protein]-L-glutamate-O5-methyl-ester", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709747, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709748, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709738, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709739, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3676974, - "label": "L-galactose", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3676975, - "label": "S-arsorososulfanethiol-[arsenate reductase]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709728, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709732, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709726, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3676959, - "label": "Nω-(1-hydroxy-2-oxopropyl)-[protein]-L-arginine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709727, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709712, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3676946, - "label": "α-(5-L-glutamyl)-amino acid", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709717, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3676951, - "label": "[protein]-L-tyrosine phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709707, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709708, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709709, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709711, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3676929, - "label": "S-(1-hydroxy-2-oxopropyl)-[protein]-L-cysteine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709698, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709702, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709703, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677049, - "label": "D-mannose", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709821, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677054, - "label": "[protein]-S-methyl-L-cysteine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709823, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709809, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709810, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709813, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677033, - "label": "N7-methylguanine46 in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709802, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709803, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709792, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677025, - "label": "D-glucose", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709793, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709795, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709796, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709797, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709784, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709789, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709777, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709778, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677015, - "label": "N-acyl-(S-diacyl-sn-glyceryl)-L-cysteinyl-[lipoprotein]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3677002, - "label": "[glycine-cleavage complex H protein] N6-lipoyl-L-lysine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709772, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709762, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709766, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709880, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677114, - "label": "(S-diacyl-sn-glyceryl)-L-cysteinyl-[apolipoprotein]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3677116, - "label": "[biotin carboxyl-carrier protein]-N6-biotinyl-L-lysine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3677118, - "label": "thiarsahydroxy-[arsenate reductase]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709886, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677119, - "label": "3-sulfolactaldehyde", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3677104, - "label": "[protein]-L-lysine-N-2-(4,5-dihydro-4-methyl-1H-imidazol-4,5-diol)", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709873, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709874, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677107, - "label": "[lipoyl-carrier protein] N6-octanoyl-L-lysine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709875, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709876, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677109, - "label": "N1-methylguanine37 in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3677097, - "label": "dipeptide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709866, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709858, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709860, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677093, - "label": "tripeptide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709862, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709851, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709855, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709840, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709841, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709842, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677067, - "label": "L-fucose", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3677068, - "label": "[a protein chain elongation factor EF-P]-N-(β-L-lysyl)-L-lysine34", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709828, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709829, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677176, - "label": "L-glyceraldehyde", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3709945, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677180, - "label": "hexane", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677168, - "label": "glycerol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677169, - "label": "creatine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3709937, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709938, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677171, - "label": "methane", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677161, - "label": "D-cycloserine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3709930, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677153, - "label": "[L-cysteine desulfurase]-S-sulfanyl-L-cysteine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709921, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677156, - "label": "UDP-N-acetyl-α-D-mannosaminuronate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3709925, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677159, - "label": "UDP-N-acetyl-α-D-muramoyl-L-alanyl-γ-D-glutamyl-meso-2,6-diaminopimelate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3709913, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709919, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709905, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709906, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677140, - "label": "[biotin carboxyl-carrier-protein dimer]-N6-biotinyl-L-lysine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709908, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677129, - "label": "bacitracin", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709899, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677131, - "label": "N-acetylneuraminate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709900, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677120, - "label": "N6-methyladenine37 in tRNA1val", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3709892, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709893, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3710009, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3710012, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3710015, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677232, - "label": "D-glyceraldehyde", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677233, - "label": "octyl β-1,6-D-galactofuranosyl-α-D-glucopyranoside", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710001, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3710002, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677237, - "label": "lipid A disaccharide (E. coli)", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710006, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677238, - "label": "aldehydo-D-ribose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3709992, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677225, - "label": "lipid X (E. coli)", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3709995, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709999, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709984, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709985, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709986, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709988, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677220, - "label": "α-D-galactopyranose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3709989, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677222, - "label": "β-D-galactopyranose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3709991, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709976, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677209, - "label": "β-D-glucopyranose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3709978, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709980, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677212, - "label": "α-D-glucopyranose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3709969, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709970, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709971, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677204, - "label": "D-glutamate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3709973, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677192, - "label": "L-phenylalanine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3709962, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677196, - "label": "glycine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677199, - "label": "novobiocin", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677184, - "label": "(S)-2-aminobutanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3709956, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3709958, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677307, - "label": "5-formamido-1-(5-phospho-D-ribosyl)-imidazole-4-carboxamide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710076, - "label": "putative acyl-CoA dehydrogenase YdiO", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710065, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3710067, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677302, - "label": "5-amino-1-(5-phospho-D-ribosyl)imidazole-4-carboxamide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677289, - "label": "α-glucose 1,6-bisphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710057, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3710059, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3710060, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677280, - "label": "di-trans,octa-cis-undecaprenyl phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710053, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677285, - "label": "portulacaxanthin II", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677286, - "label": "D-xylulose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677287, - "label": "D-ribulose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677272, - "label": "1-(β-D ribofuranosyl)nicotinamide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710046, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3710047, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3710033, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677266, - "label": "triphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710035, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3710037, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3710024, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677258, - "label": "di-trans,octa-cis-undecaprenyl diphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710028, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3710030, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3710031, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3710017, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3710019, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3710020, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3710022, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3677368, - "label": "Zn2+", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677369, - "label": "allolactose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710143, - "label": "DNA-binding transcriptional activator GadE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710129, - "label": "bacteriolytic entericidin B lipoprotein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710132, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677366, - "label": "3-oxo-L-alanine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677353, - "label": "phosphinate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677355, - "label": "sn-glycero-3-phosphocholine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710112, - "label": "DUF3313 domain-containing lipoprotein YdcL", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677345, - "label": "Fe3+", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677350, - "label": "S-ribosyl-L-homocysteine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677336, - "label": "Mn2+", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677337, - "label": "chloride", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710110, - "label": "cell division protein YtfB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677343, - "label": "sn-glycero-3-phosphoethanolamine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677328, - "label": "D-tagaturonate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677330, - "label": "L-2-amino-3-oxobutanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677332, - "label": "bromide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677334, - "label": "S-carboxymethyl-D-cysteine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677432, - "label": "L-ornithine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710202, - "label": "thiol:disulfide oxidoreductase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677434, - "label": "selenate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677435, - "label": "L-arginine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710204, - "label": "isocitrate dehydrogenase-P", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677437, - "label": "OH-", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710205, - "label": "outer membrane protein X", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677438, - "label": "L-aspartate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710206, - "label": "Tsrglu", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710194, - "label": "Phosphorylated DNA-binding transcriptional regulator RstA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677427, - "label": "nitrite", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677428, - "label": "hydrogencarbonate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710198, - "label": "BarA-phospho-L-aspartate-718", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677431, - "label": "sulfate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677416, - "label": "1-palmitoyl-2-cis-vaccenoyl phosphatidate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677419, - "label": "1,2-bis-cis-vaccenoyl-phosphatidate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710187, - "label": "Phosphorylated DNA-binding transcriptional activator UvrY", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677420, - "label": "sulfide(2-)", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677421, - "label": "sulfite", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710191, - "label": "Tapgln", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710176, - "label": "thiamine monophosphate kinase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677409, - "label": "dipalmitoyl phosphatidate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710177, - "label": "Targln", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710178, - "label": "Zn2+/Cd2+/Ni2+/Cu2+ exporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710179, - "label": "UhpA-Phosphorylated", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677412, - "label": "molybdate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677414, - "label": "arsenate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677415, - "label": "nitrate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710183, - "label": "CheB-Pasp", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677401, - "label": "Fe2+", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710173, - "label": "EvgS-N-phospho-L-histidine-721", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710175, - "label": "α cleavage product of IaaA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677394, - "label": "S-adenosyl-L-homocysteine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677396, - "label": "L-idonate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710165, - "label": "Trggln", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710167, - "label": "NtrC-Phosphorylated DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677384, - "label": "3-deoxy-α-D-manno-2-octulosonate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677386, - "label": "N6-(D-glucosyl)-L-lysine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710144, - "label": "periplasmic trehalase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710150, - "label": "quercetin 2,3-dioxygenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677496, - "label": "2-oxoglutarate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710264, - "label": "thiol:disulfide oxidoreductase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677497, - "label": "2-keto-D-gluconate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677498, - "label": "2-dehydro-3-deoxy-D-gluconate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710266, - "label": "TorT-TMAO", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710267, - "label": "sensory histidine kinase RstB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710268, - "label": "Trgglu-Me", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677500, - "label": "2-keto-L-gulonate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677501, - "label": "pyruvate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710270, - "label": "Phosphorylated DNA-binding transcriptional dual regulator ArcA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710256, - "label": "Tsrglu-Me", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677493, - "label": "3-phenyl-2-oxopropanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710262, - "label": "ArcB-N-phospho-L-histidine-717", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677495, - "label": "glyoxylate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677481, - "label": "3-(4-hydroxyphenyl)pyruvate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710250, - "label": "BarA-N-phospho-L-histidine-302", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677483, - "label": "4-methyl-2-oxopentanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710251, - "label": "putative transporter YfcC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710253, - "label": "L-fucose:H+ symporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677487, - "label": "3-methyl-2-oxobutanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677472, - "label": "L-valine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677474, - "label": "L-alanine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710242, - "label": "activated 2-ketobutyrate formate-lyase / pyruvate formate-lyase 4", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710244, - "label": "protein disulfide isomerase DsbCoxidized", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677476, - "label": "L-threonine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677477, - "label": "L-histidine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677478, - "label": "L-methionine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710246, - "label": "Phosphorylated DNA-binding transcriptional activator EvgA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710247, - "label": "3-deoxy-7-phosphoheptulonate synthase, Tyr-sensitive", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677464, - "label": "L-cysteine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710234, - "label": "Tapglu", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677466, - "label": "L-leucine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677469, - "label": "L-cystathionine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710238, - "label": "Phosphorylated DNA-binding transcriptional dual regulator BasR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677471, - "label": "2-dehydro-3-deoxy-D-arabinonate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710224, - "label": "adenylyl-[glutamine synthetase]", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677457, - "label": "maltotetraose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710225, - "label": "asparagine synthetase A", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710226, - "label": "Targlu", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677458, - "label": "L-serine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677460, - "label": "L-glutamate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710228, - "label": "Phosphorylated DNA-binding transcriptional dual regulator NarL", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710230, - "label": "CheY-Pasp", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677462, - "label": "meso-diaminopimelate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710216, - "label": "Trgglu", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710217, - "label": "ABC-type tripartite efflux pump membrane fusion protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677452, - "label": "L-asparagine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677453, - "label": "L-aspartyl-4-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677454, - "label": "L-tyrosine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710222, - "label": "EvgS-phospho-L-aspartate", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710223, - "label": "acetohydroxy acid synthase I subunit IlvN", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677440, - "label": "hydrogensulfite", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710208, - "label": "Phosphorylated DNA-binding transcriptional dual regulator PhoB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677441, - "label": "L-tryptophan", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710209, - "label": "2-oxoglutaramate amidase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710210, - "label": "ArcB-N-phospho-L-histidine-292", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677443, - "label": "L-isoleucine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710211, - "label": "DLP12 prophage; putative integrase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677444, - "label": "L-proline", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710212, - "label": "β cleavage product of IaaA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677445, - "label": "L-glutamine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710213, - "label": "Type II secretion system protein GspG", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677446, - "label": "CMP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677447, - "label": "L-lysine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677560, - "label": "K+", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677566, - "label": "(S)-2-aceto-2-hydroxybutanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677567, - "label": "biotin", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710323, - "label": "PTS Enzyme I-Nτ-phospho-L-histidine", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710312, - "label": "CheA(L)", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710313, - "label": "alanine—tRNA ligase/DNA-binding transcriptional repressor", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677547, - "label": "pyridoxamine 5'-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677549, - "label": "pyridoxal", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677550, - "label": "pyridoxine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677536, - "label": "(2Z)-2-aminobut-2-enoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710304, - "label": "glutamate—pyruvate aminotransferase AlaC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710308, - "label": "ArcB-phospho-L-aspartate-576", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677543, - "label": "pyridoxine 5'-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710297, - "label": "phosphorylated DNA-binding transcriptional activator AtoC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677532, - "label": "glucosyl-(heptosyl)3-Kdo2-lipid A-bisphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677533, - "label": "(3E,5Z)-tetradeca-3,5-dienoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710301, - "label": "chemotaxis protein CheA(L)", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677534, - "label": "2-iminopropanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677535, - "label": "2-aminoprop-2-enoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710303, - "label": "Tsrgln", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710288, - "label": "EvgS-N-phospho-L-histidine-1137", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677520, - "label": "cholate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677522, - "label": "3α,12α-dihydroxy-7-oxo-5β-cholan-24-oate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710294, - "label": "uridylyl-[GlnK]", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710281, - "label": "regulator of biofilm formation", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677513, - "label": "deoxycholate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710284, - "label": "CheY-acetylated", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677516, - "label": "chenodeoxycholate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677504, - "label": "2-oxobutanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710272, - "label": "Targlu-Me", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710274, - "label": "Phosphorylated DNA-binding transcriptional dual regulator NarP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710276, - "label": "BarA-N-phospho-L-histidine-861", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677508, - "label": "(3E)-2-oxopent-3-enoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677509, - "label": "S-adenosyl-4-methylsulfanyl-2-oxobutanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677510, - "label": "(3R)-3-hydroxy-2-oxo-4 phosphooxybutanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710278, - "label": "Tapglu-Me", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677624, - "label": "succinyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677625, - "label": "glycolaldehyde", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677628, - "label": "acryloyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677617, - "label": "formyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710385, - "label": "putative xanthine dehydrogenase molybdenum-binding subunit XdhA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710389, - "label": "MurR-MurNAc-6-P", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677621, - "label": "4-hydroxy-2-pentenal-5-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710377, - "label": "QseC-N-phospho-L-histidine", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710378, - "label": "lipoprotein YfiB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677613, - "label": "acetyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677615, - "label": "acetaldehyde", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677600, - "label": "3'-dephospho-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677603, - "label": "phenylacetyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677604, - "label": "oxalyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677605, - "label": "formaldehyde", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710374, - "label": "DUF1471 domain-containing protein McbA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710375, - "label": "UhpC-glucose-6-P", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677607, - "label": "isobutanal", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677597, - "label": "3-methylcrotonyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710365, - "label": "DNA topoisomerase 1", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677598, - "label": "N-acetyl-β-D-mannosaminuronyl-(1→4)-N-acetyl-α-D-glucosaminyl-diphospho-ditrans,octacis-undecaprenol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710352, - "label": "glycerol kinase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677587, - "label": "malonyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677588, - "label": "α-D-glucopyranosyl-diphosphoundecaprenol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677589, - "label": "N-acetyl-α-D-glucosaminyldiphospho-ditrans,octacis-undecaprenol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677591, - "label": "α-L-fucosyl-(1->3)-β-D-glucopyranosyl-diphosphoundecaprenol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677578, - "label": "P1,P3-bis(5'-adenosyl) triphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710347, - "label": "DNA-binding transcriptional dual regulator HprR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677579, - "label": "P1,P4-bis(5'-adenosyl) tetraphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677582, - "label": "(enterobacterial common antigen)-undecaprenyl diphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710351, - "label": "putative NAD(P)H-binding oxidoreductase with NAD(P)-binding Rossmann-fold domain", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677570, - "label": "(R)-pantothenate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677571, - "label": "riboflavin", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677572, - "label": "(S)-2-acetolactate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677573, - "label": "nicotinate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677574, - "label": "3-oxopropanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677688, - "label": "2,3-diphospho-D-glycerate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677689, - "label": "3-phospho-D-glycerate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677691, - "label": "D-glycerate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710462, - "label": "DNA-binding transcriptional repressor YdcI", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677683, - "label": "keto-D-fructose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710453, - "label": "osmolyte:H+ symporter ProP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677687, - "label": "3-phospho-D-glyceroyl phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677672, - "label": "1-palmitoyl-2-myristoyl phosphatidate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677678, - "label": "ADP-D-ribose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710447, - "label": "enamine/imine deaminase, redox-regulated chaperone", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710432, - "label": "D-serine/alanine/glycine/:H+symporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677665, - "label": "1-cis-vaccenoyl-2-palmitoleoyl-sn-glycerol-3-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710433, - "label": "alkaline phosphatase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710434, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677667, - "label": "1-myristoyl-2-palmitoleoyl-sn-glycerol 3-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677671, - "label": "1,2-dimyristoyl-sn-glycerol 3-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710424, - "label": "DLP12 prophage; DUF1398 domain-containing protein YbcV", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710428, - "label": "DNA-binding transcriptional dual regulator CynR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677663, - "label": "1-palmitoyl-2-palmitoleoyl-sn-glycerol 3-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677648, - "label": "2,3-dihydroxybenzoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677650, - "label": "S-adenosyl-L-methionine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3710418, - "label": "DNA-binding transcriptional regulator YieP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677652, - "label": "(R)-S-adenosyl-L-methionine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710409, - "label": "isochorismatase family protein YecD", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710415, - "label": "UPF0509 protein YciZ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677632, - "label": "crotonobetainyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677633, - "label": "(2E,5Z)-tetradecenoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677636, - "label": "(2E)-3,7-dimethylocta-2,6-diene-1-thiol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710405, - "label": "DNA-binding transcriptional activator RcsA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710520, - "label": "putative allantoin transporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710522, - "label": "sensor histidine kinase PyrS", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710524, - "label": "multidrug efflux pump AcrEF-TolC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710526, - "label": "negative regulator of MalT activity/cystathionine β-lyase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710516, - "label": "N-acetylmuramoyl-L-alanine amidase B", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710504, - "label": "activated pyruvate-formate lyase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710505, - "label": "periplasmic protein GltF", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677739, - "label": "N-acetyl-L-methionine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677740, - "label": "N-acetyl-L-glutamate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710509, - "label": "Type II secretion system protein GspM", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677742, - "label": "O-acetyl-L-serine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677731, - "label": "methyl β-D-glucoside 6-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677732, - "label": "methyl α-D-glucoside 6-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677721, - "label": "S-sulfo-L-cysteine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710489, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710494, - "label": "DUF2002 domain-containing protein YgaC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677714, - "label": "D-gluconate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677715, - "label": "2-phosphoglycolate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677705, - "label": "phenylacetate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677707, - "label": "glycolate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677710, - "label": "glycine betaine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677711, - "label": "phosphoenolpyruvate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677696, - "label": "acetate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677698, - "label": "orotate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710466, - "label": "inorganic triphosphatase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677699, - "label": "dihydroxyacetone", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710470, - "label": "peptidase M16 family protein YhjJ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677816, - "label": "7-O-[2-aminoethoxy(hydroxy)phosphoryl]-α-D-Kdo-(2→4)-α-D-Kdo-(2→6)-lipid A", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677817, - "label": "2,5-didehydro-D-gluconate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677818, - "label": "α-Kdo-(2->4)-α-Kdo-(2->6)-lipid IVA (E. coli)", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710586, - "label": "CaiF-L-carnitine DNA-binding Transcriptional Activator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677821, - "label": "(acetamidomethyl)phosphonate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677822, - "label": "2'-(5''-triphospho-α-D-ribosyl)-3'-dephospho-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710590, - "label": "FucR-L-fuculose-1-phosphate DNA-binding transcriptional activator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710591, - "label": "RNA polymerase, sigma 54 (sigma N) factor", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710576, - "label": "ArgP-arginine DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677808, - "label": "glucosyl-(heptosyl)2-Kdo2-lipid A", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677809, - "label": "4-deoxy-4-formamido-α-L-arabinopyranosyl ditrans,octacis-undecaprenyl phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677810, - "label": "lipid A-core-phosphoethanolamine (hep I)", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710578, - "label": "TrpR-Tryptophan DNA-binding transcriptional repressor", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677811, - "label": "4-amino-4-deoxychorismate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710580, - "label": "UlaR-L-ascorbate-6P", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677812, - "label": "4'-α-L-Ara4N-α-Kdo-(2→4)-α-Kdo-(2→6)-[P4'-α-L-ara4N]-lipid A", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710582, - "label": "IdnR-5-ketogluconate DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710568, - "label": "MetJ-S-adenosylmethionine", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677800, - "label": "heptosyl-Kdo2-lipid IVA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677803, - "label": "D-glycero-β-D-manno-heptose 1,7-bisphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677804, - "label": "α-Kdo-(2→6)-lipid IVA (E. coli)", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710572, - "label": "AllR-allantoin", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677805, - "label": "S-methyl-5'-thioadenosine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710560, - "label": "30S ribosomal subunit", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677793, - "label": "Kdo2-(palmitoleoyl)-lipid IVA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677794, - "label": "adenosine 5'-phosphosulfate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710562, - "label": "XapR-xanthosine DNA-binding transcriptional activator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677796, - "label": "α-D-Kdo-(2→4)-α-D-Kdo-(2→6)-lipid A (E. coli)", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710566, - "label": "NagC-NAcGlc-6-P", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710552, - "label": "ribosome", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677785, - "label": "glucosyl-(heptosyl)3-Kdo2-lipid A-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677787, - "label": "lipid IVB", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677788, - "label": "citrate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677789, - "label": "(heptosyl)2-Kdo2-lipid A", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710557, - "label": "protease HtpX", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710558, - "label": "CsrA complex with McaS RNA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677791, - "label": "glucosyl-(heptosyl)3-glucosyluronate-Kdo2-lipid A-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677776, - "label": "(2S,4S)-4-hydroxy-2,3,4,5-tetrahydrodipicolinate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710544, - "label": "SelB-L-selenocysteinyl-tRNAsec", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677778, - "label": "tetrahydrocurcumin", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710546, - "label": "50S ribosomal subunit", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710547, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677781, - "label": "galactosyl-(glucosyl)2-(heptosyl)3-Kdo2-lipid A-bisphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710549, - "label": "β-glucoside specific PTS enzyme IIBC component", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710538, - "label": "uncharacterized protein YaeQ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677771, - "label": "quinolinate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677773, - "label": "3'-phosphoadenylyl-sulfate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677774, - "label": "2-aminoacetaldehyde", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677775, - "label": "N-succinyl-2-amino-6-ketopimelate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710535, - "label": "acetyl-CoA:acetoacetyl-CoA transferase subunit α", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677850, - "label": "4-(2'-carboxyphenyl)-4-oxobutyryl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710609, - "label": "CynR-Cyanate DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710611, - "label": "GlpR-glycerol-3-phosphate", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677843, - "label": "α-Kdo-(2->4)-α-Kdo-(2->6)-(lauroyl)-lipid IVA (E. coli)", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710614, - "label": "allose-6-phosphate isomerase / ribose-5-phosphate isomerase B", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710615, - "label": "AcrR-ethidium", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710600, - "label": "RutR-thymine", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677833, - "label": "7-O-[2-aminoethoxy(hydroxy)phosphoryl]-α-D-Kdo-(2→4)-α-D-Kdo-(2→6)-lipid IVA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677835, - "label": "heptosyl-Kdo2-lipid A", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710604, - "label": "PaaX-phenylacetyl-CoA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677837, - "label": "α-Kdo-(2->4)-α-Kdo-(2->4)-α-Kdo-(2->6)-lipid IVA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677839, - "label": "(Kdo)2-lipid A, cold adapted", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710592, - "label": "GcvR-gly", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677825, - "label": "galactosyl-glucosyl-(heptosyl)3-Kdo2-lipid A-bisphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3710594, - "label": "FhlA-Formate DNA-binding transcriptional activator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3710596, - "label": "MarR-salicylate", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3677829, - "label": "glucosyl-(heptosyl)2-Kdo2-lipid A-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3677831, - "label": "α-D-Kdo-(2→4)-α-D-Kdo-(2→6)-lipid A 1-diphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3711163, - "label": "DsdC-D-serine DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711165, - "label": "AlaS-L-alanine DNA-binding transcriptional repressor", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711225, - "label": "GntR-gluconate", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678457, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678458, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711226, - "label": "sensory histidine kinase NtrB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711227, - "label": "FrmR-formol", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678459, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678460, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711231, - "label": "IlvY-2-acetolactate DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678448, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711217, - "label": "MprA-2,4-dinitrophenol", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678450, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711219, - "label": "AsnC-L-asparagine", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678454, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678441, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711209, - "label": "HcaR-HCA DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711211, - "label": "PdhR-pyruvate", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711213, - "label": "ChbR-N-monoacetylchitobiose 6'-phosphate", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678446, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711215, - "label": "GcvA-gly", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678432, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678435, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711203, - "label": "LsrR-DHPD", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711204, - "label": "phosphocarrier protein HPr", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711205, - "label": "RutR-uracil", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678438, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711207, - "label": "PurR-Hypoxanthine DNA-binding transcriptional repressor", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711192, - "label": "multidrug efflux pump membrane fusion lipoprotein AcrE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678426, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711195, - "label": "AllR-glyox", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678427, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678428, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678429, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678430, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711199, - "label": "GlaR-glutarate", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678431, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711184, - "label": "2-amino-3-ketobutyrate CoA ligase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711185, - "label": "Cbl-APS", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678418, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711189, - "label": "MetR-L-homocysteine", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711191, - "label": "ZntR-Zn2+ transcriptional activator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678408, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711177, - "label": "DNA-binding transcriptional dual regulator LldR-L-lactate", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678410, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711179, - "label": "ArgR-L-arginine DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711181, - "label": "NanR-NANA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711182, - "label": "quinolinate phosphoribosyltransferase (decarboxylating)", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711183, - "label": "MalT-Maltotriose-ATP DNA-binding transcriptional activator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678402, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678404, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711173, - "label": "LsrR-AI-2", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678405, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711174, - "label": "partially deacetylated poly-β-1,6-N-acetyl-D-glucosamine outer membrane porin", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711175, - "label": "MetJ-adenine", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678407, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711289, - "label": "GutR-sorbitol", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678521, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678522, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678523, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678524, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711293, - "label": "GlpR-glycerol", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678525, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678526, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711295, - "label": "ArsR-arsenite", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678512, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678513, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711281, - "label": "NrdR-Zn2+ DNA-binding transcriptional repressor", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678515, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711283, - "label": "MprA-CCCP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678516, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711284, - "label": "putative zinc-binding dehydrogenase YggP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711285, - "label": "Fur-Fe2+ DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678517, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678519, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711273, - "label": "ArgP-lysine", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678506, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711276, - "label": "protein YiiF", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711277, - "label": "UxuR-fructuronate", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678510, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711264, - "label": "DUF3828 domain-containing lipoprotein YbjP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678496, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711265, - "label": "Lrp-Leucine DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678497, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678498, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711267, - "label": "PyrR-BTS", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711269, - "label": "DksA-ppGpp", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678501, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711271, - "label": "LsrR-P-DPD", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711259, - "label": "Zur-Zn2+ DNA-binding transcriptional repressor", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678492, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711260, - "label": "bacterioferritin", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678494, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678495, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711249, - "label": "PrpR-2-methylcitrate DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678483, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711251, - "label": "LacI-allolactose", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678485, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678486, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678487, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711241, - "label": "YebK-2-dehydro-3-deoxy-D-gluconate 6-phosphate", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678473, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711243, - "label": "Dan-L-tartrate DNA-binding transcriptional activator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678476, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678477, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711245, - "label": "MntR-Mn2+", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711247, - "label": "CysB-O-acetyl-L-serine DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678464, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711233, - "label": "IclR-pyruvate DNA-binding transcriptional repressor", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711235, - "label": "BetI-choline", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678467, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678468, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678469, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711237, - "label": "TyrR-Tyrosine DNA-binding transcriptional repressor", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678471, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711352, - "label": "sensory histidine kinase NtrB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678586, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678588, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711345, - "label": "putative diguanylate cyclase DgcJ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678579, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678582, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711350, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678574, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678563, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711331, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678565, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711334, - "label": "3-deoxy-D-manno-octulosonate 8-phosphate synthase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678552, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711321, - "label": "PuuR-putrescine", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711323, - "label": "MetJ-MTA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678555, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678556, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711324, - "label": "putative transporter TsgA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678557, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711327, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678544, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711313, - "label": "ModE-MoO42- DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711317, - "label": "DnaA-ATP DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711318, - "label": "putative reductase YffB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678551, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711319, - "label": "BirA-bio-5'-AMP DNA-binding transcriptional repressor / biotin-[acetyl-CoA-carboxylase] ligase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711304, - "label": "protein YabQ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678536, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678537, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678538, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678539, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711309, - "label": "CytR-cytidine", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711297, - "label": "NemR-methylglyoxal", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711299, - "label": "IclR-glyox", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678532, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711301, - "label": "GlcC-Glycolate DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678533, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711303, - "label": "TyrR-Phenylalanine DNA-binding transcriptional repressor", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678650, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678654, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678643, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678647, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678632, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711400, - "label": "uncharacterized protein YjiC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711401, - "label": "ATP dependent structure specific DNA nuclease", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678634, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711404, - "label": "Phosphorylated DNA-binding transcriptional activator QseB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678637, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711405, - "label": "NusB-S10 complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711406, - "label": "DNA-binding transcriptional activator TdcA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711393, - "label": "OmpR dimer", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678626, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678628, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678631, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711399, - "label": "HUαα", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711384, - "label": "DNA-binding transcriptional dual regulator TyrR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678617, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678618, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711387, - "label": "sensor histidine kinase EvgS", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711388, - "label": "putative ABC transporter periplasmic binding protein / polyhydroxybutyrate synthase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711389, - "label": "D-galactose / methyl-β-D-galactoside ABC transporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711376, - "label": "methionine-oxo-acid transaminase, PLP-dependent", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711379, - "label": "L-fuculose-phosphate aldolase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678612, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678614, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711383, - "label": "xylose ABC transporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711368, - "label": "succinate semialdehyde dehydrogenase (NAD(P)+) Sad", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678601, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711370, - "label": "protein sulfenic acid reductase and chaperone DsbG", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678604, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711361, - "label": "DUF1722 domain-containing protein YbgA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678593, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678594, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678596, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678598, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678599, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678713, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711481, - "label": "K+ transporting P-type ATPase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678715, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678716, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678717, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711486, - "label": "UDP-N-acetylglucosamine 2-epimerase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678705, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678706, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711475, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678708, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678711, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678699, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678700, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678701, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711471, - "label": "putative ethanolamine catabolic microcompartment shell protein EutS", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678703, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678688, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711457, - "label": "periplasmic nitrate reductase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678689, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711459, - "label": "bacterioferritin", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678692, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711448, - "label": "putative inner membrane protein YdcZ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678683, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711453, - "label": "energy transducing Ton complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711454, - "label": "endonuclease/exonuclease/phosphatase domain-containing protein YafD", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678687, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678672, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678674, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678675, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711445, - "label": "RcsAB DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678678, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678679, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678664, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678667, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678668, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678670, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678671, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678657, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711427, - "label": "ribose-5-phosphate isomerase A", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678659, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678660, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678661, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711430, - "label": "fimbrial tip-adhesin YadC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711544, - "label": "inner membrane protein that contributes to acid resistance", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711545, - "label": "DNA polymerase III, holoenzyme", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678779, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678780, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678783, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678773, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678775, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711528, - "label": "ribosome-dependent mRNA interferase toxin YoeB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678761, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678762, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678766, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678767, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711521, - "label": "ubiquinone biosynthesis complex UbiUV", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678756, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678757, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711526, - "label": "Rac prophage; ParB-like nuclease domain-containing protein YnaK", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678758, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678759, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711527, - "label": "murein lipoprotein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678745, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678748, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711517, - "label": "lysine / arginine / ornithine ABC transporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678750, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711510, - "label": "tryptophanase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711511, - "label": "putative transport complex, ABC superfamily", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678743, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678728, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678731, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711501, - "label": "L-valine exporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678733, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678734, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711488, - "label": "putative selenate reductase YnfE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711490, - "label": "carbonic anhydrase 1", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678723, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678725, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678727, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711609, - "label": "xanthine-guanine phosphoribosyltransferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711611, - "label": "carbonic anhydrase 1", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678844, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711600, - "label": "DNA-binding transcriptional dual regulator DhaR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678832, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678833, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711601, - "label": "sensor histidine kinase AtoS", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678835, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711603, - "label": "catalase/hydroperoxidase HPI", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678836, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711606, - "label": "2-isopropylmalate synthase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678825, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711594, - "label": "antitoxin YafN", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678827, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711595, - "label": "mannose-specific PTS enzyme IIAB component", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678828, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678829, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711597, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711598, - "label": "murein lipoprotein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678818, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711591, - "label": "NADH:quinone oxidoreductase I", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711576, - "label": "4-aminobutyrate aminotransferase PuuE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678809, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678811, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711580, - "label": "N-acetylglutamate synthase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711581, - "label": "The Tol-Pal Cell Envelope Complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711568, - "label": "DUF5329 domain-containing protein YfeK", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678804, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711574, - "label": "cochaperonin GroES", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711560, - "label": "thioredoxin reductase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678798, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711567, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711553, - "label": "D-lactate dehydrogenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678787, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711555, - "label": "serine—tRNA ligase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711559, - "label": "BglG", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678791, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678904, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678905, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678906, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678907, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711677, - "label": "cyclic di-GMP phosphodiesterase PdeF", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678910, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711678, - "label": "putative AAA+ MoxR family ATPase YehL", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678898, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711670, - "label": "BtsS-N-phospho-L-histidine", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678889, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711657, - "label": "DcuS-DcuB sensor complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711658, - "label": "glutamate—pyruvate aminotransferase AlaA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678890, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711661, - "label": "flagellum", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678895, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678880, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711649, - "label": "large conductance mechanosensitive channel", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711650, - "label": "alkyl hydroperoxide reductase, AhpC component", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678884, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711653, - "label": "phosphate ABC transporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711654, - "label": "lysine/arginine/ornithine ABC transporter periplasmic binding protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678887, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678873, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678874, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678875, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678879, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711632, - "label": "L-arginine ABC transporter ATP binding subunit", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678864, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711633, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678867, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678871, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678858, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711626, - "label": "6,7-dimethyl-8-ribityllumazine synthase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678860, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678861, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678862, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711631, - "label": "ATP-dependent Lipid A-core flippase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678851, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678852, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678853, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678854, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711623, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678970, - "label": "(2-acetamidoethyl)phosphonate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3678972, - "label": "[(1S)-1-acetamidoethyl]phosphonate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3678962, - "label": "D-threo-isocitrate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3678963, - "label": "(2S,4S)-2-methyl-2,4-dihydroxydihydrofuran-3-one", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3678966, - "label": "[(1R)-1-acetamidoethyl]phosphonate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3678954, - "label": "salicyl alcohol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3678957, - "label": "γ-L-glutamyl 5-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3711727, - "label": "ydeE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3678945, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711714, - "label": "puuD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3678947, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711717, - "label": "ydfK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3678938, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711707, - "label": "sensor histidine kinase PhoR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711708, - "label": "feaB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3711710, - "label": "potF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3711696, - "label": "L-homoserine/L-homoserine lactone/L-threonine exporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678931, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711699, - "label": "diguanylate cyclase DgcM", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678933, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678934, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678920, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678921, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711689, - "label": "Sec Holo-Translocon", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678923, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678927, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678912, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711681, - "label": "YefM-YoeB antitoxin/toxin complex / DNA-binding transcriptional repressor", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3678914, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3711684, - "label": "cell division protein FtsQ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3711806, - "label": "insH3", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679028, - "label": "2-protocatechuoylphloroglucinolcarboxylate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679018, - "label": "3-phosphooxypyruvate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3711787, - "label": "rhtB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3711789, - "label": "sbcD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3711790, - "label": "emrD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3678993, - "label": "(S)-dihydroorotate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3711766, - "label": "ybaL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3711745, - "label": "dtpA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3711749, - "label": "ydaT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3711750, - "label": "rnr", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679096, - "label": "prephenate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679097, - "label": "UDP-N-acetyl-α-D-mannosamine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679098, - "label": "α-D-ribose-1-(2-N-acetamidomethylphosphonate) 5-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679099, - "label": "UDP-α-D-galactofuranose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3711867, - "label": "pepD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679101, - "label": "UDP-2-N,3-O-bis[(3R)-3-hydroxytetradecanoyl]-α-D-glucosamine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679103, - "label": "UDP-α-D-galactose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679089, - "label": "UDP-N-acetyl-α-D-muramoyl-L-alanine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679091, - "label": "selenophosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3711860, - "label": "insC5", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679093, - "label": "arsenic triglutathione", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679094, - "label": "UDP-3-O-(3-hydroxymyristoyl)-α-D-glucosamine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679095, - "label": "7,8-dihydrofolate monoglutamate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679083, - "label": "9-mercaptodethiobiotin", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679073, - "label": "D-cysteine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3711844, - "label": "dtpB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3711847, - "label": "cycA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679065, - "label": "D-serine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679067, - "label": "D-alanine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3711835, - "label": "putP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679070, - "label": "D-methionine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3711838, - "label": "yaaU", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3711828, - "label": "mcrB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679054, - "label": "3-(2,3-dihydroxyphenyl)propanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3711812, - "label": "insK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3711928, - "label": "ycaM", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679163, - "label": "2-phospho-4-(cytidine 5'-diphospho)-2-C-methyl-D-erythritol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679166, - "label": "4-(cytidine 5'-diphospho)-2-C-methyl-D-erythritol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679153, - "label": "2-hydroxycyclohepta-1,4,6-triene-1-carboxylate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679145, - "label": "dTDP-α-D-glucose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3711915, - "label": "clpS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679148, - "label": "dTDP-4-acetamido-4,6-dideoxy-α-D-galactose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3711916, - "label": "rhtA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679151, - "label": "dTDP-4-dehydro-β-L-rhamnose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679137, - "label": "(8S)-8-amino-7-(carboxyamino)nonanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679139, - "label": "5-aminopentanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3711908, - "label": "yicJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679128, - "label": "aminoacetone", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679120, - "label": "UDP-N-acetyl-α-D-glucosamine-enolpyruvate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3711888, - "label": "zitB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3711889, - "label": "clpP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3711892, - "label": "ydgI", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679114, - "label": "UDP-α-D-glucose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679115, - "label": "preuroporphyrinogen", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679116, - "label": "UDP-3-O-[(3R)-3-hydroxymyristoyl]-N-acetyl-α-D-glucosamine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679118, - "label": "UDP-α-D-glucuronate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679104, - "label": "(3E,5Z)-tetradecadienoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3711872, - "label": "yihO", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679107, - "label": "cyclic-2,3-O-oxalyl-L-threonate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679109, - "label": "L-arginino-succinate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679110, - "label": "UDP-N-acetyl-α-D-muramoyl-L-alanyl-D-glutamate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679229, - "label": "thiamine phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3711999, - "label": "pepN", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679221, - "label": "hydroquinone", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3711989, - "label": "ompT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679223, - "label": "5-(methylsulfanyl)-D-ribose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679208, - "label": "ethylene glycol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3711981, - "label": "gspO", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3711955, - "label": "ptrA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3711948, - "label": "yjbB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679169, - "label": "dTDP-4-dehydro-6-deoxy-α-D-glucopyranose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3711940, - "label": "argO", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679290, - "label": "dodecyl sulfate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679292, - "label": "5-amino-1-(5-phospho-β-D-ribosyl)imidazole", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712061, - "label": "pgl", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3712063, - "label": "pspG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679284, - "label": "ADP-α-D-glucose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712041, - "label": "pdhR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3712033, - "label": "chbG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679268, - "label": "(E)-4-hydroxy-3-methylbut-2-en-1-yl diphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679256, - "label": "cyclic- 3,4-O-oxalyl-L-threonate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679250, - "label": "(L-threonylcarbamoyl)adenylate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712020, - "label": "ybbW", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3712022, - "label": "yhdW", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3712012, - "label": "yjeM", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679247, - "label": "hydroxypyruvate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712000, - "label": "yqeG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679353, - "label": "3-deoxy-D-glycero-2,5-hexodiulosonate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679355, - "label": "S-acetyldihydrolipoamide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679357, - "label": "5-amino-1-(5-phospho-D-ribosyl)imidazole-4-carboxylate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712127, - "label": "dgcJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679344, - "label": "mature peptidoglycan with (L-alanyl-γ-D-glutamyl-meso-2,6-diaminopimeloyl-D-alanyl-D-alanine) pentapeptide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712113, - "label": "sdhC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3712119, - "label": "dgcT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679336, - "label": "arsenite", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679337, - "label": "nicotinate adenine dinucleotide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712105, - "label": "gltA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679338, - "label": "ditrans,octacis-undecaprenyldiphospho-[(N-acetyl-β-D-glucosaminyl)-(1,4)-]-N-acetyl-α-D-muramoyl-L-alanyl-γ-D-glutamyl-meso-2,6-diaminopimeloyl-D-alanyl-D-alanine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712107, - "label": "dgcQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3712109, - "label": "ppc", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679342, - "label": "1-pyrroline", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679329, - "label": "peptidoglycan dimer with pentapeptide stem (meso-diaminopimelate containing)", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712097, - "label": "sucC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3712100, - "label": "mntH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679333, - "label": "mature peptidoglycan with (L-alanyl-γ-D-glutamyl-meso-2,6-diaminopimeloyl-D-alanine) tetrapeptide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712101, - "label": "fumA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679334, - "label": "antimonous acid", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679323, - "label": "nascent peptidoglycan with D,D cross-links (meso-diaminopimelate containing)", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712091, - "label": "chpS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679325, - "label": "mature peptidoglycan with D,D cross-links (meso-diaminopimelate containing)", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712085, - "label": "icd", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3712087, - "label": "yoeB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3712073, - "label": "sucA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679307, - "label": "2-deoxy-D-glucose 6-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679297, - "label": "4-phosphooxy-L-threonine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712068, - "label": "yjeH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679303, - "label": "3-deoxy-D-arabino-heptulosonate 7-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712071, - "label": "uspG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3712185, - "label": "adhE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679421, - "label": "UDP-β-L-threo-pentapyranos-4-ulose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712180, - "label": "tsgA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679413, - "label": "5-phospho-β-D-ribosylamine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679401, - "label": "acetyl phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712175, - "label": "ygaP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679392, - "label": "(L-seryl)adenylate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679397, - "label": "1-deoxy-L-glycero-tetrulose 4-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712165, - "label": "frdB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3712152, - "label": "yoeG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679385, - "label": "ethyl-2-methylacetoacetate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679386, - "label": "5'-deoxyadenosine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679389, - "label": "biotinyl-5'-adenylate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712159, - "label": "radD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679378, - "label": "histidinol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712147, - "label": "alaE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3712139, - "label": "dgcZ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3712143, - "label": "yfiR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679360, - "label": "β-nicotinate D-ribonucleotide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679367, - "label": "phenylacetaldehyde", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679481, - "label": "bis(guanylyl molybdopterin) cofactor", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712251, - "label": "ytfB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679485, - "label": "guanylyl molybdenum cofactor", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712253, - "label": "cyoA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679487, - "label": "bis(molybdenum cofactor)", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712255, - "label": "degradosome", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679472, - "label": "thiophosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679473, - "label": "MoO2-molybdopterin cofactor", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679474, - "label": "L-tartrate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679477, - "label": "cytidylyl molybdenum cofactor", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679478, - "label": "(R)-4'-phosphopantothenoyl-L-cysteine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712232, - "label": "ubiA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679464, - "label": "ethidium", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679467, - "label": "7,8-dihydropteroate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712239, - "label": "ftsZ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679456, - "label": "glyoxal", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679461, - "label": "3-octaprenyl-4-hydroxybenzoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679450, - "label": "cis-2-methylaconitate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712219, - "label": "exbB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679440, - "label": "ppGpp", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712211, - "label": "prlF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679445, - "label": "adenosine thiamine triphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712213, - "label": "ldhA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3679446, - "label": "cis-aconitate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679447, - "label": "(2S,3S)-2-methylcitrate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3679438, - "label": "2-(1,2-epoxy-1,2-dihydrophenyl)acetyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3712193, - "label": "frdA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3712312, - "label": "aldehyde dehydrogenase A, NAD-linked", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679544, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679545, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712313, - "label": "DNA-binding transcriptional dual regulator Nac", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679547, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679548, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712318, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679550, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712304, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679539, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712308, - "label": "DcuR-Phosphorylated DNA-binding transcriptional activator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679543, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679530, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712302, - "label": "lipid hydroperoxide peroxidase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679535, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679521, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679523, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712295, - "label": "KdpE-Phosphorylated DNA-binding transcriptional activator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712283, - "label": "GadE-RcsB DNA-binding transcriptional activator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712284, - "label": "putative magnesium chelatase YifB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679516, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679517, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712286, - "label": "phosphate ABC transporter membrane subunit PstC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679505, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679506, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679508, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679510, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679496, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679501, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679502, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712261, - "label": "multidrug efflux pump EmrAB-TolC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712262, - "label": "enterobacterial common antigen polysaccharide co-polymerase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712376, - "label": "methionine adenosyltransferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712378, - "label": "ClpAP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679611, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712380, - "label": "DNA-binding transcriptional activator/c-di-GMP phosphodiesterase PdeL", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679613, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712382, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712369, - "label": "methylmalonyl-CoA decarboxylase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679602, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712370, - "label": "universal stress protein G", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712372, - "label": "Type II secretion system", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679604, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679606, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679607, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679593, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679595, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712364, - "label": "ABC-type tripartite efflux pump", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679596, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679598, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679599, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679584, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679585, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712354, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679587, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679588, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712357, - "label": "Pasp DNA-binding transcriptional dual regulator DpiA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679589, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679591, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679576, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679577, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712346, - "label": "protein YbjN", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679578, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712349, - "label": "Enterobacterial Common Antigen Biosynthesis Protein Complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679581, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679582, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679569, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679571, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679574, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712329, - "label": "regulator of diguanylate cyclase RdcA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679561, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679562, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712332, - "label": "YhaV-PrlF toxin-antitoxin complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679564, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679552, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679553, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679554, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679555, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712324, - "label": "lipoprotein release complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679556, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712327, - "label": "IS2 insertion element repressor InsA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712441, - "label": "fumarase A", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679675, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679677, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679664, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712434, - "label": "protein kinase YeaG", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679667, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712437, - "label": "aspartate carbamoyltransferase, regulatory subunit", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679669, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679656, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679657, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679660, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679661, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679649, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679655, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679640, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679641, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679644, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679647, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679633, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712401, - "label": "DNA-binding transcriptional dual regulator HU", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679636, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712405, - "label": "anaerobic nucleoside-triphosphate reductase activating system", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679637, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679638, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679639, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712394, - "label": "phosphoglycerate dehydrogenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679627, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712396, - "label": "DNA polymerase III, core enzyme", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679629, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679616, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679620, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712388, - "label": "PhoR-N-phospho-L-histidine", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712389, - "label": "UPF0231 family protein YacL", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679621, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712504, - "label": "succinylornithine transaminase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679737, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679741, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712498, - "label": "menaquinol:trimethylamine N-oxide oxidoreductase I", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679735, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679723, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679724, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679725, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712494, - "label": "soluble pyridine nucleotide transhydrogenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679712, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712480, - "label": "anti-FlhDC factor", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679718, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712486, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679719, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679708, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712476, - "label": "putative inner membrane protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679711, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712466, - "label": "PF04237 family protein YbdF", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679698, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679699, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679700, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712471, - "label": "regulator of diguanylate cyclase RdcA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679689, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679691, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679693, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712461, - "label": "glutathione / L-cysteine ABC exporter CydDC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679695, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712449, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679683, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712452, - "label": "NAD(P)H:quinone oxidoreductase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679684, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712453, - "label": "2-oxoglutarate decarboxylase, thiamine-requiring", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679685, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679687, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679802, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679803, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712571, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679804, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679805, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712573, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679806, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712560, - "label": "Kdo2-lipid A phosphoethanolamine 7''-transferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679793, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679795, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712563, - "label": "sulfite reductase, flavoprotein subunit complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679797, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712565, - "label": "putative 3-phenylpropionate/cinnamate dioxygenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679798, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712567, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679784, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679786, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712557, - "label": "glutamate—pyruvate aminotransferase AlaA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712559, - "label": "sensor histidine kinase KdpD", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679776, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679781, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679783, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679769, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712538, - "label": "PF09695 family protein YtfJ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679771, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712539, - "label": "ferric citrate outer membrane transport complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679773, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679774, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679760, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679761, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679762, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712530, - "label": "citrate synthase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679763, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712531, - "label": "pyridoxal kinase I / hydroxymethylpyrimidine kinase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679764, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712533, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712535, - "label": "miniconductance mechanosensitive channel YbdG", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712525, - "label": "sensory histidine kinase NarX", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679758, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712527, - "label": "transcription termination factor Rho", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679744, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679745, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679746, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679748, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679750, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712519, - "label": "chaperone protein HtpG", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712632, - "label": "GroEL-GroES chaperonin complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679865, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712636, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679868, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679869, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679856, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679857, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679858, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712626, - "label": "2-amino-6-N-hydroxylaminopurine resistance protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712627, - "label": "trans-Δ2-cis-Δ5-dodecenoyl-ACP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679861, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679863, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712616, - "label": "molybdate ABC transporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712618, - "label": "polysaccharide export complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712619, - "label": "Rac prophage; DUF1376 domain-containing protein YdaU", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679852, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712621, - "label": "trans oct-2-enoyl-ACP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679854, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679840, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679841, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679842, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712614, - "label": "McrB hexamer", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679832, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712602, - "label": "DNA-binding transcriptional repressor StpA with RNA chaperone activity", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679838, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712607, - "label": "(3R)-hydroxy cis Δ5-dodecenoyl-ACP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679839, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712592, - "label": "protein FxsA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679825, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712593, - "label": "alcohol dehydrogenase/aldehyde-dehydrogenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679829, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712597, - "label": "dTDP-glucose 4,6-dehydratase 1", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712599, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679831, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679817, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712585, - "label": "acid phosphatase / phosphotransferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712586, - "label": "OmpR-Phosphorylated DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679818, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679820, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679822, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679823, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679808, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712577, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679809, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712579, - "label": "aspartate aminotransferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712580, - "label": "DUF1283 domain-containing protein YnfB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679813, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679928, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712697, - "label": "McrBS", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679929, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712698, - "label": "mannose-specific PTS enzyme II", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679930, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712703, - "label": "SucB-S-succinyldihydrolipoate", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679921, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712692, - "label": "protein sulfenic acid reductase DsbGreduced", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679925, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679927, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679912, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712680, - "label": "cobalamin outer membrane transport complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679913, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712684, - "label": "sensory histidine kinase NarQ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712686, - "label": "serine protease inhibitor ecotin", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712673, - "label": "tryptophan:H+ symporter Mtr", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712674, - "label": "anaerobic ribonucleoside-triphosphate reductase activating protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679910, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679911, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679897, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712666, - "label": "EnvZ-N-phospho-L-histidine", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679900, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679901, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679902, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679889, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712661, - "label": "sensory histidine kinase NtrB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679894, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679895, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712663, - "label": "bacterial condensin MukBEF", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712648, - "label": "N-acetylneuraminate:H+ symporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712650, - "label": "N-acetylneuraminate lyase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679882, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679883, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712653, - "label": "ATP-dependent DNA helicase Rep", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712655, - "label": "allose-6-phosphate isomerase / ribose-5-phosphate isomerase B", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679887, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712641, - "label": "adenine DNA glycosylase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679873, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679875, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712645, - "label": "D-galactose/methyl-galactoside ABC transporter periplasmic binding protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679992, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679993, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712765, - "label": "D-alanyl-D-alanine carboxypeptidase DacC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679997, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679998, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712767, - "label": "KDO transferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712752, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679985, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712754, - "label": "branched chain amino acid / phenylalanine ABC transporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679986, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679988, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679991, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712759, - "label": "thiosulfate sulfurtransferase GlpE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679976, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679978, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712747, - "label": "leucine / L-phenylalanine ABC transporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679979, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712748, - "label": "DNA-binding transcriptional dual regulator NtrC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679982, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712750, - "label": "putative xanthine dehydrogenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679983, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679971, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679973, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712728, - "label": "putative ABC transporter periplasmic binding protein ArtI", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712733, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712735, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679952, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712720, - "label": "formate dehydrogenase O", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679955, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679956, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712724, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712725, - "label": "holocytochrome c synthetase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679958, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712727, - "label": "sensor histidine kinase EnvZ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679959, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712712, - "label": "DNA-binding transcriptional dual regulator MetR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712714, - "label": "glutamate dehydrogenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712716, - "label": "asparagine synthetase A", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679948, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679950, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712705, - "label": "aspartate 1-decarboxylase proenzyme", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3679941, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3679943, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712824, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712825, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712826, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712829, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712831, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712817, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712819, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712821, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712808, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712814, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3680032, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3680033, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3680034, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3680037, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712806, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3680024, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712797, - "label": "sulfite reductase, flavoprotein subunit", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3680030, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712798, - "label": "peptidase D", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712799, - "label": "DNA-binding transcriptional activator ZntR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3680031, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3680016, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712784, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3680020, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712788, - "label": "putrescine aminotransferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3712789, - "label": "catalase/hydroperoxidase HPI", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3680023, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3680011, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712780, - "label": "α complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3680013, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3680015, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3680000, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3680002, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3680005, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712773, - "label": "anaerobic ribonucleoside-triphosphate reductase activating protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3680006, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3680007, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3712890, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712894, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712895, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712881, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712883, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712884, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712886, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712887, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712876, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712864, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712868, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712859, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712860, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712862, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712853, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712846, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712834, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712837, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712952, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712955, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712945, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712948, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712938, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712940, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712941, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712928, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712931, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712932, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712933, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712920, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712921, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712922, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712923, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712924, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712927, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712913, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712914, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712916, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712917, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712907, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712911, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712899, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712900, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713019, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713012, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713013, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713015, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713000, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712992, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712999, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712987, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712989, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712990, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712991, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712978, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712982, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712960, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712961, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3712967, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713082, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713083, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713086, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713073, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713074, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713076, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713077, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713078, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713064, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713069, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713058, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713060, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713061, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713048, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713055, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713041, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713043, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713047, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713033, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713034, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713035, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713037, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713038, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713024, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713031, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713147, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713150, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713151, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713138, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713140, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713141, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713143, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713130, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713135, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713120, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713126, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713127, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713114, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713107, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713108, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713109, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713111, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713096, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713098, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713101, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713089, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713095, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713209, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713211, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713201, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713203, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713193, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713194, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713196, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713198, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713186, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713190, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713179, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713169, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713175, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713161, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713163, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713166, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713167, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713152, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713153, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713155, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713157, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713277, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713279, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713267, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713270, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713263, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713248, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713250, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713252, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713255, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713243, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713247, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713233, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713235, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713238, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713226, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713230, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713217, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713218, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713219, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713221, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713337, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713342, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713343, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713330, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713331, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713321, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713322, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713326, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713327, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713313, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713316, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713319, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713304, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713306, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713307, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713296, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713297, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713298, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713299, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713281, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713283, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713285, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713287, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713406, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713407, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713393, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713395, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713397, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713388, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713378, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713370, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713371, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713360, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713361, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713367, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713357, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713347, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713348, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713350, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713351, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713470, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713456, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713457, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713461, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713462, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713443, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713433, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713436, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713437, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713439, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713425, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713430, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713421, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713408, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713409, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713411, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713414, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713531, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713522, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713523, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713527, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713504, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713508, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713511, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713496, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713499, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713502, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713495, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713480, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713481, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713482, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713486, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713474, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713476, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713478, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713479, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713595, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713584, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713585, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713589, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713578, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713571, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713575, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713566, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713567, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713552, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713559, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713544, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713545, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713546, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713550, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713536, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713537, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713539, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713543, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713656, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713657, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713658, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713659, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713660, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713661, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713663, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713653, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713654, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713655, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713641, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713645, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713646, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713647, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713632, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713635, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713636, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713625, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713626, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713628, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713629, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713613, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713614, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713600, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713723, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713724, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713704, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713705, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713707, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713708, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713709, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713711, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713696, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713697, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713702, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713689, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713695, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713680, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713683, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713685, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713686, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713687, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713673, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713675, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713677, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713679, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713666, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713667, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713671, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713784, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713785, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713787, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713776, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713778, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713783, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713770, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713775, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713760, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713761, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713766, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713753, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713754, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713756, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713759, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713744, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713745, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713748, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713750, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713729, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713731, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713735, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713848, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713849, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713851, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713852, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713853, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713854, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713855, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713841, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713845, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713846, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713847, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713839, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713824, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713826, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713820, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713808, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713812, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713802, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713804, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713805, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713806, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713793, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713795, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713912, - "label": "c-di-GMP phosphodiesterase PdeC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681145, - "label": "(R)-lipoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681146, - "label": "enol-phenylpyruvate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3713914, - "label": "inner membrane protein YegH", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681147, - "label": "pyridoxal 5'-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3713905, - "label": "DNA-binding transcriptional dual regulator CysB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3713907, - "label": "NADPH-dependent FMN reductase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681141, - "label": "2'-deoxycytidine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681142, - "label": "carbonate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681143, - "label": "D-threo-7,8-dihydroneopterin", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3713899, - "label": "AtoS-N-phospho-L-histidine", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3713900, - "label": "peroxyureidoacrylate/ureidoacrylate amidohydrolase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681133, - "label": "6-carboxy-5,6,7,8-tetrahydropterin", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3713901, - "label": "thiosulfate sulfurtransferase GlpE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3713902, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3713888, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713889, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713895, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3713881, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713882, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713885, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713887, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713872, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713873, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713875, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713876, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713877, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713878, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713879, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713864, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713865, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713869, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713870, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713871, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713857, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713858, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713860, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713861, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3713863, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3681210, - "label": "adenosine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681214, - "label": "dimethyl sulfoxide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681204, - "label": "guanosine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3713972, - "label": "glycerol facilitator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681205, - "label": "3-(imidazol-4-yl)-2-oxopropyl phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681206, - "label": "inosine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681207, - "label": "(2S,4S)-2-methyl-2,3,3,4-tetrahydroxytetrahydrofuran", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3713960, - "label": "protein YciN", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681194, - "label": "glutarate semialdehyde", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681197, - "label": "4'-phosphopantetheine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3713955, - "label": "GTP cyclohydrolase 1", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681189, - "label": "4-(2-aminophenyl)-2,4-dioxobutanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681190, - "label": "xanthine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3713945, - "label": "fused glutathionylspermidine amidase / glutathionylspermidine synthetase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681178, - "label": "2-O-(6-phospho-α-D-mannosyl)-D-glycerate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681180, - "label": "(1R,6R)-6-hydroxy-2-succinylcyclohexa-2,4-diene-1-carboxylate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3713949, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3713950, - "label": "DNA-binding transcriptional activator/c-di-GMP phosphodiesterase PdeL", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681169, - "label": "2-(α-hydroxyethyl)thiamine diphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3713938, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3713939, - "label": "ATP-dependent RNA helicase DeaD", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3713940, - "label": "diguanylate cyclase DgcZ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3713941, - "label": "BOF family protein YgiW", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681160, - "label": "N-(4-aminobenzoyl)-L-glutamate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681161, - "label": "4-aminobutanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3713929, - "label": "anti-adaptor protein for σS stabilization", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3713930, - "label": "catalase HPII", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3713931, - "label": "phosphoserine/phosphohydroxythreonine aminotransferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681166, - "label": "2-C-methyl-D-erythritol-2,4-cyclodiphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681157, - "label": "D-erythro-1-(imidazol-4-yl)-glycerol 3-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681272, - "label": "shikimate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681273, - "label": "3-keto-L-gulonate 6-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714042, - "label": "tagatose-1,6-bisphosphate aldolase 1", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681275, - "label": "β-D-ribose 5-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714043, - "label": "L-glutamine ABC transporter ATP binding subunit", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681276, - "label": "α-D-ribose 5-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681277, - "label": "propanoyl phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714045, - "label": "protein Smp", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681278, - "label": "2,3-dihydroxy-trans-cinnamate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681269, - "label": "N-acetyl-L-glutamate 5-semialdehyde", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714025, - "label": "putative 3-phenylpropionate/cinnamate dioxygenase subunit α", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681261, - "label": "2-oxo-2'-deoxyadenosine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681262, - "label": "N2-succinyl-L-glutamate 5-semialdehyde", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714030, - "label": "negative regulator of MalT activity/cystathionine β-lyase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714031, - "label": "DUF2527 domain-containing protein YobF", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681249, - "label": "thymidine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714020, - "label": "protein chain elongation factor EF-P, β-lysyl-Lys34", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714023, - "label": "small conductance mechanosensitive channel MscS", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681241, - "label": "(R)-β-lysine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681242, - "label": "β-alanine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681243, - "label": "(Z)-3-aminoacrylate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714014, - "label": "putative ATP-binding protein YbiT", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681247, - "label": "2'-deoxyuridine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714005, - "label": "glutarate hydroxylase GlaH", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681239, - "label": "maltotriose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714007, - "label": "multidrug efflux pump MdtEF-TolC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681226, - "label": "N-acetyl-D-muramate 6-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3713984, - "label": "glutarate hydroxylase GlaH", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3713987, - "label": "L-glutamine ABC transporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681220, - "label": "6-phospho D-glucono-1,5-lactone", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681336, - "label": "3-oxo-5,6-didehydrosuberyl-CoA semialdehyde", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714109, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714110, - "label": "D-amino acid dehydrogenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681328, - "label": "demethylmenaquinol-8", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681330, - "label": "toluquinol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714099, - "label": "MukEF complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681322, - "label": "4-amino-2-methyl-5-(phosphooxymethyl)pyrimidine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681323, - "label": "D-ribulose 5-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681312, - "label": "cytidine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714081, - "label": "MetJ-S-adenosylmethionine DNA-binding transcriptional repressor", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714083, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681316, - "label": "uridine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681318, - "label": "aldehydo-D-ribose 5-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681304, - "label": "(2R,4S)-2-methyl-2,4-dihydroxydihydrofuran-3-one", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681308, - "label": "α-D-galactose 1-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681309, - "label": "4-(γ-L-glutamylamino)butanal", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681310, - "label": "2-deoxy-α-D-ribose 1-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714079, - "label": "PF15631 family protein YbbC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714065, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681298, - "label": "L-dehydro-ascorbate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714066, - "label": "heat shock protein, hemimethylated DNA-binding protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681291, - "label": "N-acetyl-α-D-glucosamine 1-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681292, - "label": "N-acetylglutamyl-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681281, - "label": "β-D-fructofuranose 6-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714050, - "label": "PF13985 family protein YbgS", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714051, - "label": "N-acetylglutamate synthase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681284, - "label": "1,4-benzoquinone", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714052, - "label": "phosphoenolpyruvate carboxylase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681287, - "label": "β-D-glucose 6-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714168, - "label": "protein SlyX", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714169, - "label": "nitrogen regulator GlnK", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714173, - "label": "cis-Δ5-dodecenoyl-ACP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681405, - "label": "porphobilinogen", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714174, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681407, - "label": "(8S)-3',8-cyclo-7,8-dihydroguanosine 5'-triphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714160, - "label": "PTS enzyme I", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681392, - "label": "L-fuculose 1-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714162, - "label": "transcription termination factor Rho", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681398, - "label": "thiamine diphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681384, - "label": "L-ascorbate 6-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714152, - "label": "fimbrial complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714155, - "label": "ClpXP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714146, - "label": "multidrug efflux pump AcrAB-TolC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714148, - "label": "putative transporter YbaL", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681383, - "label": "keto-D-tagatose 6-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681368, - "label": "D-xylulose 5-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681370, - "label": "1-deoxy-D-xylulose 5-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681373, - "label": "D-ribulose 1-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681375, - "label": "α-D-ribose-1-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681362, - "label": "α-D-glucopyranose 1-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681364, - "label": "D-glyceraldehyde 3-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681365, - "label": "L-glyceraldehyde 3-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714133, - "label": "cytochrome bo3 ubiquinol oxidase subunit 2", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681367, - "label": "L-xylulose 5-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714120, - "label": "50S ribosomal subunit protein L18", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714121, - "label": "iron-catecholate outer membrane transport complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714122, - "label": "50S ribosomal subunit protein L7", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681354, - "label": "menaquinol-8", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681355, - "label": "2-mercaptoethanol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714123, - "label": "putrescine ABC transporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714124, - "label": "DNA-binding transcriptional dual regulator LysR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714126, - "label": "sensor histidine kinase BarA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714112, - "label": "cytochrome bd-I ubiquinol oxidase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681350, - "label": "3-demethylubiquinol-8", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681351, - "label": "ubiquinol-8", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681465, - "label": "N2-succinyl-L-arginine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681469, - "label": "3,6-diamino-10-methylacridinium", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714225, - "label": "sensor histidine kinase ArcB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681458, - "label": "4-(γ-L-glutamylamino)butanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714226, - "label": "thioredoxin/glutathione peroxidase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714228, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714229, - "label": "multidrug efflux pump membrane fusion protein MdtE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681462, - "label": "(2,3-dihydroxybenzoyl)adenylate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714231, - "label": "nickel/cobalt stress response protein YfgG", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714216, - "label": "glutamate synthase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681453, - "label": "4-hydroxybenzoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681440, - "label": "4-hydroxy-5-methyl-2-methylene-3(2H)-furanone", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714208, - "label": "lipoyl synthase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681434, - "label": "(2E)-2-ethylidene-4-hydroxy-5-methyl-3(2H)-furanone", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681436, - "label": "(2E)-2-butylidene-4-hydroxy-5-methyl-3(2H)-furanone", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681437, - "label": "5-enolpyruvoyl-shikimate 3-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714205, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681438, - "label": "norfuraneol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714192, - "label": "MtlR-HPr", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714193, - "label": "sensory histidine kinase UhpB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681426, - "label": "α-ribazole", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681428, - "label": "3-dehydroquinate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681429, - "label": "2-(formamido)-N1-(5-phospho-β-D-ribosyl)acetamidine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714197, - "label": "6,7-dimethyl-8-ribityllumazine synthase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681418, - "label": "hydroxylamine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714188, - "label": "anaerobic fatty acid β-oxidation complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714189, - "label": "oligopeptide ABC transporter periplasmic binding protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714190, - "label": "ADP-sugar diphosphatase NudE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714178, - "label": "small heat shock protein IbpB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714179, - "label": "potassium dependent, small conductance mechanosensitive channel", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681411, - "label": "(2Z,4E)-2-hydroxy-6-oxonona-2,4-diene-1,9-dioate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681412, - "label": "6-decylubiquinone", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681413, - "label": "(E)-3-(methoxycarbonyl)pent-2-enedioate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681414, - "label": "2-carboxy-L-threo-pentonate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681415, - "label": "kynurenate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681528, - "label": "1-palmitoyl-sn-glycerol 3-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714296, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681530, - "label": "7,8-dihydromonapterin triphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681531, - "label": "1-cis-vaccenoyl-sn-glycerol-3-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714300, - "label": "DNA-binding transcriptional activator UhpA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681533, - "label": "1-myristoyl-sn-glycerol 3-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681534, - "label": "2-dehydropantoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714302, - "label": "alkyl hydroperoxide reductase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681520, - "label": "7,8-dihydroneopterin 3'-triphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714290, - "label": "ClpP serine protease", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681524, - "label": "molybdopterin", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681526, - "label": "(2S)-2-isopropylmalate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681527, - "label": "(7,8-dihydropterin-6-yl)methyl diphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714295, - "label": "McrBC restriction endonuclease", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681512, - "label": "adenosylcobalamin 5'-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714280, - "label": "inner membrane protein IgaA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681514, - "label": "adenosylcobalamin", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681505, - "label": "6-(hydroxymethyl)-7,8-dihydropterin", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714275, - "label": "phosphoenolpyruvate-protein phosphotransferase PtsP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681507, - "label": "cyclic pyranopterin phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714277, - "label": "CPZ-55 prophage; putative phage integrase IntZ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681510, - "label": "N2-formyl-N1-(5-phospho-β-D-ribosyl)glycinamide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681511, - "label": "7,8-dihydroneopterin 3'-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714265, - "label": "murein tripeptide ABC transporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681500, - "label": "6,7-dimethyl-8-(1-D-ribityl)lumazine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681501, - "label": "1,4-dihydroxy-2-naphthoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681503, - "label": "molybdopterin adenine dinucleotide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714258, - "label": "outer membrane porin F", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714259, - "label": "6-phosphofructokinase 2", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714261, - "label": "pyruvate formate-lyase (inactive)", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714262, - "label": "cell shape determining protein MreC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714249, - "label": "sensor histidine kinase BasS", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714251, - "label": "ADP-heptose—LPS heptosyltransferase 2", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714252, - "label": "oligopeptide ABC transporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714255, - "label": "outer membrane porin F", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681473, - "label": "N-(2,3-dihydroxybenzoyl)-L-serine dimer", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681474, - "label": "undecaprenyldiphospho-N-acetylmuramoyl-L-alanyl-γ-D-glutamyl-meso-2,6-diaminopimeloyl-D-alanyl-D-alanine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714244, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714247, - "label": "Qin prophage; putative tail fiber assembly protein TfaQ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681594, - "label": "(2S,3S)-2,3-dihydroxy-2,3-dihydrobenzoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714363, - "label": "L-leucine/L-phenylalanine ABC transporter periplasmic binding protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714353, - "label": "DUF406 domain-containing protein YfcZ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681588, - "label": "ADP-D-glycero-β-D-manno-heptose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714357, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681577, - "label": "(lipoyl)adenylate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714348, - "label": "aspartate ammonia-lyase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681583, - "label": "ADP-L-glycero-β-D-manno-heptose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714351, - "label": "ferrous iron transport protein A", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681568, - "label": "2,3-dioxo-L-gulonate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714336, - "label": "formate channel FocA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681569, - "label": "α-D-ribose 1,5-bisphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714340, - "label": "sorbitol-specific PTS enzyme II", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681573, - "label": "carboxyphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681574, - "label": "N2-succinylglutamate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681575, - "label": "(2Z)-2-hydroxypenta-2,4-dienoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714331, - "label": "DinJ-YafQ antitoxin/toxin complex / DNA-binding transcriptional repressor", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681567, - "label": "tartronate semialdehyde", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714320, - "label": "6-phosphofructokinase 2", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714322, - "label": "selenate reductase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714323, - "label": "putative thioesterase YigI", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681557, - "label": "5-hydroxy-CTP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714325, - "label": "FtsLBQ cell division complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681545, - "label": "2-palmitoyl-sn-glycero-3-phosphoserine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681547, - "label": "thymine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714315, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681549, - "label": "glucosamine 1,6-diphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714319, - "label": "DNA-binding transcriptional dual regulator PhoB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714304, - "label": "Type II secretion system prepilin peptidase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714305, - "label": "DNA-binding transcriptional regulator RstA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681538, - "label": "2-oxepin-2(3H)-ylideneacetyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681656, - "label": "S-methylglutathione", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681648, - "label": "N-acetyl-β-D-glucosamine-1,6-anhydro-N-acetyl-β-D-muramate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714417, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681649, - "label": "D-allulose 6-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681652, - "label": "2-succinyl-5-enolpyruvoyl-6-hydroxy-3-cyclohexene-1-carboxylate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681653, - "label": "8-oxo-dGTP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714421, - "label": "succinate:quinone oxidoreductase subcomplex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681640, - "label": "pppGpp", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714412, - "label": "L-asparaginase 2", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681645, - "label": "3-deoxy-D-arabino-heptulopyranuronate 7-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681646, - "label": "2-hydroxy-dAMP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681633, - "label": "galactitol 1-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681635, - "label": "D-mannitol 1-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681637, - "label": "D-tagatofuranose 1,6-bisphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681638, - "label": "β-D-fructose 1,6-bisphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714392, - "label": "arabinose ABC transporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681626, - "label": "3-hydroxy-5-phosphooxypentane-2,4-dione", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681627, - "label": "adenylo-succinate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681630, - "label": "pseudouridine 5'-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681631, - "label": "D-sorbitol 6-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681616, - "label": "6-methoxy-3-methyl-2-all-trans-octaprenyl-1,4-benzoquinol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714386, - "label": "heme trafficking system CcmABCDE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681619, - "label": "5-hydroxy-CMP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681621, - "label": "pGp", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681623, - "label": "2-hydroxy-dATP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714377, - "label": "DNA-binding transcriptional activator CaiF", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714380, - "label": "putative fimbrial usher protein YhcD", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714383, - "label": "aldehyde dehydrogenase A", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714369, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714488, - "label": "xanthine-guanine phsophoribosyltransferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714490, - "label": "PtsP-phosphorylated", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714491, - "label": "asparagine synthetase B", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681727, - "label": "5-phospho-α-D-ribose 1,2-cyclic phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714495, - "label": "DNA-binding transcriptional repressor MarR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714481, - "label": "50S ribosomal subunit protein L21", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681706, - "label": "5-dehydro-4-deoxy-D-glucarate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681708, - "label": "1,6-anhydro-N-acetyl-β-muramate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714477, - "label": "guanylate kinase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681698, - "label": "anthranilate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681700, - "label": "(7R,8S)-diaminononanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681701, - "label": "(8S)-8-amino-7-oxononanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681703, - "label": "D-glycero-β-D-manno-heptose 1-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714456, - "label": "UPF0047 protein YjbQ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681689, - "label": "dihydrocurcumin", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714457, - "label": "sensory histidine kinase NarX", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714458, - "label": "protein-tyrosine kinase Wzc", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714459, - "label": "RNA-binding protein Hfq", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681680, - "label": "FMN-N5-oxide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714452, - "label": "proline:Na+ symporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714453, - "label": "ferric enterobactin outer membrane transport complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714455, - "label": "ferric coprogen outer membrane transport complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681676, - "label": "succinate semialdehyde", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681679, - "label": "FADH2", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714433, - "label": "alkaline phosphatase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714435, - "label": "DUF2810 domain-containing protein YibL", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681669, - "label": "N5-carboxyaminoimidazole ribonucleotide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714552, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714553, - "label": "DNA-binding transcriptional dual regulator MntR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714554, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681787, - "label": "(2R,4S)-2-methyl-2,3,3,4-tetrahydroxytetrahydrofuran", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681789, - "label": "γ-glutamyl-L-putrescine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681791, - "label": "3-(5,6-dihydroxycyclohexa-1,3-dien-1-yl)propanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681777, - "label": "5'-phosphoribosyl-4-(N-succinocarboxamide)-5-aminoimidazole", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714546, - "label": "CopC domain-containing protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714548, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681781, - "label": "5'-phosphoguanylyl(3'→5')guanosine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681782, - "label": "(2E)-3-(5,6-dihydroxycyclohexa-1,3-dien-1-yl)prop-2-enoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681769, - "label": "shikimate 3-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714539, - "label": "large conductance mechanosensitive channel", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681773, - "label": "N6-(D-psicosyl)-L-lysine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714541, - "label": "multidrug efflux pump AcrAD-TolC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681775, - "label": "γ-L-glutamyl-glycylglycine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714533, - "label": "DNA-binding transcriptional repressor MprA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681765, - "label": "UDP-4-deoxy-4-formamido-β-L-arabinopyranose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681755, - "label": "cyanate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681756, - "label": "4-nitrophenol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714513, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714517, - "label": "2-oxoglutarate dehydrogenase complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681750, - "label": "2,4-dinitrophenyl-S-glutathione", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681737, - "label": "2-methylsulfanyl-N6-dimethylallyladenosine37 in tRNA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714507, - "label": "protein disulfide isomerase DsbC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681740, - "label": "2-sulfanyl-N6-dimethylallyladenosine37 in tRNA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714509, - "label": "NAD(P)H:quinone oxidoreductase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714496, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714498, - "label": "L-asparaginase 2", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714502, - "label": "DUF2594 domain-containing protein YecF", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714616, - "label": "ATP synthase F1 complex subunit α", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681852, - "label": "glycerone phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714620, - "label": "glycine cleavage system", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714621, - "label": "glucarate dehydratase-related protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681855, - "label": "α-D-glucosamine 1-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714608, - "label": "fused glutathionylspermidine amidase / glutathionylspermidine synthetase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714614, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681832, - "label": "glutathionylspermidine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681834, - "label": "selenodiglutathione", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681835, - "label": "7-carboxy-7-deazaguanine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681836, - "label": "glutathione disulfide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681839, - "label": "5-amino-6-(D-ribitylamino)uracil", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681824, - "label": "S-(acet-2-yl)-glutathione", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681826, - "label": "(glutathion-S-yl)-bimane", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714595, - "label": "4-hydroxy-tetrahydrodipicolinate reductase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714596, - "label": "NAD+-dependent malate dehydrogenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681817, - "label": "3-mercaptopyruvate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714586, - "label": "enamine/imine deaminase, redox-regulated chaperone", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714587, - "label": "inner membrane protein HofC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714590, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681822, - "label": "S-sulfanylglutathione", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681809, - "label": "5-dehydro-D-gluconate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714582, - "label": "RNA decapping hydrolase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681801, - "label": "dethiobiotin", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681807, - "label": "crotonate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714560, - "label": "putative ABC transporter ArtPQMI", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681797, - "label": "4-amino-2-methyl-5-(diphosphooxymethyl)pyrimidine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681912, - "label": "5-aminopentanal", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714685, - "label": "7-cyano-7-deazaguanine reductase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681918, - "label": "(4S)-4-hydroxy-5-phosphooxypentane-2,3-dione", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681919, - "label": "dCDP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681905, - "label": "dTDP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681906, - "label": "N-(2,3-dihydroxybenzoyl)-L-serine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714675, - "label": "protein YibT", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681908, - "label": "2-carboxy-L-xylonolactone", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714677, - "label": "DNA-binding transcriptional dual regulator CysB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681911, - "label": "dUTP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681896, - "label": "(Z)-2-methylaminoacrylate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714665, - "label": "glutathione/L-cysteine ABC exporter subunit CydC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681900, - "label": "α-D-ribose 1-(acetamidomethylphosphonate) 5-triphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681902, - "label": "oxalosuccinate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714671, - "label": "KpLE2 phage-like element; putative DNA-binding transcriptional regulator YjhI", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714656, - "label": "sensor histidine kinase DcuS", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681891, - "label": "dCTP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714660, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714661, - "label": "putative DNA-binding transcriptional regulator YdiP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681895, - "label": "cytosine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681882, - "label": "2-hydroxy-3-oxosuccinate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714650, - "label": "protein/nucleic acid deglycase 1", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681885, - "label": "CDP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681887, - "label": "dUMP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681872, - "label": "dTTP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714640, - "label": "dipeptide ABC transporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681875, - "label": "2-octaprenylphenol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681876, - "label": "2-phospho-D-glycerate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714644, - "label": "D-amino acid dehydrogenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714646, - "label": "putative transport complex, ABC superfamily", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681878, - "label": "cytidine-3'-monophosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681879, - "label": "3-(all-trans-octaprenyl)benzene-1,2-diol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714634, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714635, - "label": "regulator of sigma D", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681868, - "label": "CTP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714637, - "label": "putative D,D-dipeptide ABC transporter membrane subunit DdpC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681870, - "label": "uridine 3'-monophosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714639, - "label": "excinuclease Cho", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681857, - "label": "4-phospho-D-erythronate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714625, - "label": "hydroxamate siderophore iron reductase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714627, - "label": "50S ribosomal subunit protein L34", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681860, - "label": "5-phospho-α-D-ribose 1-diphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714628, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681861, - "label": "D-erythrose 4-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681862, - "label": "N,N-dimethyl-1,4-phenylenediamine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714749, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714750, - "label": "NADH:quinone oxidoreductase subunit A", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714751, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714738, - "label": "stationary phase inducible protein CsiE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714739, - "label": "mannitol-specific PTS enzyme II CmtBA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681960, - "label": "methanetelluronate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681952, - "label": "2-methoxy-6-all trans-octaprenyl-1,4-benzoquinol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714723, - "label": "outer membrane phospholipase A", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681956, - "label": "N-(2,3-dihydroxybenzoyl)-L-serine trimer", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681958, - "label": "3-amino-1-hydroxyacetone 1-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714715, - "label": "tripartite efflux pump EmrKY-TolC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714717, - "label": "outer membrane channel TolC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681949, - "label": "2-hydroxycyclohepta-1,4,6-triene-1-carboxyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681950, - "label": "2-dehydro-3-deoxy-D-gluconate 6-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681951, - "label": "2-methoxy-6-(all-trans-octaprenyl)phenol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714706, - "label": "DNA-binding transcriptional dual regulator SlyA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681943, - "label": "dCMP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681929, - "label": "dTMP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681930, - "label": "α-ribazole 5'-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714701, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714689, - "label": "SecYEG translocon", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681923, - "label": "uracil", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681924, - "label": "L-canavanine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714695, - "label": "quinolinate phosphoribosyltransferase (decarboxylating)", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714808, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682041, - "label": "L-methionine-(S)-S-oxide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682042, - "label": "3-oxohexanoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682043, - "label": "3-oxododecanoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682044, - "label": "autoinducer 2", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682045, - "label": "L-methionine-(R)-S-oxide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682046, - "label": "3-oxooctanoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714814, - "label": "multidrug efflux pump MdtABC-TolC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682032, - "label": "3-oxo-(9Z)-hexadecenoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714801, - "label": "acyl-CoA dehydrogenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682036, - "label": "3-oxo-(11Z)-octadecenoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682038, - "label": "3-oxodecanoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714806, - "label": "thiosulfate sulfurtransferase YgaP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682039, - "label": "3-oxo-(5Z)-dodecenoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682025, - "label": "3-oxo-(7Z)-hexadecenoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682027, - "label": "3-oxo-(7Z)-tetradecenoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714797, - "label": "molybdate ABC transporter periplasmic binding protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682030, - "label": "N-acetyl-D-mannosamine 6-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682031, - "label": "3-oxo-(9Z)-octadecenoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682018, - "label": "2-iminoacetate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682021, - "label": "acetoacetyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714789, - "label": "ChpB-ChpS complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682022, - "label": "3-oxo-(5Z)-tetradecenoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682023, - "label": "H2", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682008, - "label": "2-succinylbenzoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682009, - "label": "(O-carbamoyl)adenylate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682011, - "label": "dehydroascorbate (bicyclic form)", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714779, - "label": "cytochrome bo3 ubiquinol oxidase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682014, - "label": "3-deoxy-D-manno-octulosonate 8-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714782, - "label": "L-methionine/branched chain amino acid exporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714783, - "label": "small conductance mechanosensitive channel MscS", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682000, - "label": "(S)-3-hydroxy-(11Z)-octadecenoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682001, - "label": "(S)-3-hydroxy-(7Z)-hexadecenoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682003, - "label": "(S)-3-hydroxy-(7Z)-tetradecenoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714771, - "label": "ZntR-Zn2+ DNA-binding transcriptional activator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682005, - "label": "mature peptidoglycan with (L-alanyl-γ-D-glutamyl-meso-2,6-diaminopimeloyl-glycine) tetrapeptide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714773, - "label": "4-hydroxy-tetrahydrodipicolinate reductase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682007, - "label": "(S)-3-hydroxy-(9Z)-hexadecenoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714775, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681992, - "label": "(S)-3-hydroxy-(5Z)-dodecenoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3681996, - "label": "S-adenosyl 3-(methylsulfanyl)propylamine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714753, - "label": "UhpA-Phosphorylated DNA-binding transcriptional activator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3681987, - "label": "partially deacetylated poly-β-1,6-N-acetyl-D-glucosamine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714757, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714758, - "label": "branched chain amino acid transporter BrnQ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682104, - "label": "dGTP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714876, - "label": "β-glucoside specific PTS enzyme II", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682111, - "label": "thiamine triphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714867, - "label": "K+ transporting P-type ATPase subunit KdpA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714869, - "label": "Type II secretion system protein GspH", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714848, - "label": "DNA-binding transcriptional dual regulator ArgR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682081, - "label": "D-mannitol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714850, - "label": "dihydroxyacetone kinase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682083, - "label": "D-sorbitol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714851, - "label": "small protein MgtS", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714853, - "label": "(3R)-3-hydroxyoctanoyl-ACP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682086, - "label": "(S)-lactaldehyde", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682087, - "label": "3-oxo-5,6-didehydrosuberyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682077, - "label": "(S)-malate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682064, - "label": "(R)-4'-phosphopantothenate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714832, - "label": "aspartate 1-decarboxylase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682069, - "label": "3-dehydroshikimate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714837, - "label": "phosphorelay protein NPr", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714838, - "label": "molybdopterin synthase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714826, - "label": "ClpAXP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682060, - "label": "N1-(5-phospho-β-D-ribosyl)glycinamide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714831, - "label": "phosphomethylpyrimidine synthase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714942, - "label": "carboxylesterase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682175, - "label": "hydroxyacetone", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682163, - "label": "ethanolamine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682165, - "label": "8-oxo-dGMP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682153, - "label": "2'-deoxyadenosine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682154, - "label": "β-D-glucosyl-1-phosphoundecaprenol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714923, - "label": "methionine adenosyltransferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682155, - "label": "histidinal", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682158, - "label": "coproporphyrinogen III", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714927, - "label": "high-affinity pyruvate receptor", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682159, - "label": "IDP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682144, - "label": "dGDP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682145, - "label": "isochorismate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682148, - "label": "bisorganyltrisulfane", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682150, - "label": "XMP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682137, - "label": "α,α-trehalose 6-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682138, - "label": "guanosine 3'-monophosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682140, - "label": "β-D-cellobiose 6'-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714908, - "label": "MntR-Mn2+ DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714909, - "label": "L-fuculose-phosphate aldolase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714910, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682143, - "label": "UDP-N-acetyl-α-D-glucosamine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682131, - "label": "N2-succinyl-L-ornithine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714900, - "label": "alanine—tRNA ligase/DNA-binding transcriptional repressor", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714903, - "label": "3-deoxy-7-phosphoheptulonate synthase, Phe-sensitive", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682120, - "label": "8-oxo-GMP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682121, - "label": "pyruvic oxime", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682122, - "label": "hypoxanthine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682124, - "label": "isoguanine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682112, - "label": "2'-deoxyinosine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714880, - "label": "asparagine synthetase B", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3714885, - "label": "glutamate synthase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682118, - "label": "dATP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714887, - "label": "fused aspartate kinase/homoserine dehydrogenase 1", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715002, - "label": "RnlA-RnlB toxin-antitoxin complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682216, - "label": "3,4,4-trihydroxy-5-phosphooxypentan-2-one", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714984, - "label": "moderate conductance mechanosensitive channel YbiO", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682219, - "label": "L-homoserine lactone", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714977, - "label": "long-chain fatty acid outer membrane channel / bacteriophage T2 receptor", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682210, - "label": "2-carboxymuconate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714978, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682211, - "label": "2-iminosuccinate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714980, - "label": "phosphoenolpyruvate synthetase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682214, - "label": "2-iminobutanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714968, - "label": "fused DNA-binding transcriptional repressor / proline dehydrogenase / 1-pyrroline-5-carboxylate dehydrogenase PutA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682200, - "label": "IMP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682202, - "label": "ferroheme o", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682203, - "label": "dAMP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714972, - "label": "molybdopterin molybdotransferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682206, - "label": "8-oxo-GTP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714975, - "label": "formate dehydrogenase O subunit α", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682194, - "label": "2'-deoxyguanosine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714966, - "label": "small heat shock protein IbpA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682185, - "label": "dGMP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714956, - "label": "assimilatory sulfite reductase (NADPH)", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682188, - "label": "adenosine 3'-monophosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3714946, - "label": "heat shock protein, hemimethylated DNA-binding protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682180, - "label": "D-tartrate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3682183, - "label": "5-oxo-L-proline", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3715065, - "label": "1,6-anhydro-N-acetylmuramoyl-L-alanine amidase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715071, - "label": "glutathione reductase (NADPH)", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715048, - "label": "putative D,D-dipeptide ABC transporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715054, - "label": "L-arginine ABC transporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715024, - "label": "aspartate carbamoyltransferase catalytic subunit", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715027, - "label": "Phosphorylated DNA-binding transcriptional dual regulator BtsR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715008, - "label": "p-aminobenzoyl-glutamate hydrolase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715009, - "label": "ChpS antitoxin of the ChpB-ChpS toxin-antitoxin system", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715128, - "label": "stationary phase nucleoid component that sequesters iron and protects DNA from damage", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715120, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715122, - "label": "ferrichrome outer membrane transport complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715127, - "label": "DNA-binding transcriptional dual regulator Rob", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715112, - "label": "protein sulfenic acid reductase DsbGoxidized", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715113, - "label": "dipeptide ABC transporter periplasmic binding protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715116, - "label": "galactitol-specific PTS enzyme II", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715104, - "label": "isoaspartyl dipeptidase / asparaginase III", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715108, - "label": "sensory histidine kinase NarQ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715111, - "label": "PF05433 family protein YcfJ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715102, - "label": "phosphoserine/phosphohydroxythreonine aminotransferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715090, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715081, - "label": "sulfoquinovosidase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715076, - "label": "evolved β-D-galactosidase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715188, - "label": "RutC family protein YjgH", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715190, - "label": "putative TonB-dependent outer membrane receptor", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715191, - "label": "aminodeoxychorismate synthase subunit 1", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715180, - "label": "AsmA famly protein YicH", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715181, - "label": "DNA-binding transcriptional activator EvgA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715169, - "label": "DUF1375 domain-containing putative lipoprotein YidQ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715170, - "label": "putative transporter YcaM", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715163, - "label": "2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715158, - "label": "ATP-binding protein PhoH", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715148, - "label": "DUF72 domain-containing protein YecE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715150, - "label": "putative sugar kinase YgcE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715151, - "label": "universal stress protein G", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715139, - "label": "CorC-HlyC family protein YbeX", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715140, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715259, - "label": "molybdopterin synthase sulfur carrier subunit", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715260, - "label": "protein YneK", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715263, - "label": "putative transporter YqeG", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715248, - "label": "peptidase D", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715250, - "label": "Rac prophage; putative prophage side tail fiber protein StfR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715247, - "label": "inner membrane protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715226, - "label": "DNA-binding transcriptional activator UvrY", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715216, - "label": "ilvXGMEDA operon leader peptide", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715220, - "label": "pyrBI operon leader peptide", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715223, - "label": "carbamoyl phosphate synthetase subunit α", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715208, - "label": "his operon leader peptide", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715212, - "label": "thr operon leader peptide", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715215, - "label": "nucleoside:H+ symporter NupC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715201, - "label": "leu operon leader peptide", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715203, - "label": "tnaAB operon leader peptide", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715204, - "label": "protease 3", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715323, - "label": "methionine aminopeptidase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715304, - "label": "(3R)-3-hydroxybutanoyl-ACP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715306, - "label": "sensory histidine kinase NarX", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715307, - "label": "AceF-lipoate", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715296, - "label": "putative lactate utilization oxidoreductase YkgE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715297, - "label": "putative DNA-binding transcriptional regulator YhfZ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715300, - "label": "peptidoglycan-associated outer membrane lipoprotein Pal", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715290, - "label": "3-oxo-cis-Δ5-dodecenoyl-ACP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715294, - "label": "putative ethanolamine catabolic microcompartment shell protein EutS", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715283, - "label": "putative fimbrial chaperone YhcA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715287, - "label": "putative oxidoreductase YdeP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715273, - "label": "transcription termination/antitermination protein NusA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715275, - "label": "diguanylate cyclase DgcM", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715271, - "label": "putative uncharacterized protein YzgL", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715387, - "label": "succinyl-ACP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715389, - "label": "fused aspartate kinase/homoserine dehydrogenase 1", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715379, - "label": "universal stress global stress response regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715380, - "label": "NAD+-dependent malate dehydrogenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715382, - "label": "3-dehydroquinate dehydratase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715364, - "label": "taurine ABC transporter periplasmic binding protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715353, - "label": "lysine—tRNA ligase/Ap4A synthetase/Ap3A synthetase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715354, - "label": "glutamate-putrescine ligase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715350, - "label": "L-fucose isomerase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715337, - "label": "sensor histidine kinase AtoS", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715334, - "label": "23S rRNA 2'-O-ribose U2552 methyltransferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715335, - "label": "succinylornithine transaminase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715452, - "label": "acid phosphatase / phosphotransferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715445, - "label": "(3R)-3-hydroxypalmitoyl-ACP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715437, - "label": "probable diguanylate cyclase DgcT", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715422, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715410, - "label": "putative cardiolipin transport protein YejM", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715411, - "label": "cell division protein FtsZ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715403, - "label": "arabinose:H+ symporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715407, - "label": "putative selenate reductase YnfF", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715395, - "label": "DNA-binding transcriptional activator CaiF", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715512, - "label": "putrescine ABC transporter periplasmic binding protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715518, - "label": "protein/nucleic acid deglycase 1", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715498, - "label": "ATP-dependent Clp protease proteolytic subunit", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715488, - "label": "universal stress protein E", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715489, - "label": "cobalamin-dependent methionine synthase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715490, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715474, - "label": "colanic acid biosynthesis acetyltransferase WcaF", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715477, - "label": "DUF1992 domain-containing protein YhdN", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715466, - "label": "catalase HPII", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715467, - "label": "phosphocarrier HPr-Nπ-phospho-L-histidine", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715471, - "label": "putative stress response protein YjbJ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682809, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682810, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682811, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682814, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682815, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682800, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682801, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682802, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682803, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682792, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682793, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682794, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682796, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682798, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682799, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682785, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682787, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682790, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682778, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682780, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682783, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682771, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682772, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682773, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682774, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682775, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3715522, - "label": "6-phospho-β-glucosidase B", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715523, - "label": "multidrug efflux pump EmrD", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715525, - "label": "DedA family protein DedA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715526, - "label": "putative heavy metal binding protein YbjQ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3715527, - "label": "DNA-binding transcriptional activator QseB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3682872, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682874, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682879, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682858, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682859, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682852, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682853, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682855, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682841, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682843, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682832, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682833, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682826, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682827, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682828, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682829, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682831, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682937, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682938, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682940, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682943, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682928, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682930, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682932, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682933, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682926, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682913, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682916, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682917, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682919, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682904, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682905, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682907, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682908, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682910, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682902, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682888, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682890, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682891, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682895, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682880, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682886, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682887, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683001, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683002, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683003, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683006, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682992, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682993, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682994, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682995, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682996, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682998, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682999, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682984, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682988, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682990, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682991, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682976, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682977, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682979, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682982, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682970, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682974, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682975, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682961, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682964, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682965, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682952, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682954, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682955, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682944, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682946, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682947, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682949, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682950, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3682951, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683065, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683067, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683069, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683056, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683058, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683059, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683063, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683049, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683051, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683055, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683040, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683041, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683042, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683043, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683046, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683032, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683033, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683034, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683037, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683038, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683026, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683028, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683016, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683019, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683020, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683021, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683008, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683009, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683013, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683128, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683129, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683130, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683120, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683114, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683105, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683107, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683108, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683109, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683111, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683089, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683094, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683081, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683084, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683087, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683074, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683078, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683194, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683197, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683198, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683199, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683185, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683187, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683188, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683189, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683191, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683177, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683179, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683182, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683183, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683169, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683172, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683174, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683160, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683164, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683165, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683167, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683152, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683155, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683156, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683144, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683147, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683149, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683151, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683136, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683138, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683141, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683256, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683260, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683250, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683252, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683241, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683247, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683234, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683235, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683225, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683226, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683229, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683230, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683218, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683222, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683223, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683208, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683210, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683211, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683200, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683202, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683203, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683204, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3716088, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716089, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716091, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716092, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716093, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716095, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3683312, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3716081, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3683313, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3716082, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716083, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3683315, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3716084, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716085, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716087, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3683304, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683305, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683306, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683307, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3716076, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3683308, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3716077, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3683309, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3716078, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3683310, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3716079, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3683299, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683300, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683302, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683289, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683281, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683283, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683274, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683275, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683276, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683264, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3683268, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3716152, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716153, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716154, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716156, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716157, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716158, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716144, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716145, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716146, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716148, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716149, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716150, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716151, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716136, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716137, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716138, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716139, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716140, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716142, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716128, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716129, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716131, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716132, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716133, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716134, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716135, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716120, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716121, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716123, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716125, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716126, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716127, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716113, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716117, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716119, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716104, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716105, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716107, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716108, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716109, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716111, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716096, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716098, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716099, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716101, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716102, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716103, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716216, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716217, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716221, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716208, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716210, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716211, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716212, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716214, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716200, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716202, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716203, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716204, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716205, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716192, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716193, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716196, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716198, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716199, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716184, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716185, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716186, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716187, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716188, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716189, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716190, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716191, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716176, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716178, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716179, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716180, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716181, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716182, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716168, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716169, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716172, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716174, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716175, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716160, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716162, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716164, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716165, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716166, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716281, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716283, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716284, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716285, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716287, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716272, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716273, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716274, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716275, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716277, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716278, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716279, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716264, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716266, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716267, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716268, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716270, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716256, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716258, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716261, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716262, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716263, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716248, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716249, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716250, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716251, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716252, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716253, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716254, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716255, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716240, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716242, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716243, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716244, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716245, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716246, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716247, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716232, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716234, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716235, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716236, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716237, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716238, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716224, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716225, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716226, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716227, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716228, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716229, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716230, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716231, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716344, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716346, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716348, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716350, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716351, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716336, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716339, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716341, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716342, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716343, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716329, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716330, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716333, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716335, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716320, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716321, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716322, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716323, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716324, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716325, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716326, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716327, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716312, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716313, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716315, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716316, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716318, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716319, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716304, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716305, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716306, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716307, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716308, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716309, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716310, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716311, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716296, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716297, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716299, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716300, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716301, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716302, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716303, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716288, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716289, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716290, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716293, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716295, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716408, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716411, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716415, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716400, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716402, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716403, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716405, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716406, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716392, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716393, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716394, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716396, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716397, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716398, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716384, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716386, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716388, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716389, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716390, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716391, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716376, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716377, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716378, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716380, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716381, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716383, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716368, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716369, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716370, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716371, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716372, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716374, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716360, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716362, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716364, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716365, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716366, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716352, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716353, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716354, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716356, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716357, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716358, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716359, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716465, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716469, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716470, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716471, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716456, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716457, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716458, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716460, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716463, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716451, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716453, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716440, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716441, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716443, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716447, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716436, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716425, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716426, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716428, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716430, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716431, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716420, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716421, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716423, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716536, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716538, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716539, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716542, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716529, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716530, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716532, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716533, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716523, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716525, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716513, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716515, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716516, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716517, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716518, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716519, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716507, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716508, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716511, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716496, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716499, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716500, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716503, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716491, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716492, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716485, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716486, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716600, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716603, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716593, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716595, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716598, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716584, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716576, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716579, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716583, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716568, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716570, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716575, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716562, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716554, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716558, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716545, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716550, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3683896, - "label": "N-acetyl-muramoyl-(L-alanyl-γ-D-glutamyl-L-lysyl-D-alanine)", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3683898, - "label": "mature peptidoglycan with L,D cross-links (meso-diaminopimelate containing)", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3683899, - "label": "nascent peptidoglycan with (L-alanyl-γ-D-glutamyl-meso-2,6-diaminopimelate) tripeptide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716669, - "label": "uspE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3683902, - "label": "urate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3683888, - "label": "reduced β-nicotinamide D-ribonucleotide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3683889, - "label": "D-gluconate 6-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3683891, - "label": "β-nicotinamide D-ribonucleotide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3683895, - "label": "2-[(2R,5Z)-2-carboxy-4-methylthiazol-5(2H)-ylidene]ethyl phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3683881, - "label": "adenine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3683882, - "label": "guanine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3683884, - "label": "(S)-1-pyrroline-5-carboxylate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3683885, - "label": "S-nitrosoglutathione", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3683872, - "label": "2''-O-acetyl-ADP-ribose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3683877, - "label": "carbonylcyanide m-chlorophenylhydrazone", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716636, - "label": "glpD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3683869, - "label": "3''-O-acetyl-ADP-ribose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3683870, - "label": "1,4-dihydroxy-2-naphthoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3683871, - "label": "[protein]-N6-[1,1-(5-adenosylyl-α-D-ribose-1,2-di-O-yl)ethyl]-L-lysine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716624, - "label": "nuoA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3716628, - "label": "ftsQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3683863, - "label": "4-amino-4-deoxy-α-L-arabinopyranosyl ditrans,octacis-undecaprenyl phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716619, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716620, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716621, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3716610, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3683960, - "label": "methyl red", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716730, - "label": "dppB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3716725, - "label": "nrfF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3683945, - "label": "diacetyl", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3683946, - "label": "tetrahydropteroyl tri-L-glutamate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716717, - "label": "igaA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3683951, - "label": "6-O-acetyl-α-D-glucopyranosyl-(1→4)-D-glucose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716709, - "label": "ddpC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3716696, - "label": "pdeF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3716703, - "label": "yejB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3683920, - "label": "N-acetyl-β-D-mannosamine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3683922, - "label": "mature peptidoglycan with (L-alanyl-γ-D-glutamyl-meso-2,6-diaminopimelate) tripeptide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3683924, - "label": "nascent peptidoglycan with L,D cross links (meso-diaminopimelate containing)", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3683925, - "label": "N-acetyl-β-neuraminate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3683914, - "label": "nascent peptidoglycan with (L-alanyl-γ-D-glutamyl-meso-2,6-diaminopimeloyl-glycine) tetrapeptide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716684, - "label": "acrZ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3683918, - "label": "N-acetyl-β-D-glucosamine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716672, - "label": "ybjN", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3716673, - "label": "cydC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3716792, - "label": "ynfB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684029, - "label": "1-dodecanol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716786, - "label": "yacL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684019, - "label": "cysteamine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684021, - "label": "α-lactose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684022, - "label": "β-D-fructofuranose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716776, - "label": "menA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684009, - "label": "glutathione", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716777, - "label": "ygiZ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684011, - "label": "methanethiol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684013, - "label": "thiocyanate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684001, - "label": "CMP-3-deoxy-β-D-manno-octulosonate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716770, - "label": "narX", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684006, - "label": "nicotinamide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3683992, - "label": "4-methylphenol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716762, - "label": "yebF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3716765, - "label": "ybiJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3683991, - "label": "(Z)-2-methylureidoacrylate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3683978, - "label": "N-carbamoyl-2-oxoglycine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3683981, - "label": "(Z)-3-ureidoacrylate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3683983, - "label": "preQ0", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716740, - "label": "torA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3716743, - "label": "napC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684088, - "label": "trans-hex-2-enoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684089, - "label": "(2E,5Z)-dodecenoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684090, - "label": "(2E,7Z)-hexadecenoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684091, - "label": "(2E,7Z)-tetradecenoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684093, - "label": "(2E,9Z)-octadecenoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684094, - "label": "(2E,9Z)-hexadecenoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684082, - "label": "N-methylacetamide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684083, - "label": "urea", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684087, - "label": "(2E)-oct-2-enoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716842, - "label": "yfeS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684076, - "label": "propanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684064, - "label": "succinate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684066, - "label": "enol-oxaloacetate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684067, - "label": "oxaloacetate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716835, - "label": "oppC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684068, - "label": "fumarate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684069, - "label": "glutarate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684058, - "label": "cyclic di-3',5'-guanylate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684061, - "label": "methanol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716831, - "label": "lolC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684048, - "label": "maltopentaose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684049, - "label": "N-carbamoyl-L-aspartate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684051, - "label": "carbamate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684055, - "label": "UDP-N-acetyl-α-D-muramoyl-L-alanyl-γ-D-glutamyl-meso-2,6-diaminopimeloyl-D-alanyl-D-alanine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684041, - "label": "α,α-trehalose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684043, - "label": "maltoheptaose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684044, - "label": "dimethyl sulfide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684045, - "label": "maltohexaose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716813, - "label": "ydgH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684047, - "label": "isothiocyanate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684152, - "label": "[corrinoid adenosyltranferase]-cob(I)inamide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684154, - "label": "norfloxacin", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684155, - "label": "cob(II)alamin", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716924, - "label": "nrfG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684156, - "label": "cob(I)alamin", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684158, - "label": "adenosylcobinamide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684144, - "label": "siroheme", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684150, - "label": "adenosyl-cobinamide phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684137, - "label": "N8-acetylspermidine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684139, - "label": "N1-acetylspermidine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684141, - "label": "protoheme", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684128, - "label": "cadaverine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684130, - "label": "putrescine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684133, - "label": "spermidine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684134, - "label": "aminopropylcadaverine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684120, - "label": "(5Z)-dodecenoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684112, - "label": "(5Z)-tetradecenoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716882, - "label": "ybiI", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684115, - "label": "cis-vaccenoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684116, - "label": "methylglyoxal", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684105, - "label": "propanoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684107, - "label": "oleoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684108, - "label": "(7Z)-hexadecenoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684109, - "label": "palmitoleoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684111, - "label": "(7Z)-tetradecenoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684097, - "label": "(2E,11Z)-octadecenoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684099, - "label": "crotonyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684100, - "label": "3-oxoadipyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716868, - "label": "napF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3716871, - "label": "znuA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3716984, - "label": "ygaC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684219, - "label": "nalidixate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684208, - "label": "S-adenosyl-S-carboxymethyl-L-homocysteine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716976, - "label": "secG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684210, - "label": "L-glutamate-5-semialdehyde", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684215, - "label": "(2E)-dec-2-enoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716968, - "label": "fdoG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684200, - "label": "L-homoserine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684202, - "label": "L-cystine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684206, - "label": "O-succinyl-L-homoserine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716975, - "label": "yfcO", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684193, - "label": "4-aminobutanal", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684194, - "label": "O-phospho-L-homoserine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684196, - "label": "D-homoserine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684186, - "label": "L-homocysteine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684188, - "label": "D-cystine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684176, - "label": "(S)-lactate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716946, - "label": "ynfD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3716948, - "label": "napB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684182, - "label": "L-aspartate 4-semialdehyde", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716951, - "label": "kdpA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684169, - "label": "(S)-2-hydroxyglutarate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684172, - "label": "(S)-2-hydroxybutanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684173, - "label": "(R)-lactate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3716942, - "label": "ybiU", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684161, - "label": "cob(I)inamide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684162, - "label": "adenosylcobinamide-GDP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684164, - "label": "[corrinoid adenosyltranferase]-cob(II)inamide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684165, - "label": "sirohydrochlorin", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684166, - "label": "precorrin-1", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684167, - "label": "precorrin-2", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684283, - "label": "4-aminobenzoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3717054, - "label": "mdtE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684272, - "label": "iron(III)-[N-(2,3-dihydroxybenzoyl)-L-serine] complex", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684274, - "label": "iron(III)-enterobactin complex", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684275, - "label": "iron(III)-[(2,3-dihydroxybenzoylserine)2] complex", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684277, - "label": "(1S,2R)-1-C-(indol-3-yl)glycerol 3-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3717046, - "label": "cydA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684264, - "label": "coproporphyrin III", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684265, - "label": "uroporphyrinogen-III", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3717034, - "label": "caiA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684267, - "label": "uroporphyrinogen-I", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3717035, - "label": "yobB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684270, - "label": "iron(III)-[N-(2,3-dihydroxybenzoyl)-L-serine trimer] complex", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684271, - "label": "enterobactin", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684256, - "label": "iron(III) dicitrate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684260, - "label": "protoporphyrinogen IX", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3717029, - "label": "ybeR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684262, - "label": "protoporphyrin IX", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684248, - "label": "iron(III)-coprogen", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684251, - "label": "ferrichrome", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3717020, - "label": "ygdB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3717021, - "label": "cmtB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3717023, - "label": "yihD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3717010, - "label": "atpA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684243, - "label": "L-citrulline", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3717004, - "label": "atpH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3717005, - "label": "ybgE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3717006, - "label": "cmtA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3716993, - "label": "ynjH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3717112, - "label": "serA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3717115, - "label": "sdaC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3717118, - "label": "cysB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684351, - "label": "ethene", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3717119, - "label": "yqeJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3717105, - "label": "yeeE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684338, - "label": "betaine aldehyde", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3717106, - "label": "serB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3717109, - "label": "sstT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684342, - "label": "trimethylamine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684343, - "label": "trimethylamine N-oxide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684329, - "label": "lipid IVA (E. coli)", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684334, - "label": "betaine aldehyde hydrate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3717103, - "label": "serC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684320, - "label": "lipid A-core 1-diphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3717089, - "label": "yaaX", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684322, - "label": "carbamoyl phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3717090, - "label": "feoA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684323, - "label": "lipid A-core-pyrophosphoethanolamine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684324, - "label": "agmatine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684325, - "label": "galactosyl-(glucosyl)3-(heptosyl)3-Kdo2-lipid A-bisphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3717094, - "label": "gltB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684327, - "label": "choline", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684315, - "label": "core oligosaccharide-lipid A (E. coli K-12 core type)", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684317, - "label": "core oligosaccharide-lipid A (E. coli K-12 core type) (no GlcNAc)", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684318, - "label": "arbutin 6-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684308, - "label": "γ-L-glutamyl-L-cysteine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3717076, - "label": "gdhA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684309, - "label": "hepta-acylated Kdo2 lipid A (E. coli)", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684310, - "label": "salicin 6-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3717079, - "label": "gltP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684297, - "label": "(2E,4Z)-deca-2,4-dienoyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684298, - "label": "L-alanyl-γ-D-glutamyl-meso-diaminopimelate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3717068, - "label": "yciN", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3717069, - "label": "cirA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3717056, - "label": "yfaP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684289, - "label": "hydroxyl radical", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684290, - "label": "superoxide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3717060, - "label": "macA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684293, - "label": "(S)-methylmalonyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3717062, - "label": "yafD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3717178, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717181, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717182, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717183, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717168, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717171, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717173, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717160, - "label": "mtr", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684397, - "label": "sn-glycerol 1-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3717167, - "label": "yigL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684390, - "label": "sn-glycerol 3-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3717158, - "label": "ortT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684378, - "label": "magnesium hydrogenphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3717151, - "label": "tyrP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3717136, - "label": "aroP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684372, - "label": "N-monoacetylchitobiose 6'-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3717140, - "label": "ygiW", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684374, - "label": "N,N'-diacetylchitobiose 6'-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3717142, - "label": "aroG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3717130, - "label": "cbl", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3684352, - "label": "indole", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684353, - "label": "[prolipoprotein]-S-1,2-diacyl-sn-glyceryl-L-cysteine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3684354, - "label": "[FeO(OH)] monomer", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3717122, - "label": "ibpA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3717241, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717242, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717243, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717233, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717235, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717237, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717238, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717239, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717224, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717227, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717230, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717218, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717222, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717223, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717211, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717215, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717202, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717203, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717205, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717195, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717196, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717198, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717187, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717190, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717304, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717305, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717299, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717289, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717290, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717292, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717293, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717294, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717281, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717282, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717287, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717272, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717276, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717279, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717264, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717265, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717270, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717271, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717258, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717260, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717261, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717262, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717263, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717248, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717252, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717253, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717368, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717372, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717374, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717360, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717361, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717362, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717354, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717357, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717359, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717345, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717347, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717350, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717338, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717330, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717331, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717334, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717321, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717322, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717324, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717326, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717315, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717316, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717317, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717433, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717437, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717439, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717425, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717429, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717417, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717418, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717419, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717421, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717422, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717410, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717411, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717413, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717401, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717405, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717406, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717407, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717393, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717395, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717396, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717384, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717387, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717388, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717391, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717378, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717381, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717502, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717489, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717490, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717493, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717484, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717474, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717477, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717479, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717466, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717471, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717456, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717458, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717459, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717460, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717461, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717463, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717449, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717455, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717442, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717443, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717444, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717560, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717566, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717556, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717557, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717544, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717547, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717548, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717549, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717550, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717536, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717537, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717541, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717542, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717543, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717528, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717529, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717532, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717520, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717525, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717526, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717512, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717515, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717518, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717509, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717510, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717511, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717624, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717627, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717630, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717631, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717617, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717622, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717623, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717614, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717615, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717604, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717606, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717607, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717592, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717594, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717596, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717598, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717585, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717588, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717589, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717591, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717580, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717582, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717583, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717572, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717689, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717692, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717680, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717682, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717683, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717674, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717664, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717665, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717666, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717668, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717670, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717660, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717661, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717649, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717650, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717654, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717642, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717645, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717632, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717633, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717634, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717752, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3684986, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3684987, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717744, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717745, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3684977, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717746, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717747, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3684979, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717749, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3684982, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3684968, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717737, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3684969, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717738, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3684971, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3684972, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3684973, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717742, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3652193, - "label": "a protein", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3717728, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3684960, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3684961, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717730, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3684962, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3684963, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3684964, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717733, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717734, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3684966, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3684967, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717735, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717724, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3684957, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3684959, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3652189, - "label": "a peptide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3717714, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3652188, - "label": "a peptide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3717715, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717717, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717718, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717719, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717705, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717706, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717708, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717709, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717696, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717698, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717699, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717700, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717701, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717702, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717703, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685049, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685052, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717821, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685053, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717808, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717810, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717812, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685047, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717815, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717800, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685035, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685038, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717792, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685026, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717796, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685030, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685016, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685017, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717785, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717788, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685020, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685021, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717790, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685022, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685023, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717791, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717776, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685010, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717778, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717781, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717768, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717769, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717770, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685002, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685003, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685004, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717773, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685005, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685006, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717775, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3684993, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3684994, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717762, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3684995, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717765, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3684999, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717880, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717881, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717883, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717884, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685116, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717885, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685117, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717886, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685104, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685105, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685109, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717877, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717878, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717864, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717868, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717870, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685103, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717857, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685091, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685093, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717862, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717848, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717850, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685083, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717852, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685086, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717855, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685087, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717841, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685074, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685075, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685076, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717845, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685079, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685066, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717834, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685068, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717838, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685070, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685057, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717829, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685061, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717830, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685063, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717944, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685176, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685177, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717946, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717948, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685181, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685183, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685170, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717939, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685172, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685174, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685161, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717930, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685163, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717931, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717932, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717933, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685165, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685166, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685152, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717920, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685154, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717924, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717926, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717927, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685144, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717913, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717915, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685147, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717916, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685148, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685149, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717918, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685151, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685137, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717906, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685139, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685141, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685142, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685143, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685128, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717898, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685130, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685131, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717900, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685132, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685134, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685124, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717894, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718008, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685242, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718011, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685244, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685246, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718014, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718000, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718001, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685234, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685236, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685237, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685238, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685224, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685225, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685226, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685227, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717995, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685229, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685216, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685219, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717989, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685222, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685208, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717977, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685209, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685210, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685211, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717979, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717980, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685213, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717982, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685200, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717969, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717972, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717973, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717974, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685206, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685207, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685193, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685194, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685196, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717966, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685199, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685185, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685186, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685190, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717959, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685191, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685304, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718072, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718075, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685307, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685308, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718077, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685309, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718078, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685310, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718064, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685296, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685297, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718066, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718068, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718071, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718056, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718057, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685290, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718058, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718059, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718060, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718062, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718063, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685281, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685282, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718052, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718053, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685287, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718055, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718043, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718045, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718046, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685279, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685264, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718033, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685266, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685267, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685269, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718037, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685270, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718024, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685256, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685257, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685258, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718027, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718028, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685260, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718029, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685262, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718031, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718016, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718018, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718019, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685252, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718021, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685255, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685368, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685371, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718139, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685373, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718142, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685375, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685360, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718130, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685362, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718131, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718132, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685364, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718133, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685366, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718135, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685367, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685352, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685354, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718122, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685355, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718124, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718125, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685357, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718127, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685344, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685345, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685347, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685348, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685349, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718119, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718106, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685340, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718108, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718109, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718111, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718096, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718097, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718100, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718101, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718102, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718103, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718088, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685321, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718091, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685327, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718082, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718083, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718084, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685317, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685318, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685319, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718087, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685432, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685433, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718202, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685435, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718204, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685437, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685424, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718192, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718193, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685426, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685429, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685430, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685431, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718199, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718184, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718185, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718186, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718187, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685420, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685422, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718176, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718177, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685409, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685410, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718178, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685411, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718180, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685413, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685414, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718182, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685400, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718169, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685401, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685402, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718171, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685404, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685406, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718175, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718160, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685392, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685393, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718161, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718162, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685396, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685384, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718154, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718155, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685389, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685391, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685376, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718144, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718146, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685380, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718149, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685496, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718265, - "label": "sensory histidine kinase RstB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685498, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718266, - "label": "osmolyte:H+ symporter ProP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685499, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718268, - "label": "putative transporter YjeM", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3718256, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685490, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685494, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718263, - "label": "phosphorylated DNA-binding transcriptional dual regulator HprR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3718248, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718249, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718251, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718252, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718243, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685475, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685479, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685464, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718232, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685465, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685466, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685467, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718237, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685470, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718239, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718224, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685456, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718227, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718228, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685462, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718216, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685448, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685449, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685452, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718221, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685454, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685440, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685441, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718211, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685445, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718214, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685447, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718332, - "label": "DUF1479 domain-containing protein YbiU", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3718333, - "label": "glutamate dehydrogenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685566, - "label": "hydrogen sulfide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3685553, - "label": "(S)-3-methyl-2-oxopentanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3685555, - "label": "formate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3718325, - "label": "anti-adaptor protein IraD, inhibitor of σS proteolysis", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685544, - "label": "Nα,Nε-diacetyl-lysyl-D-alanine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3718314, - "label": "IS5 transposase and trans-activator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3718316, - "label": "DUF2756 domain-containing protein YhhA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3718318, - "label": "BasS-N-phospho-L-histidine", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685551, - "label": "4-(methylsulfanyl)-2-oxobutanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3685537, - "label": "D-alanyl-D-alanine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3718309, - "label": "glutamate/aspartate : H+ symporter GltP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3718301, - "label": "putative DNA-binding transcriptional regulator YiaG", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685535, - "label": "L-cysteinylglycine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3685525, - "label": "L-alanyl-D-glutamate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3718294, - "label": "porphobilinogen synthase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685512, - "label": "L-alanyl-L-glutamate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3718282, - "label": "outer membrane lipoprotein carrier protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3718283, - "label": "glutamate synthase subunit GltB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685519, - "label": "D-glucono-1,5-lactone", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3685505, - "label": "calcium hydrogenphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3718275, - "label": "P-loop guanosine triphosphatase YjiA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3718277, - "label": "protein sulfenic acid reductase and chaperone DsbG", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3718392, - "label": "uncharacterized protein YniB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685625, - "label": "UDP-N-acetylmuramoyl-L-alanyl-γ-D-glutamyl-meso-2,6-diaminopimeloyl-D-alanine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3718393, - "label": "methylglyoxal reductase YeaE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685626, - "label": "cytidine kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685627, - "label": "trans-aconitate 2-methyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718395, - "label": "methionine sulfoxide reductase B", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685628, - "label": "transport of an ion", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685630, - "label": "selenide, water dikinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685616, - "label": "5-deoxy-D-ribose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3718384, - "label": "DNA-binding transcriptional dual regulator PdhR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685609, - "label": "taurine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3718379, - "label": "phosphoribosylglycinamide formyltransferase 2", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3718368, - "label": "DUF1496 domain-containing protein YnjH", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3718369, - "label": "leucine exporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685601, - "label": "6-deoxy-6-sulfo-D-fructose 1-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3718371, - "label": "Hha toxicity modulator TomB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3718375, - "label": "protein YqeJ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685592, - "label": "6-sulfo-α-D-quinovose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3718361, - "label": "esterase/thioesterase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685594, - "label": "6-deoxy-6-sulfo-D-fructose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3685599, - "label": "chorismate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3718356, - "label": "30S ribosomal subunit protein S8", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685591, - "label": "(2Z,4E,7E)-2-hydroxy-6-oxonona-2,4,7-triene-1,9-dioate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3685577, - "label": "L-alanyl-γ-D-glutamyl-meso-2,6-diaminopimeloyl-D-alanyl-D-alanine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3685579, - "label": "L-fuculose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3685580, - "label": "D-erythro-7,8-dihydroneopterin", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3685582, - "label": "methyl-β-D-galactoside", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3685573, - "label": "decanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3685574, - "label": "L-alanyl-γ-D-glutamyl-meso-2,6-diaminopimeloyl-D-alanine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3718343, - "label": "molybdenum cofactor guanylyltransferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685689, - "label": "N-acetylmuramoyl-L-alanine amidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685690, - "label": "L-asparaginase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685691, - "label": "(R)-lactate transporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718460, - "label": "2'3' cyclic nucleotide phosphodiesterase/3' nucleotidase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3718462, - "label": "carbonic anhydrase 2", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685695, - "label": "ATP reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685681, - "label": "glycerate 2-kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685684, - "label": "imidazoleglycerol-phosphate dehydratase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685685, - "label": "n-hexane efflux pump", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685686, - "label": "4-aminobutanoate:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718455, - "label": "uracil phosphoribosyltransferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685675, - "label": "nicotinate phosphoribosyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685664, - "label": "Na+ : H+ antiporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685666, - "label": "quinate dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718435, - "label": "mannitol-specific PTS enzyme IICB component CmtA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685671, - "label": "colisitin efflux pump", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718425, - "label": "putative adhesin-related protein YdhQ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685658, - "label": "protein-glutamine glutaminase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685661, - "label": "ornithine carbamoyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718430, - "label": "ribosome hibernation-promoting factor", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3718431, - "label": "DNA-binding transcriptional repressor MalI", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685649, - "label": "2,5-diketo-D-gluconate reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718418, - "label": "putative DNA-binding transcriptional regulator YgaV", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685654, - "label": "pyridine nucleotide transhydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685643, - "label": "5-aminovalerate aminotransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685644, - "label": "arsenate:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718413, - "label": "dipeptide exporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685635, - "label": "ATP-dependent lipid A-core flippase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685638, - "label": "UDP-sugar hydrolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718407, - "label": "DNA-binding transcriptional repressor SrlR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685752, - "label": "acetylornithine deacetylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718524, - "label": "phenylacetate-CoA ligase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685758, - "label": "fumarate:H+ symport", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718514, - "label": "uncharacterized protein YkgH", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685747, - "label": "pyruvate:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685750, - "label": "thioredoxin peroxidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685751, - "label": "2-keto-3-deoxygluconate 6-phosphate aldolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685737, - "label": "tyrosine—tRNA ligase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718509, - "label": "GlpM family protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685741, - "label": "protein-glutamine glutaminase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685728, - "label": "protein-glutamine N-methyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685732, - "label": "glutamine synthetase adenylyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718500, - "label": "diguanylate cyclase DgcZ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685734, - "label": "D-mannitol transport", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685722, - "label": "phosphoribosylformylglycinamide cyclo-ligase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718494, - "label": "outer membrane lipoprotein Blc", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685727, - "label": "calcium hydrogenphosphate:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685715, - "label": "trimethylamine N-oxide reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718485, - "label": "CP4-57 prophage; anti-bacteriophage protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685718, - "label": "sugar exporter SetA", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718478, - "label": "PanD α cleavage product", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685711, - "label": "transport of glycerol phosphate", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685699, - "label": "CCCP efflux pump", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685700, - "label": "methionine synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685701, - "label": "L-leucine transport", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685703, - "label": "methylglyoxal synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718471, - "label": "carboxylesterase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685816, - "label": "3-octaprenyl-4-hydroxybenzoate decarboxylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718584, - "label": "nitrate/nitrite transporter NarU", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685818, - "label": "2'-deoxyguanosine 3'-monophosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718587, - "label": "uncharacterized protein YbfC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3718588, - "label": "D-alanyl-D-alanine carboxypeptidase DacC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685821, - "label": "fatty acyl-CoA synthetase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685808, - "label": "γ-glutamyl-γ-aminobutyrate hydrolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718577, - "label": "DNA-binding transcriptional repressor MprA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685810, - "label": "fumarase A", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685813, - "label": "S-formylglutathione hydrolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685814, - "label": "assimilatory sulfite reductase (NADPH)", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685800, - "label": "8-amino-7-oxononanoate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718568, - "label": "PF05406 family protein YfeS", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685806, - "label": "acyl-CoA dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718575, - "label": "DLP12 prophage; protease 7", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3718562, - "label": "dipeptide/tripeptide:H+ symporter DtpA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685794, - "label": "gcv system", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718563, - "label": "PanD maturation factor", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685797, - "label": "lipopolysaccharide glucosyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685798, - "label": "threonine dehydratase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685785, - "label": "N-acetylneuraminate:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685789, - "label": "AMP nucleosidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685776, - "label": "diacylglycerol pyrophosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685777, - "label": "tRNA preQ134 S-adenosylmethionine ribosyltransferase-isomerase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718547, - "label": "p-aminobenzoyl-glutamate hydrolase subunit A", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685782, - "label": "fumarate:succinate antiporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718550, - "label": "methylglyoxal reductase DkgA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3718551, - "label": "ferredoxin-type protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685783, - "label": "cobalamin-independent homocysteine transmethylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718536, - "label": "trans-but-2-enoyl-ACP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685769, - "label": "L-tryptophan:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718537, - "label": "chitin disaccharide deacetylase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3718538, - "label": "DNA-binding transcriptional dual regulator GadW", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3718540, - "label": "lipoprotein YfgH", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685773, - "label": "aspartate transaminase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718528, - "label": "small heat shock protein IbpA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685762, - "label": "glutamate decarboxylase B", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718648, - "label": "DNA-binding transcriptional dual regulator LrhA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685883, - "label": "thioredoxin reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718651, - "label": "tripartite efflux pump membrane fusion protein EmrK", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3718653, - "label": "ribosome-dependent mRNA interferase toxin YafQ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685885, - "label": "7-α-hydroxysteroid dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685887, - "label": "acetate:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718655, - "label": "30S ribosomal subunit biogenesis factor LepA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685873, - "label": "ethanol dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718642, - "label": "phosphosugar phosphatase YigL", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685879, - "label": "acetate kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718647, - "label": "DUF2544 domain-containing protein YfcO", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685864, - "label": "L-glutamate γ-semialdehyde dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685865, - "label": "2-iminoacetate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685867, - "label": "succinate:fumarate antiport", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718636, - "label": "mannose-specific PTS enzyme IIAB component", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685869, - "label": "transport of putresince", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685856, - "label": "transport of an oligopeptide", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685857, - "label": "lipoyl synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685858, - "label": "nonspecific dipeptidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685860, - "label": "GMP nucleosidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685862, - "label": "Transport of partially N-deacetylated poly-β-1,6-N-acetyl-D-glucosamine", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685863, - "label": "glucokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718619, - "label": "succinyl-CoA synthetase subunit β", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685852, - "label": "cysteamine S-phosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718621, - "label": "aspartate—tRNA ligase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685853, - "label": "Transport of a dipeptide", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685840, - "label": "methionine sulfoxide reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685843, - "label": "L-glyceraldehyde 3-phosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685846, - "label": "protein-histidine autokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685847, - "label": "glutamate decarboxylase A", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685832, - "label": "L-histidinol-phosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685833, - "label": "formate transporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718603, - "label": "ribosome-dependent mRNA interferase toxin YafO", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685830, - "label": "shikimate kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685831, - "label": "glycogen phosphorylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718599, - "label": "L-threonine/L-homoserine exporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685948, - "label": "nicotinate-mononucleotide adenylyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685949, - "label": "pyridoxamine-oxaloacetate transaminase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685937, - "label": "phosphocholine phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685941, - "label": "transport of a nucleoside", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718696, - "label": "Unknown Display Name", - "databaseLabel": "Terminator", - "value": 1, - "font": { - "color": "#e5a731" - }, - "color": { - "background": "#FFFFFF", - "border": "#e5a731", - "hover": { - "background": "#FFFFFF", - "border": "#e5a731" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e5a731" - } - } - }, - { - "id": 3718698, - "label": "Unknown Display Name", - "databaseLabel": "Terminator", - "value": 1, - "font": { - "color": "#e5a731" - }, - "color": { - "background": "#FFFFFF", - "border": "#e5a731", - "hover": { - "background": "#FFFFFF", - "border": "#e5a731" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e5a731" - } - } - }, - { - "id": 3685930, - "label": "transport of a β-lactam antibiotic", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685934, - "label": "hydroxymethylpyrimidine kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685914, - "label": "asparaginase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685915, - "label": "shikimate dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685917, - "label": "phosphoenolpyruvate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685919, - "label": "N-acetyl-β-neuraminic acid outer membrane channel", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685905, - "label": "2-oxoglutarate reductase ((S)-2-hydroxyglutarate-forming)", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685908, - "label": "transport of nitrite", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718664, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3718666, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685898, - "label": "sulfoquinovosidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718667, - "label": "aspartate carbamoyltransferase catalytic subunit", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3685900, - "label": "L-homoserine:H+ antiporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685901, - "label": "3'-nucleotidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685903, - "label": "2'-deoxyuridine 3'-monophosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685891, - "label": "acyl-CoA dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685892, - "label": "pyridoxamine 5'-phosphate oxidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685895, - "label": "L-fuculokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3686008, - "label": "L-serine deaminase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3686009, - "label": "dTDP-glucose 4,6-dehydratase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3686013, - "label": "fructose-6-phosphate aldolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3686014, - "label": "protein-glutamine glutaminase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3686004, - "label": "ethidium:2H+ antiport", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685992, - "label": "[acyl-carrier-protein] S-malonyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685993, - "label": "transport of methyl-β-D-galactoside", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685996, - "label": "cysteine transaminase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685998, - "label": "citrate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685999, - "label": "transport of ferric citrate", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685985, - "label": "L-threonine:H+ antiporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685986, - "label": "lipid hydroperoxide peroxidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685987, - "label": "protein-histidine autokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685977, - "label": "phosphoglucomutase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685978, - "label": "xanthine phosphoribosyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685982, - "label": "cytosine deaminase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685983, - "label": "sulfoquinovosidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685969, - "label": "2-deoxy-D-glucose 6-phosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685970, - "label": "protein-tyrosine phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685973, - "label": "fucosyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685962, - "label": "N-acetylglutamate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685964, - "label": "(R)-lactate transporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685965, - "label": "amylomaltase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685966, - "label": "D-arabinose isomerase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685952, - "label": "dGTP triphosphohydrolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685954, - "label": "L-valine:H+ antiport", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685957, - "label": "type IV deoxyribonuclease", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3685958, - "label": "erthromycin efflux pump", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3686072, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718842, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686074, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718843, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718844, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718847, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718833, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718837, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686069, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686070, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718839, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686071, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686056, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686057, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686058, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718826, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686062, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686063, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718818, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718809, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686042, - "label": "L-phenylalanine:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718811, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686043, - "label": "acriflavine efflux pump", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718813, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686045, - "label": "1,6-anhydro-N-acetylmuramoyl-L-alanine amidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3686033, - "label": "1,4-dihydroxy-2-naphthoyl-CoA synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3686034, - "label": "N-acetylneuraminic acid outer membrane channel", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3686039, - "label": "L-isoleucine:H+ antiport", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3686024, - "label": "3-deoxy-D-manno-octulosonic acid transferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3686019, - "label": "hydroxymethylbilane synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3686023, - "label": "4-hydroxy-tetrahydrodipicolinate reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3718906, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686138, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686139, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718909, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718910, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686143, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686128, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718896, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686130, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686131, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718900, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686133, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718901, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718902, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686134, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686135, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718903, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686121, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686122, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686124, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718892, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686126, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686127, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718895, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718880, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686112, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686113, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686114, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718882, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718883, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686117, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718887, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686106, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686110, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718879, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686097, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718866, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686100, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718870, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686103, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718871, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718857, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718858, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686090, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686091, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686094, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718848, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718849, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718851, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718853, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718855, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686200, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718968, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718972, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686204, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686206, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718975, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686192, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686193, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686194, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718964, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718965, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686197, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718966, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686184, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718952, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718953, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686185, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718954, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686186, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686187, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718956, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686176, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686177, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686178, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718947, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718948, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686180, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718949, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718950, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686182, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718951, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686183, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686168, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718937, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718938, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718940, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686172, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718941, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718942, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686174, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718943, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686160, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718929, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686161, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686163, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718933, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686165, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686166, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718920, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686154, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686156, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686157, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686158, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718927, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686159, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686145, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718914, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686146, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718916, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686148, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686149, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718919, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686265, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719036, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686269, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719025, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719026, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686258, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719027, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686261, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686263, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719031, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719016, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686248, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686250, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719018, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686252, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719021, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686241, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686243, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686244, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719013, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719000, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719001, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719002, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686236, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719006, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718992, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686225, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718994, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686226, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718995, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686227, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686228, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718996, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718997, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686231, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718999, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718984, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686217, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718985, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686218, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718987, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718988, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718990, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686222, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686223, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718977, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718979, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686213, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3718983, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686215, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719096, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686329, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686332, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686334, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719090, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686322, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719091, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686323, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719092, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686326, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719095, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686327, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719081, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686313, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686314, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686315, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686316, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719085, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719086, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686319, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719073, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686305, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686309, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686296, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719066, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686299, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719070, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686302, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719071, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686288, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686289, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686290, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719058, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686292, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719061, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686293, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686294, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719062, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719050, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719051, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719052, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686284, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719053, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686272, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719042, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686274, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719043, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719044, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686277, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719046, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686279, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686394, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719163, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719164, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686396, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686397, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719166, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719167, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719152, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686385, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719154, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686386, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719155, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686388, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686389, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686390, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686377, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719146, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686378, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719147, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686379, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719148, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686380, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719150, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719151, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686383, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686368, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686370, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686373, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686374, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686361, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719130, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719131, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686363, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719135, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686352, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686354, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719123, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719124, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686357, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686359, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719127, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719112, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686345, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719115, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686349, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719118, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686350, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686336, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686337, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719107, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686340, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719108, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686341, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719111, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686460, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686462, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719231, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686450, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719218, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719220, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719222, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719223, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686440, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719209, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719210, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719212, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686445, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686446, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719200, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686432, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686433, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719202, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719204, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686436, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686438, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686425, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719194, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719195, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686427, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686430, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719199, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719185, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719188, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686420, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719189, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686422, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719191, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719176, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686408, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719177, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686411, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719179, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719180, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686413, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719182, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686415, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719171, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719289, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686524, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719292, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719293, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686525, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686527, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719295, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719280, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686512, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719282, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686514, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686515, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686516, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719285, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686517, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686518, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719272, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719273, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686507, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719276, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686508, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686509, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686510, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719264, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719265, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686498, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686499, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719270, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686488, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686490, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686491, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719262, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686495, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719263, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719248, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686481, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719252, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686485, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719253, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686486, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686472, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719240, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719241, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686475, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719245, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719247, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719232, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719233, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686465, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719234, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686467, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686468, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719236, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719237, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719239, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686584, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719354, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686586, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719356, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719357, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686590, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719345, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686577, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686578, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719347, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719348, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686580, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719349, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719350, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686583, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719337, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686570, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686571, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719339, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719340, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686573, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686574, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686575, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719331, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719333, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719334, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686567, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686552, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686553, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719321, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686554, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686555, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719325, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686558, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719326, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719327, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719313, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719314, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686547, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719315, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686550, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686551, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719319, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719304, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686536, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3686537, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719305, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719306, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686538, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719310, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686542, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719311, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686543, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719299, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719301, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719302, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719416, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719418, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719422, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719413, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719402, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719403, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719406, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719392, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719394, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719398, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719387, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719391, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719376, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719380, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719382, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719372, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719374, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719375, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719361, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719362, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719481, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719483, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719486, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719474, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719478, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719464, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719466, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719468, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719469, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719457, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719460, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719451, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719452, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719441, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719444, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719432, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719433, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719436, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719426, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719430, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719544, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719548, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719549, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719537, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719540, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719543, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719528, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719529, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719532, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719533, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719520, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719522, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719525, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719526, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719513, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719516, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719518, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719519, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719505, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719509, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719510, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719496, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719503, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719490, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719494, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719608, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719610, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719612, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719613, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719592, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719593, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719584, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719586, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719591, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719576, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719579, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719572, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719573, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719560, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719563, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719565, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719566, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719567, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719553, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719554, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719556, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719558, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719677, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719664, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719666, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719671, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719658, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719659, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719660, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719661, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719649, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719651, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719652, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719653, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719654, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719655, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719640, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719641, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719642, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719645, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719637, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719624, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719628, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719620, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719740, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719742, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719729, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719735, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719720, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719724, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719725, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719727, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719714, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719716, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719718, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719707, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719708, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719711, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719697, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719700, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719701, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719702, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719690, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719691, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719692, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719693, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719680, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719681, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719685, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719687, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719804, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719806, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719807, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719793, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719794, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719799, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719784, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719789, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719781, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719772, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719774, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719775, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719766, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719752, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719754, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719755, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719759, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719744, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719745, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719750, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719868, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719870, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719856, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719860, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719848, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719850, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719851, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719855, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719843, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719844, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719845, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719847, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719832, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719833, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719835, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719837, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719838, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719839, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719825, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719828, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719829, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719818, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719821, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719822, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719823, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719810, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719812, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3687160, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687162, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719931, - "label": "emrK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3719932, - "label": "hisL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3719933, - "label": "ecnB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687167, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687152, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687154, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687156, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719925, - "label": "gspH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687159, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687145, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687146, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719915, - "label": "btuE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687150, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687140, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687142, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719911, - "label": "tnaB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3719897, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719900, - "label": "yhcN", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3719903, - "label": "ibpB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3719888, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719890, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719891, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719894, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719895, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719883, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719873, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719875, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719876, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719877, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719879, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3687224, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719992, - "label": "ilvN", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687225, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719993, - "label": "yobF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3719995, - "label": "livM", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3719999, - "label": "fhuF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3719984, - "label": "yhiM", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3719987, - "label": "yagU", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687219, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719988, - "label": "yfcC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3719990, - "label": "gadB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687223, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687208, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719976, - "label": "yegH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687209, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687210, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687211, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719979, - "label": "gspG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3719980, - "label": "livH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687213, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719983, - "label": "lrp", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687202, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719971, - "label": "dcyD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3719974, - "label": "ilvI", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3719961, - "label": "gspM", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3719964, - "label": "leuE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3719965, - "label": "ilvL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687184, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687185, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687186, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719956, - "label": "alaA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687188, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719959, - "label": "livJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3719945, - "label": "ecnA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3719950, - "label": "alaC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3719951, - "label": "osmB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687168, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719936, - "label": "osmY", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687169, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687171, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3719941, - "label": "avtA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687173, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687289, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687292, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687283, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687284, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720040, - "label": "glnQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3720041, - "label": "hxpB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687274, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687276, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687278, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687265, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720034, - "label": "glnA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687267, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687268, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720037, - "label": "glnH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687269, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687270, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687256, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687258, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720026, - "label": "ahpC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687259, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720028, - "label": "glnL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687260, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720029, - "label": "tpx", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687262, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720018, - "label": "yejM", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687250, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687254, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720022, - "label": "artI", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3720008, - "label": "leuL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687240, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687241, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720011, - "label": "ytfK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3720012, - "label": "leuO", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687244, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687245, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720014, - "label": "leuA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687247, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687232, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720001, - "label": "bfr", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687235, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720004, - "label": "livK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687237, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720005, - "label": "ftnB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687353, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687355, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720127, - "label": "small RNA SibE", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3687346, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687348, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720117, - "label": "small regulatory RNA McaS", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3687349, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687351, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687337, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687339, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687340, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720111, - "label": "small regulatory RNA GadY", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3687329, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687330, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687331, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720103, - "label": "small regulatory RNA MicC", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3687322, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687326, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720094, - "label": "small regulatory RNA Spot 42", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3687315, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687317, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687319, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720072, - "label": "N-formyl-L-methionyl-tRNAmetY", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3687304, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720073, - "label": "small regulatory RNA GcvB", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3687306, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720077, - "label": "small regulatory RNA MicF", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3687309, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687311, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687296, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687299, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687300, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687301, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687302, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687303, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720187, - "label": "putative small RNA T44", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3687420, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687422, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687408, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687409, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687410, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687412, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687400, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687401, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687403, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720175, - "label": "small RNA SroH", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3720164, - "label": "tRNA-Ile(CAU)", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3687387, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720156, - "label": "tRNA-Met(CAU)", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3687388, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687380, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687381, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687369, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687370, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720140, - "label": "tRNA-Sec(UCA)", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3687373, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687360, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687361, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687362, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687482, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687484, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687485, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687487, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687473, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687475, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720244, - "label": "tRNA-Leu(GAG)", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3687479, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687465, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687466, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687467, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687468, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687471, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687457, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687458, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720226, - "label": "tRNA-Arg(UCU)", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3687459, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687460, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720229, - "label": "L-selenocysteinyl-tRNAsec", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3687462, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687448, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720219, - "label": "tRNA-Asn(GUU)", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3687452, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687455, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687442, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687443, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687445, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687446, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720215, - "label": "tRNA-Asn(GUU)", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3687433, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687435, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687436, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687437, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687438, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687425, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687426, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720197, - "label": "L-leucyl-tRNAleuU", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3687429, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720198, - "label": "tRNA-initiator Met(CAU)", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3687431, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687545, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720318, - "label": "L-methionyl-tRNAmetY", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3687536, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687538, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687539, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687528, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687531, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687532, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687534, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687520, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687521, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687522, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687524, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687526, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687513, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687515, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687517, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720287, - "label": "L-seryl-tRNAsec", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3687519, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687504, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687505, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720273, - "label": "small RNA SibA", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3720274, - "label": "L-asparaginyl-tRNAasnV", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3687500, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687501, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687502, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720271, - "label": "L-asparaginyl-tRNAasnT", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3687503, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687488, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687490, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687492, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687493, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687494, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687612, - "label": "argR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3720381, - "label": "yecF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3720382, - "label": "casABCDE12", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3720383, - "label": "kbl-tdh", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3687602, - "label": "yjiL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3720373, - "label": "ascFB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3720374, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3687592, - "label": "yiiM", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3720362, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3720363, - "label": "dcm-vsr", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3687596, - "label": "yhfZ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3720364, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3687597, - "label": "thrA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3720367, - "label": "tynA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3687585, - "label": "shiA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3720353, - "label": "fliDST", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3720357, - "label": "galE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3687590, - "label": "yqeB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3720359, - "label": "rstAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3687576, - "label": "aroA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3720345, - "label": "queA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3720346, - "label": "gadW", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3687579, - "label": "aroD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687580, - "label": "katG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3720349, - "label": "glnQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3687581, - "label": "yegR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687582, - "label": "aroK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687570, - "label": "aroE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3720338, - "label": "L-arginyl-tRNAargU", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3720339, - "label": "msyB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3720341, - "label": "dld", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3687561, - "label": "aroF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687564, - "label": "ydiB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687566, - "label": "ybjS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3720321, - "label": "L-methionyl-tRNAmetT", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3687555, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3687556, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3720326, - "label": "L-isoleucyl-tRNAileY", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 3687672, - "label": "lysP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3720440, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3687673, - "label": "dinJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687677, - "label": "slyX", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687664, - "label": "hlyE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3720432, - "label": "serB-radA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3720433, - "label": "hslJ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3720434, - "label": "yjiR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3687666, - "label": "ansP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3720436, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3687669, - "label": "asnA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3720437, - "label": "mioC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3720425, - "label": "fdnGHI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3687660, - "label": "aspA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3720428, - "label": "tolB-pal-ybgF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3720429, - "label": "cadA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3720418, - "label": "metY-yhbC-nusA-infB-rbfA-truB-rpsO-pnp", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3720419, - "label": "mreCD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3720421, - "label": "ansB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3687641, - "label": "yaiZ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3720410, - "label": "csrA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3687645, - "label": "argT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3720415, - "label": "glpFKX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3720400, - "label": "leuO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3687633, - "label": "carA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3720403, - "label": "ydeQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3720406, - "label": "nfo", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3720396, - "label": "guaBA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3720386, - "label": "oppABCDF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3687618, - "label": "artP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3687619, - "label": "katE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3720388, - "label": "ilvLXG_1G_2MEDA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3687621, - "label": "argA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3720390, - "label": "fumAC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3720391, - "label": "hemB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3687737, - "label": "protein-glutamine glutaminase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687740, - "label": "glycolaldehyde reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687743, - "label": "1-acyl-lysophospholipase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687728, - "label": "glutamate—pyruvate aminotransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687733, - "label": "tryptophanase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687725, - "label": "23S rRNA pseudouridine2457 synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687726, - "label": "transport of cellobiose", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687712, - "label": "shikimate:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687713, - "label": "phenylalanine transaminase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687714, - "label": "agmatinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687718, - "label": "protein deglycase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687704, - "label": "mannitol-1-phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687705, - "label": "ubiquinol oxidase (H+-transporting)", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687711, - "label": "enterobactin efflux pump", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687700, - "label": "phenylethylamine oxidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687689, - "label": "D-ribulose-phosphate aldolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687693, - "label": "tyrosine kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687684, - "label": "L-aspartate:L-glutamine amido-ligase (AMP-forming)", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687685, - "label": "N-acetylglutamylphosphate reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687800, - "label": "acyl-CoA dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687801, - "label": "isobutyraldehyde reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687802, - "label": "γ-glutamylputrescine oxidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687803, - "label": "protein deglycase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687804, - "label": "L-fucose isomerase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687805, - "label": "2-oxoglutarate decarboxylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687807, - "label": "tRNA m1G37 methyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687792, - "label": "thiamine kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687794, - "label": "6-phosphogluconate dehydrogenase, decarboxylating", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687797, - "label": "fucose:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687787, - "label": "N-succinyldiaminopimelate aminotransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687776, - "label": "(S)-lactate transporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687777, - "label": "NAD(P)H:quinone oxidoreductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687779, - "label": "hydroxymethylpyrimidine kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687769, - "label": "asparagine synthetase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687772, - "label": "glucose-1-phosphate adenylyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687763, - "label": "isocitrate dehydrogenase kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687764, - "label": "ATP synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687765, - "label": "multidrug efflux transporter MdtM", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687752, - "label": "glycerone phosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687753, - "label": "biotin synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687756, - "label": "glutathione synthetase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687758, - "label": "peroxyureidoacrylate amidohydrolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687746, - "label": "acetyl-CoA acetyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687747, - "label": "3-deoxy-D-manno-octulosonate 8-phosphate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687749, - "label": "tryptophan:H+ symporter TnaB", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687864, - "label": "protein-histidine autokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687871, - "label": "c-di-GMP phosphodiesterase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687858, - "label": "cinnamate dioxygenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687860, - "label": "cis-vaccenoyl-CoA synthetase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687848, - "label": "protease", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687851, - "label": "xanthine:NAD+ oxidoreductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687852, - "label": "non-heme bacterial ferritin", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687854, - "label": "pyridoxal kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687855, - "label": "NADH pyrophosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687840, - "label": "ribose-5-phosphate isomerase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687841, - "label": "glutathione reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687843, - "label": "ureidoacrylate amidohydrolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687846, - "label": "transport of a nucleotide", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687847, - "label": "taurine ABC transporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687834, - "label": "protease", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687835, - "label": "ferric dihyroxybenzoylserine outer membrane transporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687824, - "label": "serine acetyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687825, - "label": "glycolaldehyde dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687826, - "label": "dAMP phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687828, - "label": "N-acetyl-β-neuraminate lyase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687831, - "label": "acetohydroxybutanoate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687817, - "label": "chenodeoxycholate efflux pump", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687823, - "label": "p-aminobenzoyl-glutamate hydrolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687808, - "label": "succinylornithine transaminase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687809, - "label": "xanthosine-5'-phosphate:ammonia ligase (AMP-forming)", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687811, - "label": "transport of salicin", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687812, - "label": "L-threonine O-3-phosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687813, - "label": "glutamate—pyruvate aminotransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687814, - "label": "bis(molybdenum cofactor) synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687929, - "label": "adenine glycosylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687931, - "label": "transport of an aldehyde", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687933, - "label": "tail-specific protease", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687922, - "label": "ATP phosphoribosyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687925, - "label": "ribose-5-phosphate isomerase A", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687914, - "label": "dTDP-4-dehydrorhamnose 3,5-epimerase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687919, - "label": "ATP-dependent Clp protease", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687904, - "label": "transport of ferric enterobactin", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687906, - "label": "glutarate hydroxylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687907, - "label": "RNase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687911, - "label": "3'AMP phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687896, - "label": "D-3-phosphoglycerate dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687897, - "label": "alkaline phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687899, - "label": "bis(molybdenum cofactor) guanylyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687888, - "label": "carboxylesterase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687893, - "label": "N-succinyldiaminopimelate aminotransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687880, - "label": "mannose isomerase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687882, - "label": "phosphatidylserine decarboxylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687885, - "label": "acyl-CoA dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687887, - "label": "glutamate-putrescine ligase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687873, - "label": "glyceraldehyde-3-phosphate dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687875, - "label": "ribosome-dependent mRNA interferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687877, - "label": "phosphomethylpyrimidine synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687879, - "label": "6-phosphofructokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687993, - "label": "biotin transporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687998, - "label": "lysine decarboxylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687999, - "label": "D-serine ammonia-lyase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687989, - "label": "L-serine:tRNASec ligase (AMP-forming)", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687978, - "label": "n-hexane efflux pump", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687981, - "label": "phosphogluconate dehydratase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687982, - "label": "malate dehydrogenase, NAD-requiring", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687983, - "label": "catalase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687968, - "label": "uridine phosphorylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687970, - "label": "D-tartrate:succinate antiporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687972, - "label": "cystathionine β-lyase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687973, - "label": "diffusion of antimonite", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687961, - "label": "cystathionine β-lyase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687962, - "label": "ethidium efflux pump", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687965, - "label": "protein kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687966, - "label": "protein-glutamate methylesterase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687967, - "label": "CDP-diacylglycerol—glycerol-3-phosphate 3-phosphatidyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687953, - "label": "proline dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687956, - "label": "7,8-diaminopelargonic acid synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687958, - "label": "transport of S-methyl-5-thio-D-ribose", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687959, - "label": "3-phosphoglycerate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687944, - "label": "L-methionine:H+ antiport", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687947, - "label": "topoisomerase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3687949, - "label": "protein-histidine autokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688057, - "label": "cysteine—tRNA ligase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688062, - "label": "guanine phosphoribosyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688063, - "label": "acriflavin efflux pump", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688051, - "label": "protein-glutamate methylesterase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688052, - "label": "D-altronate dehydratase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688041, - "label": "D-alanine:quinone oxidoreductase (deaminating)", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688043, - "label": "transport of an inositol", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688045, - "label": "cysteine sulfinate desulfinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688032, - "label": "D-galacturonate transporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688035, - "label": "L-glutamate:NADP+ oxidoreductase (deaminating)", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688039, - "label": "GTPase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688030, - "label": "hypoxanthine phosphoribosyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688016, - "label": "indole:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688020, - "label": "lactose galactohydrolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688022, - "label": "peptidoglycan DD-transpeptidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688023, - "label": "N-acetylglucosamine-6-phosphate deacetylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688008, - "label": "glutathione exporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688010, - "label": "L-threonine:H+ antiport", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688014, - "label": "α-dehydro-β-deoxy-D-glucarate aldolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688002, - "label": "transport of inosine", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688003, - "label": "molybdenum cofactor guanylyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688004, - "label": "cyclopropane fatty acyl phospholipid synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688005, - "label": "protein sulfenic acid reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688007, - "label": "aerobic glycerol 3-phosphate dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688123, - "label": "D-ribulose 5-phosphate 1-dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688115, - "label": "hypoxanthine phosphoribosyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688117, - "label": "D-glucuronate transporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688106, - "label": "acetyl-CoA C-acyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688107, - "label": "ATPase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688110, - "label": "imidazole glycerol phosphate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688096, - "label": "branched chain amino acid transporter BrnQ", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688099, - "label": "isocitrate lyase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688100, - "label": "acetohydroxybutanoate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688101, - "label": "tryptophan:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688092, - "label": "3' to 5' proofreading exonuclease", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688081, - "label": "3' → 5' exonuclease", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688084, - "label": "acetyl-CoA synthetase (AMP-forming)", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688085, - "label": "triose-phosphate isomerase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688086, - "label": "cholate : H+ antiporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688087, - "label": "transport of ferric coprogen", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688073, - "label": "chorismate lyase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688064, - "label": "transport and phosphorylation of D-sorbitol", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688065, - "label": "L-aspartate:ammonia ligase (AMP-forming)", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688071, - "label": "(S)-lactate transporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688188, - "label": "formate dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688191, - "label": "acetyl-CoA C-acyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688177, - "label": "DNA polymerase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688178, - "label": "phosphoribosylaminoimidazole-succinocarboxamide synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688179, - "label": "glycerol kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688180, - "label": "dGMP phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688181, - "label": "branched chain amino acid transporter BrnQ", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688182, - "label": "3'CMP phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688172, - "label": "exoribonuclease II", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688174, - "label": "fructose bisphosphate aldolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688163, - "label": "deoxyguanylate kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688164, - "label": "3-dehydroquinate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688166, - "label": "triphosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688153, - "label": "adenylyl-sulfate kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688157, - "label": "GTPase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688158, - "label": "formyltetrahydrofolate deformylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688146, - "label": "thiamine monophosphate kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688148, - "label": "4-hydroxybenzoate octaprenyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688137, - "label": "tagaturonate reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688142, - "label": "D-galacturonate isomerase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688128, - "label": "transport of cobinamide", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688129, - "label": "D-serine:proton symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688131, - "label": "histidinol-phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688132, - "label": "transport of molybdate", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688135, - "label": "phosphate acetyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721018, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721019, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721010, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721011, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721012, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721013, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721015, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721002, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721004, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721006, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688224, - "label": "thiamin triphosphate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3720992, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688225, - "label": "ribonuclease", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3720994, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688228, - "label": "D-arabinose:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3720999, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688216, - "label": "L-cysteine exporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688217, - "label": "transport of β-D-galactose", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688218, - "label": "protein-histidine autokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688222, - "label": "prephenate dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688208, - "label": "pyridoxamine kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688213, - "label": "transport of adenine", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688215, - "label": "menaquinol:trimethylamine N-oxide oxidoreductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688200, - "label": "transport of an amide", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688201, - "label": "L-arginine transporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688202, - "label": "serine protease", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688192, - "label": "diguanylate cyclase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688193, - "label": "fructoselysine 3-epimerase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688195, - "label": "L-glutamate:NADP+ oxidoreductase (transaminating)", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688196, - "label": "uridine 3' nucleotidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688197, - "label": "CheY deacetylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721082, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721084, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721085, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721086, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721072, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721075, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721078, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721065, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721067, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721068, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721069, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721070, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721057, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721058, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721054, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721055, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721040, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721042, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721044, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721046, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721024, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721028, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721031, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721146, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721136, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721138, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721139, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721141, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721142, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721128, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721131, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721133, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721135, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721120, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721123, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721125, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721112, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721113, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721114, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721117, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721104, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721110, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721097, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721098, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721099, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721101, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721103, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721090, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721208, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721213, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721214, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721200, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721203, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721204, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721207, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721192, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721185, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721177, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721179, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721181, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721183, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721168, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721169, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721161, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721162, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721164, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721166, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721167, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721152, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721155, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721272, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442545, - "label": "frdAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721274, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721277, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721278, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442549, - "label": "hdeAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 91442555, - "label": "adhEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721265, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721266, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442559, - "label": "cfap", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721270, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442529, - "label": "dpsp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721260, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442534, - "label": "pcnBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 91442533, - "label": "patAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721263, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442539, - "label": "micFp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721248, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721250, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442543, - "label": "ftsQp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 91442541, - "label": "gadAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721254, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721255, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442540, - "label": "bolAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721240, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721241, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721242, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442513, - "label": "aidBp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721243, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721245, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442517, - "label": "appCp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721246, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721238, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442524, - "label": "rrsEp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721239, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721226, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721227, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442503, - "label": "rrsCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 91442502, - "label": "rrsDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721216, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721217, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721218, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442511, - "label": "csgBp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 91442510, - "label": "gabDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721222, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721336, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721337, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442482, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 91442481, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 91442480, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 91442487, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 91442486, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 91442485, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 91442484, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 91442491, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 91442490, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3721329, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442489, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 91442488, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3721332, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442494, - "label": "ompFp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721334, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442492, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3721322, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721323, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721324, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721326, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721312, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442479, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3721316, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442477, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3721318, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442476, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3721319, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721305, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721306, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442455, - "label": "L-cysteine degradation III", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3721308, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442454, - "label": "system I type cytochrome c biogenesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3721309, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442458, - "label": "bis(guanylyl molybdopterin) cofactor sulfurylation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 91442457, - "label": "molybdenum cofactor biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 91442456, - "label": "heme b biosynthesis V (aerobic)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3721303, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721289, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442433, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3721291, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721293, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442437, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3721294, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721281, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721287, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721403, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721406, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721392, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721393, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721396, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721398, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721399, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721387, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721377, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721380, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721381, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721382, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721372, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721373, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721374, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721360, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721362, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721364, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721365, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721366, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721367, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721353, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721356, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721358, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721359, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721345, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721346, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721347, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721464, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442610, - "label": "osmYp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721465, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442615, - "label": "asrp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721468, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442613, - "label": "metKp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721470, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442617, - "label": "ynfEp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 91442616, - "label": "pgip2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721459, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721460, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721463, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721448, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442593, - "label": "xapAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721453, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442598, - "label": "rseDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721455, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442596, - "label": "galEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 91442603, - "label": "poxBp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721441, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721442, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442600, - "label": "gpmAp4", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 91442607, - "label": "hdeDp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 91442605, - "label": "ssrSp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 91442604, - "label": "sgrSp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 91442578, - "label": "rrsGp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 91442577, - "label": "pstSp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 91442576, - "label": "gadBp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 91442582, - "label": "csgDp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721437, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721439, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442580, - "label": "rrsAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 91442587, - "label": "gltBp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721425, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721427, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442591, - "label": "aceEp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721428, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442590, - "label": "rrsHp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721429, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442589, - "label": "lonp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 91442563, - "label": "crlp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721416, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442561, - "label": "pdhRp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721418, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721422, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442565, - "label": "rpoEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 91442564, - "label": "hyaAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721423, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442570, - "label": "csgDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721410, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442569, - "label": "idlPp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 91442574, - "label": "pqiAp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 91442573, - "label": "rrsBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721415, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442572, - "label": "mnmGp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 91442291, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721528, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442290, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442289, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721530, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442288, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442295, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721533, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442294, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442293, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442292, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721520, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442298, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721522, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442297, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442296, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721523, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442303, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442302, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442301, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721527, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442300, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442275, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442274, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442273, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442272, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442279, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721517, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442278, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442277, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721518, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721519, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721504, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442283, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442282, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442281, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721506, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442280, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442287, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721509, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442286, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442285, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721510, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442284, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721496, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721497, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721498, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442257, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442256, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721499, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442262, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721502, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442261, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442260, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721488, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442267, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721489, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442265, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442264, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721492, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442270, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442269, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721495, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442243, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442242, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442241, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442240, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721483, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442247, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721485, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442246, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442245, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442244, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442251, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442250, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442249, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442248, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442255, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442253, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721479, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442252, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688824, - "label": "transport of hydrophilic solute or ion < 600 Da", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442227, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442226, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442225, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442224, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688827, - "label": "deoxyguanosine phosphorylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721596, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442231, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442230, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442229, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688830, - "label": "ethidium efflux pump", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442228, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442235, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721585, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442234, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688818, - "label": "o-succinylbenzoate—CoA ligase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442233, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688819, - "label": "chitin disaccharide deacetylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442232, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688820, - "label": "dihydrofolate reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442239, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442238, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442237, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721590, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442236, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688823, - "label": "ubiquinol:hydrogen peroxide oxidoreductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721576, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442211, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688809, - "label": "methionine adenosyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442210, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442209, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688810, - "label": "4-amino-4-deoxychorismate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442208, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688811, - "label": "2'GMP phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721579, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442215, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721580, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688812, - "label": "diffusion of urea", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442214, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688813, - "label": "1,4-dihydroxy-2-naphthoate octaprenyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442213, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721582, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442219, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721568, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688800, - "label": "D-glucosamine PTS permease", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442217, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442216, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721571, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442223, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721572, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688805, - "label": "fructose-bisphosphate aldolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442222, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442221, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442220, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721575, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688807, - "label": "GTPase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442195, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688792, - "label": "3'-phosphodiesterase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721561, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442194, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721562, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442193, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688795, - "label": "3-dehydroquinate dehydratase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442192, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721563, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688796, - "label": "6-phosphofructokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442199, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442198, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688797, - "label": "3-phospho-L-serine phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721565, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721566, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442196, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442203, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688784, - "label": "cytidine 2'3'-cyclic phosphodiesterase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721553, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721554, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442201, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442200, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721556, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688788, - "label": "diffusion of sugar alcohols", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442206, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688790, - "label": "2,3-diketo-L-gulonate reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442205, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721558, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442204, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442179, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721544, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442178, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688777, - "label": "tetraacyldisaccharide 4'-kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442177, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688778, - "label": "protein histidine auto-kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688779, - "label": "2-keto-4-hydroxyglutarate aldolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442176, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721547, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442183, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442182, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442181, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721550, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442180, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721551, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442187, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721536, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721537, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442186, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442185, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721538, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442184, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721540, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442190, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442189, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442188, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721543, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721657, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721659, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688891, - "label": "putative oligopeptide ABC transporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721661, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688893, - "label": "ITPase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688894, - "label": "phosphoribosylamine—glycine ligase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721648, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688882, - "label": "L-cystine ABC transporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721650, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721651, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721652, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688886, - "label": "GTP pyrophosphokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442429, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3688887, - "label": "transport and phosphorylation of D-mannitol", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688872, - "label": "methionine transport", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442403, - "label": "thiol:disulfide oxidoreductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688874, - "label": "arginine—tRNA ligase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721643, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442400, - "label": "chaperonin ATPase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442405, - "label": "release of heme-bound CcmE", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688879, - "label": "L-homoserine lactone:H+ antiport", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721633, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688866, - "label": "aspartate—tRNA ligase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688871, - "label": "hydroperoxidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721639, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721624, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688856, - "label": "trehalose-6-phosphate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688858, - "label": "CTP:2,3,4-saturated L-phosphatidate cytidylyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442385, - "label": "protein-histidine autokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688859, - "label": "threonylcarbamoyl-AMP synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442391, - "label": "protein-histidine autokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442388, - "label": "protein-histidine autokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442395, - "label": "apo-c-type cytochrome export", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721617, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688850, - "label": "chorismate mutase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442399, - "label": "thiol:disulfide oxidoreductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442398, - "label": "protein-histidine autokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688854, - "label": "L-alanine:proton symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688855, - "label": "L-1,2-propanediol oxidoreductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442396, - "label": "protein-histidine autokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688842, - "label": "cyanase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721610, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442368, - "label": "ATP-dependent RNA helicase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721613, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688845, - "label": "deoxycholate efflux pump", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721614, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688846, - "label": "SDS efflux pump", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688847, - "label": "malate dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688833, - "label": "propionate transporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688834, - "label": "D-alanine—D-alanine ligase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688835, - "label": "transport of a nucleobase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688839, - "label": "protein-glutamate methylesterase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442355, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442354, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688953, - "label": "transport of an aldonate", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442353, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442352, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688955, - "label": "phenylacetate-CoA ligase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442359, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721724, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442358, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688957, - "label": "phosphohydroxythreonine aminotransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442357, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688958, - "label": "GTPase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688959, - "label": "pyruvate oxidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442356, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442363, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721712, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688944, - "label": "2'UMP phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721713, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442362, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688945, - "label": "α-ketoglutarate-dependent taurine dioxygenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442361, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688946, - "label": "transport of an organophosphorus compound", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442360, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688947, - "label": "proline aminopeptidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721716, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442367, - "label": "heme binding and reduction", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688948, - "label": "protein-histidine autokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442366, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688950, - "label": "quinolinate phosphoribosyltransferase (decarboxylating)", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442364, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688951, - "label": "cytidine 3' nucleotidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721704, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688936, - "label": "2-oxoglutarate dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442338, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721705, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688937, - "label": "ribose 5-phosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442337, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442336, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442343, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442342, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721709, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442341, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688942, - "label": "lipid II flippase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442340, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688928, - "label": "3-phosphoshikimate 1-carboxyvinyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721696, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442347, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721697, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442346, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442345, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721698, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442344, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721700, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442351, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721701, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442350, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688933, - "label": "formate dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442349, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442348, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688935, - "label": "succinyl-CoA synthetase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442323, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688920, - "label": "transport of L-valine", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721688, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442322, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688921, - "label": "D-xylonate dehydratase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442321, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721690, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688924, - "label": "serine/threonine:Na+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442327, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442325, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721695, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442324, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721680, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688912, - "label": "transport of L-ornithine", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442331, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442330, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442329, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442328, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442335, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688916, - "label": "D-sedoheptulose 7-phosphate isomerase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721685, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442334, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442333, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688919, - "label": "thymidylate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442332, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688904, - "label": "acetolactate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442307, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688905, - "label": "CTP reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442306, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721673, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688906, - "label": "GTPase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442304, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688907, - "label": "acetyl-CoA C-acyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442311, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688909, - "label": "D-glucuronate isomerase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721678, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442309, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442308, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688911, - "label": "transport of uridine", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721679, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688896, - "label": "exoribonuclease II", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442314, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442313, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442312, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721667, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688900, - "label": "L-phenylalanine transport", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442319, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721669, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442318, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688901, - "label": "endonuclease I", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442317, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3688902, - "label": "glycerol dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442316, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689016, - "label": "3-deoxy-manno-octulosonate cytidylyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721784, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721785, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721786, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689020, - "label": "Ap3A synthetase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689021, - "label": "lysine—tRNA ligase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689022, - "label": "UDP-N-acetylmuramoyl-L-alanyl-D-glutamate—2,6-diaminopimelate ligase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689008, - "label": "3-deoxy-7-phosphoheptulonate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721777, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689009, - "label": "transport of a short-chain alcohol", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721779, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721781, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689014, - "label": "uracil phosphoribosyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721782, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721783, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689015, - "label": "multidrug efflux transporter MdfA", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721769, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721770, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689004, - "label": "deoxycholate efflux pump", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721773, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721774, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689006, - "label": "methylmalonyl-CoA mutase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721761, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688994, - "label": "diamine transaminase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721765, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721767, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688999, - "label": "NADH:ubiquinone oxidoreductase (H+-transporting)", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688984, - "label": "nitrate:nitrite antiporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721753, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721755, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721758, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721744, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721745, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688977, - "label": "glycine betaine:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688978, - "label": "phosphoenolpyruvate synthetase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688979, - "label": "cysteinylglycine dipeptidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688981, - "label": "GTPase, ribosome-stimulated", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721750, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688983, - "label": "hypophosphite transporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721736, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688968, - "label": "porin", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688969, - "label": "protein histidine autokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721737, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688971, - "label": "phosphate acetyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721739, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721740, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721741, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721728, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688960, - "label": "gluconate 6-phosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721729, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3688961, - "label": "leader peptidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688963, - "label": "leucine exporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3688964, - "label": "exopolyphosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689080, - "label": "acetoacetyl-CoA transferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721848, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689081, - "label": "sulfoquinovose transporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689083, - "label": "acetyl-CoA C-acyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689085, - "label": "glucosamine-6-phosphate deaminase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721853, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689086, - "label": "methionine-oxo-acid transaminase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721855, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689087, - "label": "transport of deoxycytidine", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689072, - "label": "N-acetylneuraminate lyase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721840, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689076, - "label": "D-arabinose 5-phosphate isomerase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721845, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721846, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689079, - "label": "L-aspartate:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721847, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721834, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689066, - "label": "canavanine exporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721838, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689056, - "label": "alcohol dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721827, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721828, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689060, - "label": "β-D-glucoside glucohydrolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689062, - "label": "transport of D-galactitol", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721818, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689051, - "label": "DNA adenine methyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689053, - "label": "coproporphyrinogen III dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721822, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721809, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689045, - "label": "homoserine O-succinyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689046, - "label": "transport of D-xylose", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721815, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689032, - "label": "cardiolipin synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721802, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689035, - "label": "D-alanyl-D-alanine carboxypeptidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689036, - "label": "phosphosugar phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721805, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721806, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689038, - "label": "glycine:proton symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689028, - "label": "alanine racemase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721796, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689029, - "label": "L-glutamine—D-fructose-6-phosphate aminotransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721797, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721798, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721799, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443186, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689145, - "label": "mannose 6-phosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91443185, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689146, - "label": "N-acetylmuramoyl-L-alanine amidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91443184, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721915, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721916, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443191, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689149, - "label": "phenylacetaldehyde dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91443195, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721904, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443194, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721905, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443193, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443192, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443199, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689140, - "label": "RadD ATPase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721908, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721910, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689142, - "label": "α-D-ribose 1,5-phosphomutase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91443197, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443196, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689128, - "label": "pyruvate formate-lyase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91443171, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689129, - "label": "methionine exporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91443170, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443169, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443168, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689131, - "label": "transport of a dicarboxylate", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91443175, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721900, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443174, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689133, - "label": "tRNA U34 hydroxylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721902, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721903, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443172, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443179, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689121, - "label": "ribonucleoside-diphosphate reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721889, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721890, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689122, - "label": "IMP phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721891, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443183, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721892, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689124, - "label": "transport of a sugar phosphate", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91443182, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443181, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689126, - "label": "thiol:disulfide oxidoreductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91443180, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443155, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721881, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443154, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689113, - "label": "phosphoglycerate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721882, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443159, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443158, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689117, - "label": "oxepin-CoA hydrolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91443157, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443156, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721887, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689104, - "label": "β-ketoacyl-ACP synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721872, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443163, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443162, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721873, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689105, - "label": "nucleoside 5'-monophosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689106, - "label": "L-aspartate:succinate antiporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91443160, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443167, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689108, - "label": "methionine-S-sulfoxide reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91443166, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721878, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443139, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443138, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689097, - "label": "diguanylate cyclase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91443137, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443136, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443143, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689100, - "label": "7-cyano-7-deazaguanine reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689101, - "label": "4-aminobutyrate transaminase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91443142, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721869, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443140, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443147, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721856, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689089, - "label": "adenine transporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91443146, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443145, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443144, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721859, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443151, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443150, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689094, - "label": "tyrosine aminotransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91443149, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689095, - "label": "threonine—tRNA ligase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689208, - "label": "transaldolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91443123, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443122, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443121, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721978, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443127, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689212, - "label": "diadenosine tetraphosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721980, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443124, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721983, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689215, - "label": "inosine 5'-monophosphate dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721968, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443131, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443130, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721969, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689202, - "label": "chemotaxis protein methyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91443128, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721972, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443135, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689205, - "label": "K+ : H+ antiporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721974, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443133, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689207, - "label": "2-ketobutyrate formate-lyase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91443132, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721975, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721960, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443106, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 91443104, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3721963, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721964, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443109, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3721966, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689199, - "label": "6,7-dimethyl-8-ribityllumazine synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91443108, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3689186, - "label": "deoxyribose 1,5-phosphomutase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721955, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689187, - "label": "transport of water", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91443091, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3721945, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721946, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689179, - "label": "D-cysteine desulfhydrase, PLP-dependent", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721947, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443095, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3721949, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443093, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 91443099, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3721937, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443103, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3721940, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689172, - "label": "diacylglycerol kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721941, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443102, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3689173, - "label": "glutaminase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721942, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443101, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 91443100, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3689162, - "label": "small conductance mechanosensitive channel MscS", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689163, - "label": "ornithine decarboxylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721935, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689167, - "label": "FMN reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721920, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689153, - "label": "shikimate dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721923, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689156, - "label": "phosphoenolpyruvate carboxykinase (ATP)", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721925, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689158, - "label": "dTMP kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689272, - "label": "threonine deaminase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689276, - "label": "acyl-CoA dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722044, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689277, - "label": "4-aminobutyrate aminotransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689278, - "label": "fumarate reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722046, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689264, - "label": "transport of adenosine", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722032, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689265, - "label": "transport of phosphate", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722033, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722035, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689270, - "label": "glycine decarboxylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689271, - "label": "thiosulfate sulfurtransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722025, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722028, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722029, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722030, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689248, - "label": "glutathione peroxidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722017, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689249, - "label": "N-acetylornithine aminotransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689250, - "label": "UTP reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722019, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722020, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722021, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689254, - "label": "glutamate dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689242, - "label": "aminodeoxychorismate lyase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689232, - "label": "sugar exporter SetB", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689234, - "label": "2-amino-3-ketobutyrate CoA ligase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722003, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722005, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722006, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689239, - "label": "glutamine synthetase deadenylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722007, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721993, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689226, - "label": "amylomaltase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442752, - "label": "CcmABCD release complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3721996, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721999, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689231, - "label": "dihydropteroate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689216, - "label": "lysine:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689218, - "label": "asparaginase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721987, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721989, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3721990, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689223, - "label": "homoserine dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3721991, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722104, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722105, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722107, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689339, - "label": "ornithine carbamoyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722108, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722109, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689342, - "label": "glucose 1-phosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689343, - "label": "UDP-2,3-diacylglucosamine diphosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722096, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689329, - "label": "carbonic anhydrase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689331, - "label": "salicin 6-phosphate glucohydrolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442751, - "label": "holocytochrome c synthase complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 91442750, - "label": "ArcA-Pasp54-phosphate", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3689334, - "label": "dTDP-glucose pyrophosphorylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91442749, - "label": "iron-catecholate outer membrane transport complex II", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3722089, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689322, - "label": "Fe2+:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722091, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722092, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689324, - "label": "diffusion of glycerol", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689326, - "label": "6-phospho-β-D-glucosyl-(1-4)-D-glucose glucohydrolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722082, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689314, - "label": "(S)-2-hydroxybutanoate transporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722083, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689315, - "label": "methionine aminopeptidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689317, - "label": "L-valine exporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722087, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689304, - "label": "pyrroline-5-carboxylate reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722072, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722074, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722076, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722077, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689309, - "label": "alanine racemase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722079, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689311, - "label": "ferrochelatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722064, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689298, - "label": "4-nitrophenyl phosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722068, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689300, - "label": "transport of a disaccharide", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722069, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689290, - "label": "FMN phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722059, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722060, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689294, - "label": "methionine sulfoxide reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689295, - "label": "ABC complex for formation and release of holoCcmE", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722048, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722049, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689282, - "label": "2'-deoxycytidine 3'-monophosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689283, - "label": "succinate:malate antiport", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722054, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722055, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722168, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689400, - "label": "holo-[acyl-carrier-protein] synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722169, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689403, - "label": "D-aminopropanol dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722173, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689405, - "label": "sorbitol-6-phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689392, - "label": "indole-3-glycerol phosphate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722161, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689393, - "label": "L-tyrosine:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689394, - "label": "NADPH-dependent curcumin reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689395, - "label": "aspartate-semialdehyde dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689398, - "label": "2-oxoglutaramate amidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722167, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689384, - "label": "KDO transferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722154, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722156, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689377, - "label": "tyrosine aminotransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689379, - "label": "protein-glutamine glutaminase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689383, - "label": "alanyl aminopeptidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689368, - "label": "malate synthase G", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689369, - "label": "UDP-N-acetylenolpyruvoylglucosamine reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722138, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689372, - "label": "magnesium hydrogenphosphate:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722141, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689375, - "label": "protease", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722129, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722133, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689354, - "label": "glycolate transporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722123, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689355, - "label": "D-ribulokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722124, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722126, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689358, - "label": "nalidixate efflux pump", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722112, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722115, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722116, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722117, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722118, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689351, - "label": "deoxycholate efflux pump", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722119, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442865, - "label": "putative ABC transporter periplasmic binding protein YhdW", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3689466, - "label": "L-serine:tRNASer ligase (AMP-forming)", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722234, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689467, - "label": "AMP phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689468, - "label": "N-acetyl-β-neuraminate:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722237, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689470, - "label": "leader peptidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689471, - "label": "alanylglutamate dipeptidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689456, - "label": "L-fuculose-phosphate aldolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722225, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722226, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689459, - "label": "3-methyl-2-oxobutanoate hydroxymethyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689460, - "label": "2'-deoxyadenosine 3'-monophosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722230, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722231, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689448, - "label": "phosphoribosylglycinamide formyltransferase 2", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722216, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722218, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689451, - "label": "6-phosphogluconolactonase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722220, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689454, - "label": "acyl-CoA dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689440, - "label": "D-glucarate dehydratase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722208, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722209, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689442, - "label": "glycolate transporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722210, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442862, - "label": "putative DNA-binding transcriptional regulator YkgA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3722213, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689447, - "label": "RNase BN ribonuclease", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689432, - "label": "glutamate—cysteine ligase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722201, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689434, - "label": "proline:Na+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722203, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689436, - "label": "ferroxidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722205, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689439, - "label": "ADP-sugar diphosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689424, - "label": "glycolate dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689425, - "label": "uracil:H+ symporter UraA", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689426, - "label": "cyclic di-GMP phosphodiesterase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689427, - "label": "acetyl-CoA carboxyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722195, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689430, - "label": "D-glyceraldehyde 3-phosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722186, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689419, - "label": "acyl-CoA dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722189, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722191, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722176, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689408, - "label": "dihydroneopterin triphosphate diphosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722178, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722180, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689413, - "label": "protein deglycase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722181, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689414, - "label": "thiosulfate sulfurtransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722183, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689415, - "label": "S-formylglutathione hydrolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441523, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689528, - "label": "L-leucine:H+ antiport", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689529, - "label": "cardiolipin synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441522, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441521, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441520, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722299, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722300, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441527, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441526, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441525, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689534, - "label": "D-arabinose 5-phosphate isomerase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441524, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689520, - "label": "dihydroorotate dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441531, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441530, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689521, - "label": "pyridoxine kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441529, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689522, - "label": "2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441528, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722291, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441535, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722293, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441534, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689525, - "label": "N-acetylmannosamine kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441533, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441532, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441507, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441506, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441504, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722283, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441510, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722286, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441509, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722287, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441515, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722273, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689505, - "label": "2-deoxy-D-glucose PTS permease", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441513, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441512, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722275, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689508, - "label": "transport of ferrichrome", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441519, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441518, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689509, - "label": "cadaverine aminotransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441517, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689510, - "label": "arbutin 6-phosphate glucohydrolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441516, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722264, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689497, - "label": "phosphatidylserine synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722266, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722267, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722270, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689488, - "label": "protein-phosphoaspartate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441498, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689489, - "label": "NADH:menaquinone oxidoreductase (H+-transporting)", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722258, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689491, - "label": "amylomaltase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722259, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441503, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722260, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722261, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689493, - "label": "2-phosphoglycerate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441502, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441500, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689495, - "label": "α-L-fucosyl-(1->3)-β-D-glucopyranosyl-diphosphoundecaprenol O-acetyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722249, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722250, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689483, - "label": "pyridine nucleotide transhydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689486, - "label": "oleoyl-CoA synthetase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722254, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722255, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722240, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722241, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689473, - "label": "ATP-dependent Clp protease", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722242, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722244, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689477, - "label": "phosphoryl-ethanolamine phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689479, - "label": "transport of a nucleotide sugar", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722360, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722361, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689595, - "label": "transport of arbutin", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722365, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722366, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689598, - "label": "deoxycholate : H+ antiporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722367, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722352, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722353, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722354, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689587, - "label": "guanylate kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689588, - "label": "K+ transporting ATPase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722344, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722348, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689580, - "label": "L-asparagine transporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722349, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722337, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689571, - "label": "isocitrate dehydrogenase phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722339, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722343, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689560, - "label": "ferric dihyroxybenzoylserine outer membrane transporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689561, - "label": "2-acyl-lysophospholipase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722330, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722331, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689564, - "label": "tyrosine:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689566, - "label": "biotin carboxylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722320, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722321, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722322, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689555, - "label": "leucine aminotransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722323, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689557, - "label": "transport of deoxyinosine", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722325, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722326, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722312, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689545, - "label": "decanoate efflux pump", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722314, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689546, - "label": "kynurenine-oxoglutarate transaminase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689547, - "label": "malate dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722315, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722316, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689548, - "label": "UDP-N-acetyl-D-mannosamine dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689550, - "label": "citrate lyase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722318, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722304, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689537, - "label": "gentamicin efflux pump", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722307, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689539, - "label": "isochorismate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689540, - "label": "valine—pyruvate aminotransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722308, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722309, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722310, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689542, - "label": "cytochrome bd-I ubiquinol oxidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689656, - "label": "aspartate 1-decarboxylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441650, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722425, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441649, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441648, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441655, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441654, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689662, - "label": "fatty acyl-CoA synthetase (transporting)", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441653, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689663, - "label": "fructose-1,6-bisphosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441652, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441659, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689649, - "label": "serine protease", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441658, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441657, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722418, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722419, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441663, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441662, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722421, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441661, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689655, - "label": "transport of a lactone", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441635, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722409, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441634, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689642, - "label": "fructose-1,6-bisphosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441633, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441632, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689643, - "label": "transport of a dipeptide", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689644, - "label": "S-adenosylmethionine decarboxylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441639, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722412, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441638, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689645, - "label": "2'AMP phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441637, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689646, - "label": "2'CMP phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441636, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441643, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441642, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722401, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441641, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441640, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689635, - "label": "selenate reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441647, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689636, - "label": "succinate:quinone oxidoreductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441646, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722405, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689638, - "label": "diphosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689639, - "label": "Kdo2-lipid A phosphoethanolamine 7''-transferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441644, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441619, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689625, - "label": "c-di-GMP phosphodiesterase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441617, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441616, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689628, - "label": "thiamine phosphate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722396, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441623, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722397, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441621, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689630, - "label": "transport and phosphorylation of D-mannitol", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441620, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722384, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441627, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689617, - "label": "ADP-L-glycero-D-mannoheptose 6-epimerase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441626, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441625, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722387, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689619, - "label": "guanosine 3'-diphosphate 5'-triphosphate 3'-diphosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441624, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441631, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689620, - "label": "transport of arabinose", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722389, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441630, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689621, - "label": "transport of arabinose", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441629, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441628, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722391, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689608, - "label": "palmitoleoyl-CoA synthetase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722376, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441602, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689610, - "label": "glutamine synthetase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441601, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441600, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441607, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689612, - "label": "phosphate:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722381, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441606, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689613, - "label": "Zn2+ ABC transporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441605, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441604, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689615, - "label": "hypoxanthine hydroxylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441611, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689601, - "label": "5' to 3' exonuclease", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441610, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441609, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689603, - "label": "branched chain amino acid transporter BrnQ", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722371, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441614, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689605, - "label": "acetohydroxybutanoate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722373, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441613, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689606, - "label": "transport of D-sorbitol", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722375, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722488, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441587, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689720, - "label": "methylmalonyl-CoA decarboxylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441586, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722489, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689721, - "label": "novobiocin efflux pump", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441585, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689723, - "label": "malate synthase A", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441584, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689724, - "label": "UDP-3-O-(3-hydroxymyristoyl)glucosamine N-acyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441591, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722493, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441590, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689726, - "label": "chorismate mutase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441589, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722495, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441588, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722480, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689712, - "label": "acetyl-CoA C-acyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441595, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441594, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722482, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441593, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722483, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441592, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689715, - "label": "protein-glutamate methylesterase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441599, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441598, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689717, - "label": "oxaloacetate keto-enol-isomerase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722486, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441597, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689718, - "label": "2',3'-cyclic nucleotide 2'-phosphodiesterase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441596, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441571, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441570, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689705, - "label": "thiosulfate sulfurtransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441569, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722474, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689706, - "label": "erthromycin efflux pump", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441568, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689708, - "label": "acetaldehyde dehydrogenase (acetylating)", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441575, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722477, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441574, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689709, - "label": "cysteinylglycine dipeptidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689710, - "label": "D-alanine—D-alanine ligase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441573, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441572, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689711, - "label": "transport of an amino acid", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722479, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689696, - "label": "dihydrofolate synthetase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441579, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441578, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441577, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441576, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689699, - "label": "protein phosphoaspartate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441583, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441582, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441581, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722470, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441580, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441555, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689688, - "label": "diffusion of glycine", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441554, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689689, - "label": "protein disulfide isomerase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441553, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689691, - "label": "malate:quinone oxidoreductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441552, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722460, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441559, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441558, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722461, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441557, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689695, - "label": "chitin disaccharide deacetylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689680, - "label": "glucose-6-phosphate isomerase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722448, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441563, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441561, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689682, - "label": "D-glucopyranose PTS permease", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441560, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722451, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441567, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441565, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722455, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441564, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441539, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441538, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441537, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689674, - "label": "adenosine 2'3'-cyclic phosphodiesterase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441543, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441542, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689678, - "label": "3'-phosphomonoesterase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722446, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441540, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689664, - "label": "amylomaltase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441547, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722434, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441545, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441544, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722435, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441550, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689669, - "label": "L-galactose:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441549, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722438, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689671, - "label": "protein-histidine autokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91441548, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3689785, - "label": "transport of a tripeptide", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722553, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689786, - "label": "peptidyl-dipeptidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722556, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689789, - "label": "acetyl-CoA C-acyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689790, - "label": "diguanylate cyclase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722559, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722544, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689778, - "label": "acyl-CoA:sn-glycerol-3-phosphate 1-O-acyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722548, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689780, - "label": "CMP phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722549, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722550, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689783, - "label": "acetolactate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722538, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722541, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722543, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722529, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689762, - "label": "guanosine kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722531, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689765, - "label": "adenylosuccinate synthetase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722535, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722520, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722522, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722524, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689757, - "label": "α-galactosidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722527, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689747, - "label": "catalase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722516, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722517, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689750, - "label": "argininosuccinate lyase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722519, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722504, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689736, - "label": "long-chain fatty acid outer membrane porin; bacteriophage T2 binding", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722506, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689739, - "label": "isocitrate dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722508, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689741, - "label": "transketolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689742, - "label": "betaine aldehyde dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722497, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689730, - "label": "D-cycloserine:proton symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689731, - "label": "lauroyl acyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722499, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722500, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722501, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689848, - "label": "pyruvate formate-lyase deactivase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722616, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689849, - "label": "L-threonine O-3-phosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722618, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689850, - "label": "cysteinylglycine dipeptidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722619, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722620, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689852, - "label": "N-acetyl-D-glucosamine PTS permease", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722621, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722622, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689855, - "label": "nitrate reductase (cytochrome)", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722608, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722610, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722612, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689844, - "label": "apurinic/apyrimidinic endonuclease", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722613, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722614, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689847, - "label": "enolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722600, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689832, - "label": "Transport of L-Ala-D-Glu-meso-A2pm", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722601, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722604, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689836, - "label": "uridine 2'3'-cyclic phosphodiesterase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722606, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689839, - "label": "deoxyribonucleoside 5'-monophosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722607, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722592, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689825, - "label": "galactokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689826, - "label": "glucosamine 6-phosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722594, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722595, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689829, - "label": "tetrahydrodipicolinate succinylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722598, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722599, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689831, - "label": "phosphoglycerate mutase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689816, - "label": "amylomaltase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722585, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689818, - "label": "ATP-dependent lipopolysaccharide flippase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689820, - "label": "prephenate dehydratase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722591, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722581, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689814, - "label": "dihydroxyacetone kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689801, - "label": "hypoxanthine transport", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722571, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722572, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689806, - "label": "putrescine aminotransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689807, - "label": "heptose 7-phosphate kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722561, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689794, - "label": "adenosine 3' nucleotidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722563, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722565, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689798, - "label": "transport of an amine", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722567, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689799, - "label": "transport of L-arginine", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722680, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722682, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722684, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722685, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722686, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722687, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722673, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722676, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722677, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722679, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722666, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722667, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722668, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722670, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722656, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722659, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722661, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722663, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722648, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722649, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722650, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722653, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441364, - "label": "sulfo-bis(guanylyl molybdopterin) cofactor", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3722645, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722646, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722632, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689864, - "label": "diffusion of glyceraldehyde", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722633, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722634, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689866, - "label": "nicotinate-nucleotide—dimethylbenzimidazole phosphoribosyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722636, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722624, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689856, - "label": "transport of cob(I)alamin", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722627, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3689861, - "label": "ribonucleoside triphosphate reductase activase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689862, - "label": "phosphopantothenoylcysteine synthetase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3689863, - "label": "dCMP phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3722744, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441331, - "label": "a [hydroxymethylbilane synthase] ES4 intermediate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 91441330, - "label": "a [elongation-Factor-EF-P]-N6-(β-lysyl)-L-lysine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 91441329, - "label": "a holo-[hydroxymethylbilane synthase]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 91441328, - "label": "a [bis(guanylyl molybdopterin) cofactor chaperone]-S-sulfanyl-L-cysteine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3722748, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441335, - "label": "a reduced unknown one electron carrier", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3722749, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441334, - "label": "a [hydroxymethylbilane synthase] ES3 intermediate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 91441333, - "label": "a [hydroxymethylbilane synthase] ES2 intermediate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3722751, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441332, - "label": "a holo [hydroxymethylbilane synthase] ES intermediate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3722736, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722737, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722738, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441336, - "label": "an apo-[c-type cytochrome] with a dislufide bridge", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3722740, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441341, - "label": "a [bis(guanylyl molybdopterin) cofactor chaperone]-L-cysteine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3722743, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441315, - "label": "an electron-transfer semiquinone", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 91441314, - "label": "a CcmG protein with an internal disulfide bridge", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3722729, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441313, - "label": "a CcmG protein with reduced cysteine residues", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3722730, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722731, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722734, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722721, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441326, - "label": "an oxidized DsbC protein", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 91441325, - "label": "a reduced DsbC protein", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3722726, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441324, - "label": "a reduced DsbG protein", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 91441299, - "label": "a CcmE-[c-type cytochrome--CcmH disulfide] complex", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3722713, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722716, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722718, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441301, - "label": "a CcmABCD complex", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 91441300, - "label": "a CcmH-CcmG disulfide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 91441307, - "label": "an oxidized DsbG protein", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3722705, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441311, - "label": "a CcmH protein with reduced cysteine residues", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 91441310, - "label": "a heme(III)-bound CcmE protein", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 91441308, - "label": "a heme(III)-bound CcmCDE complex", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 91441282, - "label": "cob(I)alamin-[methionine synthase]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3722698, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722699, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722701, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722702, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722703, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441290, - "label": "a c-type cytochrome biogenesis protein CcmE", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3722689, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722693, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441293, - "label": "a [bis(guanylyl molybdopterin) cofactor chaperone]-bis(guanylyl molybdopterin) cofactor", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3722694, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442035, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722809, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442034, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442032, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442038, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442037, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722814, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442036, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442043, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442042, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442041, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722802, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442040, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442047, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722804, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722805, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442046, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442044, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722792, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442019, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442017, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442016, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442023, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722797, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442022, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442021, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722799, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442020, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442027, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442025, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442024, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442031, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442030, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722790, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442029, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442028, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442003, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722777, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442002, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722778, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442001, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442000, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442007, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442006, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722782, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442005, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442004, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442011, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442010, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442009, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722771, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442008, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442015, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722772, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442014, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442013, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442012, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441987, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722760, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722761, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441986, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441985, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441984, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441991, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441990, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441989, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441988, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722767, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722752, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441995, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441994, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441993, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441992, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441999, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441998, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441997, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722759, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441996, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441971, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441970, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441969, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722875, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722876, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441975, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722877, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441974, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441972, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441979, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722865, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441978, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441977, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441976, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441983, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441982, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722869, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441980, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722856, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441953, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722859, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441952, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441959, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441958, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722861, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722862, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441957, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441956, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441963, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441961, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441960, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722851, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441967, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441966, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441965, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722854, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441964, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441939, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722840, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441938, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441937, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722842, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441936, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441943, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722844, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441942, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722845, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722846, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722833, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441946, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441945, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441944, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441951, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722837, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441950, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722838, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441949, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722839, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441923, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441922, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441920, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441927, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441926, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441925, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441924, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722831, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722816, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441931, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441930, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722817, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722818, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441929, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722820, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441935, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722822, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441933, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441932, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442163, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442162, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722937, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722938, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442160, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442167, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722940, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442166, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722942, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442165, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722943, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442171, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442170, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442169, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722930, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442175, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722932, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722933, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442174, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442173, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722934, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442172, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442147, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442146, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722922, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442144, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442151, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442149, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442148, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722927, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442154, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722914, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442153, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442152, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722916, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442159, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722917, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442157, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722918, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442156, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442131, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722904, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442130, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442129, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442128, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442135, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442134, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442133, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442132, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442139, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442138, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722898, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442137, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722899, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442136, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442143, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722900, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442142, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442141, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442140, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722903, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442115, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722888, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442114, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442113, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442112, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442119, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722893, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442118, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442117, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722894, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442116, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722880, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442123, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442122, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442121, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442120, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722884, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442127, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442126, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722885, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442125, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442124, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722887, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442099, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723001, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442098, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723002, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442096, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723003, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723004, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442102, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723006, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442101, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442100, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442107, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722993, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442106, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442105, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442104, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442111, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442110, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722997, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442109, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442083, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722984, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722985, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442082, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442081, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442080, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442087, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722990, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442085, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442084, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442091, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722976, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722977, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442090, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442089, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442088, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722980, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442095, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722981, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442094, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442093, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442067, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722968, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442066, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442065, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442064, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722972, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442071, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442070, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442069, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442068, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442075, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722960, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442074, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722962, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442073, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442072, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722963, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722964, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442078, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722965, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722966, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442077, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442076, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722967, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442051, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442050, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442049, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442048, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442055, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442054, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442053, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722959, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442059, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722945, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442058, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722946, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442057, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442056, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722948, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442063, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442062, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91442061, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722951, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442060, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441779, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723066, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441777, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441776, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723068, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441783, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441782, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441781, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441780, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723056, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441787, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441786, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441785, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441784, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441791, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723060, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441790, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441789, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723063, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441788, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441762, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441761, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723051, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441760, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441767, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441766, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441765, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441764, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441771, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723041, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441770, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441769, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441775, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723046, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441773, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441772, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723032, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441747, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441746, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441745, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441744, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441751, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723036, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441750, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441749, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441748, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723039, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441755, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723024, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723025, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441754, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723026, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723027, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441752, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441759, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723028, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441757, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441756, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723031, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441731, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441730, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441729, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441728, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441735, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441734, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723022, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441733, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441739, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723009, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441738, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441737, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723011, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441736, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441743, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441742, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723013, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441741, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441740, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441715, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441714, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723129, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441713, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723130, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441719, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723132, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441718, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723134, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441716, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441723, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441722, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723123, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441720, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441726, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441725, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723126, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441699, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441698, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441697, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723115, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441696, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441703, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723116, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441702, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441701, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441700, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441707, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723104, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441706, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441705, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441704, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723107, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723108, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441711, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441710, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723109, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441709, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441708, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441683, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723096, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441682, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441681, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723099, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441680, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441687, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441686, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441685, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441684, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723088, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441691, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441690, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441689, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441688, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441695, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441694, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441693, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723094, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441692, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723095, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723080, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441667, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441666, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723081, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441664, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441671, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723084, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441670, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441668, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441675, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441674, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441673, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441672, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723075, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441679, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441678, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441677, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441676, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441907, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441906, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441905, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441904, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441911, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441910, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441909, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441908, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441915, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3690417, - "label": "dapB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91441913, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441912, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441919, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441918, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441917, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441916, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3690423, - "label": "lysR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91441891, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441889, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441888, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441895, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441894, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441893, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3690414, - "label": "lysA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91441892, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3690415, - "label": "yafQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91441899, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441898, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441897, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723171, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441896, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441903, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441902, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441901, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441900, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441875, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441874, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723163, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441872, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441879, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441877, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441876, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723167, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723152, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441883, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441882, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441881, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441880, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441887, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441886, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723158, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441885, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441859, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441858, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441857, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441856, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723147, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441862, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441861, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441860, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723151, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441867, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723136, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441866, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441865, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441864, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723140, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91441871, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441870, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441869, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723142, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723143, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690488, - "label": "pyrL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91441843, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441842, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441840, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441847, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441846, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441845, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3690494, - "label": "pyrI", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91441844, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441851, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441850, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441849, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441848, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441855, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441854, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441853, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441852, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441826, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3690473, - "label": "yfiL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91441825, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441824, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441830, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441829, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441828, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441835, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441833, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441832, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441839, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441838, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3690470, - "label": "purM", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91441836, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441811, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441810, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441809, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441808, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441815, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441814, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3690462, - "label": "purT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91441813, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441812, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441819, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441818, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441817, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441823, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441821, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441820, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441795, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441794, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441793, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3690442, - "label": "metE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91441792, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441799, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3690444, - "label": "metR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91441798, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441797, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3690446, - "label": "bisC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91441796, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441803, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441802, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441801, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441800, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3690436, - "label": "metH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91441807, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441806, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441805, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91441804, - "label": "Unknown Display Name", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91444594, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444593, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444599, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444597, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690558, - "label": "ispD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444596, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444603, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444602, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444601, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690548, - "label": "ubiU", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444606, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444605, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444579, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444578, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444576, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444583, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444582, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444581, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444587, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444586, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444585, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444591, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444590, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444589, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444588, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444563, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690520, - "label": "ynfK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444561, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444560, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444566, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690525, - "label": "yabQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444565, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444564, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444570, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444568, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444575, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690517, - "label": "yjgH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444573, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444572, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444547, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444546, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444545, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444551, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690508, - "label": "pyrB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444550, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444549, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444548, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444553, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444558, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690502, - "label": "gmk", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444556, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444531, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690618, - "label": "cobT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444528, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444535, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444534, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690621, - "label": "ybfC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444533, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444539, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444538, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444537, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444536, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444543, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690613, - "label": "ygcO", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444541, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690614, - "label": "cobU", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444540, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690600, - "label": "hemB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444514, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444513, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690602, - "label": "hemH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444512, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444517, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690606, - "label": "ccmA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444516, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444523, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444522, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444521, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444520, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444527, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444526, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444525, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444524, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690599, - "label": "ybjP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444499, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690584, - "label": "hemN", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444498, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444497, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444496, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444502, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444501, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444500, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690591, - "label": "ppdC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444505, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444504, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444510, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444509, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444508, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444480, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690571, - "label": "ybbC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444487, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444486, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444485, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690575, - "label": "yeiQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444484, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690560, - "label": "ubiT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444491, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444490, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444489, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444488, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690565, - "label": "yhdV", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444493, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444722, - "label": "rpoE-rseABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 91444721, - "label": "rrsA-ileT-alaT-rrlA-rrfA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3690682, - "label": "moeA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444720, - "label": "adhE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3690683, - "label": "yecD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444726, - "label": "dinB-yafNOP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 91444725, - "label": "gadBC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3690687, - "label": "yciZ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444724, - "label": "eptB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 91444731, - "label": "aceEF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 91444730, - "label": "eno", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 91444735, - "label": "pqiABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 91444734, - "label": "rrsB-gltT-rrlB-rrfB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 91444733, - "label": "csgBAC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3690664, - "label": "lipA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3690667, - "label": "ygcE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3690668, - "label": "mobA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444710, - "label": "osmY", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3690670, - "label": "modA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444709, - "label": "appCBA-yccB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 91444715, - "label": "eno", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 91444714, - "label": "hdeAB-yhiD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 91444713, - "label": "poxB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 91444712, - "label": "csgDEFG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 91444719, - "label": "csiE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 91444717, - "label": "ssrS-ygfA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 91444716, - "label": "rrsD-ileU-alaU-rrlD-rrfD-thrV-rrfF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 91444691, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444690, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444689, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690651, - "label": "yaiY", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444688, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690644, - "label": "pabB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3690646, - "label": "folE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444675, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444674, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444673, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444672, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444679, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444678, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690638, - "label": "pabC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444677, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444676, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444683, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444682, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444681, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444687, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444686, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444685, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444659, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444663, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444662, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444661, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444660, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444667, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444666, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690738, - "label": "pncB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444665, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444664, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444671, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444641, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444640, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690732, - "label": "nadC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444645, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690734, - "label": "rfbB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444644, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690735, - "label": "ygiM", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444651, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444650, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444648, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444655, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444653, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690726, - "label": "nadD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444652, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444627, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444626, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444624, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690717, - "label": "yfgG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444629, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444628, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444635, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444633, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444632, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444639, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444638, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444637, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444636, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444611, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444609, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444615, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444614, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444613, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444612, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444618, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444617, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444623, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444621, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690694, - "label": "panD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444339, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444337, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444336, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444343, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444341, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690814, - "label": "cfa", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3690815, - "label": "ynjF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444347, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444346, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444345, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444351, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444349, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444348, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690807, - "label": "ybhQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3690792, - "label": "ribE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444323, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444322, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444321, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444326, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444325, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444324, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444330, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444329, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444335, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444334, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690789, - "label": "yibT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444307, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444306, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444305, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444304, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690779, - "label": "yjfZ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444310, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690781, - "label": "cbrB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444308, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444315, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690769, - "label": "csiE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444314, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690771, - "label": "yqeF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444312, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444318, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444317, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444316, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690775, - "label": "yhcD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444291, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444290, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444289, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444288, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444294, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444292, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444298, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444297, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690754, - "label": "thiC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444296, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444302, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690758, - "label": "thiL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444300, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444274, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444273, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444272, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444279, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444277, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444276, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444283, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444282, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444281, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444280, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444286, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444259, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444258, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444257, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444256, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444263, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444262, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444261, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444260, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690863, - "label": "ydcK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444266, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444265, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690851, - "label": "yfiB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444264, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444271, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444270, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444268, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444242, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444241, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444240, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444247, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444246, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444244, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444251, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444250, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444249, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444248, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444255, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444254, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444253, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444252, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444226, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444224, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444231, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444230, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444229, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444235, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444234, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444233, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444232, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444239, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690820, - "label": "glpF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444238, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444237, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444236, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444467, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444466, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444464, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444468, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444475, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444474, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444473, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444472, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444479, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444478, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690933, - "label": "yzgL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444477, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444451, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444450, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444449, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444448, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444455, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444454, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444452, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444459, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444457, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444456, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444463, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444462, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444461, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444460, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444435, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690904, - "label": "fliD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444432, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444439, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444438, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444437, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444436, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444443, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444442, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444440, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444447, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690900, - "label": "fliC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444445, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444444, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444419, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444418, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444416, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444423, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444422, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690893, - "label": "yecF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444427, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444426, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690881, - "label": "ybfA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444425, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690883, - "label": "yjiC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444424, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444430, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444429, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444428, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691000, - "label": "3-deoxy-7-phosphoheptulonate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444403, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691002, - "label": "GTP reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444401, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444400, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691005, - "label": "protein histidine autokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723774, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444405, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723775, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691007, - "label": "transport of a tripeptide", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723760, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690992, - "label": "deoxycholate efflux pump", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444410, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444409, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723763, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444408, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444415, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444414, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723766, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444413, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444412, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723752, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444387, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444386, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444385, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723754, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444384, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444391, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723757, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690989, - "label": "topoisomerase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444390, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723758, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444388, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723744, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690976, - "label": "peptidyl-prolyl cis-trans isomerase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723746, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444393, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690978, - "label": "quinol:hydrogen peroxide oxidoreductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444392, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723747, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723748, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444399, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444398, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723749, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690981, - "label": "guanosine-3',5'-bis(diphosphate) 3'-diphosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444397, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723750, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444396, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444371, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690969, - "label": "guanosine 3' nucleotidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444369, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444368, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690972, - "label": "4-hydroxy-tetrahydrodipicolinate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444375, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723740, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444374, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690973, - "label": "transport of a hydroxy carboxylate", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444373, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444372, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690975, - "label": "23S rRNA 2'-O-ribose U2552 methyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723743, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444379, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723728, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690962, - "label": "glutaminase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723731, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690963, - "label": "protein-histidine autokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723732, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444383, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723733, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723734, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444380, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723735, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444355, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444354, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723721, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690954, - "label": "ccmH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3723723, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690955, - "label": "dedA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444359, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444358, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723725, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444357, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444356, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723727, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3690944, - "label": "ccmB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 91444362, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444361, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444360, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444366, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444364, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691064, - "label": "aspartate carbamoyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723832, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691066, - "label": "L-arginine exporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723835, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691068, - "label": "coproporphyrinogen III oxidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723838, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723839, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723824, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723825, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723826, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691060, - "label": "L-serine:H+ symporter SdaC", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723830, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691054, - "label": "D-alanyl-D-alanine carboxypeptidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723822, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691055, - "label": "2,4-dienoyl-CoA reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691040, - "label": "β-alanine:proton symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691041, - "label": "D-lactate dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691042, - "label": "lactaldehyde dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723811, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691044, - "label": "trehalase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723813, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691045, - "label": "glutaminase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723815, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723800, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723801, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723802, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723804, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723806, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691026, - "label": "L-xylulose kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691028, - "label": "UDP-N-acetylglucosamine 2-epimerase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723798, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691016, - "label": "CTP synthetase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723784, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723785, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691020, - "label": "L-cysteine desulfhydrase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723789, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691023, - "label": "pyruvate formate-lyase activating enzyme", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723778, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691010, - "label": "protein-glutamate methylesterase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723779, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691011, - "label": "guanosine 2'3'-cyclic phosphodiesterase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691012, - "label": "uridine kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723781, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691013, - "label": "molybdopterin molybdotransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723782, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723783, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723897, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691129, - "label": "isoaspartyl dipeptide hydrolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691132, - "label": "transport of L-phenylalanine", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691134, - "label": "quercetin 2,3-dioxygenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691120, - "label": "glyoxalase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723889, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691121, - "label": "carbonylcyanide m-chlorophenylhydrazone:H+ antiporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723893, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691112, - "label": "thiosulfate-sulfurtransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691113, - "label": "transport of glycine betaine", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691114, - "label": "oligopeptide ABC transporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691118, - "label": "succinate semialdehyde dehydrogenase (NAD+)", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723887, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723873, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691106, - "label": "D-fructofuranose PTS permease", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691110, - "label": "adenylate kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723878, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723879, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691111, - "label": "UDP-3-O-acyl-N-acetylglucosamine deacetylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691097, - "label": "multidrug efflux pump", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723866, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691099, - "label": "crotonobetainyl-CoA reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723868, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723869, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691102, - "label": "heme d synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691103, - "label": "β-keto ester reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691090, - "label": "homoserine:H+ antiport", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723860, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691093, - "label": "mannose-6-phosphate isomerase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691095, - "label": "[protein-PII] uridylyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691080, - "label": "arginine decarboxylase, degradative", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691082, - "label": "PII-UMP deuridylylation", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691083, - "label": "3-deoxy-7-phosphoheptulonate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723852, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691085, - "label": "transport of a sugar alcohol", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723854, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691072, - "label": "2-deoxyglucose-6-phosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723842, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723844, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691076, - "label": "macrolide antibiotic efflux pump", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723846, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691195, - "label": "adenine phosphoribosyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723964, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723965, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723967, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691186, - "label": "pyruvate formate-lyase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723954, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691189, - "label": "GTP cyclohydrolase I", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691190, - "label": "O-phospho-L-tyrosine phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723958, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691191, - "label": "D-mannose PTS permease", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691176, - "label": "quinol—cytochrome-c reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723944, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723945, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723946, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723947, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691179, - "label": "galactose-1-epimerase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723950, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723951, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691168, - "label": "N-acetyl-D-mannosamine PTS permease", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691170, - "label": "thymidine phosphorylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691172, - "label": "transport of L-isoleucine", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691173, - "label": "histidine—tRNA ligase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691174, - "label": "transport of a dipeptide", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691175, - "label": "Mn2+:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723930, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691163, - "label": "arginine decarboxylase, biosynthetic", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723931, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691164, - "label": "methylglyoxal reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691166, - "label": "GDP pyrophosphokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723934, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723922, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691154, - "label": "transport of thymidine", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691155, - "label": "2-isopropylmalate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691158, - "label": "hypoxanthine transport", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723927, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691145, - "label": "putative inorganic phosphate export protein", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691146, - "label": "acetyl-CoA C-acyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691147, - "label": "aspartate kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691148, - "label": "ribosome-dependent mRNA interferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691136, - "label": "glycerol-3-phosphate dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723904, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723905, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691140, - "label": "acetolactate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723909, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691141, - "label": "inosine kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691142, - "label": "uracil:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723910, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723911, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724024, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724026, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691258, - "label": "RNA decapping hydrolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691259, - "label": "protein-lysine deacetylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724027, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724028, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691262, - "label": "guanosine-5'-triphosphate,3'-diphosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724031, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691248, - "label": "3-phosphoserine aminotransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691249, - "label": "methylglyoxal reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724018, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724019, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724021, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691255, - "label": "thymidine kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724023, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691240, - "label": "transport of a medium chain fatty acid", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724009, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691241, - "label": "transport of D-xylose", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724010, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724001, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691235, - "label": "glucosamine-1-phosphate acetyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691236, - "label": "3-phosphoserine phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724005, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691237, - "label": "p-aminobenzoyl glutamate:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724006, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724007, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691239, - "label": "transport of deoxyuridine", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723992, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691224, - "label": "(Z)-2-methylureidoacrylate peracid amidohydrolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723993, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723994, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691226, - "label": "transport of a glycoside", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723995, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723996, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691228, - "label": "alanyl aminopeptidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723997, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723998, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691231, - "label": "acetyl-CoA C-acyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723984, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723986, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691219, - "label": "Rep helicase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691220, - "label": "ribonucleoside-triphosphate reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723989, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691222, - "label": "3'UMP phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723990, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691223, - "label": "phosphate-dependent exonuclease", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723976, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723977, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723979, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723980, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691213, - "label": "sulfate:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691214, - "label": "D-erythrose-4-phosphate dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691200, - "label": "5'-methylthioadenosine nucleosidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723968, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723972, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691206, - "label": "glucose-6-phosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3723974, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691321, - "label": "nucleoside monophosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724090, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691324, - "label": "L-cystine:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724092, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691325, - "label": "transport of a monocarboxylate", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691313, - "label": "aminopeptidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724083, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691315, - "label": "protein-histidine autokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691317, - "label": "D-alanyl-D-alanine carboxypeptidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724072, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444834, - "label": "mnmG-rsmG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3724074, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444832, - "label": "dps", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3691307, - "label": "UMP phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691308, - "label": "protein disulfide isomerase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724077, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724078, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724079, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691311, - "label": "transport of a sugar", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724065, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724066, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691298, - "label": "phospholipase A1", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724068, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724069, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691302, - "label": "nitrate:nitrite antiporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691288, - "label": "L-proline:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724056, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444819, - "label": "bolA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 91444818, - "label": "hyaABCDEF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3724058, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691290, - "label": "pyruvate kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691291, - "label": "glycerol-2-phosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444823, - "label": "asr", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 91444821, - "label": "gpmA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3724062, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444820, - "label": "gadAX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3724048, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691280, - "label": "molybdopterin synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444827, - "label": "pcnB-folK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3724049, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444826, - "label": "gor", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3691281, - "label": "RNase D exonuclease", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444825, - "label": "pgi", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3691282, - "label": "poly-3-hydroxybutyrate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444824, - "label": "pdhR-aceEF-lpdA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3691283, - "label": "folylpoly-γ-glutamate synthetase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724051, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691285, - "label": "2-ketobutyrate formate-lyase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444830, - "label": "pstS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 91444829, - "label": "galETK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3691287, - "label": "spermidine synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444803, - "label": "ftsQAZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3724040, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691272, - "label": "protein-phosphoaspartate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724041, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444801, - "label": "sgrST-setA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3691275, - "label": "nucleoside 3'-monophosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444807, - "label": "frdABCD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3691276, - "label": "phenylalanine—tRNA ligase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691277, - "label": "dihydroorotate dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444806, - "label": "hdeD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3691278, - "label": "N-acetylglucosaminyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724046, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444804, - "label": "can", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3691264, - "label": "diffusion of arsenite", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724033, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724034, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691267, - "label": "galactarate dehydratase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724036, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724037, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444813, - "label": "galETKM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3691271, - "label": "tagatose-6-phosphate kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724152, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724155, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691387, - "label": "large conductance mechanosensitive channel", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444784, - "label": "csgDEFG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3724156, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444790, - "label": "rpoE-rseABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3691390, - "label": "alanine racemase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444788, - "label": "patA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3724159, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691376, - "label": "lysine—tRNA ligase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444795, - "label": "rrsG-gltW-rrlG-rrfG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3724148, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724149, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444797, - "label": "gltBDF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3691382, - "label": "chemotaxis protein methyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444796, - "label": "ilvY", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3691369, - "label": "RNase R", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444769, - "label": "galET", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 91444775, - "label": "iraD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3724141, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691374, - "label": "Ap4A synthetase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691375, - "label": "pyruvate kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444779, - "label": "rrsE-gltV-rrlE-rrfE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3691360, - "label": "D-mannonate oxidoreductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444778, - "label": "ssrS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3724129, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444777, - "label": "metK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 91444776, - "label": "pstCAB-phoU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 91444783, - "label": "pstSCAB-phoU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 91444782, - "label": "osmB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3724133, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444781, - "label": "ynfEFGH-dmsD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3691366, - "label": "cobinamide-P guanylyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724135, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444755, - "label": "cfa", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3691352, - "label": "transport of a short-chain carboxylate", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691353, - "label": "mannose 1-phosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724122, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691354, - "label": "alkyl hydroperoxide reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444752, - "label": "micF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3724123, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444758, - "label": "lon", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3691357, - "label": "protein-histidine autokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724125, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724127, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444763, - "label": "gabDTP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 91444762, - "label": "aidB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 91444760, - "label": "rrsH-ileV-alaV-rrlH-rrfH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3691347, - "label": "polyphosphate kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444767, - "label": "mlc-ynfK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3724116, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724117, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444766, - "label": "rrsC-gltU-rrlC-rrfC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3724118, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444764, - "label": "topA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3724104, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444739, - "label": "galE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 91444738, - "label": "ompF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3724106, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444743, - "label": "araFGH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3724109, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444742, - "label": "yrbN-deaD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3691342, - "label": "deoxycholate efflux pump", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691343, - "label": "protein-histidine autokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724111, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444740, - "label": "pstSCA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3724096, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724097, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444746, - "label": "mglBAC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 91444751, - "label": "groSL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3691333, - "label": "phosphoserine phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91444748, - "label": "xapAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3724216, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724219, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691451, - "label": "cobinamide kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724221, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724212, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691445, - "label": "D-mannonate dehydratase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724213, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724214, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691446, - "label": "alanine—tRNA ligase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724200, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691435, - "label": "D-amino-acid:quinone oxidoreductase (deaminating)", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724203, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724204, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691437, - "label": "transport of an organosulfur compound", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724207, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691424, - "label": "homoserine kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724192, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691425, - "label": "allose-6-phosphate isomerase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691426, - "label": "potassium dependent, small conductance mechanosensitive channel", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691430, - "label": "acid phosphatase / phosphotransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691431, - "label": "methylglyoxal reductase (NADPH-dependent)", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691418, - "label": "formyl-CoA transferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724186, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724187, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724188, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724189, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724176, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724177, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691410, - "label": "D-alanine:proton symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691412, - "label": "L-alanine exporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724180, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724181, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691413, - "label": "c-di-GMP phosphodiesterase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724182, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691414, - "label": "aspartate kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724168, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724169, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691403, - "label": "nitrite reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691404, - "label": "muramoyl pentapeptide carboxypeptidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724174, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691406, - "label": "pyridoxal phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691407, - "label": "diaminopimelate decarboxylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691392, - "label": "L-aspartate oxidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724163, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691398, - "label": "carbamoyl phosphate synthetase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724166, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691399, - "label": "L-aspartate:fumarate antiport", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691498, - "label": "fructoselysine 6-phosphate deglycase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691499, - "label": "aspartate ammonia-lyase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691488, - "label": "glutamate racemase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691489, - "label": "D-alanyl-D-alanine carboxypeptidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691492, - "label": "L-glutamate:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691481, - "label": "phospholipase A2", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724249, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691483, - "label": "carbonic anhydrase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691487, - "label": "DNA-cytosine methyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691472, - "label": "5,10-methylenetetrahydrofolate:glycine hydroxymethyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724241, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724242, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691475, - "label": "2-oxobutanoate aminotransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724244, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691477, - "label": "2-oxoglutarate reductase ((R)-2-hydroxyglutarate-forming)", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691478, - "label": "GTP phosphohydrolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691479, - "label": "trans-2-enoyl-CoA reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724232, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724234, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691471, - "label": "β-N-acetylglucosaminidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691456, - "label": "glutathionylspermidine synthetase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691457, - "label": "norfloxacin:Na+ antiport", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3724227, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3691461, - "label": "lysine decarboxylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3691463, - "label": "UDP-N-acetylmuramoyl-L-alanine—D-glutamate ligase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 91443571, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443570, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443575, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443574, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443573, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443572, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443579, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443578, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443577, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443576, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443583, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443581, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443555, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443554, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443559, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443558, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443556, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443563, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443561, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443567, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443564, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443539, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443537, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443543, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443541, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443547, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443546, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443544, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443551, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443549, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443523, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443522, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443521, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443520, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443527, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443525, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443524, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443529, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443535, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443534, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443533, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443532, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443507, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443505, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443511, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443510, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443509, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443508, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443515, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443513, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443512, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443519, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443517, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443491, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443490, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443494, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443493, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443499, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443498, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443497, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443496, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443502, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443501, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443500, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443475, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443474, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443473, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443472, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443478, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443477, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443482, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443481, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443487, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443486, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443485, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443484, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443458, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443457, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443456, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443463, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443462, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443461, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443460, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443466, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443465, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443464, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443471, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443470, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443469, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443699, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443697, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443696, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443703, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443702, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443701, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443700, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443705, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443704, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443711, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443708, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443682, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443681, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443687, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443685, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443684, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443691, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443690, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443689, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443688, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443695, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443693, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443692, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443667, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443666, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443665, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443671, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443670, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443668, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443675, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443674, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443673, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443672, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443678, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443677, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443676, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443650, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443648, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443655, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443654, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443653, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443652, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443659, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443658, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443657, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443656, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443663, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443662, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443660, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443635, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443634, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443633, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443639, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443638, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443643, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443642, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443641, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443640, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443646, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443645, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443644, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443618, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443617, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443616, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443623, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443622, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443620, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443627, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443626, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443625, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443624, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443630, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443629, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443628, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443603, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443602, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443601, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443600, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443607, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443606, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443605, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443610, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443609, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443608, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443612, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443586, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443585, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443584, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443591, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443590, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443589, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443594, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443593, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443592, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443599, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443598, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443597, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443314, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443313, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443319, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443318, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443317, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443323, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443322, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443320, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443326, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443325, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443299, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443298, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443297, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443296, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443302, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443307, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443306, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443305, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443304, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443311, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443310, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443309, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443283, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443282, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443280, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443286, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443285, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443289, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443288, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443295, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443294, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443293, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443267, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443266, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443265, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443264, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443271, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443270, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443269, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443268, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443274, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443273, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443279, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443277, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443251, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443248, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443255, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443254, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443252, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443258, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443257, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443256, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443263, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443260, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443235, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443234, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443232, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443238, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443243, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443242, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443241, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443240, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443246, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443245, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443218, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443217, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443216, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443223, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443221, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443220, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443227, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443224, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443231, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443229, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443228, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443203, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443206, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443205, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443204, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443211, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443209, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443208, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443215, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443212, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443443, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443442, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443441, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443440, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443447, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443445, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443444, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443451, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443450, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443449, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443453, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443452, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443427, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443426, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443425, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443431, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443429, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443435, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443434, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443433, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443432, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443439, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443438, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443437, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443411, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443409, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443408, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443414, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443412, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443419, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443418, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443417, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443423, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443422, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443421, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443395, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443393, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443392, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443399, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443398, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443397, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443396, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443402, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443401, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443407, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443406, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443405, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443379, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443377, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443383, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443382, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443381, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443387, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443386, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443385, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443384, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443391, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443389, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443362, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443360, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443366, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443365, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443364, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443371, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443370, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443369, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443368, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443374, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443373, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443372, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443347, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443346, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443345, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443344, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443349, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443348, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443355, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443354, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443359, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443358, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443357, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443331, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443330, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443328, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443335, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443334, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443333, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443339, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443336, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443343, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443342, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443340, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444083, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444082, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444081, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444080, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444087, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444086, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444085, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444084, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444091, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444090, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444089, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444095, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444094, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444093, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724854, - "label": "Unknown Display Name", - "databaseLabel": "Terminator", - "value": 1, - "font": { - "color": "#e5a731" - }, - "color": { - "background": "#FFFFFF", - "border": "#e5a731", - "hover": { - "background": "#FFFFFF", - "border": "#e5a731" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e5a731" - } - } - }, - { - "id": 91444067, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444066, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444065, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444069, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444075, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724832, - "label": "Unknown Display Name", - "databaseLabel": "Terminator", - "value": 1, - "font": { - "color": "#e5a731" - }, - "color": { - "background": "#FFFFFF", - "border": "#e5a731", - "hover": { - "background": "#FFFFFF", - "border": "#e5a731" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e5a731" - } - } - }, - { - "id": 91444074, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444072, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444078, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444077, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444076, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444051, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444050, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444049, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444048, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444055, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444052, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444058, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444057, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444056, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724820, - "label": "Unknown Display Name", - "databaseLabel": "Terminator", - "value": 1, - "font": { - "color": "#e5a731" - }, - "color": { - "background": "#FFFFFF", - "border": "#e5a731", - "hover": { - "background": "#FFFFFF", - "border": "#e5a731" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e5a731" - } - } - }, - { - "id": 91444063, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444062, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444060, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444034, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444032, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444039, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444038, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444036, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444043, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444042, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444041, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444047, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444046, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444045, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444044, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444020, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444027, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444026, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444024, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444030, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444029, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444028, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724919, - "label": "Unknown Display Name", - "databaseLabel": "Terminator", - "value": 1, - "font": { - "color": "#e5a731" - }, - "color": { - "background": "#FFFFFF", - "border": "#e5a731", - "hover": { - "background": "#FFFFFF", - "border": "#e5a731" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e5a731" - } - } - }, - { - "id": 91444001, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444000, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444007, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444006, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444011, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444009, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444015, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444014, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444013, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444012, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443986, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443985, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443984, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443990, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443989, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443995, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443993, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443999, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443998, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443997, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443971, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443970, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443969, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443968, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443975, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443973, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443978, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443977, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443983, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443981, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443980, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444211, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444208, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724988, - "label": "Unknown Display Name", - "databaseLabel": "Terminator", - "value": 1, - "font": { - "color": "#e5a731" - }, - "color": { - "background": "#FFFFFF", - "border": "#e5a731", - "hover": { - "background": "#FFFFFF", - "border": "#e5a731" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e5a731" - } - } - }, - { - "id": 91444215, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444214, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444213, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444218, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444216, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444223, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724980, - "label": "Unknown Display Name", - "databaseLabel": "Terminator", - "value": 1, - "font": { - "color": "#e5a731" - }, - "color": { - "background": "#FFFFFF", - "border": "#e5a731", - "hover": { - "background": "#FFFFFF", - "border": "#e5a731" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e5a731" - } - } - }, - { - "id": 91444222, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444221, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444195, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444194, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444192, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444199, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444198, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444197, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444203, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444201, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444207, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444206, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444205, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444204, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444179, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444176, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444183, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724957, - "label": "Unknown Display Name", - "databaseLabel": "Terminator", - "value": 1, - "font": { - "color": "#e5a731" - }, - "color": { - "background": "#FFFFFF", - "border": "#e5a731", - "hover": { - "background": "#FFFFFF", - "border": "#e5a731" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e5a731" - } - } - }, - { - "id": 91444181, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724958, - "label": "Unknown Display Name", - "databaseLabel": "Terminator", - "value": 1, - "font": { - "color": "#e5a731" - }, - "color": { - "background": "#FFFFFF", - "border": "#e5a731", - "hover": { - "background": "#FFFFFF", - "border": "#e5a731" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e5a731" - } - } - }, - { - "id": 91444180, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444186, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724945, - "label": "Unknown Display Name", - "databaseLabel": "Terminator", - "value": 1, - "font": { - "color": "#e5a731" - }, - "color": { - "background": "#FFFFFF", - "border": "#e5a731", - "hover": { - "background": "#FFFFFF", - "border": "#e5a731" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e5a731" - } - } - }, - { - "id": 91444184, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444190, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444189, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444163, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444162, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444161, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444160, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444167, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444165, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444164, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444171, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444170, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444168, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444175, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444173, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444172, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724935, - "label": "Unknown Display Name", - "databaseLabel": "Terminator", - "value": 1, - "font": { - "color": "#e5a731" - }, - "color": { - "background": "#FFFFFF", - "border": "#e5a731", - "hover": { - "background": "#FFFFFF", - "border": "#e5a731" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e5a731" - } - } - }, - { - "id": 91444147, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444146, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444144, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444150, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444148, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444154, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444152, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444159, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444156, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444130, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444129, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444128, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444134, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444132, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444139, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444138, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444136, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444142, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444140, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444114, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444113, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444119, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444118, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444116, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444123, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444122, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444121, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444127, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444126, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444124, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444098, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444097, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444096, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444103, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444102, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444100, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444106, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444105, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444104, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444111, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444110, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91444108, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443827, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443826, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443824, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443831, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443829, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443835, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443834, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443833, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443839, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443837, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443836, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443811, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443810, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443809, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443808, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443815, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443813, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443819, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443818, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443816, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443823, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443821, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443820, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443794, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443792, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443799, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443798, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443796, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443803, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443802, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443801, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443806, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443804, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443783, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443782, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443781, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443787, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443786, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443785, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443784, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443788, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443763, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443762, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443761, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443760, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443767, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443766, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443765, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443771, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443770, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443769, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443768, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443775, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443774, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443773, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443772, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443747, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443745, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443751, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443750, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443749, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443755, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443754, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443753, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443752, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443759, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443758, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443757, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443756, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443731, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443730, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443729, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443728, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443735, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443734, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443732, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443739, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443738, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443737, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443743, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443741, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443740, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443715, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443714, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443713, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443712, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443719, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443716, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443723, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443721, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443720, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443727, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443726, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443955, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443954, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443952, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443959, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443963, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443962, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443967, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443966, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443964, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443939, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443937, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443936, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443940, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443946, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443945, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443951, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443950, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443949, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443923, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443922, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443921, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443927, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443924, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443930, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443935, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443934, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443933, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443932, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443907, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443906, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443905, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443904, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443911, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443910, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443909, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443915, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443914, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443919, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443918, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443891, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443890, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443888, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443895, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443898, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443903, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443901, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443900, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443875, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443874, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443873, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443872, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443883, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443881, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443887, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443886, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443885, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443858, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443857, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443863, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443867, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443865, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443870, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443869, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443868, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443841, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443840, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443847, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443846, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443844, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443850, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443849, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443855, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443854, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443853, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91443852, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3725368, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3692600, - "label": "transport of deoxyadenosine", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692602, - "label": "transport of L-lysine", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692603, - "label": "Zn2+:H+ antiporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3725373, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3692607, - "label": "anthranilate synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3725361, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3725362, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3725364, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3692598, - "label": "L-cysteine desulfhydrase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3725367, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3725358, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3725359, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3692664, - "label": "glucose dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692668, - "label": "pyridoxine-5'-phosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692669, - "label": "acetaldehyde dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692660, - "label": "protein-methionine-S-oxide reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692663, - "label": "glutamate 5-kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692648, - "label": "sorbitol-6-phosphate 2-dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692652, - "label": "fructose-1,6-biphosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692653, - "label": "N-acetylornithine aminotransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692641, - "label": "cellulose synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692645, - "label": "ADP-heptose—LPS heptosyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692647, - "label": "glyoxylate carboligase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692632, - "label": "tagatose-1,6-bisphosphate aldolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692633, - "label": "glutathionylspermidine amidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692636, - "label": "2'-deoxyribonucleoside 5'-monophosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692638, - "label": "malate:succinate antiporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692628, - "label": "fumarase C", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692616, - "label": "threonine synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692617, - "label": "3-phenylpropionate dioxygenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692618, - "label": "transport of L-glutamine", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3725389, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3692623, - "label": "3-chloro-D-alanine dehydrochlorinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3725376, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3725377, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3692609, - "label": "methionine—tRNA ligase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3725380, - "label": "Unknown Display Name", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3692728, - "label": "glyoxalase III", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692732, - "label": "glutarate-semialdehyde dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692733, - "label": "1-phosphofructokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692735, - "label": "NADP+ phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692721, - "label": "succinate:L-aspartate antiport", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692722, - "label": "phenylalanine aminotransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692727, - "label": "flavin reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692714, - "label": "phosphosugar phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692719, - "label": "2'-deoxyribonucleoside 3'-monophosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692707, - "label": "acyl-CoA dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692708, - "label": "porphobilinogen synthase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692711, - "label": "fumarase B", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692699, - "label": "threonine dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692700, - "label": "creatine phosphate phosphoamidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692694, - "label": "amidophosphoribosyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692695, - "label": "aminomethyltransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692680, - "label": "pyruvate dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692683, - "label": "transport of cytidine", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692672, - "label": "transport of an aromatic carboxylate", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692674, - "label": "pyrophosphohydrolase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692676, - "label": "phosphoenol pyruvate:protein phosphotransferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692677, - "label": "Kdo2-lipid VIA phosphoethanolamine 7''-transferase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692792, - "label": "methylenetetrahydrofolate dehydrogenase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692795, - "label": "biotin sulfoxide reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692798, - "label": "folate polyglutamylation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692799, - "label": "tetrahydrofolate biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692786, - "label": "tRNA-specific 2-thiouridylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692787, - "label": "protein phosphoaspartate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692790, - "label": "transport of L-leucine", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692791, - "label": "pyridoxine 5'-phosphate oxidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692778, - "label": "N-acetylmuramoyl-L-alanine amidase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692782, - "label": "dCTP deaminase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692783, - "label": "(S)-2-hydroxybutanoate transporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692769, - "label": "fumarate:H+ symporter", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692760, - "label": "bacitracin efflux pump", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692752, - "label": "inorganic triphosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692754, - "label": "dimethyl sulfoxide reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692755, - "label": "transport of a trisaccharide", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692745, - "label": "autoinducer-2 kinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692750, - "label": "ornithine decarboxylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692751, - "label": "pyridoxal 5'-phosphate phosphatase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692736, - "label": "phosphoenolpyruvate carboxylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692743, - "label": "protein-methionine-S-oxide reductase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 3692856, - "label": "pentose phosphate pathway", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692857, - "label": "pentose phosphate pathway (oxidative branch) I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692859, - "label": "pentose phosphate pathway (non-oxidative branch)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692860, - "label": "TCA cycle I (prokaryotic)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692861, - "label": "L-lyxose degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692862, - "label": "trehalose biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692863, - "label": "2-O-α-mannosyl-D-glycerate degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692848, - "label": "O-antigen building blocks biosynthesis (E. coli)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692849, - "label": "superpathway of sulfate assimilation and cysteine biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692850, - "label": "fucose degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692851, - "label": "sulfate activation for sulfonation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692852, - "label": "D-mannose degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692853, - "label": "ppGpp metabolism", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692854, - "label": "methylphosphonate degradation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692855, - "label": "melibiose degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692840, - "label": "5-(methoxycarbonylmethoxy)uridine biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692841, - "label": "glucose and glucose-1-phosphate degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692842, - "label": "tRNA processing", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692843, - "label": "2-deoxy-α-D-ribose 1-phosphate degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692844, - "label": "chitobiose degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692845, - "label": "two-component alkanesulfonate monooxygenase", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692846, - "label": "D-allose degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692847, - "label": "mixed acid fermentation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692832, - "label": "8-amino-7-oxononanoate biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692833, - "label": "N-end rule pathway I (prokaryotic)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692834, - "label": "periplasmic disulfide bond reduction", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692835, - "label": "periplasmic disulfide bond formation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692836, - "label": "lipoprotein posttranslational modification", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692837, - "label": "tRNA-uridine 2-thiolation and selenation (bacteria)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692838, - "label": "ribose phosphorylation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692839, - "label": "N6-L-threonylcarbamoyladenosine37-modified tRNA biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692824, - "label": "thiosulfate disproportionation IV (rhodanese)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692825, - "label": "superpathway of glycol metabolism and degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692826, - "label": "ammonia assimilation cycle III", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692827, - "label": "L-glutamine biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692828, - "label": "Kdo transfer to lipid IVA I (E. coli)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692829, - "label": "ubiquinol-8 biosynthesis (prokaryotic)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692830, - "label": "2-methylcitrate cycle I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692831, - "label": "(5Z)-dodecenoate biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692817, - "label": "cyanate degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692818, - "label": "formaldehyde oxidation II (glutathione-dependent)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692819, - "label": "hydrogen sulfide biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692820, - "label": "ethylene glycol degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692821, - "label": "taurine degradation IV", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692822, - "label": "assimilatory sulfate reduction I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692823, - "label": "preQ0 biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692808, - "label": "L-lactaldehyde degradation (anaerobic)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692809, - "label": "methylglyoxal degradation III", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692810, - "label": "methylglyoxal degradation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692811, - "label": "methylglyoxal degradation IV", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692812, - "label": "oleate β-oxidation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692813, - "label": "fatty acid β-oxidation I (generic)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692814, - "label": "2,3-dihydroxybenzoate biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692815, - "label": "di-trans,poly-cis-undecaprenyl phosphate biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692800, - "label": "superpathway of tetrahydrofolate biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692801, - "label": "folate transformations III (E. coli)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692802, - "label": "superpathway of pyrimidine deoxyribonucleosides degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692803, - "label": "purine ribonucleosides degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692804, - "label": "purine deoxyribonucleosides degradation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692805, - "label": "pseudouridine degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692806, - "label": "S-methyl-5'-thioadenosine degradation IV", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692807, - "label": "L-lactaldehyde degradation (aerobic)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692920, - "label": "alanine racemization", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692921, - "label": "L-homoserine biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692922, - "label": "L-lysine biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692923, - "label": "L-proline biosynthesis I (from L-glutamate)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692924, - "label": "L-arginine biosynthesis I (via L-ornithine)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692925, - "label": "L-selenocysteine biosynthesis I (bacteria)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692926, - "label": "L-cysteine biosynthesis VII (from S-sulfo-L-cysteine)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692927, - "label": "acetoacetate degradation (to acetyl CoA)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692912, - "label": "citrate lyase activation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692913, - "label": "2-carboxy-1,4-naphthoquinol biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692914, - "label": "adenosine nucleotides degradation III", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692915, - "label": "pyrimidine deoxyribonucleotides dephosphorylation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692916, - "label": "pyrimidine deoxyribonucleosides degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692917, - "label": "pyrimidine ribonucleosides salvage III", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692918, - "label": "pyrimidine ribonucleosides salvage II", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692919, - "label": "pyrimidine ribonucleosides degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692904, - "label": "lipid IVA biosynthesis (E. coli)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692905, - "label": "L-threonine degradation III (to methylglyoxal)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692906, - "label": "L-cysteine degradation II", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692907, - "label": "glycine cleavage", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692908, - "label": "D-serine degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692909, - "label": "acyl carrier protein metabolism", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692910, - "label": "guanosine nucleotides degradation III", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692911, - "label": "adenosine nucleotides degradation II", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692896, - "label": "L-arginine degradation II (AST pathway)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692897, - "label": "L-threonine degradation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692898, - "label": "superpathway of (Kdo)2-lipid A biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692899, - "label": "L-threonine degradation II", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692900, - "label": "enterobacterial common antigen biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692901, - "label": "L-threonine degradation IV", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692902, - "label": "polymyxin resistance", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692903, - "label": "superpathway of L-threonine metabolism", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692888, - "label": "glycerol-3-phosphate to hydrogen peroxide electron transport", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692889, - "label": "colanic acid building blocks biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692890, - "label": "L-tryptophan degradation II (via pyruvate)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692891, - "label": "L-glutamate degradation II", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692892, - "label": "lipid A-core biosynthesis (E. coli K-12)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692893, - "label": "superpathway of L-arginine, putrescine, and 4-aminobutanoate degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692894, - "label": "L-arginine degradation III (arginine decarboxylase/agmatinase pathway)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692895, - "label": "superpathway of L-arginine and L-ornithine degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692880, - "label": "glycolysis II (from fructose 6-phosphate)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692881, - "label": "L-glutamine degradation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692882, - "label": "cinnamate and 3-hydroxycinnamate degradation to 2-hydroxypentadienoate", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692883, - "label": "L-lysine degradation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692884, - "label": "NADH to hydrogen peroxide electron transfer", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692885, - "label": "proline degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692886, - "label": "superpathway of phenylethylamine degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692887, - "label": "L-asparagine degradation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692872, - "label": "cadaverine biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692873, - "label": "UDP-N-acetylmuramoyl-pentapeptide biosynthesis I (meso-diaminopimelate containing)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692874, - "label": "superoxide radicals degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692875, - "label": "arginine dependent acid resistance", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692876, - "label": "glycolysis I (from glucose 6-phosphate)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692877, - "label": "L-alanine degradation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692878, - "label": "3-phenylpropanoate and 3-(3-hydroxyphenyl)propanoate degradation to 2-hydroxypentadienoate", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692879, - "label": "L-serine degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692864, - "label": "gluconeogenesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692865, - "label": "PRPP biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692866, - "label": "arsenate detoxification II (glutaredoxin)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692867, - "label": "fructose degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692868, - "label": "glycogen biosynthesis I (from ADP-D-Glucose)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692869, - "label": "peptidoglycan maturation (meso-diaminopimelate containing)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692870, - "label": "L-glutamate degradation IX (via 4-aminobutanoate)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692871, - "label": "peptidoglycan biosynthesis I (meso-diaminopimelate containing)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692984, - "label": "pyridoxal 5'-phosphate salvage I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692985, - "label": "pyridoxal 5'-phosphate biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692986, - "label": "superpathway of pyridoxal 5'-phosphate biosynthesis and salvage", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692987, - "label": "flavin biosynthesis I (bacteria and plants)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692989, - "label": "heme b biosynthesis I (aerobic)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692990, - "label": "superpathway of methylglyoxal degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692991, - "label": "ethanol degradation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692976, - "label": "superpathway of heme b biosynthesis from uroporphyrinogen-III", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692977, - "label": "superpathway of fatty acid biosynthesis I (E. coli)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692978, - "label": "heme b biosynthesis II (oxygen-independent)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692979, - "label": "fatty acid elongation -- saturated", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692980, - "label": "coenzyme A biosynthesis I (prokaryotic)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692981, - "label": "fatty acid biosynthesis initiation II", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692982, - "label": "glutathione biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692983, - "label": "fatty acid biosynthesis initiation III", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692968, - "label": "L-methionine biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692969, - "label": "superpathway of lipopolysaccharide biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692970, - "label": "S-adenosyl-L-methionine cycle I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692971, - "label": "palmitate biosynthesis II (bacteria and plant cytoplasm)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692972, - "label": "palmitoleate biosynthesis I (from (5Z)-dodec-5-enoate)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692973, - "label": "D-galacturonate degradation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692974, - "label": "D-glucarate degradation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692975, - "label": "superpathway of fatty acid biosynthesis initiation (E. coli)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692960, - "label": "L-glutamate biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692961, - "label": "β-D-glucuronide and D-glucuronate degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692962, - "label": "L-valine biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692963, - "label": "superpathway of β-D-glucuronosides degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692964, - "label": "L-histidine biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692965, - "label": "(Kdo)2-lipid A biosynthesis I (E. coli)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692966, - "label": "superpathway of L-homoserine and L-methionine biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692967, - "label": "fatty acid biosynthesis initiation (bacteria and plants)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692952, - "label": "superpathway of L-asparagine biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692953, - "label": "acetate and ATP formation from acetyl-CoA I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692954, - "label": "L-asparagine biosynthesis II", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692955, - "label": "L-threonine biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692956, - "label": "superpathway of L-threonine biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692957, - "label": "biotin-carboxyl carrier protein assembly", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692958, - "label": "L-glutamate biosynthesis III", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692959, - "label": "D-galactarate degradation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692944, - "label": "L-tryptophan biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692945, - "label": "L-ascorbate degradation I (bacterial, anaerobic)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692946, - "label": "L-isoleucine biosynthesis I (from threonine)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692947, - "label": "L-ascorbate degradation II (bacterial, aerobic)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692948, - "label": "L-asparagine biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692949, - "label": "glycolate and glyoxylate degradation II", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692950, - "label": "superpathway of purine deoxyribonucleosides degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692951, - "label": "glycolate and glyoxylate degradation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692936, - "label": "glycerol degradation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692937, - "label": "superpathway of L-alanine biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692938, - "label": "L-alanine biosynthesis III", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692939, - "label": "conversion of succinate to propanoate", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692940, - "label": "L-serine biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692941, - "label": "cyclopropane fatty acid (CFA) biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692942, - "label": "L-aspartate biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692943, - "label": "propanoyl CoA degradation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692928, - "label": "L-cysteine biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692929, - "label": "muropeptide degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692930, - "label": "L-tyrosine biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692931, - "label": "glycine biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692932, - "label": "L-leucine biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692933, - "label": "L-phenylalanine biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692934, - "label": "L-alanine biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692935, - "label": "L-alanine biosynthesis II", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693048, - "label": "4-amino-2-methyl-5-diphosphomethylpyrimidine biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693049, - "label": "thiazole component of thiamne diphosphate biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693050, - "label": "guanosine ribonucleotides de novo biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693051, - "label": "hydroxymethylpyrimidine salvage", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693052, - "label": "DpiBA Two-Component Signal Transduction System", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693053, - "label": "thiamine diphosphate salvage II", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693054, - "label": "adenosine ribonucleotides de novo biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693055, - "label": "adenine and adenosine salvage V", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693040, - "label": "superpathway of S-adenosyl-L-methionine biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693041, - "label": "superpathway of menaquinol-8 biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693042, - "label": "superpathway of purine nucleotides de novo biosynthesis II", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693043, - "label": "tRNA charging", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693044, - "label": "KdpDE Two-Component Signal Transduction System, potassium-dependent", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693045, - "label": "BtsSR Two-Component Signal Transduction System", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693046, - "label": "Nitrogen Regulation Two-Component System", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693047, - "label": "thiamine diphosphate biosynthesis I (E. coli)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693032, - "label": "superpathway of D-glucarate and D-galactarate degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693033, - "label": "superpathway of guanine and guanosine salvage", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693034, - "label": "EvgSA Two-Component Signal Transduction System", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693035, - "label": "superpathway of phospholipid biosynthesis I (bacteria)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693036, - "label": "pyrimidine nucleobases salvage II", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693037, - "label": "superpathway of histidine, purine, and pyrimidine biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693038, - "label": "superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693039, - "label": "Chemotactic Two-Component Signal Transduction", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693024, - "label": "superpathway of pyrimidine ribonucleosides salvage", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693025, - "label": "glutathione-glutaredoxin redox reactions", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693026, - "label": "superpathway of glyoxylate bypass and TCA", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693027, - "label": "superpathway of fucose and rhamnose degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693029, - "label": "superpathway of pyrimidine ribonucleotides de novo biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693030, - "label": "thioredoxin pathway", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693031, - "label": "superpathway of chorismate metabolism", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693016, - "label": "ArcAB Two-Component Signal Transduction System, quinone dependent", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693017, - "label": "superpathway of ubiquinol-8 biosynthesis (prokaryotic)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693018, - "label": "superpathway of hexuronide and hexuronate degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693019, - "label": "chorismate biosynthesis from 3-dehydroquinate", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693020, - "label": "superpathway of 5-aminoimidazole ribonucleotide biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693021, - "label": "superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis (E. coli)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693022, - "label": "PhoRB Two-Component Signal Transduction System, phosphate-dependent", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693023, - "label": "aspartate superpathway", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693008, - "label": "EnvZ/OmrR Two-Component Signal Transduction System", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693009, - "label": "superpathway of adenosine nucleotides de novo biosynthesis II", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693010, - "label": "chorismate biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693011, - "label": "AtoSC Two-Component Signal Transduction System", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693012, - "label": "polyisoprenoid biosynthesis (E. coli)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693013, - "label": "superpathway of pyrimidine nucleobases salvage", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693014, - "label": "enterobactin biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693015, - "label": "superpathway of guanosine nucleotides de novo biosynthesis II", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693000, - "label": "autoinducer AI-2 biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693001, - "label": "demethylmenaquinol-8 biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693002, - "label": "xanthine and xanthosine salvage", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693003, - "label": "RstBA Two-Component Signal Transduction System", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693004, - "label": "5-aminoimidazole ribonucleotide biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693005, - "label": "5-aminoimidazole ribonucleotide biosynthesis II", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693006, - "label": "HprSR Two-Component Signal Transduction System", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692992, - "label": "glycerol and glycerophosphodiester degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692993, - "label": "glycerol degradation V", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692994, - "label": "glycerophosphodiester degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692995, - "label": "phosphopantothenate biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692996, - "label": "superpathway of thiamine diphosphate biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692997, - "label": "6-hydroxymethyl-dihydropterin diphosphate biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692998, - "label": "superpathway of unsaturated fatty acids biosynthesis (E. coli)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3692999, - "label": "cis-vaccenate biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693112, - "label": "UDP-α-D-galactose biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693113, - "label": "UDP-α-D-glucose biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693114, - "label": "UDP-N-acetyl-α-D-mannosaminouronate biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693115, - "label": "Aerotactic Two-Component Signal Transduction System", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693116, - "label": "UDP-α-D-glucuronate biosynthesis (from UDP-glucose)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693117, - "label": "queuosine biosynthesis I (de novo)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693118, - "label": "glycogen degradation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693119, - "label": "curcumin degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693104, - "label": "ADP-L-glycero-β-D-manno-heptose biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693106, - "label": "GDP-mannose biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693108, - "label": "NarQ Two-Component Signal Transduction System, nitrate dependent", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693109, - "label": "dTDP-L-rhamnose biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693110, - "label": "dTDP-N-acetylthomosamine biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693111, - "label": "UhpBA Two Component Signal Transduction System", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693096, - "label": "adenosylcobalamin salvage from cobalamin", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693098, - "label": "superpathway of arginine and polyamine biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693099, - "label": "aminopropylcadaverine biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693101, - "label": "glutathionylspermidine biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693102, - "label": "superpathway of polyamine biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693103, - "label": "glycine betaine biosynthesis I (Gram-negative bacteria)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693088, - "label": "UMP biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693089, - "label": "adenosylcobalamin biosynthesis from adenosylcobinamide-GDP I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693091, - "label": "DcuSR Two-Component Signal Transduction System, C4-dicarboxylate-dependent", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693092, - "label": "BarA UvrY Two-Component Signal Transduction System", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693093, - "label": "β-alanine biosynthesis III", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693094, - "label": "L-ornithine biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693095, - "label": "uracil degradation III", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693080, - "label": "NarX Two-Component Signal Transduction System, nitrate dependent", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693081, - "label": "cardiolipin biosynthesis III", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693082, - "label": "adenosine deoxyribonucleotides de novo biosynthesis II", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693083, - "label": "inosine-5'-phosphate biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693085, - "label": "PyrSR Two-Component Signal Transduction System", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693086, - "label": "adenosylcobinamide-GDP salvage from cobinamide I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693087, - "label": "superpathway of adenosylcobalamin salvage from cobinamide I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693074, - "label": "CDP-diacylglycerol biosynthesis II", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693075, - "label": "CDP-diacylglycerol biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693076, - "label": "UTP and CTP de novo biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693077, - "label": "phosphatidylserine and phosphatidylethanolamine biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693078, - "label": "guanosine deoxyribonucleotides de novo biosynthesis II", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693079, - "label": "cardiolipin biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693064, - "label": "salvage pathways of pyrimidine deoxyribonucleotides", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693065, - "label": "pyrimidine deoxyribonucleotide phosphorylation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693066, - "label": "salvage pathways of pyrimidine ribonucleotides", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693067, - "label": "BasSR Two-Component Signal Transduction System", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693068, - "label": "pyrimidine ribonucleosides salvage I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693069, - "label": "pyrimidine deoxyribonucleotides de novo biosynthesis II", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693070, - "label": "pyrimidine deoxyribonucleotides de novo biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693071, - "label": "NtrBC Two-Component Signal Transduction System, nitrogen-dependent", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693056, - "label": "adenine and adenosine salvage III", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693057, - "label": "QseBC Two-Component Signal Transduction System, quorum sensing related", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693058, - "label": "adenine and adenosine salvage II", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693059, - "label": "guanine and guanosine salvage", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693060, - "label": "guanine and guanosine salvage III", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693061, - "label": "pyrimidine nucleobases salvage I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693063, - "label": "CMP phosphorylation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3725945, - "label": "yejG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725948, - "label": "cvpA-purF-ubiX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725950, - "label": "cydAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725951, - "label": "ftnB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725936, - "label": "cysJIH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725942, - "label": "ccmABCDEFGH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725929, - "label": "eno", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725931, - "label": "rrsD-ileU-alaU-rrlD-rrfD-thrV-rrfF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725935, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725922, - "label": "ugpBAECQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725926, - "label": "purA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725912, - "label": "dapB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725913, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725916, - "label": "argD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725917, - "label": "yibD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725919, - "label": "ftsLI-murEF-mraY-murD-ftsW-murGC-ddlB-ftsQAZ-lpxC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693136, - "label": "pyruvate to cytochrome bd oxidase electron transfer", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3725904, - "label": "yjcC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693137, - "label": "superpathway of glycolysis and the Entner-Doudoroff pathway", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693138, - "label": "succinate to cytochrome bo oxidase electron transfer", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3725906, - "label": "ebgAC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693139, - "label": "NADH to cytochrome bd oxidase electron transfer I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693140, - "label": "ATP biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693141, - "label": "NADH to cytochrome bo oxidase electron transfer I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693142, - "label": "succinate to cytochrome bd oxidase electron transfer", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3725910, - "label": "metBL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693143, - "label": "glyoxylate cycle", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3725911, - "label": "cra", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693128, - "label": "superpathway of ornithine degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693129, - "label": "superpathway of N-acetylglucosamine, N-acetylmannosamine and N-acetylneuraminate degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693130, - "label": "ethanolamine utilization", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693131, - "label": "phenylethylamine degradation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693132, - "label": "superpathway of glycolysis, pyruvate dehydrogenase, TCA, and glyoxylate bypass", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693133, - "label": "2-oxoglutarate decarboxylation to succinyl-CoA", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693135, - "label": "pyruvate to cytochrome bo oxidase electron transfer", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693120, - "label": "lactose degradation III", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693121, - "label": "autoinducer AI-2 degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693122, - "label": "trehalose degradation VI (periplasmic)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693123, - "label": "menaquinol-8 biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693124, - "label": "methylerythritol phosphate pathway I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693125, - "label": "trehalose degradation II (cytosolic)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693126, - "label": "trehalose degradation I (low osmolarity)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3693127, - "label": "phenylacetate degradation I (aerobic)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3726008, - "label": "yaiS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726014, - "label": "prfB-lysS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726015, - "label": "qorA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726004, - "label": "insC5CD5D5-yqiHIG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726005, - "label": "rpoE-rseABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725993, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725995, - "label": "sstT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725996, - "label": "speF-potE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725986, - "label": "ubiT-yhbS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725987, - "label": "focA-pflB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725989, - "label": "pth-ychF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725976, - "label": "cirA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725978, - "label": "stpA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725979, - "label": "ispDF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725983, - "label": "rpsO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725972, - "label": "znuA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725973, - "label": "yccT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725975, - "label": "wcaCDEF-gmd-fcl-gmm-wcaI-cpsBG-wcaJ-wzxC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725960, - "label": "flu", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725962, - "label": "hdeD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725966, - "label": "glpABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725967, - "label": "mscL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725956, - "label": "nirBDC-cysG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725957, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3725958, - "label": "rpoH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726074, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726075, - "label": "mazEFG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726079, - "label": "cspI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726064, - "label": "glnK-amtB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726068, - "label": "hcaR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726071, - "label": "ydhQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726056, - "label": "feaR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726058, - "label": "sthA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726059, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726061, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726048, - "label": "yfdX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726050, - "label": "alaE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726051, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726052, - "label": "cydDC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726053, - "label": "cycA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726040, - "label": "omrB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726042, - "label": "fes-ybdZ-entF-fepE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726044, - "label": "mlc-ynfK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726033, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726034, - "label": "phoH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726035, - "label": "sibE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726038, - "label": "mglAC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726039, - "label": "ydiV", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726025, - "label": "citCDEFXG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726026, - "label": "rpoE-rseABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726028, - "label": "ansP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726030, - "label": "dacC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726016, - "label": "htpG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726136, - "label": "sgrR-sroA-thiBPQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726137, - "label": "ytfJ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726141, - "label": "mdh", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726143, - "label": "argU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726128, - "label": "uspE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726131, - "label": "speC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726133, - "label": "metT-leuW-glnUW-metU-glnVX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726135, - "label": "rutABCDEFG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726122, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726123, - "label": "lpdA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726125, - "label": "hlpA-lpxD-fabZ-lpxA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726127, - "label": "pgi", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726114, - "label": "lldPRD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726116, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726118, - "label": "rep", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726104, - "label": "tauABCD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726106, - "label": "hemA-prfA-prmC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726110, - "label": "yniB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726111, - "label": "hypABCDE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726096, - "label": "ppk-ppx", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726097, - "label": "atpBEFHAGDC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726099, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726101, - "label": "gcvTHP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726088, - "label": "uvrYC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726089, - "label": "yahA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726092, - "label": "lysR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726093, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726095, - "label": "hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726080, - "label": "mgtS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726081, - "label": "yciN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726083, - "label": "pstSCAB-phoU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726084, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726085, - "label": "dadAX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726086, - "label": "secG-leuU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726087, - "label": "metH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726201, - "label": "aroL-yaiA-aroM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726203, - "label": "csgBAC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726205, - "label": "glcC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726207, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726194, - "label": "rnlAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726196, - "label": "ycaC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726197, - "label": "znuCB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726184, - "label": "eptA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726185, - "label": "micF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726188, - "label": "wrbA-yccJ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726191, - "label": "glnALG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726177, - "label": "ibpB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726178, - "label": "grxB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726180, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726181, - "label": "nagBACD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726182, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726171, - "label": "purR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726161, - "label": "ansB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726163, - "label": "livKHMGF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726164, - "label": "mreBCD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726166, - "label": "dsbA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726153, - "label": "cvpA-purF-ubiX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726155, - "label": "yhdWXYZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726146, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726147, - "label": "glnA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726149, - "label": "ygjH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726151, - "label": "malT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726264, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726269, - "label": "rsd", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726270, - "label": "dksA-yadB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726271, - "label": "serC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726260, - "label": "tolC-ygiBC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726261, - "label": "ariR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726263, - "label": "rpsT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726248, - "label": "motAB-cheAW", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726250, - "label": "mdh", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726251, - "label": "sdiA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726240, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726237, - "label": "nlpA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726238, - "label": "yqhD-dkgA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726225, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726230, - "label": "rplU-rpmA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726231, - "label": "ftsZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726218, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726219, - "label": "luxS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726221, - "label": "serC-aroA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726223, - "label": "fliC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726208, - "label": "pgaABCD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726210, - "label": "mraZW-ftsLI-murEF-mraY-murD-ftsW-murGC-ddlB-ftsQAZ-lpxC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726212, - "label": "xseB-ispA-dxs-yajO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726328, - "label": "tonB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726330, - "label": "yihD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726331, - "label": "rpoE-rseABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726333, - "label": "sdiA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726334, - "label": "pepD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726321, - "label": "nmpC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726322, - "label": "safA-ydeO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726323, - "label": "yciT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726324, - "label": "ytjB-lplA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726326, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726312, - "label": "hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726313, - "label": "sdiA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726316, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726318, - "label": "livJ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726304, - "label": "yjiY", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726305, - "label": "talA-tktB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726306, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726307, - "label": "ychH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726309, - "label": "nrfABCDEFG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726311, - "label": "acpP-fabF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726296, - "label": "rirA-rfaQGPSBIJYZ-waaU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726297, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726300, - "label": "fadBA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726302, - "label": "cfa", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726303, - "label": "ybbY-glxK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726291, - "label": "ilvL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726293, - "label": "waaA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726294, - "label": "tnaC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726295, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726281, - "label": "nanCMS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726275, - "label": "yfiF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726277, - "label": "clpPX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726279, - "label": "hmp", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726393, - "label": "gpmA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726394, - "label": "nrdHIEF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726395, - "label": "usg-truA-dedA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726397, - "label": "uspG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726399, - "label": "purHD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726385, - "label": "rpmBG-mutM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726388, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726391, - "label": "sdaCB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726376, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726377, - "label": "ybiN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726378, - "label": "alaA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726379, - "label": "tyrP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726383, - "label": "argT-hisJQMP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726369, - "label": "fumC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726370, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726373, - "label": "pstCAB-phoU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726374, - "label": "chpSB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726361, - "label": "thrU-tyrU-glyT-thrT-tufB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726365, - "label": "btuB-murI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726367, - "label": "yhiM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726354, - "label": "yadC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726355, - "label": "alaS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726357, - "label": "yifB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726358, - "label": "alaC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726359, - "label": "fur", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726344, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726347, - "label": "yjgN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726349, - "label": "malS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726337, - "label": "yncD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726338, - "label": "fecABCDE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726339, - "label": "yfgG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726341, - "label": "ompR-envZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726343, - "label": "ydcSTUV-patD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726456, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726457, - "label": "rplJL-rpoBC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726463, - "label": "mntP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726450, - "label": "eno", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726454, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726440, - "label": "yjbEFGH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726441, - "label": "asr", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726442, - "label": "btuE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726445, - "label": "dcyD-tcyLN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726434, - "label": "trxB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726438, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726425, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726428, - "label": "aroF-tyrA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726430, - "label": "cbpAM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726431, - "label": "yfaE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726416, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726417, - "label": "rhtB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726421, - "label": "yadV-htrE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726422, - "label": "yjaH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726423, - "label": "serA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726410, - "label": "tsgA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726413, - "label": "fhuE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726400, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693753, - "label": "yniB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726524, - "label": "torCAD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726527, - "label": "iraP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693744, - "label": "wzc", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726512, - "label": "yegH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726515, - "label": "adiC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726516, - "label": "rpsA-ihfB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726518, - "label": "hisL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693751, - "label": "ydeQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726504, - "label": "chbBCARFG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726506, - "label": "polA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693738, - "label": "wcaF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726507, - "label": "ubiT-yhbS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693740, - "label": "rcsA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726509, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726497, - "label": "artPIQM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726500, - "label": "fhuF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693732, - "label": "wzb", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726503, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726488, - "label": "relA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693721, - "label": "yjbJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726491, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726494, - "label": "envY-ompT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693726, - "label": "wcaE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726495, - "label": "ridA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726480, - "label": "aspS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693713, - "label": "yraQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726482, - "label": "can", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693718, - "label": "wza", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3693706, - "label": "acpP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726479, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726464, - "label": "nudG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726470, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726471, - "label": "metE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693818, - "label": "eptB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726589, - "label": "gcvB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726591, - "label": "panZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726576, - "label": "creABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726577, - "label": "csiE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726582, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726583, - "label": "cadC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726569, - "label": "hemN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693802, - "label": "waaA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3693804, - "label": "gmhA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3693807, - "label": "yodC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726575, - "label": "metY-yhbC-nusA-infB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726562, - "label": "dsdXA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693795, - "label": "ykgE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726565, - "label": "putP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726566, - "label": "yajO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726553, - "label": "fepB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693786, - "label": "kdsA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3693788, - "label": "waaF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726556, - "label": "mobAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726558, - "label": "msrB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726559, - "label": "dinJ-yafQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726544, - "label": "yfiR-dgcN-yfiB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693776, - "label": "rfbC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726545, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726546, - "label": "arcA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726547, - "label": "deoA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693780, - "label": "waaG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726537, - "label": "mutL-miaA-hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726538, - "label": "ddpXABCDF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726540, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693775, - "label": "yhjJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726528, - "label": "rmf", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726532, - "label": "ycgB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726534, - "label": "manXYZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693767, - "label": "ychE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3693880, - "label": "amiC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3693883, - "label": "yfcZ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726652, - "label": "argF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693885, - "label": "ygaM", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726655, - "label": "glgBXCAP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726643, - "label": "dusB-fis", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726644, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726645, - "label": "htpX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726647, - "label": "rimK-ybjN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726637, - "label": "topA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726638, - "label": "htrG-cca", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726639, - "label": "csrB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726625, - "label": "rpsU-dnaG-rpoD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693858, - "label": "wecB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726627, - "label": "emrKY", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693848, - "label": "wzzE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726617, - "label": "infC-rpmI-rplT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726618, - "label": "astCADBE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726620, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726623, - "label": "phoBR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726608, - "label": "rrsA-ileT-alaT-rrlA-rrfA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693841, - "label": "yffB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726609, - "label": "argG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726611, - "label": "yahO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726612, - "label": "yojI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726613, - "label": "uvrA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726614, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726601, - "label": "ybhD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693834, - "label": "lpxH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726603, - "label": "tnaCAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726605, - "label": "glgCAP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693838, - "label": "lpxL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726606, - "label": "dapB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726593, - "label": "cyoABCDE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726595, - "label": "pyrLBI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726597, - "label": "alaA-yfbR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726598, - "label": "gdhA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726599, - "label": "gadY", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693944, - "label": "lpp", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726713, - "label": "galETK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726714, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726715, - "label": "nagA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726706, - "label": "tcyP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726711, - "label": "spf", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726696, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726698, - "label": "argO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726702, - "label": "yjeV", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693935, - "label": "yfeK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726689, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693923, - "label": "ybiT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726692, - "label": "yfiRN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726695, - "label": "ybjP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726680, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693919, - "label": "yaeQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726672, - "label": "rpsP-rimM-trmD-rplS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693906, - "label": "dacC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726676, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726677, - "label": "mltF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726678, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726664, - "label": "fliDST", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726665, - "label": "nanATEK-yhcH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726667, - "label": "mntR-ybiR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726668, - "label": "ldhA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726671, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726656, - "label": "cusRS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726657, - "label": "seqA-pgm", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693890, - "label": "amiB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3693893, - "label": "ybgC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726663, - "label": "ybgC-tolQRA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694008, - "label": "yjfP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3694011, - "label": "can", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726771, - "label": "ompR-envZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694004, - "label": "yhhW", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3694005, - "label": "trxB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726774, - "label": "arcA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726764, - "label": "glpEGR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726766, - "label": "rybA-mntS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726752, - "label": "zwf", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693984, - "label": "ydcL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3693985, - "label": "cynR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726757, - "label": "ilvIH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726746, - "label": "leuL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693979, - "label": "pntA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726747, - "label": "iraP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726748, - "label": "srlR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726750, - "label": "ydcI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726751, - "label": "yqaE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726736, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726737, - "label": "yedP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726741, - "label": "pqiABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726742, - "label": "aspS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693960, - "label": "glgC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726731, - "label": "aroP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726734, - "label": "decR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726735, - "label": "mntH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726721, - "label": "mutS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726722, - "label": "ydhYVWXUT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3693955, - "label": "wrbA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726840, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726841, - "label": "sulA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726843, - "label": "nuoABCEFGHIJKLMN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726844, - "label": "gspCDEFGHIJKLMO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694078, - "label": "nanK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3694066, - "label": "nagA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726837, - "label": "malZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694071, - "label": "nanT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726824, - "label": "hchA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726827, - "label": "mcrBC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726828, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694060, - "label": "nanA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726829, - "label": "ybeT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726831, - "label": "purEK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726817, - "label": "aspA-dcuA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726819, - "label": "yhgE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694053, - "label": "ycaK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726821, - "label": "araFGH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694054, - "label": "sthA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3694041, - "label": "mqo", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3694042, - "label": "scpB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726811, - "label": "betIBA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726805, - "label": "sra", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726806, - "label": "ppdD-hofBC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726807, - "label": "pfkB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726793, - "label": "putP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726795, - "label": "phoQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726796, - "label": "fur", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726799, - "label": "yjfY", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694016, - "label": "yjbR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726785, - "label": "rfaDFCL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726786, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726789, - "label": "yjjZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726790, - "label": "cysPUWAM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726904, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726907, - "label": "micC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726898, - "label": "ivy", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726899, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726900, - "label": "rpsJ-rplCDWB-rpsS-rplV-rpsC-rplP-rpmC-rpsQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726901, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726888, - "label": "hchA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726895, - "label": "mcbA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726876, - "label": "oppBCDF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726865, - "label": "topA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694099, - "label": "gss", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3694101, - "label": "ydeP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726871, - "label": "deoCABD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726856, - "label": "yhjJ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726859, - "label": "slyX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694092, - "label": "nudE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726861, - "label": "katG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726862, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726863, - "label": "rlmE-ftsH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726848, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726850, - "label": "folE-yeiB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726851, - "label": "ompF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726853, - "label": "uspA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726968, - "label": "sdaA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726969, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694206, - "label": "yneK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726975, - "label": "ydfH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726960, - "label": "rpoS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726963, - "label": "yrdD-rimN-aroE-yrdB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694198, - "label": "yeaE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726967, - "label": "argE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726952, - "label": "hemH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726953, - "label": "allA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726955, - "label": "yfcN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726944, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726950, - "label": "groL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726936, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694170, - "label": "yicH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726939, - "label": "acnA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726940, - "label": "pstS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694173, - "label": "metK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726941, - "label": "galE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694174, - "label": "yibL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726929, - "label": "aroKB-damX-dam-rpe-gph-trpS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726932, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694165, - "label": "aceB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726933, - "label": "acrD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694153, - "label": "dps", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726921, - "label": "hcp-hcr-poxB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726923, - "label": "artJ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726924, - "label": "yeaE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726925, - "label": "dsrA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726926, - "label": "ssrS-ygfA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726912, - "label": "aroD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694149, - "label": "ridA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726918, - "label": "nuoABCEFGHIJKLMN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694264, - "label": "hydrogen to trimethylamine N-oxide electron transfer", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694265, - "label": "nitrate reduction IX (dissimilatory)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694266, - "label": "glycerol-3-phosphate to fumarate electron transfer", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727034, - "label": "lysP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694267, - "label": "nitrate reduction X (dissimilatory, periplasmic)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727035, - "label": "puuAP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694268, - "label": "formate to nitrite electron transfer", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727036, - "label": "yibT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694269, - "label": "galactitol degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694270, - "label": "D-sorbitol degradation II", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727038, - "label": "asnA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694271, - "label": "mannitol degradation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727039, - "label": "gor", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694256, - "label": "NADH to dimethyl sulfoxide electron transfer", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727024, - "label": "blc", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694257, - "label": "nitrate reduction VIII (dissimilatory)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694258, - "label": "formate to trimethylamine N-oxide electron transfer", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727026, - "label": "yjeH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694259, - "label": "formate to dimethyl sulfoxide electron transfer", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694260, - "label": "nitrate reduction VIIIb (dissimilatory)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727028, - "label": "fucPIKUR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694261, - "label": "(aminomethyl)phosphonate degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694262, - "label": "hydrogen to fumarate electron transfer", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727030, - "label": "tyrTV-tpr", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694263, - "label": "hydrogen to dimethyl sulfoxide electron transfer", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694248, - "label": "N-acetylneuraminate and N-acetylmannosamine degradation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727017, - "label": "pck", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694249, - "label": "D-xylose degradation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694250, - "label": "galactose degradation I (Leloir pathway)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694251, - "label": "fructoselysine and psicoselysine degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694252, - "label": "N-acetylglucosamine degradation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694253, - "label": "nitrate reduction III (dissimilatory)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694254, - "label": "NADH to fumarate electron transfer", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694255, - "label": "NADH to trimethylamine N-oxide electron transfer", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694240, - "label": "NADH to cytochrome bo oxidase electron transfer II", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694241, - "label": "3-phenylpropanoate and 3-(3-hydroxyphenyl)propanoate degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694242, - "label": "NADH to cytochrome bd oxidase electron transfer II", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694243, - "label": "allantoin degradation IV (anaerobic)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694244, - "label": "D-arabinose degradation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727000, - "label": "metY", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694235, - "label": "yhaB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3694236, - "label": "proline to cytochrome bo oxidase electron transfer", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694237, - "label": "glycerol-3-phosphate to cytochrome bo oxidase electron transfer", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694238, - "label": "Entner-Doudoroff shunt", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694239, - "label": "D-lactate to cytochrome bo oxidase electron transfer", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727007, - "label": "ndh", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694225, - "label": "yjiA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726996, - "label": "ysgA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694229, - "label": "ybgA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726999, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726986, - "label": "yccU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726988, - "label": "marRAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726976, - "label": "ydaM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726977, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694210, - "label": "cynT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3726979, - "label": "yjbB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726982, - "label": "leuO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727098, - "label": "cirA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727100, - "label": "stpA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727102, - "label": "psiE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694320, - "label": "3-dehydroquinate biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727088, - "label": "glpD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694321, - "label": "S-adenosyl-L-methionine biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694322, - "label": "L-carnitine degradation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727090, - "label": "fimB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694323, - "label": "superpathway of coenzyme A biosynthesis I (bacteria)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694324, - "label": "4-hydroxybenzoate biosynthesis II (bacteria)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694325, - "label": "4-aminobenzoate biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727093, - "label": "qseBC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727094, - "label": "idnK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727095, - "label": "hspQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727080, - "label": "lrhA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694313, - "label": "superpathway of L-aspartate and L-asparagine biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694314, - "label": "superpathway of L-lysine, L-threonine and L-methionine biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694315, - "label": "putrescine degradation II", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694316, - "label": "putrescine degradation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694317, - "label": "4-aminobutanoate degradation II", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694318, - "label": "4-aminobutanoate degradation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694319, - "label": "superpathway of 4-aminobutanoate degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727087, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694304, - "label": "L-idonate degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727072, - "label": "cydAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694306, - "label": "superpathway of aromatic amino acid biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727075, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694308, - "label": "superpathway of branched chain amino acid biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694309, - "label": "D-fructuronate degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694310, - "label": "superpathway of L-serine and glycine biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727078, - "label": "nrdAB-yfaE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694311, - "label": "sulfoquinovose degradation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694296, - "label": "lipoate biosynthesis and incorporation I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727064, - "label": "fadIJ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694297, - "label": "pyruvate decarboxylation to acetyl CoA I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694298, - "label": "NAD salvage pathway II (PNC IV cycle)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694299, - "label": "2-hydroxypenta-2,4-dienoate degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694300, - "label": "NAD de novo biosynthesis I (from aspartate)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694301, - "label": "NAD salvage pathway I (PNC VI cycle)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694302, - "label": "NAD salvage pathway IV (from nicotinamide riboside)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694303, - "label": "ketogluconate metabolism", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694288, - "label": "bis(guanylyl molybdenum cofactor) biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727056, - "label": "ybdL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694289, - "label": "D-gluconate degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727058, - "label": "cysK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694290, - "label": "tetrahydromonapterin biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694291, - "label": "acetate conversion to acetyl-CoA", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727059, - "label": "yhjC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694292, - "label": "lipoate biosynthesis and incorporation II", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694293, - "label": "superpathway of acetate utilization and formation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694294, - "label": "lipoate salvage I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694295, - "label": "citrate degradation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727063, - "label": "dmsABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694280, - "label": "biotin biosynthesis from 8-amino-7-oxononanoate I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727048, - "label": "aidB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694281, - "label": "spermidine biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727049, - "label": "avtA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694282, - "label": "molybdenum cofactor biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694283, - "label": "putrescine biosynthesis III", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727051, - "label": "eno", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694284, - "label": "cytidylyl molybdenum cofactor biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727052, - "label": "fhuF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694285, - "label": "putrescine biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694286, - "label": "guanylyl molybdenum cofactor biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694272, - "label": "superpathway of hexitol degradation (bacteria)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694273, - "label": "anhydromuropeptides recycling I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727041, - "label": "ftsLI-murEF-mraY-murD-ftsW-murGC-ddlB-ftsQAZ-lpxC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694274, - "label": "tetrapyrrole biosynthesis I (from glutamate)", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694275, - "label": "siroheme biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694276, - "label": "NAD phosphorylation and dephosphorylation", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727044, - "label": "ugpBAECQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694277, - "label": "UDP-N-acetyl-D-glucosamine biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3727045, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694278, - "label": "biotin biosynthesis I", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694279, - "label": "CMP-3-deoxy-D-manno-octulosonate biosynthesis", - "databaseLabel": "Pathway", - "value": 1, - "font": { - "color": "#e377c2" - }, - "color": { - "background": "#FFFFFF", - "border": "#e377c2", - "hover": { - "background": "#FFFFFF", - "border": "#e377c2" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#e377c2" - } - } - }, - { - "id": 3694392, - "label": "fadHp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727160, - "label": "dhaR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727162, - "label": "omrA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727166, - "label": "xapR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727167, - "label": "yliM-ompX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727152, - "label": "dcp", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727154, - "label": "hyaABCDEF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694388, - "label": "nmpCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727159, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727145, - "label": "nfrBA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727147, - "label": "dpiBA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727148, - "label": "rpoE-rseABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694381, - "label": "yhiMp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727150, - "label": "ansP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694382, - "label": "gclp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727129, - "label": "rnlB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694364, - "label": "hmpp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727132, - "label": "nfeF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727133, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727120, - "label": "aer", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727122, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727124, - "label": "argS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727125, - "label": "intD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727127, - "label": "rpoZ-spoT-trmH-recG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694344, - "label": "nikAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727116, - "label": "aslB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727119, - "label": "relA-mazEF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727104, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727105, - "label": "yciZT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694337, - "label": "argTp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727108, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727109, - "label": "focA-pflB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694342, - "label": "ugpBp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727227, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727228, - "label": "ychQA-kdsA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694461, - "label": "rrsHp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727231, - "label": "ssb", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727216, - "label": "malI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694450, - "label": "dctAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727218, - "label": "ybgA-phr", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727220, - "label": "appY", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727221, - "label": "atpBEFHAGDC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727223, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727209, - "label": "dadAX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727210, - "label": "secG-leuU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727200, - "label": "bssS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694433, - "label": "torCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727204, - "label": "dgcZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727207, - "label": "prs", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694426, - "label": "fadIp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727195, - "label": "ydiP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727196, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727197, - "label": "trpR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694430, - "label": "lysUp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727198, - "label": "yjbQR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727185, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694419, - "label": "pdhRp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727188, - "label": "frr", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727190, - "label": "hcaEFCBD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727176, - "label": "hyfABCDEFGHIJR-focB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727177, - "label": "menA-rraA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727178, - "label": "feaR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727180, - "label": "evgAS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727181, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694414, - "label": "fhuEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727170, - "label": "yrbL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694404, - "label": "hcpp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727173, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727174, - "label": "dadAX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727290, - "label": "fkpA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727295, - "label": "pyrC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727280, - "label": "rrsH-ileV-alaV-rrlH-rrfH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727281, - "label": "mutY-yggX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727285, - "label": "araE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694518, - "label": "ilvIHp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727287, - "label": "emrRAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727274, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694508, - "label": "slpp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727277, - "label": "ompC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727278, - "label": "yahA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727279, - "label": "ddpXABCDF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727265, - "label": "carAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694498, - "label": "asnCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727268, - "label": "gadXW", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727269, - "label": "ssrS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727257, - "label": "serW", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727258, - "label": "ribE-nusB-thiL-pgpA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727260, - "label": "sgrST-setA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727263, - "label": "wecH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727249, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727252, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694486, - "label": "sgrRp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727255, - "label": "tdcABCDEFG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727240, - "label": "ydeNM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727241, - "label": "yafDE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727242, - "label": "rplKAJL-rpoBC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727244, - "label": "yjiC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694477, - "label": "dsdAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727246, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727247, - "label": "sdhCDAB-sucABCD-sdhX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694466, - "label": "fepBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727234, - "label": "ynjF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727235, - "label": "proP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727236, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727237, - "label": "yigI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727238, - "label": "fimAICDFGH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694584, - "label": "yiiSp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3694585, - "label": "zinTp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727354, - "label": "rpmBG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727357, - "label": "iclR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694591, - "label": "hyfAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727359, - "label": "narK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727346, - "label": "asnC-mioC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694578, - "label": "dnaAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727349, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727350, - "label": "scpA-argK-scpBC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694583, - "label": "rybAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727336, - "label": "xylFGHR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727338, - "label": "osmC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694571, - "label": "tolCp4", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3694573, - "label": "srap", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727343, - "label": "rplT-pheM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727329, - "label": "osmY", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694562, - "label": "acrZp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727331, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694564, - "label": "feoAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727332, - "label": "argA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694566, - "label": "argIp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727335, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727320, - "label": "yfeKS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727321, - "label": "zntA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727323, - "label": "pepN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694556, - "label": "fhuAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727324, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727325, - "label": "aroP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694557, - "label": "rplKp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727326, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727314, - "label": "rcnAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727315, - "label": "glnLG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727316, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727317, - "label": "ibpAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727318, - "label": "secG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694537, - "label": "ompFp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727305, - "label": "narGHJI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694538, - "label": "osmYp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727307, - "label": "icd", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727309, - "label": "narU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694542, - "label": "dinJp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727296, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727297, - "label": "rpoS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694529, - "label": "osmCp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727298, - "label": "ybgTE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694532, - "label": "mdhp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727300, - "label": "yicJI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727301, - "label": "groSL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727418, - "label": "bglG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694651, - "label": "cspIp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727420, - "label": "rfaQGPSBIJYZ-waaU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727422, - "label": "ydgC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727423, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694640, - "label": "mntHp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727411, - "label": "yjeFE-amiB-mutL-miaA-hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694644, - "label": "focAp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727415, - "label": "rhoL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727401, - "label": "cobUST", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694634, - "label": "alaAp9", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727403, - "label": "rpmH-rnpA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694635, - "label": "rpmBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727406, - "label": "tomB-hha", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727394, - "label": "ecnB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727395, - "label": "araE-ygeA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727396, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694628, - "label": "phoUp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727397, - "label": "yegRZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694620, - "label": "ydePp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727389, - "label": "abgR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727391, - "label": "fdoGHI-fdhE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727376, - "label": "citCDEFXG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727377, - "label": "yiaG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727381, - "label": "hisLGDCBHAFI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727369, - "label": "argP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727370, - "label": "ggt", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727372, - "label": "mreBCD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727373, - "label": "yjiXA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727374, - "label": "uxaCA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727375, - "label": "rplU-rpmA-yhbE-obgE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727362, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727363, - "label": "potFGHI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694596, - "label": "metEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727367, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727480, - "label": "pepD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727483, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727484, - "label": "glgCAP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694706, - "label": "rrsEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727475, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694707, - "label": "seqAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727464, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694696, - "label": "znuAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727466, - "label": "ompR-envZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727467, - "label": "glxK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727470, - "label": "lpp", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727471, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727459, - "label": "pyrG-eno", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727460, - "label": "dinB-yafNOP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727462, - "label": "yncE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727463, - "label": "fdhF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727449, - "label": "tyrP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727451, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694684, - "label": "asrp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727453, - "label": "mglBAC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727440, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727442, - "label": "ycaK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727443, - "label": "livKHMGF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694678, - "label": "zwfp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727446, - "label": "cydAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727447, - "label": "yaiA-aroM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727436, - "label": "fabDG-acpP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694668, - "label": "ribAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727437, - "label": "hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694670, - "label": "ydfHp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727439, - "label": "ptrA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694657, - "label": "lldPp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727426, - "label": "cfa", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727428, - "label": "yhjX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694661, - "label": "fiup", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727430, - "label": "rhoL-rho", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727544, - "label": "galETKM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727546, - "label": "yadV-htrE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694778, - "label": "relAp4", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727549, - "label": "galETKM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694782, - "label": "nrdAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727551, - "label": "panD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727539, - "label": "lptB-rpoN-hpf-ptsN-yhbJ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727540, - "label": "bglGFB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727542, - "label": "nsrR-rnr-rlmB-yjfI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694760, - "label": "hslJp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3694762, - "label": "cysKp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727533, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727534, - "label": "metA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727535, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694752, - "label": "purAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727521, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727523, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727524, - "label": "purL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727525, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694744, - "label": "nuoAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727518, - "label": "ryhB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727504, - "label": "glnB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727506, - "label": "glnB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727508, - "label": "prpBCDE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727509, - "label": "rrsE-gltV-rrlE-rrfE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694742, - "label": "carAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727510, - "label": "mutY-yggX-mltC-nupG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694730, - "label": "rybBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3694732, - "label": "fucPp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727503, - "label": "yfbR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727488, - "label": "dgkA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727489, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694722, - "label": "cysPp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3694724, - "label": "dcuBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727493, - "label": "yfcZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727494, - "label": "gltA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727609, - "label": "hdeAB-yhiD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727612, - "label": "tolC-ygiBC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727613, - "label": "relA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727615, - "label": "ompT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727600, - "label": "modABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727602, - "label": "gadE-mdtEF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694835, - "label": "rplNp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727605, - "label": "pgl", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694837, - "label": "aroPp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727593, - "label": "yobF-cspC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727595, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727596, - "label": "metR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727597, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727598, - "label": "feaB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727584, - "label": "ynjH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727589, - "label": "nudE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727591, - "label": "phoPQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694812, - "label": "argCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3694814, - "label": "trxAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727582, - "label": "rplM-rpsI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727568, - "label": "iaaA-gsiABCD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727571, - "label": "ligB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727573, - "label": "selAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727574, - "label": "rpmI-rplT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727562, - "label": "lpxL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727563, - "label": "sohA-yhaV", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727564, - "label": "uhpABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727565, - "label": "mtr", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727566, - "label": "fxsA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694798, - "label": "feaRp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727552, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727553, - "label": "aroG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727555, - "label": "osmB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694787, - "label": "rpoZp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727556, - "label": "rlmM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727557, - "label": "gabDTP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727558, - "label": "rpiB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727559, - "label": "lolA-rarA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727677, - "label": "fepDGC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694896, - "label": "glsAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727667, - "label": "lrp", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727669, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727670, - "label": "arcA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727656, - "label": "ycgJ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727658, - "label": "codBA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694890, - "label": "uvrBp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727659, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727661, - "label": "miaA-hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727662, - "label": "sdiA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727648, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727649, - "label": "treBC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727650, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727651, - "label": "paaABCDEFGHIJK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694886, - "label": "hcaEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727641, - "label": "hlyE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694874, - "label": "yqjHp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727642, - "label": "gatZABCD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727643, - "label": "gntK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694875, - "label": "evgAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727644, - "label": "sbcDC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694879, - "label": "hemAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727647, - "label": "eamA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727633, - "label": "ydbK-ompN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727635, - "label": "agp", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727636, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694870, - "label": "paaAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727638, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727639, - "label": "acrAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727624, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727626, - "label": "sodC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727616, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694848, - "label": "adhEp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727617, - "label": "ttdR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694850, - "label": "avtAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727619, - "label": "exbBD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727620, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694853, - "label": "acrDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727622, - "label": "ybgA-phr", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727623, - "label": "dcuA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727737, - "label": "uvrB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694970, - "label": "pckp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3694972, - "label": "cadBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727741, - "label": "patA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727742, - "label": "astCADBE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727729, - "label": "glgCAP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694961, - "label": "rseAp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727731, - "label": "argR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727732, - "label": "rrsB-gltT-rrlB-rrfB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727720, - "label": "shoB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694954, - "label": "rrsAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727722, - "label": "efp", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727723, - "label": "mutY-yggX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727725, - "label": "ybhQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694959, - "label": "ndhp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727727, - "label": "phoE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727712, - "label": "yaaU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694944, - "label": "znuCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727713, - "label": "metY-yhbC-nusA-infB-rbfA-truB-rpsO-pnp", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727716, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727717, - "label": "sucABCD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727719, - "label": "rcsA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694937, - "label": "marRp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727708, - "label": "yicH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694943, - "label": "fldAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727697, - "label": "fucAO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727699, - "label": "leuU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694933, - "label": "gadEp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727703, - "label": "manA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727688, - "label": "rfe-wzzE-wecBC-rffGHC-wecE-wzxE-wecF-wzyE-rffM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727689, - "label": "caiF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727690, - "label": "nrdG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727680, - "label": "mobAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727681, - "label": "rfbACX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727682, - "label": "fadD-sroD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727686, - "label": "dsdC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727800, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695034, - "label": "yegRp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727804, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695039, - "label": "glpDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3695030, - "label": "narGp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727785, - "label": "allR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695017, - "label": "pitBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727787, - "label": "ttdABT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695020, - "label": "pyrDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727788, - "label": "ftnB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727789, - "label": "dcuC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727791, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695008, - "label": "dgcZp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727776, - "label": "argI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727777, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727778, - "label": "ackA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727780, - "label": "inaA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727781, - "label": "garD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727782, - "label": "lysO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695000, - "label": "malTp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727769, - "label": "htpG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695002, - "label": "rpoHp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727771, - "label": "gadX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727775, - "label": "yeeED", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727761, - "label": "fiu", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727762, - "label": "qseBC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727765, - "label": "rfaH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727767, - "label": "fnr", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727753, - "label": "asnB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727754, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694988, - "label": "crpp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727757, - "label": "malEFG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694990, - "label": "gltAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727747, - "label": "hflD-purB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727748, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694980, - "label": "tdcAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3694982, - "label": "fecAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727750, - "label": "clpS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727751, - "label": "trxA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727868, - "label": "tpx", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695100, - "label": "dhaRp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727869, - "label": "yeaGH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727870, - "label": "sucAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727856, - "label": "eno", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695089, - "label": "artJp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727857, - "label": "ydcSTUV-patD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695091, - "label": "argOp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727859, - "label": "rpiA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727860, - "label": "ynfB-speG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727862, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695095, - "label": "poxBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727849, - "label": "yhhY", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727853, - "label": "btuCED", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727855, - "label": "nac", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695073, - "label": "rsdp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727843, - "label": "dppABCDF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727845, - "label": "rpmH-rnpA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727846, - "label": "artPIQM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727847, - "label": "bglG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727833, - "label": "glgS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695066, - "label": "rutAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727835, - "label": "yjeFE-amiB-mutL-miaA-hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727836, - "label": "mdtEF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727837, - "label": "galETK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727839, - "label": "hemL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727824, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727826, - "label": "ogt", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727828, - "label": "ybdN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727816, - "label": "iraD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695049, - "label": "cirAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727817, - "label": "infA-serW", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727822, - "label": "mscS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727809, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727810, - "label": "cho", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727812, - "label": "ompX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695045, - "label": "ydcSp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727813, - "label": "pitB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695047, - "label": "argAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727929, - "label": "ycjXF-tyrR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727930, - "label": "ftsQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727931, - "label": "nadC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695166, - "label": "cusRp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727935, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727924, - "label": "yjfZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727926, - "label": "malXY", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695144, - "label": "hisLp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727914, - "label": "ykgL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727915, - "label": "cysDNC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727918, - "label": "putP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695137, - "label": "furpb", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727905, - "label": "pps", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695143, - "label": "recNp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727898, - "label": "arcA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695132, - "label": "ygaCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727892, - "label": "ykgMO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727895, - "label": "thrLABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727881, - "label": "ilvIH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727885, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727873, - "label": "yntF-ydfK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695106, - "label": "dadAp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727874, - "label": "ydcK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727875, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727876, - "label": "ftsQAZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695111, - "label": "yrbLp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3695225, - "label": "furpa", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727995, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727996, - "label": "dmsABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727984, - "label": "ybjX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727986, - "label": "kdpFABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695220, - "label": "ttdRp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727988, - "label": "fliAZY", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727990, - "label": "topA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727978, - "label": "uspA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727981, - "label": "yieEF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727969, - "label": "gspCDEFGHIJKLMO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727972, - "label": "gnd", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727975, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727960, - "label": "yiiS-uspD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727961, - "label": "grcA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727963, - "label": "iraM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727964, - "label": "yagU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727965, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727966, - "label": "trpLEDCBA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727952, - "label": "gadEF-mdtEF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727958, - "label": "cadBA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695191, - "label": "yeaRp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3695178, - "label": "csrCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3695182, - "label": "malIp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727936, - "label": "betT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727938, - "label": "asnV", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695171, - "label": "prsp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3727939, - "label": "wzbc", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727942, - "label": "entS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728059, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728060, - "label": "amiC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695295, - "label": "bioAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728048, - "label": "pfkB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695280, - "label": "luxSp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728049, - "label": "mipA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728052, - "label": "kdtA-coaD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695285, - "label": "glnAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728054, - "label": "aroKB-damX-dam-rpe-gph-trpS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695286, - "label": "pyrLp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728055, - "label": "gadE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728040, - "label": "yoaC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695275, - "label": "metFp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728043, - "label": "rimP-nusA-infB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728045, - "label": "yrbN-deaD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728046, - "label": "leuV", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695265, - "label": "purMp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728034, - "label": "rfaDFCL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695267, - "label": "csgDp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728035, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728036, - "label": "xdhABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728025, - "label": "rpsLG-fusA-tufA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728028, - "label": "malY", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728031, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728016, - "label": "thiCEFSGH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728018, - "label": "cspA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728020, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728021, - "label": "bssS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728023, - "label": "kdgR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728008, - "label": "yadMLKC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695241, - "label": "alaEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728010, - "label": "nusA-infB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728011, - "label": "ybjQ-amiD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695245, - "label": "tyrPp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728013, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728003, - "label": "appY", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695235, - "label": "sucAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728006, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695312, - "label": "ddpXp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728081, - "label": "ptrA-recBD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728082, - "label": "atpIBEFHAGDC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728083, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728072, - "label": "dnaAN-recF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728075, - "label": "groL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728077, - "label": "ybaL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728078, - "label": "allS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728065, - "label": "pstSCA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728066, - "label": "galET", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695300, - "label": "ssrSp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728069, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728071, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728637, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728639, - "label": "serA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728697, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695929, - "label": "asnBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3695931, - "label": "aldAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728703, - "label": "uof-fur", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695935, - "label": "flup", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728690, - "label": "aldA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695924, - "label": "potFp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728680, - "label": "msrA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728681, - "label": "tcyJ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695913, - "label": "rplUp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728682, - "label": "rfaDFCL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728687, - "label": "cynTSX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728676, - "label": "yoaH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728677, - "label": "fumB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728679, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695896, - "label": "gndp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728664, - "label": "glnHPQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695898, - "label": "hydNp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728670, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695903, - "label": "nohAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728671, - "label": "arcA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728659, - "label": "metC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728661, - "label": "gadBC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728649, - "label": "wza-wzb-wzc-wcaAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728651, - "label": "hupA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728653, - "label": "leuLABCD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695887, - "label": "mazEp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728640, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728641, - "label": "poxB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695876, - "label": "glnKp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728764, - "label": "idnDOTR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695998, - "label": "fdhFp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728767, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728752, - "label": "metJ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695985, - "label": "ftsKp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728758, - "label": "ivbL-ilvBN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728759, - "label": "yhdN-zntR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695976, - "label": "livKp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728745, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728748, - "label": "ompA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695980, - "label": "ytfEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728750, - "label": "lysU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695982, - "label": "uspBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728738, - "label": "sodA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695972, - "label": "csrBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728742, - "label": "cydAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728743, - "label": "ytfE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728728, - "label": "fadL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728729, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728733, - "label": "moaABCDE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728721, - "label": "eno", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728726, - "label": "ybeL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728727, - "label": "elaB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695946, - "label": "metNp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3695947, - "label": "ynfEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728716, - "label": "yhbY", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728718, - "label": "slp-dctR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695951, - "label": "glnAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728705, - "label": "puuDRCBE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728708, - "label": "asnC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3695942, - "label": "hybOp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728710, - "label": "metZWV", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728711, - "label": "ftsK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728824, - "label": "hybOABCDEFG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728826, - "label": "tgt-yajC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696059, - "label": "purCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728827, - "label": "gadW", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728828, - "label": "panD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728829, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728830, - "label": "dhaKLM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696049, - "label": "uvrAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728817, - "label": "tsaE-amiB-mutL-miaA-hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728818, - "label": "rpoE-rseABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728821, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696054, - "label": "dpiBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728822, - "label": "ddlA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728815, - "label": "nikABCDER", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728803, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696024, - "label": "ftnAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728792, - "label": "ybiI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728793, - "label": "dcuSR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696029, - "label": "cydAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728797, - "label": "rpsB-tsf", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696017, - "label": "pdeLp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3696019, - "label": "cadCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728777, - "label": "menA-rraA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696009, - "label": "fucAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728778, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728779, - "label": "focA-pflB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728781, - "label": "metK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728783, - "label": "rybB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728770, - "label": "stpA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728775, - "label": "metY", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728888, - "label": "napFDAGHBC-ccmABCDEFGH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696120, - "label": "rpsUp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3696122, - "label": "hlyEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728891, - "label": "deoBD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728895, - "label": "glnHPQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696127, - "label": "ytfKp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728880, - "label": "cspE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728881, - "label": "shiA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728884, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728886, - "label": "fpr", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696118, - "label": "rpsBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3696104, - "label": "prpBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728877, - "label": "speAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696109, - "label": "uspAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728879, - "label": "garPLRK-rnpB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696111, - "label": "serCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728867, - "label": "lysU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728869, - "label": "ilvLXG_1G_2MEDA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728871, - "label": "yibD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696088, - "label": "aroHp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728856, - "label": "dnaAN-recF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728858, - "label": "leuE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728860, - "label": "prpR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696094, - "label": "csiDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728862, - "label": "yebQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728848, - "label": "feaB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728850, - "label": "evgAS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728852, - "label": "yfbK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728854, - "label": "artPIQM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728840, - "label": "borD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728843, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696079, - "label": "ssbp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3696068, - "label": "malPp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728836, - "label": "xapR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728837, - "label": "ssrS-ygfA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696069, - "label": "focAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728952, - "label": "mutY-yggX-mltC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696186, - "label": "aceEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728956, - "label": "cysB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728957, - "label": "mdtEF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728958, - "label": "fecIR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728944, - "label": "yhbO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728945, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696177, - "label": "acnAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728946, - "label": "mtr", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728948, - "label": "ompC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696181, - "label": "sufAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728950, - "label": "glnD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728936, - "label": "carAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696170, - "label": "fldBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728939, - "label": "mraW-ftsLI-murEF-mraY-murD-ftsW-murGC-ddlB-ftsQAZ-lpxC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728940, - "label": "ssrS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728942, - "label": "serC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728931, - "label": "leuO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728932, - "label": "folA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696166, - "label": "caiFp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728920, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728922, - "label": "aspC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696155, - "label": "cydAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728924, - "label": "yjcB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728927, - "label": "emrD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696144, - "label": "modAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728913, - "label": "ompN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728914, - "label": "iraD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728915, - "label": "hns", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728917, - "label": "mnmG-rsmG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728918, - "label": "rseABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728919, - "label": "clpPX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728904, - "label": "ynjH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728905, - "label": "narXL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728907, - "label": "pldA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728908, - "label": "fimE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696142, - "label": "amnp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728911, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728896, - "label": "yfhL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728898, - "label": "kdsA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728901, - "label": "ssb", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729017, - "label": "asnC-mioC-mnmG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729021, - "label": "hypABCDE-fhlA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696253, - "label": "malXp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3729022, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729009, - "label": "osmC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696242, - "label": "dsdCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3696244, - "label": "cvpAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3729012, - "label": "rssB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729013, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729014, - "label": "pheM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729015, - "label": "alx", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729000, - "label": "recN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729001, - "label": "pdeL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729003, - "label": "tppB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729007, - "label": "dsdA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728992, - "label": "nfsB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728996, - "label": "bioA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728997, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728998, - "label": "csgDEFG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696231, - "label": "fepDp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728984, - "label": "rpmE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728986, - "label": "glnALG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696220, - "label": "lrpp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3696222, - "label": "leuXp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728976, - "label": "narK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696209, - "label": "codBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728980, - "label": "narU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728982, - "label": "gadE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696200, - "label": "glcDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728970, - "label": "xdhABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696204, - "label": "metKp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728972, - "label": "uxaCA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696192, - "label": "ybjCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728964, - "label": "yafC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696197, - "label": "oppAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3728965, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728966, - "label": "pyrD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696199, - "label": "ssuEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3696313, - "label": "rrsBp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3729081, - "label": "queF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729082, - "label": "ampDE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729084, - "label": "gadAX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696318, - "label": "tynAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3696319, - "label": "appYp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3729072, - "label": "creABCD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729073, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696307, - "label": "puuAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3729076, - "label": "feaR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729077, - "label": "mscK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729078, - "label": "bglX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729068, - "label": "frc", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729071, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696292, - "label": "trpLp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3729062, - "label": "feoABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729048, - "label": "ytfK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696283, - "label": "purEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3729053, - "label": "yjhIHG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729054, - "label": "phoH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696273, - "label": "appCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3729043, - "label": "napFDAGHBC-ccmABCDEFGH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729044, - "label": "ydeA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729045, - "label": "exuT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696278, - "label": "yobFp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3729047, - "label": "dpiBA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729034, - "label": "ppk-ppx", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729037, - "label": "argH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729038, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729024, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729025, - "label": "rpmH-rnpA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729030, - "label": "acrR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696263, - "label": "atoDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3729144, - "label": "pdhR-aceEF-lpdA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729147, - "label": "fldA-uof-fur", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729149, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696368, - "label": "rpsAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3729139, - "label": "ppc", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729140, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729143, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729129, - "label": "yafNOP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696362, - "label": "metRp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3729132, - "label": "hycABCDEFGHI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729135, - "label": "ompR-envZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729120, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729122, - "label": "gatYZABCD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729125, - "label": "xapAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729127, - "label": "htrG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729112, - "label": "lysA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696344, - "label": "dnaAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3696347, - "label": "yhhXp5", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3729117, - "label": "araFGH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729118, - "label": "aceEF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696351, - "label": "ldtBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3729104, - "label": "sroH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729105, - "label": "fabG-acpP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729106, - "label": "yjjQ-bglJ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696339, - "label": "entSp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3729109, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729111, - "label": "ycaN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729099, - "label": "lepAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696332, - "label": "argRp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3729100, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729103, - "label": "phnCDEEFGHIJKLMNOP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729089, - "label": "waaA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696322, - "label": "dusBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3696323, - "label": "rplJp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3729093, - "label": "metF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729095, - "label": "relA-mazEF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729208, - "label": "csrC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729210, - "label": "ybiT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729211, - "label": "thiMD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729212, - "label": "galETKM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729202, - "label": "metH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729206, - "label": "sufABCDSE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729192, - "label": "purMN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729194, - "label": "upp-uraA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729195, - "label": "mnmA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729196, - "label": "glsA-ybaT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729197, - "label": "rnlB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729199, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729184, - "label": "soxR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696416, - "label": "cydAp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3729185, - "label": "mreBCD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729186, - "label": "ygaC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729187, - "label": "srkA-dsbA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729176, - "label": "yeaGH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729177, - "label": "rrsG-gltW-rrlG-rrfG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729178, - "label": "mutY-yggX-mltC-nupG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696410, - "label": "rpsAp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3696412, - "label": "tpxp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3729180, - "label": "yaiZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729182, - "label": "ahpCF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729183, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729168, - "label": "glnA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729172, - "label": "ilvC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729173, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729162, - "label": "icd", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696395, - "label": "allAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3729165, - "label": "csgDEFG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729166, - "label": "phoU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729152, - "label": "malK-lamB-malM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696384, - "label": "hemLp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3729153, - "label": "nepI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729154, - "label": "leuX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729159, - "label": "yciW", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729272, - "label": "sdiA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729265, - "label": "metR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729266, - "label": "yeaR-yoaG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729269, - "label": "moeAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729271, - "label": "rfaYZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729257, - "label": "yobF-cspC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729260, - "label": "pntAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729250, - "label": "tolC-ygiBC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729251, - "label": "rplNXE-rpsNH-rplFR-rpsE-rpmD-rplO-secY-rpmJ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729253, - "label": "rdcAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729243, - "label": "thrS-infC-rpmI-rplT-pheMST-ihfA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729232, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729235, - "label": "ribA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729238, - "label": "treF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729224, - "label": "osmB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729226, - "label": "glcDEFGBA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729227, - "label": "cdaR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729228, - "label": "serS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729229, - "label": "fbaB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729231, - "label": "yceA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729218, - "label": "dcuB-fumB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729220, - "label": "pdxK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729221, - "label": "yefM-yoeB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729222, - "label": "aroH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729336, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729338, - "label": "gltBDF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729340, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729341, - "label": "putA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729329, - "label": "adhE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729331, - "label": "hydN-hypF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729332, - "label": "miaA-hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729333, - "label": "sdiA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729334, - "label": "rpsO-pnp", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729322, - "label": "feaR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729324, - "label": "thrL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729327, - "label": "pliG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729312, - "label": "ilvL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729313, - "label": "nrdR-ribDE-nusB-thiL-pgpA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729314, - "label": "ivbL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729315, - "label": "brnQ-proY", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729318, - "label": "ydeE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729319, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729308, - "label": "acrEF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729298, - "label": "chpSB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729300, - "label": "xylR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729302, - "label": "nanA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729288, - "label": "fabHDG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729290, - "label": "rsd", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729291, - "label": "gpt", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729294, - "label": "ydeP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729280, - "label": "yeiL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729281, - "label": "tolC-ygiBC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729283, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729284, - "label": "rpsT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729285, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729286, - "label": "ygiZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729400, - "label": "fliAZY", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729403, - "label": "rrsC-gltU-rrlC-rrfC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729406, - "label": "yaiY", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729394, - "label": "mutY-yggX-mltC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729398, - "label": "tyrB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729399, - "label": "eptB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729387, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729388, - "label": "fumA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729390, - "label": "rpoN-hpf-ptsN-yhbJ-npr", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729378, - "label": "cpdB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729379, - "label": "selC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729380, - "label": "argX-hisR-leuT-proM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729381, - "label": "potFGHI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729382, - "label": "ydcSTUV-patD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729368, - "label": "flhDC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729372, - "label": "csiD-ygaF-gabDTP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729374, - "label": "pyrG-eno", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729360, - "label": "fixABCX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729362, - "label": "ydbK-ompN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729363, - "label": "yaeQ-arfB-nlpE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729364, - "label": "katE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729365, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729366, - "label": "yjgM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729367, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729357, - "label": "exuT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729344, - "label": "ssuEADCB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729347, - "label": "yqeK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729348, - "label": "entCEBA-ybdB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729351, - "label": "eda", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729464, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729466, - "label": "fadH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729469, - "label": "eno", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729456, - "label": "pepD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729457, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729458, - "label": "ubiCA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729461, - "label": "btuE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729449, - "label": "bolA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729452, - "label": "gudPXD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729455, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729440, - "label": "htpG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729441, - "label": "yjhA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729442, - "label": "metNIQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729444, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729445, - "label": "napFDAGHBC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729447, - "label": "argR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729432, - "label": "exbD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729434, - "label": "nrdDG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729438, - "label": "frdABCD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729424, - "label": "lon", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729426, - "label": "arcZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729428, - "label": "malPQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729430, - "label": "clpPX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729416, - "label": "uspC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729418, - "label": "purC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729422, - "label": "trxA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729409, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729411, - "label": "cynTS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729414, - "label": "pdxB-usg-truA-dedA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729528, - "label": "acpP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729530, - "label": "tktB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729531, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729535, - "label": "rdcAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729520, - "label": "nohA-stfQ-tfaQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729522, - "label": "yfgF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729524, - "label": "caiTABCDE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729527, - "label": "pyrG-eno", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729514, - "label": "yadV-htrE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729517, - "label": "artPIQM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729518, - "label": "yejG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729506, - "label": "yjeFE-amiB-mutL-miaA-hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729507, - "label": "mdtEF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729508, - "label": "galK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729510, - "label": "pagP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729502, - "label": "bisC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729489, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729492, - "label": "fadE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729493, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729495, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729482, - "label": "cbl", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729483, - "label": "ompW", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729484, - "label": "gss", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729485, - "label": "pcnB-folK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729486, - "label": "ftsAZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729475, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729593, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729596, - "label": "srlAEBD-gutM-srlR-gutQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729585, - "label": "nupC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729586, - "label": "yffB-dapE-ypfN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729588, - "label": "putP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729578, - "label": "smtA-mukFEB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729580, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729581, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729568, - "label": "arcA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729569, - "label": "glcBA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729575, - "label": "fepA-entD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729560, - "label": "ddpXABCDF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729565, - "label": "leuLABCD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729566, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729553, - "label": "tam", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729556, - "label": "pncB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729559, - "label": "mutL-miaA-hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729545, - "label": "ygaM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729546, - "label": "soxS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729550, - "label": "fumC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729551, - "label": "ilvIH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729536, - "label": "rpsA-ihfB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729538, - "label": "adhE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729540, - "label": "trpL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729542, - "label": "uvrB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729543, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729658, - "label": "gltA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729660, - "label": "topA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729662, - "label": "ompA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729648, - "label": "uspA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729650, - "label": "cpxRA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729655, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729640, - "label": "infC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729641, - "label": "astCADBE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729645, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729646, - "label": "phoA-psiF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729647, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729632, - "label": "ynfEFGH-dmsD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729633, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729635, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729636, - "label": "tyrR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729625, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729626, - "label": "rpoH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729628, - "label": "dcuB-fumB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729629, - "label": "crp", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729616, - "label": "cydAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729618, - "label": "pyrLBI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729620, - "label": "pcnB-folk", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729621, - "label": "uspB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729622, - "label": "pspG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729614, - "label": "yhhA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729601, - "label": "yacL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729602, - "label": "amn", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729605, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729606, - "label": "bioBFCD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729607, - "label": "gmk", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729720, - "label": "eco", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729721, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729725, - "label": "fadR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729713, - "label": "otsBA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729714, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729715, - "label": "ivbL-ilvBN-uhpABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729716, - "label": "leuO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729704, - "label": "rfbBDACX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729708, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729710, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729696, - "label": "ftsZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729699, - "label": "acrZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729700, - "label": "ldtB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729701, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729690, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729691, - "label": "bssS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729692, - "label": "ftnA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729695, - "label": "rpsMKD-rpoA-rplQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729680, - "label": "norVW", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729681, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729682, - "label": "lpp", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729683, - "label": "hiuH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729685, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729686, - "label": "thrS-infC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729687, - "label": "modABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729675, - "label": "argCBH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729679, - "label": "cusCFBA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729666, - "label": "fhuACDB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729667, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729670, - "label": "ybjC-nfsA-rimK-ybjN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697016, - "label": "argXp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697020, - "label": "rrsGp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697021, - "label": "garDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697009, - "label": "ydeAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697014, - "label": "thrLp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3696992, - "label": "ftsQp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3696989, - "label": "treBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3696980, - "label": "chbBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3696969, - "label": "fimAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3696973, - "label": "exbBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3696974, - "label": "gadYp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697087, - "label": "sodAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697072, - "label": "iraDp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697075, - "label": "yjbEp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697077, - "label": "fadBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697069, - "label": "lrhAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697057, - "label": "argDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697049, - "label": "ftsZp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697034, - "label": "rcnAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697036, - "label": "cysDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697149, - "label": "rpsJp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697151, - "label": "polAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697140, - "label": "cydDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697128, - "label": "trxAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697131, - "label": "ecnBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697123, - "label": "moeAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697126, - "label": "argEp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697116, - "label": "deoCp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697104, - "label": "omrBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697107, - "label": "katGp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697108, - "label": "lonp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697098, - "label": "bolAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697092, - "label": "ybdNp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697093, - "label": "yciWp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697200, - "label": "prpRp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697195, - "label": "rplMp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697184, - "label": "xapAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697189, - "label": "evgAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697191, - "label": "safAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697177, - "label": "grxBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697162, - "label": "nacp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697266, - "label": "rrsCp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697269, - "label": "sbcDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697271, - "label": "fumBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697256, - "label": "zntAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697262, - "label": "metZp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697249, - "label": "metCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697242, - "label": "iraMp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697245, - "label": "hdeDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697232, - "label": "psiEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697238, - "label": "wzap", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697222, - "label": "ubiCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697342, - "label": "narKp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697343, - "label": "ackAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697334, - "label": "dadAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697321, - "label": "phoQp5", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697322, - "label": "cysBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697304, - "label": "rpoSp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697310, - "label": "fadEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697302, - "label": "icdAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697294, - "label": "soxRp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697282, - "label": "cynTp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697284, - "label": "glgCp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697287, - "label": "casAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697403, - "label": "ykgMp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697377, - "label": "leuOp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697361, - "label": "cirAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697362, - "label": "metBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697359, - "label": "tppBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697346, - "label": "yojIp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697455, - "label": "emrKp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697444, - "label": "glnDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697429, - "label": "gadBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697418, - "label": "garPp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697412, - "label": "dhaKp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730297, - "label": "ppdAB-ygdB-ppdC-recC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697529, - "label": "hnsp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730300, - "label": "dcuA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697520, - "label": "rcsAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730289, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730291, - "label": "groL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730294, - "label": "gcl-hyi-glxR-ybbVW-allB-ybbY-glxK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697527, - "label": "nepIp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730280, - "label": "acnB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697513, - "label": "grcAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730282, - "label": "galET", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730284, - "label": "rob", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730286, - "label": "yghT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697518, - "label": "narXp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730287, - "label": "ygeH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730275, - "label": "hxpB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697507, - "label": "glnHp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730278, - "label": "rlmE-ftsH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697496, - "label": "fprp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697480, - "label": "inaAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697485, - "label": "speAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697487, - "label": "putPp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730360, - "label": "putP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697594, - "label": "metHp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730363, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730364, - "label": "cspD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730366, - "label": "yjfP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730352, - "label": "rfaDFCL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697587, - "label": "puuDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730357, - "label": "cynR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730359, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730345, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697579, - "label": "purRp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730347, - "label": "aspA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697581, - "label": "stpAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730351, - "label": "ybjN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697569, - "label": "ahpCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730337, - "label": "ytfB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730338, - "label": "dps", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730339, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730341, - "label": "arcA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730343, - "label": "agaSYBCDI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730328, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697560, - "label": "argSp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730329, - "label": "glyA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697565, - "label": "tcyPp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730320, - "label": "yjbE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730322, - "label": "dctA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697555, - "label": "leuOp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730324, - "label": "nanCM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697559, - "label": "glnBp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730327, - "label": "ycdT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730315, - "label": "hcp-hcr", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697549, - "label": "fumAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730317, - "label": "ydbK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730318, - "label": "kbp", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730319, - "label": "rhaT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697537, - "label": "hisJp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730307, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697539, - "label": "glgCp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730308, - "label": "gntKU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730310, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730311, - "label": "xthA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697657, - "label": "moaAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730426, - "label": "slyA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730428, - "label": "ilvY", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730429, - "label": "gspCDEFGHIJKLMO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730416, - "label": "thiI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697648, - "label": "hlpAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730418, - "label": "ompC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730419, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730408, - "label": "ssb", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730412, - "label": "fldB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697645, - "label": "gatYp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697646, - "label": "yhjXp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697634, - "label": "bioBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730403, - "label": "ptsG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697635, - "label": "efpp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730404, - "label": "osmF-yehYXW", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730406, - "label": "yafV", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730407, - "label": "radD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730392, - "label": "cbrBC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730394, - "label": "arcB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730396, - "label": "ybeQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730398, - "label": "ilvIH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730399, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730384, - "label": "yidQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730388, - "label": "appCBA-yccB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730391, - "label": "hisJQMP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697623, - "label": "lysAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730378, - "label": "atoDAEB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697610, - "label": "fruRp8", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730380, - "label": "asnT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697614, - "label": "glnLp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697615, - "label": "nrdDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730368, - "label": "uhpT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697601, - "label": "phnCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730371, - "label": "ybeZYX-lnt", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730372, - "label": "proP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697604, - "label": "yefMp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730375, - "label": "puuCBE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730488, - "label": "rpoE-rseABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730489, - "label": "lipA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730481, - "label": "insK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730484, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697718, - "label": "cspEp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697719, - "label": "dsrAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730487, - "label": "ahpCF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730472, - "label": "zinT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697704, - "label": "xylRp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730477, - "label": "ftsZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697711, - "label": "hiuHp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730465, - "label": "mcaS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730467, - "label": "rpsF-priB-rpsR-rplI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730471, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697688, - "label": "appYp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697689, - "label": "flhDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730457, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730448, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697682, - "label": "hdeAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730450, - "label": "macAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730454, - "label": "cobUST", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730440, - "label": "treA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730441, - "label": "yhjR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730443, - "label": "gltF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730444, - "label": "Unknown Display Name", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730445, - "label": "cysS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730447, - "label": "aceBAK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697679, - "label": "mraZp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730432, - "label": "topA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697667, - "label": "hycAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730436, - "label": "purT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730437, - "label": "sibA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730438, - "label": "deoCABD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3697788, - "label": "phoHp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697789, - "label": "purHp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697779, - "label": "dpiBp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697783, - "label": "relAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697769, - "label": "uvrBp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697770, - "label": "napFp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697765, - "label": "tomBp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697766, - "label": "katEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697758, - "label": "fhuFp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697744, - "label": "micFp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697745, - "label": "gspCp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697749, - "label": "phoEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697729, - "label": "cyoAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697844, - "label": "serAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697846, - "label": "argGp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697847, - "label": "aroLp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697827, - "label": "galEp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697817, - "label": "gadWp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697801, - "label": "aslBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697797, - "label": "ogtp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697906, - "label": "rpsTp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697908, - "label": "frcp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697901, - "label": "cfap1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697872, - "label": "yeaGp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697877, - "label": "cspAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697870, - "label": "ydhYp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697862, - "label": "uspEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697977, - "label": "adhEp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697983, - "label": "fliCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697968, - "label": "glcCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697961, - "label": "malZp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697965, - "label": "sdaAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697954, - "label": "lpdAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697955, - "label": "iclRp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697959, - "label": "adiCp7", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697945, - "label": "acnBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697938, - "label": "infCp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697934, - "label": "fixAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3698047, - "label": "rpoEp2b", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3698033, - "label": "cspDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3698031, - "label": "betIp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3698021, - "label": "srlAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3698023, - "label": "mprAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3698010, - "label": "exuTp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3698012, - "label": "ompCp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3698014, - "label": "qseBp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697994, - "label": "rrsDp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697995, - "label": "cdaRp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697999, - "label": "entCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697988, - "label": "gltBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697990, - "label": "metTp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3698056, - "label": "yjjZp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3698051, - "label": "rpoHp4", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3698617, - "label": "yhjR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698609, - "label": "ycgB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698615, - "label": "yehL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698604, - "label": "pdxK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698680, - "label": "upp", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698684, - "label": "relA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698677, - "label": "yejG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698667, - "label": "yhhA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698657, - "label": "yggP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698659, - "label": "acrE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698653, - "label": "ydiO", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698632, - "label": "amn", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698630, - "label": "aphA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698747, - "label": "ykgH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698749, - "label": "ybdL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698751, - "label": "ybjQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698742, - "label": "glpK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698729, - "label": "nudC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698733, - "label": "yjbQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698722, - "label": "ampD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698712, - "label": "deoB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698717, - "label": "xdhA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698704, - "label": "cpdB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698701, - "label": "yegL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698690, - "label": "gpt", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698694, - "label": "nupC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698813, - "label": "mreC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698792, - "label": "pdeC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698799, - "label": "phoB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698784, - "label": "ytfP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698788, - "label": "ygiF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698777, - "label": "ppx", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698781, - "label": "pitB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698783, - "label": "pldA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698772, - "label": "yajO", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698775, - "label": "panZ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698764, - "label": "yfgH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698765, - "label": "pstC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698756, - "label": "treA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698873, - "label": "ssuE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698868, - "label": "cysJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698848, - "label": "ychA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698851, - "label": "ydeN", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698852, - "label": "yigI", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698840, - "label": "ytjB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698833, - "label": "ydcS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698834, - "label": "pstS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698835, - "label": "yqeH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698827, - "label": "phoA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698830, - "label": "ppk", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698823, - "label": "ydiL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698937, - "label": "nac", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698938, - "label": "mdh", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698929, - "label": "glnK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698921, - "label": "narK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698926, - "label": "yecE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698913, - "label": "narU", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698915, - "label": "rutB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698916, - "label": "yhcA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698918, - "label": "yidQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698905, - "label": "patA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698909, - "label": "rpoN", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698903, - "label": "astC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698891, - "label": "glpE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698880, - "label": "ybgS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3699002, - "label": "polA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3699007, - "label": "yafV", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698992, - "label": "topA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698999, - "label": "ycfJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698985, - "label": "ppsA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698986, - "label": "holE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698990, - "label": "yieE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698970, - "label": "eno", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698975, - "label": "yceB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3698965, - "label": "maeA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3699069, - "label": "ydcZ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3699071, - "label": "ydhQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3699063, - "label": "ybdF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3699052, - "label": "dcm", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3699044, - "label": "rep", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3699034, - "label": "rob", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3699025, - "label": "ygcP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3699029, - "label": "gor", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3699030, - "label": "dnaA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3699132, - "label": "cho", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3699123, - "label": "yncE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3699124, - "label": "xthA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3699117, - "label": "ybeU", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3699119, - "label": "ybjX", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3699101, - "label": "yjcB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3699089, - "label": "yhhZ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3699093, - "label": "ytfJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3699081, - "label": "yghS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3699073, - "label": "yoaH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3666423, - "label": "[ribosomal protein L3]-N5-methyl-L-glutamine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699193, - "label": "aroFp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666419, - "label": "[protein]-N6-acetyl-L-lysine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699198, - "label": "decRp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699199, - "label": "fumCp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666427, - "label": "N6-(1-hydroxy-2-oxopropyl)-[protein]-L-lysine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699188, - "label": "ydiVp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699189, - "label": "frrp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666425, - "label": "[protein] (L-serine/L-threonine) phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699183, - "label": "fnrp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699168, - "label": "fadRp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699170, - "label": "ompWp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699173, - "label": "malEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699174, - "label": "hflDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699160, - "label": "rpmIp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699163, - "label": "phoAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699153, - "label": "trpRp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699158, - "label": "exuTp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699145, - "label": "creA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3699256, - "label": "allSp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699259, - "label": "ydeNp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666494, - "label": "D-ribofuranose", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699245, - "label": "pagPp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699233, - "label": "ydbKp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699236, - "label": "yjjQp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666453, - "label": "polymyxin", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699231, - "label": "mioCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666463, - "label": "[protein] S-acetyl-L-cysteine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699216, - "label": "ugpBp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699220, - "label": "qorAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666457, - "label": "2-deoxy-D-glucose", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699223, - "label": "metRp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699209, - "label": "ridAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699212, - "label": "mltFp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666551, - "label": "oligopeptide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699325, - "label": "idnDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666557, - "label": "sugar", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699307, - "label": "soxSp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699297, - "label": "ynfBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699288, - "label": "exbDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699293, - "label": "ilvIp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699284, - "label": "fimEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699277, - "label": "cydAp4", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666497, - "label": "β-lactam", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699267, - "label": "tktBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699271, - "label": "aspCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666504, - "label": "lipoprotein signal peptide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699385, - "label": "ygeHp10", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699382, - "label": "aidBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699360, - "label": "sgrSp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699362, - "label": "uhpTp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699364, - "label": "ftsZp4", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666602, - "label": "L-arabinose", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699353, - "label": "glnBp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666576, - "label": "D-galacturonate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699346, - "label": "nrdHp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699351, - "label": "nupCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666567, - "label": "long chain polyphosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699336, - "label": "gudPp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666563, - "label": "D-glucopyranose", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699340, - "label": "fepAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666574, - "label": "D-ribopyranose", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699329, - "label": "leuLp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699331, - "label": "thrUp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666570, - "label": "D-galactopyranose", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699440, - "label": "argFp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699446, - "label": "mnmGp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699437, - "label": "fadDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699427, - "label": "feaBp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699430, - "label": "dmsAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699431, - "label": "btuBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699416, - "label": "gadEp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699418, - "label": "omrAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699421, - "label": "kdpFp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666642, - "label": "D-arabinose", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699411, - "label": "ompCp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699412, - "label": "caiTp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699401, - "label": "ssbp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699403, - "label": "osmCp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699406, - "label": "waaYp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699392, - "label": "fadLp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699394, - "label": "fimBp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699518, - "label": "focAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666747, - "label": "D-xylose", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699509, - "label": "rpsMp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699498, - "label": "tauAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666725, - "label": "D-fructuronate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3666734, - "label": "D-glucuronate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3666732, - "label": "protein L-β-isoaspartate α-methyl ester", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699492, - "label": "robp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699457, - "label": "mntPp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699459, - "label": "acrRp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699463, - "label": "rpsLp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666807, - "label": "[2-oxoglutarate dehydrogenase E2 protein] N6-S-succinyldihydrolipoyl-L-lysine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699581, - "label": "norVp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699583, - "label": "csgDp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699569, - "label": "argPp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699570, - "label": "nfsBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666811, - "label": "[pyruvate dehydrogenase E2 protein] N6-S-acetyldihydrolipoyl-L-lysine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699574, - "label": "dpsp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699563, - "label": "glyAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699565, - "label": "metYp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699552, - "label": "rhaTp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699554, - "label": "napFp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699558, - "label": "dcuCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666774, - "label": "maltose", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699549, - "label": "crlp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699536, - "label": "gadEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666781, - "label": "N-acetyl-β-D-glucosaminyl-(1→4)-D-glucosamine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699540, - "label": "folAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699542, - "label": "pgip", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699529, - "label": "queAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699533, - "label": "mipAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699520, - "label": "pqiAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699522, - "label": "yegHp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699636, - "label": "cysJp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666875, - "label": "D-amino acid", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3666872, - "label": "long-chain fatty acid", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699624, - "label": "iraPp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699626, - "label": "mtrp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699616, - "label": "mdhp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699608, - "label": "ftsQp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666834, - "label": "aldonate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3666841, - "label": "[phospholipid] fatty acid containing cyclopropane", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699596, - "label": "cynRp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699585, - "label": "aspAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699591, - "label": "astCp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699704, - "label": "dgkAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699691, - "label": "dksAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699692, - "label": "leuOp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666914, - "label": "2-acyl-1-lyso-phosphatidylserine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3666925, - "label": "2-oxo carboxylate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3666923, - "label": "aromatic 2-oxo-acid", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3666922, - "label": "2-acyl-1-lyso-phosphatidylethanolamine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699672, - "label": "feaRp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666902, - "label": "glutamate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3666911, - "label": "2-acyl-sn-glycero-3-phosphocholine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699666, - "label": "ivbLp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699656, - "label": "nirBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666882, - "label": "medium chain fatty acid", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3666881, - "label": "aromatic amino acid", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3666888, - "label": "2,3,4-saturated fatty acid", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699760, - "label": "hcaRp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666976, - "label": "DNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699744, - "label": "gadAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699740, - "label": "rpmEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699742, - "label": "edap3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699720, - "label": "alaSp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3666948, - "label": "a methylated protein", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3699833, - "label": "fdnGp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699835, - "label": "rpoEp2a", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699831, - "label": "yibDp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699817, - "label": "uofp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699818, - "label": "dcuBp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699811, - "label": "nfop", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699800, - "label": "guaBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699792, - "label": "gabDp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699777, - "label": "putAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699890, - "label": "lysOp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699894, - "label": "pyrCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699874, - "label": "ilvCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699864, - "label": "fumCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699869, - "label": "yhjCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699854, - "label": "speCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699963, - "label": "artPp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699965, - "label": "citCp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699956, - "label": "rpsOp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699933, - "label": "aceBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699935, - "label": "ilvLp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699921, - "label": "pgaAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699923, - "label": "carAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699924, - "label": "metJp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699913, - "label": "glpABCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699918, - "label": "tolCp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699919, - "label": "fabHp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699906, - "label": "yoaCp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699910, - "label": "iraDp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700028, - "label": "pcnBp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700013, - "label": "cblp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700006, - "label": "gpmAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699993, - "label": "rpoSp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699996, - "label": "rpsPp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699989, - "label": "gdhAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699980, - "label": "dadAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699969, - "label": "acrAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700089, - "label": "malSp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700094, - "label": "ttdAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700073, - "label": "ptsGp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700078, - "label": "hypAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700065, - "label": "arcZp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700067, - "label": "gcvTp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700056, - "label": "lysRp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700058, - "label": "tyrTp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700052, - "label": "bglGp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700040, - "label": "cusCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700045, - "label": "pstSp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700033, - "label": "gntKp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3667382, - "label": "an L-seryl-[non-ribosomal peptide synthase]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3700158, - "label": "galEp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700148, - "label": "metAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3667364, - "label": "an [Fe-S] cluster scaffold protein", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3700139, - "label": "purLp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700140, - "label": "csgBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3667349, - "label": "a [corrinoid adenosyltransferase]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3700125, - "label": "rplVp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700117, - "label": "gspCp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700119, - "label": "tyrBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700105, - "label": "purTp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700109, - "label": "sdhCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700219, - "label": "rpsTp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700221, - "label": "yfdXp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3667454, - "label": "a thiocarboxy-[ThiS-Protein]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3700210, - "label": "leuOp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3667449, - "label": "all holo-acyl carrier proteins", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3667424, - "label": "a sulfurated [sulfur carrier]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3700194, - "label": "yjbQp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3667436, - "label": "an oxidized electron-transfer flavoprotein", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3700185, - "label": "yhdWp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700186, - "label": "dcuSp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3667422, - "label": "an unsulfurated [sulfur carrier]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3667418, - "label": "all apo-acyl carrier proteins", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3667416, - "label": "a [reduced flavoprotein]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3700168, - "label": "aroPp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700173, - "label": "ssrSp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700174, - "label": "yjiYp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700166, - "label": "thrSp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3700240, - "label": "pcnBp4", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3667461, - "label": "a soluble [acyl-carrier protein]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3700234, - "label": "infCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3667467, - "label": "an oxidized thioredoxin", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3700230, - "label": "yhhYp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3667464, - "label": "a protein with correct disulfide bonds", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3700670, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700729, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700730, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700733, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700734, - "label": "homoserine racemase", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700735, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700720, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700721, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700723, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700724, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700725, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700726, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700712, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700714, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700715, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700716, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700717, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700718, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700719, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700704, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700705, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700706, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700708, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700709, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700710, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700711, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700696, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700697, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700700, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700701, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700702, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700703, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700688, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700689, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700690, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700691, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700692, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700693, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700694, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700695, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700680, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700681, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700683, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700685, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700686, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700687, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700672, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700673, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700674, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700675, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700676, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700677, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700678, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700679, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700784, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700786, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700787, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700776, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700779, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700780, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700781, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700782, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700768, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700769, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700770, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700771, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700773, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700774, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700761, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700762, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700764, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700765, - "label": "lactate oxidation", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700752, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700753, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700754, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700755, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700756, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700757, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700758, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700744, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700745, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700748, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700749, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700750, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700751, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700736, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700737, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700739, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700741, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3700743, - "label": "Unknown Display Name", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3668083, - "label": "a citryl-holo [citrate lyase acyl-carrier protein]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3668093, - "label": "a methylated ribosomal protein L11", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3668066, - "label": "an [oxidized flavoprotein]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3668063, - "label": "a ThiS-ThiF acyl-disulfide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3668044, - "label": "an oxidized ferredoxin [iron-sulfur] cluster", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3668159, - "label": "ssDNA/pppN(pN)n-1 hybrid", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3668128, - "label": "an oxidized glutaredoxin", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3668140, - "label": "a uridylylated PII protein", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3668116, - "label": "a ThiS-ThiI acyl-disulfide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3668123, - "label": "a carboxy-adenylated-[ThiS sulfur-carrier protein]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3668101, - "label": "an oxidized flavodoxin", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3668188, - "label": "a single stranded DNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3668186, - "label": "a relaxed DNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3668270, - "label": "a holo [citrate lyase acyl-carrier protein]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3668246, - "label": "an S-sulfanyl-[cysteine desulfurase]-[disordered-form scaffold protein] complex", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3668245, - "label": "an isocitrate dehydrogenase", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3668230, - "label": "an acetyl-holo [citrate lyase acyl-carrier protein]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3668233, - "label": "a phosphorylated isocitrate dehydrogenase", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3668533, - "label": "a HypE hydrogenase maturation protein-S-cyanate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3668526, - "label": "a protein with a disulfide bond", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3668522, - "label": "a ThiS sulfur-carrier protein", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701363, - "label": "slyA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701367, - "label": "ynfF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701352, - "label": "abgA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701354, - "label": "rsd", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701355, - "label": "ynfG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701348, - "label": "nusB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701336, - "label": "mutY", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701343, - "label": "ynfE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701430, - "label": "fliA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3668646, - "label": "1-acyl-sn-glycerol 3-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3668643, - "label": "2-acyl-sn-glycerol 3-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701422, - "label": "mukE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701411, - "label": "yiiF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701414, - "label": "yhdN", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701415, - "label": "sdiA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701400, - "label": "ydcI", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701403, - "label": "hprR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3668627, - "label": "1-acyl-2-lyso-phosphatidylethanolamine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701407, - "label": "hspQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3668637, - "label": "2-acyl-1-lyso-phosphatidylglycerol", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701395, - "label": "rseA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701396, - "label": "blc", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701384, - "label": "allR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701387, - "label": "dgcM", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701391, - "label": "arcA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701377, - "label": "yobA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3668620, - "label": "poly-[(R)-3-hydroxybutanoate]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701382, - "label": "bssS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701501, - "label": "tff", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701503, - "label": "sroH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701489, - "label": "tomB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701490, - "label": "lrhA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701493, - "label": "cdaR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701481, - "label": "xapR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701484, - "label": "gadE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701486, - "label": "shoB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701460, - "label": "stpA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701453, - "label": "ompR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701554, - "label": "marR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3668774, - "label": "α-L-fucosyl-(1->4)-[2/3-O-acetyl-α-L-fucosyl]-(1->3)-β-D-glucopyranosyl-diphosphoundecaprenol", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701547, - "label": "pdeL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701550, - "label": "rho", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701536, - "label": "yciT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3668782, - "label": "2-O-acetyl-β-D-galactosyl-(1->3)-α-L-fucosyl-(1->4)-[2/3-O-acetyl-α-L-fucosyl]-(1->3)-β-D-glucopyranosyl-diphosphoundecaprenol", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3668781, - "label": "[2/3-O-acetyl-α-L-fucosyl]-(1->3)-β-D-glucopyranosyl-diphosphoundecaprenol", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701538, - "label": "rstA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3668778, - "label": "β-D-galactosyl-(1->3)-α-L-fucosyl-(1->4)-[2/3-O-acetyl-α-L-fucosyl]-(1->3)-β-D-glucopyranosyl-diphosphoundecaprenol", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701528, - "label": "mcbA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701530, - "label": "eutS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701531, - "label": "zntR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701533, - "label": "gadX", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701535, - "label": "thrL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701526, - "label": "htrE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701504, - "label": "rpoZ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701506, - "label": "evgA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701508, - "label": "ykgA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701509, - "label": "mprA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701510, - "label": "soxS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701511, - "label": "tyrR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701627, - "label": "dhaR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701631, - "label": "yjiR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701620, - "label": "yiiE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701623, - "label": "gadW", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701608, - "label": "mntR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701613, - "label": "yjhI", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701573, - "label": "uvrY", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701574, - "label": "yihL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701575, - "label": "acrR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701688, - "label": "nusA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3668925, - "label": "2,3,4-saturated 1,2-diacyl-sn-glycerol 3-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701683, - "label": "rluE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3668896, - "label": "[HPr]-L-histidine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701679, - "label": "rlmE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3668911, - "label": "lyso-phosphatidylglycerol", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3668908, - "label": "1-lyso-phospholipid", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701668, - "label": "qseB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701656, - "label": "yiaG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3668884, - "label": "[PTS enzyme I]-L-histidine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3668894, - "label": "[protein]-N-phospho-L-histidine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701636, - "label": "hupA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701752, - "label": "rpsH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701754, - "label": "gcvB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701756, - "label": "iraP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701744, - "label": "ydiV", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3668965, - "label": "cardiolipin", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701721, - "label": "mnmA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3668947, - "label": "1-(3-sn-phosphatidyl)-sn-glycerol 3-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701724, - "label": "ydiP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3668946, - "label": "1,2-diacyl-sn-glycerol 3-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701710, - "label": "ygiV", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3668943, - "label": "L-1-phosphatidyl-sn-glycerol", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3668939, - "label": "L-1-phosphatidylethanolamine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3668938, - "label": "3-sn-phosphatidyl-L-serine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701702, - "label": "ygaV", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701809, - "label": "hfq", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3669030, - "label": "N6-dimethyladenine1518/N6-dimethyladenine1519in 16S rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3669028, - "label": "6-sulfo-D-quinovose", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3669035, - "label": "2/3-phospho-D-glycerate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701796, - "label": "iraD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3669013, - "label": "N7-methylguanine527 in 16S rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3669010, - "label": "N2-methylguanine966 in 16S rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701789, - "label": "queF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3669009, - "label": "N2-methylguanine1516 in 16S rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701776, - "label": "sulA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3669021, - "label": "N3-methyluracil1498 in 16S rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3669017, - "label": "N7-methylguanine2069 in 23S rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3669006, - "label": "N2-methylguanine1207 in 16S rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701885, - "label": "lysPp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3701875, - "label": "metY", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701879, - "label": "argU", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701866, - "label": "ygaZ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701856, - "label": "lolA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701863, - "label": "metT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3669076, - "label": "[glycine-cleavage complex H protein] N6-aminomethyldihydrolipoyl-L-lysine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3669086, - "label": "[glycine-cleavage complex H protein] N6-dihydrolipoyl-L-lysine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701841, - "label": "selC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701845, - "label": "trhO", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3669080, - "label": "sugar alcohol", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701833, - "label": "yfhL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3701834, - "label": "fepE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3669070, - "label": "epoxyqueuosine34 in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3669175, - "label": "fatty acid", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3669171, - "label": "monocarboxylate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701951, - "label": "tonBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3701940, - "label": "livJp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3701942, - "label": "serWp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3701929, - "label": "nrfAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3701931, - "label": "yeiLp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3701916, - "label": "serAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3669136, - "label": "lactone", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701911, - "label": "gadXp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3701889, - "label": "patAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3701892, - "label": "tcyJp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3701894, - "label": "fesp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3669239, - "label": "carboxylate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702013, - "label": "tyrRp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3669234, - "label": "disaccharide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702003, - "label": "kblp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3702005, - "label": "fkpAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3669219, - "label": "short-chain carboxylate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3669216, - "label": "trisaccharide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701985, - "label": "hyaAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3669207, - "label": "amino acid", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701983, - "label": "betTp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3669211, - "label": "dicarboxylate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701962, - "label": "fecIp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3701964, - "label": "ompCp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3669199, - "label": "hydroxylated carboxylate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3701957, - "label": "dmsAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3669302, - "label": "5-methyluracil1939 in 23S rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3669301, - "label": "α-D-glucosyl-lipopolysaccharide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702065, - "label": "serine—tRNA ligase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3669309, - "label": "5-methylcytosine1407 in 16S rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702067, - "label": "aromatic amino acid:H+ symporter AroP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702058, - "label": "rmfp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3702059, - "label": "branched chain amino acid/phenylalanine ABC transporter membrane subunit LivM", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702062, - "label": "RNA polymerase, sigma 28 (sigma F) factor", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702049, - "label": "leuEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3669293, - "label": "protein-L-methionine-(R)-S-oxide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702053, - "label": "aroGp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3702043, - "label": "frdAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3669267, - "label": "adenine in DNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702044, - "label": "ssbp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3702033, - "label": "malKp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3669277, - "label": "protein-L-methionine-(S)-S-oxide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702034, - "label": "dsdXp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3702038, - "label": "folEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3702028, - "label": "yjeVp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3702018, - "label": "citCp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3702023, - "label": "phoBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3702136, - "label": "enolase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702130, - "label": "phosphate ABC transporter periplasmic binding protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3669350, - "label": "N4-methylcytidine1402 in 16S rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3669346, - "label": "2'-O-methylcytidine1402 in 16S rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702112, - "label": "putative formate-dependent nitrite reductase complex subunit NrfF", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702114, - "label": "IPR002035 domain-containing protein YegL", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702118, - "label": "DUF386 domain-containing evolved β-D-galactosidase subunit β", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702119, - "label": "flagellar filament structural protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3669329, - "label": "2-methyladenine in rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702111, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702099, - "label": "anaerobic ubiquinone biosynthesis accessory factor UbiT", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3669339, - "label": "2-methyladenine2503 in 23S rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3669319, - "label": "N6,N6-dimethyladenine in rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3669318, - "label": "rough-form lipopolysaccharide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3669326, - "label": "5-methylcytosine967 in 16S rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702082, - "label": "acetyl-CoA-bound PanD maturation factor", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3669321, - "label": "E. coli MLPS", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3669320, - "label": "5-methyluracil747 in 23S rRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702205, - "label": "putative NAD(P)H-dependent oxidoreductase YcaK", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702206, - "label": "DNA-binding transcriptional dual regulator GlcC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702192, - "label": "quinate/shikimate dehydrogenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702194, - "label": "exopolyphosphatase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702196, - "label": "inner membrane protein YeeE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702197, - "label": "DpiB-N-phospho-L-histidine", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702190, - "label": "Npr phosphorylated", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702179, - "label": "putative diguanylate cyclase DgcQ", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702182, - "label": "DNA-cytosine methyltransferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702160, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702165, - "label": "aerotaxis sensor receptor, flavoprotein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702154, - "label": "Zn2+ ABC transporter periplasmic binding protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702155, - "label": "aerobic glycerol 3-phosphate dehydrogenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702157, - "label": "PF04237 family protein YjbR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702159, - "label": "Unknown Display Name", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702144, - "label": "guanylate kinase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702266, - "label": "phenylacetaldehyde dehydrogenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702269, - "label": "DNA-binding transcriptional dual regulator MetR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702270, - "label": "putative transporter YhjE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3669503, - "label": "[glutamine-synthetase]-L-tyrosine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702248, - "label": "putative carbon-nitrogen hydrolase family protein YobB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702255, - "label": "D-lactate dehydrogenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702240, - "label": "bacterioferritin-associated ferredoxin", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702241, - "label": "MoaD-S", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702247, - "label": "secreted protein YebF", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3669462, - "label": "N10-formyltetrahydrofolate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702234, - "label": "glutamate decarboxylase B", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3669458, - "label": "(6S)-5-formyltetrahydrofolate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702231, - "label": "dTDP-glucose 4,6-dehydratase 1", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702218, - "label": "pyridine nucleotide transhydrogenase subunit α", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3669455, - "label": "5,10-methylenetetrahydrofolate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702208, - "label": "DUF535 domain-containing protein YbjX", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702215, - "label": "Tol-Pal system periplasmic protein TolB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3669565, - "label": "D-glucosamine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702323, - "label": "anti-sigma-E factor RseA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3669537, - "label": "2-thiocytosine32 in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702305, - "label": "putative 4Fe-4S cluster-containing protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702310, - "label": "toxic peptide ShoB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702298, - "label": "zinc finger domain-containing protein YbiI", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702302, - "label": "putative acyltransferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702303, - "label": "C4-dicarboxylate transporter DcuA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702290, - "label": "pyridoxal kinase I", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3669528, - "label": "N6-L-threonylcarbamoyladenine37 in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702282, - "label": "L-glutamine ABC transporter periplasmic binding protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702285, - "label": "sorbitol-specific PTS enzyme IIC2 component", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702274, - "label": "50S ribosomal subunit protein L3 N5-glutamine methyltransferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3669514, - "label": "glutamyl-queuosine at position 34 of a tRNAAsp", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3669512, - "label": "2-methyladenine37 in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702395, - "label": "DNA-binding transcriptional repressor AllR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702396, - "label": "1-deoxyxylulose-5-phosphate synthase YajO", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702398, - "label": "flagellar filament capping protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3669631, - "label": "unwound double-stranded DNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702390, - "label": "cyclopropane fatty acyl phospholipid synthase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702378, - "label": "orphan toxin OrtT", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702370, - "label": "CP4-57 prophage; antitoxin RnlB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702374, - "label": "stringent response modulator YtfK", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702363, - "label": "lipoprotein release complex", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3669575, - "label": "4-thiouracil in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702346, - "label": "ferredoxin-like diferric-tyrosyl radical cofactor maintenance protein YfaE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702339, - "label": "RNA decapping hydrolase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702340, - "label": "bacteriophage N4 adsorption protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3669695, - "label": "a phosphorylated phosphoglucosamine mutase", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702440, - "label": "ybiO", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702445, - "label": "asnT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702432, - "label": "ybdG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702438, - "label": "nanC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702417, - "label": "heme trafficking system ATP-binding protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3702419, - "label": "DNA-binding transcriptional dual regulator HcaR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3669639, - "label": "DNAn", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3669647, - "label": "unwound RNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702402, - "label": "D-glucoronate/D-galacturonate isomerase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3669745, - "label": "a protein with reduced L-cysteine residues", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702514, - "label": "aldA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3669741, - "label": "a ThiF protein", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702490, - "label": "asnV", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702480, - "label": "leuU", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702483, - "label": "ileY", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3669722, - "label": "a phosphoglucomutase", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702473, - "label": "msbA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3669700, - "label": "a small subunit of molybdopterin synthase", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3669808, - "label": "a seryl-[EntF L-seryl-carrier protein]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702579, - "label": "aspS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702580, - "label": "araF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702581, - "label": "serS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702570, - "label": "xylF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702573, - "label": "lysU", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702575, - "label": "alaS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702553, - "label": "gadY", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702559, - "label": "micF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702544, - "label": "dkgA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702545, - "label": "sibA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702549, - "label": "mcaS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702542, - "label": "sad", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702543, - "label": "spf", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702528, - "label": "dcuA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702533, - "label": "sibE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702535, - "label": "micC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3669880, - "label": "a PII protein", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3669869, - "label": "a phosphoglucosamine mutase", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3669843, - "label": "a small subunit of molybdopterin synthase", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702622, - "label": "mglB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702608, - "label": "hcaR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702611, - "label": "cysS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702613, - "label": "thrS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3669850, - "label": "a cleaved type IV prepilin", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702607, - "label": "argS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702598, - "label": "lldP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702712, - "label": "glcC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3669943, - "label": "a leader sequence", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3669942, - "label": "MoeB-YnjE acyl-disulfide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702705, - "label": "hpf", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3669944, - "label": "a HypE hydrogenase maturation protein-S-carboxamide", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3669924, - "label": "an N-(2,3-dihydroxybenzoyl)-seryl-[EntF L-seryl-carrier protein]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702688, - "label": "malY", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702690, - "label": "pfkB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702684, - "label": "fucK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3669906, - "label": "a thiocarboxylated [small subunit of molybdopterin synthase]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702668, - "label": "gatA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702776, - "label": "yadM", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3670011, - "label": "a [ThiI sulfur-carrier protein]-L-cysteine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702772, - "label": "galK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702773, - "label": "fimA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3669989, - "label": "a phosphorylated phosphoglucomutase", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702763, - "label": "srlA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702765, - "label": "rplR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702766, - "label": "araE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3669984, - "label": "a [ThiI sulfur-carrier protein]-S-sulfanyl-L-cysteine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702754, - "label": "rpmH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702755, - "label": "dhaK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3669994, - "label": "a holo-[EntF L-seryl-carrier protein]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3669975, - "label": "a carboxy-adenylated [small subunit of molybdopterin synthase]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702748, - "label": "lepA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702749, - "label": "yhbY", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3669981, - "label": "a YnjE protein", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 3702738, - "label": "focA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702743, - "label": "deaD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702729, - "label": "manX", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702733, - "label": "rimP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3702735, - "label": "uhpA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3669965, - "label": "an S-sulfanyl-[L-cysteine desulfurase]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - } - ], - "edges": [ - { - "id": 393227, - "label": "ELEMENT_OF", - "from": 3687590, - "to": 3726936, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393224, - "label": "ELEMENT_OF", - "from": 3694853, - "to": 3726933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393245, - "label": "ELEMENT_OF", - "from": 3698834, - "to": 3726940, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393243, - "label": "ELEMENT_OF", - "from": 3696177, - "to": 3726939, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393248, - "label": "ELEMENT_OF", - "from": 3700158, - "to": 3726941, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393276, - "label": "ELEMENT_OF", - "from": 3706808, - "to": 3726950, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393285, - "label": "ELEMENT_OF", - "from": 3696395, - "to": 3726953, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393282, - "label": "ELEMENT_OF", - "from": 3690602, - "to": 3726952, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393303, - "label": "ELEMENT_OF", - "from": 3687570, - "to": 3726963, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393296, - "label": "ELEMENT_OF", - "from": 3699993, - "to": 3726960, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393316, - "label": "ELEMENT_OF", - "from": 3697126, - "to": 3726967, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393323, - "label": "ELEMENT_OF", - "from": 3707190, - "to": 3726968, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393340, - "label": "ELEMENT_OF", - "from": 3701387, - "to": 3726976, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393341, - "label": "ELEMENT_OF", - "from": 3702483, - "to": 3726977, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393338, - "label": "ELEMENT_OF", - "from": 3694670, - "to": 3726975, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393359, - "label": "ELEMENT_OF", - "from": 3699692, - "to": 3726982, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393352, - "label": "ELEMENT_OF", - "from": 3711948, - "to": 3726979, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393615, - "label": "ELEMENT_OF", - "from": 3694937, - "to": 3726988, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328085, - "label": "REGULATES", - "from": 3712357, - "to": 3717924, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328083, - "label": "BINDS", - "from": 3717924, - "to": 3683264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328092, - "label": "REGULATES", - "from": 3710270, - "to": 3717926, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328095, - "label": "REGULATES", - "from": 3685566, - "to": 3717927, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328094, - "label": "REGULATES", - "from": 3717927, - "to": 3687871, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328091, - "label": "REGULATES", - "from": 3717926, - "to": 3697343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328090, - "label": "BINDS", - "from": 3717926, - "to": 3685281, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328110, - "label": "REGULATES", - "from": 3677368, - "to": 3717931, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328107, - "label": "REGULATES", - "from": 3712586, - "to": 3717930, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328117, - "label": "REGULATES", - "from": 3677394, - "to": 3717933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393653, - "label": "ELEMENT_OF", - "from": 3701875, - "to": 3727000, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393650, - "label": "ELEMENT_OF", - "from": 3711872, - "to": 3726999, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328112, - "label": "BINDS", - "from": 3717932, - "to": 3678464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328114, - "label": "REGULATES", - "from": 3710274, - "to": 3717932, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328139, - "label": "REGULATES", - "from": 3676091, - "to": 3717939, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328138, - "label": "REGULATES", - "from": 3717939, - "to": 3691479, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393684, - "label": "ELEMENT_OF", - "from": 3694959, - "to": 3727007, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328157, - "label": "REGULATES", - "from": 3717944, - "to": 3699297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328156, - "label": "BINDS", - "from": 3717944, - "to": 3687142, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328158, - "label": "REGULATES", - "from": 3707928, - "to": 3717944, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328165, - "label": "REGULATES", - "from": 3711265, - "to": 3717946, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328164, - "label": "REGULATES", - "from": 3717946, - "to": 3694706, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328173, - "label": "REGULATES", - "from": 3711265, - "to": 3717948, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393706, - "label": "ELEMENT_OF", - "from": 3694970, - "to": 3727017, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393727, - "label": "ELEMENT_OF", - "from": 3701396, - "to": 3727024, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393735, - "label": "ELEMENT_OF", - "from": 3712068, - "to": 3727026, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393743, - "label": "ELEMENT_OF", - "from": 3702961, - "to": 3727028, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328213, - "label": "REGULATES", - "from": 3711600, - "to": 3717959, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328212, - "label": "REGULATES", - "from": 3717959, - "to": 3695100, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328211, - "label": "BINDS", - "from": 3717959, - "to": 3685257, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393754, - "label": "ELEMENT_OF", - "from": 3700058, - "to": 3727030, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393766, - "label": "ELEMENT_OF", - "from": 3687672, - "to": 3727034, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393772, - "label": "ELEMENT_OF", - "from": 3690789, - "to": 3727036, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328239, - "label": "REGULATES", - "from": 3718538, - "to": 3717966, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393771, - "label": "ELEMENT_OF", - "from": 3707274, - "to": 3727035, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393782, - "label": "ELEMENT_OF", - "from": 3699029, - "to": 3727039, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393780, - "label": "ELEMENT_OF", - "from": 3687669, - "to": 3727038, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393791, - "label": "ELEMENT_OF", - "from": 3712239, - "to": 3727041, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328249, - "label": "REGULATES", - "from": 3682021, - "to": 3717969, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328248, - "label": "REGULATES", - "from": 3717969, - "to": 3687746, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328261, - "label": "REGULATES", - "from": 3711265, - "to": 3717972, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328263, - "label": "REGULATES", - "from": 3717973, - "to": 3687879, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328259, - "label": "BINDS", - "from": 3717972, - "to": 3683089, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328268, - "label": "REGULATES", - "from": 3711179, - "to": 3717974, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328264, - "label": "REGULATES", - "from": 3677711, - "to": 3717973, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328267, - "label": "REGULATES", - "from": 3717974, - "to": 3699963, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328266, - "label": "BINDS", - "from": 3717974, - "to": 3678761, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328277, - "label": "BINDS", - "from": 3717977, - "to": 3687160, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393812, - "label": "ELEMENT_OF", - "from": 3678818, - "to": 3727044, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328279, - "label": "REGULATES", - "from": 3710228, - "to": 3717977, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328278, - "label": "REGULATES", - "from": 3717977, - "to": 3699656, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328285, - "label": "REGULATES", - "from": 3717979, - "to": 3692694, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393821, - "label": "ELEMENT_OF", - "from": 3679956, - "to": 3727048, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328286, - "label": "REGULATES", - "from": 3682200, - "to": 3717979, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393817, - "label": "ELEMENT_OF", - "from": 3693767, - "to": 3727045, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328295, - "label": "BINDS", - "from": 3717982, - "to": 3687443, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393826, - "label": "ELEMENT_OF", - "from": 3719941, - "to": 3727049, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328290, - "label": "REGULATES", - "from": 3718538, - "to": 3717980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393836, - "label": "ELEMENT_OF", - "from": 3719999, - "to": 3727052, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178849986, - "label": "PRODUCES", - "from": 3705580, - "to": 3679472, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393834, - "label": "ELEMENT_OF", - "from": 3698970, - "to": 3727051, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328297, - "label": "REGULATES", - "from": 3710228, - "to": 3717982, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328323, - "label": "REGULATES", - "from": 3710270, - "to": 3717989, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328345, - "label": "REGULATES", - "from": 3707928, - "to": 3717995, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197281, - "label": "IN_PATHWAY", - "from": 3705347, - "to": 3693103, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197285, - "label": "IN_PATHWAY", - "from": 3700773, - "to": 3693104, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328365, - "label": "BINDS", - "from": 3718001, - "to": 3683200, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328367, - "label": "REGULATES", - "from": 3710270, - "to": 3718001, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328361, - "label": "BINDS", - "from": 3718000, - "to": 3686349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328363, - "label": "REGULATES", - "from": 3711267, - "to": 3718000, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197297, - "label": "IN_PATHWAY", - "from": 3709189, - "to": 3693106, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197303, - "label": "IN_PATHWAY", - "from": 3707633, - "to": 3693108, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197307, - "label": "IN_PATHWAY", - "from": 3709279, - "to": 3693109, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197315, - "label": "IN_PATHWAY", - "from": 3706346, - "to": 3693110, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328391, - "label": "BINDS", - "from": 3718008, - "to": 3675624, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197318, - "label": "IN_PATHWAY", - "from": 3708552, - "to": 3693111, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197322, - "label": "IN_PATHWAY", - "from": 3709543, - "to": 3693113, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197320, - "label": "IN_PATHWAY", - "from": 3700693, - "to": 3693112, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328393, - "label": "REGULATES", - "from": 3714081, - "to": 3718008, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197325, - "label": "IN_PATHWAY", - "from": 3708834, - "to": 3693114, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197331, - "label": "IN_PATHWAY", - "from": 3705417, - "to": 3693116, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197328, - "label": "IN_PATHWAY", - "from": 3705262, - "to": 3693115, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197334, - "label": "IN_PATHWAY", - "from": 3705470, - "to": 3693117, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328403, - "label": "REGULATES", - "from": 3682077, - "to": 3718011, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328413, - "label": "BINDS", - "from": 3718014, - "to": 3687259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328415, - "label": "REGULATES", - "from": 3708153, - "to": 3718014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328414, - "label": "REGULATES", - "from": 3718014, - "to": 3695976, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197342, - "label": "IN_PATHWAY", - "from": 3709543, - "to": 3693118, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328421, - "label": "REGULATES", - "from": 3718016, - "to": 3694562, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328420, - "label": "BINDS", - "from": 3718016, - "to": 3683172, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328422, - "label": "REGULATES", - "from": 3705945, - "to": 3718016, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197351, - "label": "IN_PATHWAY", - "from": 3709556, - "to": 3693120, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197349, - "label": "IN_PATHWAY", - "from": 3709226, - "to": 3693119, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197355, - "label": "IN_PATHWAY", - "from": 3705695, - "to": 3693121, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328429, - "label": "REGULATES", - "from": 3710228, - "to": 3718018, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328431, - "label": "BINDS", - "from": 3718019, - "to": 3685194, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197358, - "label": "IN_PATHWAY", - "from": 3709275, - "to": 3693122, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328427, - "label": "BINDS", - "from": 3718018, - "to": 3679930, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197360, - "label": "IN_PATHWAY", - "from": 3700758, - "to": 3693123, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361201, - "label": "REGULATES", - "from": 3710270, - "to": 3722220, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328433, - "label": "REGULATES", - "from": 3710270, - "to": 3718019, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361200, - "label": "REGULATES", - "from": 3722220, - "to": 3697242, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197370, - "label": "IN_PATHWAY", - "from": 3700703, - "to": 3693124, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197375, - "label": "IN_PATHWAY", - "from": 3709377, - "to": 3693126, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328440, - "label": "REGULATES", - "from": 3681147, - "to": 3718021, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197372, - "label": "IN_PATHWAY", - "from": 3709377, - "to": 3693125, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361220, - "label": "REGULATES", - "from": 3708153, - "to": 3722225, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361223, - "label": "REGULATES", - "from": 3722226, - "to": 3699236, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361222, - "label": "BINDS", - "from": 3722226, - "to": 3678867, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328451, - "label": "REGULATES", - "from": 3711285, - "to": 3718024, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361218, - "label": "BINDS", - "from": 3722225, - "to": 3686143, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328461, - "label": "REGULATES", - "from": 3718027, - "to": 3689414, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197386, - "label": "IN_PATHWAY", - "from": 3707469, - "to": 3693127, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328462, - "label": "REGULATES", - "from": 3677696, - "to": 3718027, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361224, - "label": "REGULATES", - "from": 3708423, - "to": 3722226, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328469, - "label": "REGULATES", - "from": 3677368, - "to": 3718029, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361237, - "label": "BINDS", - "from": 3722230, - "to": 3686432, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361239, - "label": "REGULATES", - "from": 3718384, - "to": 3722230, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197392, - "label": "IN_PATHWAY", - "from": 3705583, - "to": 3693128, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197399, - "label": "IN_PATHWAY", - "from": 3709049, - "to": 3693130, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197396, - "label": "IN_PATHWAY", - "from": 3694252, - "to": 3693129, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328466, - "label": "REGULATES", - "from": 3711285, - "to": 3718028, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328477, - "label": "REGULATES", - "from": 3708153, - "to": 3718031, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328476, - "label": "REGULATES", - "from": 3718031, - "to": 3694529, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361241, - "label": "BINDS", - "from": 3722231, - "to": 3678861, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197406, - "label": "IN_PATHWAY", - "from": 3706657, - "to": 3693131, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361243, - "label": "REGULATES", - "from": 3710270, - "to": 3722231, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361242, - "label": "REGULATES", - "from": 3722231, - "to": 3694933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328484, - "label": "REGULATES", - "from": 3677427, - "to": 3718033, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361252, - "label": "BINDS", - "from": 3722234, - "to": 3687408, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197409, - "label": "IN_PATHWAY", - "from": 3709046, - "to": 3693132, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361254, - "label": "REGULATES", - "from": 3710228, - "to": 3722234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328483, - "label": "REGULATES", - "from": 3718033, - "to": 3688188, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197413, - "label": "IN_PATHWAY", - "from": 3707645, - "to": 3693133, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197420, - "label": "IN_PATHWAY", - "from": 3706624, - "to": 3693135, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197424, - "label": "IN_PATHWAY", - "from": 3706624, - "to": 3693136, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361265, - "label": "REGULATES", - "from": 3684130, - "to": 3722237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328497, - "label": "BINDS", - "from": 3718037, - "to": 3678517, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361264, - "label": "REGULATES", - "from": 3722237, - "to": 3692750, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328499, - "label": "REGULATES", - "from": 3710246, - "to": 3718037, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328498, - "label": "REGULATES", - "from": 3718037, - "to": 3697908, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361277, - "label": "REGULATES", - "from": 3712357, - "to": 3722240, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361279, - "label": "BINDS", - "from": 3722241, - "to": 3687425, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197436, - "label": "IN_PATHWAY", - "from": 3707340, - "to": 3693139, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361284, - "label": "REGULATES", - "from": 3683877, - "to": 3722242, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328519, - "label": "BINDS", - "from": 3718043, - "to": 3682787, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197440, - "label": "IN_PATHWAY", - "from": 3708889, - "to": 3693140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197447, - "label": "IN_PATHWAY", - "from": 3707340, - "to": 3693142, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361281, - "label": "REGULATES", - "from": 3710270, - "to": 3722241, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197451, - "label": "IN_PATHWAY", - "from": 3707401, - "to": 3693143, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361292, - "label": "REGULATES", - "from": 3708153, - "to": 3722244, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328527, - "label": "REGULATES", - "from": 3718045, - "to": 3689408, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328521, - "label": "REGULATES", - "from": 3710238, - "to": 3718043, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328520, - "label": "REGULATES", - "from": 3718043, - "to": 3728871, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197458, - "label": "IN_PATHWAY", - "from": 3709211, - "to": 3694236, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328532, - "label": "REGULATES", - "from": 3704560, - "to": 3718046, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328528, - "label": "REGULATES", - "from": 3681872, - "to": 3718045, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197465, - "label": "IN_PATHWAY", - "from": 3705220, - "to": 3694238, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361311, - "label": "REGULATES", - "from": 3711189, - "to": 3722249, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197470, - "label": "IN_PATHWAY", - "from": 3706630, - "to": 3694239, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361313, - "label": "BINDS", - "from": 3722250, - "to": 3682859, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197477, - "label": "IN_PATHWAY", - "from": 3694299, - "to": 3694241, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361315, - "label": "REGULATES", - "from": 3705945, - "to": 3722250, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361314, - "label": "REGULATES", - "from": 3722250, - "to": 3699817, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328557, - "label": "REGULATES", - "from": 3677368, - "to": 3718053, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328556, - "label": "REGULATES", - "from": 3718053, - "to": 3688945, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197480, - "label": "IN_PATHWAY", - "from": 3707340, - "to": 3694242, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328552, - "label": "BINDS", - "from": 3718052, - "to": 3682802, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197484, - "label": "IN_PATHWAY", - "from": 3706549, - "to": 3694243, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328554, - "label": "REGULATES", - "from": 3718384, - "to": 3718052, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197491, - "label": "IN_PATHWAY", - "from": 3706741, - "to": 3694244, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328565, - "label": "REGULATES", - "from": 3710228, - "to": 3718055, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328567, - "label": "BINDS", - "from": 3718056, - "to": 3682796, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361334, - "label": "REGULATES", - "from": 3718538, - "to": 3722255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361329, - "label": "REGULATES", - "from": 3722254, - "to": 3697151, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361328, - "label": "BINDS", - "from": 3722254, - "to": 3683307, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361330, - "label": "REGULATES", - "from": 3711317, - "to": 3722254, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328572, - "label": "REGULATES", - "from": 3681868, - "to": 3718057, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361343, - "label": "BINDS", - "from": 3722258, - "to": 3683155, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328575, - "label": "REGULATES", - "from": 3718058, - "to": 3696009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328574, - "label": "BINDS", - "from": 3718058, - "to": 3679973, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328569, - "label": "REGULATES", - "from": 3710167, - "to": 3718056, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328571, - "label": "REGULATES", - "from": 3718057, - "to": 3685626, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361349, - "label": "REGULATES", - "from": 3711179, - "to": 3722259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328581, - "label": "BINDS", - "from": 3718060, - "to": 3685006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328583, - "label": "REGULATES", - "from": 3710228, - "to": 3718060, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361345, - "label": "REGULATES", - "from": 3710208, - "to": 3722258, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328576, - "label": "REGULATES", - "from": 3710590, - "to": 3718058, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197509, - "label": "IN_PATHWAY", - "from": 3706687, - "to": 3694248, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328579, - "label": "REGULATES", - "from": 3677678, - "to": 3718059, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361347, - "label": "BINDS", - "from": 3722259, - "to": 3679641, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328578, - "label": "REGULATES", - "from": 3718059, - "to": 3685873, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361357, - "label": "REGULATES", - "from": 3710270, - "to": 3722261, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328589, - "label": "BINDS", - "from": 3718062, - "to": 3682890, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328591, - "label": "REGULATES", - "from": 3705945, - "to": 3718062, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197512, - "label": "IN_PATHWAY", - "from": 3709258, - "to": 3694249, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361353, - "label": "REGULATES", - "from": 3718538, - "to": 3722260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197517, - "label": "IN_PATHWAY", - "from": 3705528, - "to": 3694250, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361355, - "label": "BINDS", - "from": 3722261, - "to": 3686586, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328597, - "label": "REGULATES", - "from": 3718064, - "to": 3699209, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328596, - "label": "BINDS", - "from": 3718064, - "to": 3686269, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328598, - "label": "REGULATES", - "from": 3708153, - "to": 3718064, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361366, - "label": "BINDS", - "from": 3722264, - "to": 3678524, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328593, - "label": "REGULATES", - "from": 3718063, - "to": 3687828, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197526, - "label": "IN_PATHWAY", - "from": 3709202, - "to": 3694252, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328594, - "label": "REGULATES", - "from": 3677501, - "to": 3718063, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197524, - "label": "IN_PATHWAY", - "from": 3709542, - "to": 3694251, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328605, - "label": "REGULATES", - "from": 3711285, - "to": 3718066, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361375, - "label": "REGULATES", - "from": 3722266, - "to": 3699431, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361374, - "label": "BINDS", - "from": 3722266, - "to": 3686495, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197535, - "label": "IN_PATHWAY", - "from": 3707466, - "to": 3694254, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361368, - "label": "REGULATES", - "from": 3710228, - "to": 3722264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328603, - "label": "BINDS", - "from": 3718066, - "to": 3685449, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197532, - "label": "IN_PATHWAY", - "from": 3706568, - "to": 3694253, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197539, - "label": "IN_PATHWAY", - "from": 3708698, - "to": 3694255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328613, - "label": "REGULATES", - "from": 3710228, - "to": 3718068, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361376, - "label": "REGULATES", - "from": 3707928, - "to": 3722266, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361379, - "label": "REGULATES", - "from": 3677368, - "to": 3722267, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361389, - "label": "BINDS", - "from": 3722270, - "to": 3680032, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328623, - "label": "REGULATES", - "from": 3677431, - "to": 3718071, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361391, - "label": "REGULATES", - "from": 3711317, - "to": 3722270, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197544, - "label": "IN_PATHWAY", - "from": 3707512, - "to": 3694256, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197548, - "label": "IN_PATHWAY", - "from": 3707356, - "to": 3694257, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197553, - "label": "IN_PATHWAY", - "from": 3706568, - "to": 3694258, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328625, - "label": "BINDS", - "from": 3718072, - "to": 3685139, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197557, - "label": "IN_PATHWAY", - "from": 3706568, - "to": 3694259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328627, - "label": "REGULATES", - "from": 3708153, - "to": 3718072, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328626, - "label": "REGULATES", - "from": 3718072, - "to": 3697965, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197561, - "label": "IN_PATHWAY", - "from": 3707652, - "to": 3694260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328638, - "label": "REGULATES", - "from": 3677460, - "to": 3718075, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361401, - "label": "REGULATES", - "from": 3722273, - "to": 3697968, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361400, - "label": "BINDS", - "from": 3722273, - "to": 3685170, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361402, - "label": "REGULATES", - "from": 3711301, - "to": 3722273, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197571, - "label": "IN_PATHWAY", - "from": 3700754, - "to": 3694261, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328645, - "label": "REGULATES", - "from": 3677428, - "to": 3718077, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197574, - "label": "IN_PATHWAY", - "from": 3707466, - "to": 3694262, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361408, - "label": "BINDS", - "from": 3722275, - "to": 3687330, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361410, - "label": "REGULATES", - "from": 3710228, - "to": 3722275, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197578, - "label": "IN_PATHWAY", - "from": 3707398, - "to": 3694263, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328649, - "label": "REGULATES", - "from": 3711249, - "to": 3718078, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197582, - "label": "IN_PATHWAY", - "from": 3708698, - "to": 3694264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197587, - "label": "IN_PATHWAY", - "from": 3707356, - "to": 3694265, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197591, - "label": "IN_PATHWAY", - "from": 3707466, - "to": 3694266, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328669, - "label": "BINDS", - "from": 3718084, - "to": 3678628, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328671, - "label": "REGULATES", - "from": 3705945, - "to": 3718084, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328670, - "label": "REGULATES", - "from": 3718084, - "to": 3697496, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361438, - "label": "BINDS", - "from": 3722283, - "to": 3687500, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328664, - "label": "REGULATES", - "from": 3711285, - "to": 3718082, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328667, - "label": "REGULATES", - "from": 3677368, - "to": 3718083, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197596, - "label": "IN_PATHWAY", - "from": 3707558, - "to": 3694267, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197603, - "label": "IN_PATHWAY", - "from": 3706568, - "to": 3694268, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197606, - "label": "IN_PATHWAY", - "from": 3708701, - "to": 3694269, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328684, - "label": "BINDS", - "from": 3718088, - "to": 3687362, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328686, - "label": "REGULATES", - "from": 3715127, - "to": 3718088, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328681, - "label": "REGULATES", - "from": 3718087, - "to": 3688807, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197613, - "label": "IN_PATHWAY", - "from": 3707373, - "to": 3694270, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328682, - "label": "REGULATES", - "from": 3710546, - "to": 3718087, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328695, - "label": "BINDS", - "from": 3718091, - "to": 3686558, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197616, - "label": "IN_PATHWAY", - "from": 3700755, - "to": 3694271, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197627, - "label": "IN_PATHWAY", - "from": 3709202, - "to": 3694273, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328697, - "label": "REGULATES", - "from": 3711285, - "to": 3718091, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197633, - "label": "IN_PATHWAY", - "from": 3700681, - "to": 3694274, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328717, - "label": "BINDS", - "from": 3718097, - "to": 3675650, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197642, - "label": "IN_PATHWAY", - "from": 3705442, - "to": 3694275, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328719, - "label": "REGULATES", - "from": 3711237, - "to": 3718097, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197646, - "label": "IN_PATHWAY", - "from": 3705546, - "to": 3694276, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328715, - "label": "REGULATES", - "from": 3710194, - "to": 3718096, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328714, - "label": "REGULATES", - "from": 3718096, - "to": 3694684, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197650, - "label": "IN_PATHWAY", - "from": 3705616, - "to": 3694277, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328733, - "label": "REGULATES", - "from": 3677161, - "to": 3718101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328728, - "label": "BINDS", - "from": 3718100, - "to": 3682814, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197660, - "label": "IN_PATHWAY", - "from": 3705613, - "to": 3694279, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328730, - "label": "REGULATES", - "from": 3708423, - "to": 3718100, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328741, - "label": "REGULATES", - "from": 3714706, - "to": 3718103, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 164898, - "label": "CATALYZES", - "from": 3708049, - "to": 3688117, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197666, - "label": "IN_PATHWAY", - "from": 3708572, - "to": 3694280, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328740, - "label": "REGULATES", - "from": 3718103, - "to": 3700117, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 164899, - "label": "CATALYZES", - "from": 3688117, - "to": 3708446, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328737, - "label": "REGULATES", - "from": 3710270, - "to": 3718102, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197670, - "label": "IN_PATHWAY", - "from": 3706589, - "to": 3694281, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328739, - "label": "BINDS", - "from": 3718103, - "to": 3685076, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197673, - "label": "IN_PATHWAY", - "from": 3707680, - "to": 3694282, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328751, - "label": "REGULATES", - "from": 3718106, - "to": 3699570, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328750, - "label": "BINDS", - "from": 3718106, - "to": 3678703, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 164910, - "label": "CATALYZES", - "from": 3702396, - "to": 3688123, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197683, - "label": "IN_PATHWAY", - "from": 3700675, - "to": 3694284, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328757, - "label": "BINDS", - "from": 3718108, - "to": 3683049, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197681, - "label": "IN_PATHWAY", - "from": 3705583, - "to": 3694283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328759, - "label": "REGULATES", - "from": 3710167, - "to": 3718108, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328752, - "label": "REGULATES", - "from": 3705945, - "to": 3718106, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197685, - "label": "IN_PATHWAY", - "from": 3708672, - "to": 3694285, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 164922, - "label": "CATALYZES", - "from": 3710432, - "to": 3688129, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 164923, - "label": "CATALYZES", - "from": 3688129, - "to": 3707604, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 164920, - "label": "CATALYZES", - "from": 3712680, - "to": 3688128, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197688, - "label": "IN_PATHWAY", - "from": 3708948, - "to": 3694286, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 164921, - "label": "CATALYZES", - "from": 3688128, - "to": 3708674, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197695, - "label": "IN_PATHWAY", - "from": 3706761, - "to": 3694289, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328763, - "label": "REGULATES", - "from": 3712313, - "to": 3718109, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197692, - "label": "IN_PATHWAY", - "from": 3700726, - "to": 3694288, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328762, - "label": "REGULATES", - "from": 3718109, - "to": 3729347, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197697, - "label": "IN_PATHWAY", - "from": 3708755, - "to": 3694290, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 164928, - "label": "CATALYZES", - "from": 3712616, - "to": 3688132, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 164929, - "label": "CATALYZES", - "from": 3688132, - "to": 3708782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197703, - "label": "IN_PATHWAY", - "from": 3706461, - "to": 3694291, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328769, - "label": "REGULATES", - "from": 3718111, - "to": 3688225, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197702, - "label": "IN_PATHWAY", - "from": 3694291, - "to": 3694293, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328770, - "label": "REGULATES", - "from": 3677336, - "to": 3718111, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 164939, - "label": "CATALYZES", - "from": 3688137, - "to": 3705476, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197705, - "label": "IN_PATHWAY", - "from": 3707827, - "to": 3694292, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197711, - "label": "IN_PATHWAY", - "from": 3708788, - "to": 3694294, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197714, - "label": "IN_PATHWAY", - "from": 3708812, - "to": 3694295, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197717, - "label": "IN_PATHWAY", - "from": 3707827, - "to": 3694296, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 164949, - "label": "CATALYZES", - "from": 3688142, - "to": 3707575, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197722, - "label": "IN_PATHWAY", - "from": 3708658, - "to": 3694297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394335, - "label": "ELEMENT_OF", - "from": 3694762, - "to": 3727058, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328799, - "label": "REGULATES", - "from": 3679401, - "to": 3718119, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394332, - "label": "ELEMENT_OF", - "from": 3698749, - "to": 3727056, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197725, - "label": "IN_PATHWAY", - "from": 3709439, - "to": 3694298, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 164956, - "label": "CATALYZES", - "from": 3710176, - "to": 3688146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197730, - "label": "IN_PATHWAY", - "from": 3705256, - "to": 3694299, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 164960, - "label": "CATALYZES", - "from": 3704114, - "to": 3688148, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394338, - "label": "ELEMENT_OF", - "from": 3699869, - "to": 3727059, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197738, - "label": "IN_PATHWAY", - "from": 3709439, - "to": 3694300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 164971, - "label": "CATALYZES", - "from": 3688153, - "to": 3709025, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197743, - "label": "IN_PATHWAY", - "from": 3709439, - "to": 3694301, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328809, - "label": "BINDS", - "from": 3718122, - "to": 3685020, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328811, - "label": "REGULATES", - "from": 3710228, - "to": 3718122, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328810, - "label": "REGULATES", - "from": 3718122, - "to": 3699581, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328821, - "label": "REGULATES", - "from": 3684064, - "to": 3718125, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328820, - "label": "REGULATES", - "from": 3718125, - "to": 3691064, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394357, - "label": "ELEMENT_OF", - "from": 3707094, - "to": 3727064, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328817, - "label": "REGULATES", - "from": 3718124, - "to": 3728729, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328816, - "label": "BINDS", - "from": 3718124, - "to": 3685357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197749, - "label": "IN_PATHWAY", - "from": 3705429, - "to": 3694302, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 164981, - "label": "CATALYZES", - "from": 3688158, - "to": 3707593, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328818, - "label": "REGULATES", - "from": 3712313, - "to": 3718124, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394353, - "label": "ELEMENT_OF", - "from": 3701957, - "to": 3727063, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328829, - "label": "REGULATES", - "from": 3711233, - "to": 3718127, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 164990, - "label": "CATALYZES", - "from": 3714477, - "to": 3688163, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328827, - "label": "BINDS", - "from": 3718127, - "to": 3683208, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197757, - "label": "IN_PATHWAY", - "from": 3708494, - "to": 3694303, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197761, - "label": "IN_PATHWAY", - "from": 3706761, - "to": 3694304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 164996, - "label": "CATALYZES", - "from": 3710433, - "to": 3688166, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328845, - "label": "BINDS", - "from": 3718132, - "to": 3682990, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328847, - "label": "REGULATES", - "from": 3710270, - "to": 3718132, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328840, - "label": "REGULATES", - "from": 3708153, - "to": 3718130, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394379, - "label": "ELEMENT_OF", - "from": 3717046, - "to": 3727072, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328843, - "label": "REGULATES", - "from": 3710552, - "to": 3718131, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197776, - "label": "IN_PATHWAY", - "from": 3705244, - "to": 3694309, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394389, - "label": "ELEMENT_OF", - "from": 3702863, - "to": 3727078, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 165009, - "label": "CATALYZES", - "from": 3688172, - "to": 3709484, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328849, - "label": "BINDS", - "from": 3718133, - "to": 3679724, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328851, - "label": "REGULATES", - "from": 3712380, - "to": 3718133, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197781, - "label": "IN_PATHWAY", - "from": 3709527, - "to": 3694311, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328850, - "label": "REGULATES", - "from": 3718133, - "to": 3696017, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 165018, - "label": "CATALYZES", - "from": 3708198, - "to": 3688177, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328857, - "label": "REGULATES", - "from": 3718135, - "to": 3689392, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 165023, - "label": "CATALYZES", - "from": 3688179, - "to": 3705518, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328858, - "label": "REGULATES", - "from": 3681698, - "to": 3718135, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 165026, - "label": "CATALYZES", - "from": 3714758, - "to": 3688181, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197794, - "label": "IN_PATHWAY", - "from": 3700743, - "to": 3694313, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 165027, - "label": "CATALYZES", - "from": 3688181, - "to": 3708547, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 165024, - "label": "CATALYZES", - "from": 3710433, - "to": 3688180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328871, - "label": "BINDS", - "from": 3718139, - "to": 3685366, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197799, - "label": "IN_PATHWAY", - "from": 3705207, - "to": 3694315, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 165028, - "label": "CATALYZES", - "from": 3710433, - "to": 3688182, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 165029, - "label": "CATALYZES", - "from": 3688182, - "to": 3705259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178687500, - "label": "PRODUCES", - "from": 3705547, - "to": 3681276, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328873, - "label": "REGULATES", - "from": 3712313, - "to": 3718139, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328872, - "label": "REGULATES", - "from": 3718139, - "to": 3726061, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197804, - "label": "IN_PATHWAY", - "from": 3705679, - "to": 3694316, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394409, - "label": "ELEMENT_OF", - "from": 3701490, - "to": 3727080, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197811, - "label": "IN_PATHWAY", - "from": 3694318, - "to": 3694319, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328884, - "label": "REGULATES", - "from": 3711183, - "to": 3718142, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197809, - "label": "IN_PATHWAY", - "from": 3706321, - "to": 3694317, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 165046, - "label": "CATALYZES", - "from": 3708270, - "to": 3688191, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197813, - "label": "IN_PATHWAY", - "from": 3706321, - "to": 3694318, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328882, - "label": "BINDS", - "from": 3718142, - "to": 3678827, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 165051, - "label": "CATALYZES", - "from": 3688193, - "to": 3705676, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197817, - "label": "IN_PATHWAY", - "from": 3700723, - "to": 3694320, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 165048, - "label": "CATALYZES", - "from": 3713940, - "to": 3688192, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 165049, - "label": "CATALYZES", - "from": 3688192, - "to": 3708459, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197821, - "label": "IN_PATHWAY", - "from": 3705209, - "to": 3694321, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328891, - "label": "REGULATES", - "from": 3710562, - "to": 3718144, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197826, - "label": "IN_PATHWAY", - "from": 3708587, - "to": 3694322, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 165059, - "label": "CATALYZES", - "from": 3688197, - "to": 3707717, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394436, - "label": "ELEMENT_OF", - "from": 3716636, - "to": 3727088, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 165056, - "label": "CATALYZES", - "from": 3718460, - "to": 3688196, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197831, - "label": "IN_PATHWAY", - "from": 3709423, - "to": 3694324, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328897, - "label": "BINDS", - "from": 3718146, - "to": 3678469, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328899, - "label": "REGULATES", - "from": 3710578, - "to": 3718146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328909, - "label": "REGULATES", - "from": 3681755, - "to": 3718149, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 165066, - "label": "CATALYZES", - "from": 3715054, - "to": 3688201, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197834, - "label": "IN_PATHWAY", - "from": 3700735, - "to": 3694325, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328908, - "label": "REGULATES", - "from": 3718149, - "to": 3691483, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 165064, - "label": "CATALYZES", - "from": 3714255, - "to": 3688200, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 165065, - "label": "CATALYZES", - "from": 3688200, - "to": 3708656, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394441, - "label": "ELEMENT_OF", - "from": 3699394, - "to": 3727090, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 165069, - "label": "CATALYZES", - "from": 3688202, - "to": 3706717, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197836, - "label": "ENCODES", - "from": 3719995, - "to": 3702059, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394454, - "label": "ELEMENT_OF", - "from": 3698014, - "to": 3727093, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197840, - "label": "ENCODES", - "from": 3701430, - "to": 3702062, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197847, - "label": "ENCODES", - "from": 3717136, - "to": 3702067, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197844, - "label": "ENCODES", - "from": 3702581, - "to": 3702065, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328927, - "label": "REGULATES", - "from": 3718154, - "to": 3727616, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 165080, - "label": "CATALYZES", - "from": 3712531, - "to": 3688208, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 165081, - "label": "CATALYZES", - "from": 3688208, - "to": 3708548, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394459, - "label": "ELEMENT_OF", - "from": 3687301, - "to": 3727094, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394468, - "label": "ELEMENT_OF", - "from": 3682902, - "to": 3727098, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 165094, - "label": "CATALYZES", - "from": 3712498, - "to": 3688215, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328928, - "label": "REGULATES", - "from": 3712313, - "to": 3718154, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328931, - "label": "REGULATES", - "from": 3677289, - "to": 3718155, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394464, - "label": "ELEMENT_OF", - "from": 3701407, - "to": 3727095, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 165098, - "label": "CATALYZES", - "from": 3711389, - "to": 3688217, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394476, - "label": "ELEMENT_OF", - "from": 3701460, - "to": 3727100, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 165096, - "label": "CATALYZES", - "from": 3712461, - "to": 3688216, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 165100, - "label": "CATALYZES", - "from": 3714656, - "to": 3688218, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394487, - "label": "ELEMENT_OF", - "from": 3690687, - "to": 3727105, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328950, - "label": "REGULATES", - "from": 3711189, - "to": 3718160, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394482, - "label": "ELEMENT_OF", - "from": 3697232, - "to": 3727102, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328957, - "label": "REGULATES", - "from": 3711303, - "to": 3718162, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394494, - "label": "ELEMENT_OF", - "from": 3690548, - "to": 3727108, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197882, - "label": "ENCODES", - "from": 3690560, - "to": 3702099, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 165115, - "label": "CATALYZES", - "from": 3688225, - "to": 3706298, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 165112, - "label": "CATALYZES", - "from": 3712573, - "to": 3688224, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328953, - "label": "REGULATES", - "from": 3677353, - "to": 3718161, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394499, - "label": "ELEMENT_OF", - "from": 3702738, - "to": 3727109, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394510, - "label": "ELEMENT_OF", - "from": 3697801, - "to": 3727116, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197898, - "label": "ENCODES", - "from": 3716725, - "to": 3702112, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197897, - "label": "ENCODES", - "from": 3687666, - "to": 3702111, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197900, - "label": "ENCODES", - "from": 3698701, - "to": 3702114, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328981, - "label": "BINDS", - "from": 3718169, - "to": 3684977, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328983, - "label": "REGULATES", - "from": 3712313, - "to": 3718169, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197905, - "label": "ENCODES", - "from": 3690900, - "to": 3702119, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328982, - "label": "REGULATES", - "from": 3718169, - "to": 3727800, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197904, - "label": "ENCODES", - "from": 3702813, - "to": 3702118, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394527, - "label": "ELEMENT_OF", - "from": 3716765, - "to": 3727122, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328990, - "label": "REGULATES", - "from": 3677368, - "to": 3718171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394523, - "label": "ELEMENT_OF", - "from": 3707233, - "to": 3727120, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394520, - "label": "ELEMENT_OF", - "from": 3698684, - "to": 3727119, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197916, - "label": "ENCODES", - "from": 3698834, - "to": 3702130, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394535, - "label": "ELEMENT_OF", - "from": 3702607, - "to": 3727124, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197922, - "label": "ENCODES", - "from": 3698970, - "to": 3702136, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 329004, - "label": "REGULATES", - "from": 3714331, - "to": 3718175, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 329007, - "label": "REGULATES", - "from": 3718176, - "to": 3696283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394540, - "label": "ELEMENT_OF", - "from": 3701504, - "to": 3727127, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 329006, - "label": "BINDS", - "from": 3718176, - "to": 3685023, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394536, - "label": "ELEMENT_OF", - "from": 3707108, - "to": 3727125, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197933, - "label": "ENCODES", - "from": 3690502, - "to": 3702144, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 329003, - "label": "REGULATES", - "from": 3718175, - "to": 3694542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 329002, - "label": "BINDS", - "from": 3718175, - "to": 3686427, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 329013, - "label": "BINDS", - "from": 3718178, - "to": 3687210, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394551, - "label": "ELEMENT_OF", - "from": 3694874, - "to": 3727132, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 329015, - "label": "REGULATES", - "from": 3710274, - "to": 3718178, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197943, - "label": "ENCODES", - "from": 3716871, - "to": 3702154, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 329008, - "label": "REGULATES", - "from": 3711207, - "to": 3718176, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 329011, - "label": "REGULATES", - "from": 3677458, - "to": 3718177, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394545, - "label": "ELEMENT_OF", - "from": 3707270, - "to": 3727129, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 329021, - "label": "REGULATES", - "from": 3718180, - "to": 3694477, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197946, - "label": "ENCODES", - "from": 3694016, - "to": 3702157, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 329020, - "label": "BINDS", - "from": 3718180, - "to": 3686537, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197944, - "label": "ENCODES", - "from": 3716636, - "to": 3702155, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 329022, - "label": "REGULATES", - "from": 3711163, - "to": 3718180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197951, - "label": "ENCODES", - "from": 3717069, - "to": 3702160, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197948, - "label": "ENCODES", - "from": 3693732, - "to": 3702159, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 329030, - "label": "REGULATES", - "from": 3707928, - "to": 3718182, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197956, - "label": "ENCODES", - "from": 3707233, - "to": 3702165, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 329037, - "label": "REGULATES", - "from": 3712313, - "to": 3718184, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 329036, - "label": "REGULATES", - "from": 3718184, - "to": 3727263, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 329035, - "label": "BINDS", - "from": 3718184, - "to": 3684986, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197975, - "label": "ENCODES", - "from": 3699052, - "to": 3702182, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197972, - "label": "ENCODES", - "from": 3712107, - "to": 3702179, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197986, - "label": "ENCODES", - "from": 3687564, - "to": 3702192, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197990, - "label": "ENCODES", - "from": 3717105, - "to": 3702196, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 197988, - "label": "ENCODES", - "from": 3698777, - "to": 3702194, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198002, - "label": "ENCODES", - "from": 3702712, - "to": 3702206, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198001, - "label": "ENCODES", - "from": 3694053, - "to": 3702205, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198004, - "label": "ENCODES", - "from": 3699119, - "to": 3702208, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198015, - "label": "ENCODES", - "from": 3693979, - "to": 3702218, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198012, - "label": "ENCODES", - "from": 3707311, - "to": 3702215, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198031, - "label": "ENCODES", - "from": 3690734, - "to": 3702231, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198034, - "label": "ENCODES", - "from": 3719990, - "to": 3702234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198041, - "label": "ENCODES", - "from": 3707176, - "to": 3702240, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198049, - "label": "ENCODES", - "from": 3717035, - "to": 3702248, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198048, - "label": "ENCODES", - "from": 3716762, - "to": 3702247, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198060, - "label": "ENCODES", - "from": 3712213, - "to": 3702255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198075, - "label": "ENCODES", - "from": 3690444, - "to": 3702269, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198072, - "label": "ENCODES", - "from": 3711708, - "to": 3702266, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198077, - "label": "ENCODES", - "from": 3707338, - "to": 3702270, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198082, - "label": "ENCODES", - "from": 3702874, - "to": 3702274, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361920, - "label": "REGULATES", - "from": 3710208, - "to": 3722283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361932, - "label": "REGULATES", - "from": 3711285, - "to": 3722286, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361935, - "label": "REGULATES", - "from": 3672880, - "to": 3722287, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361931, - "label": "REGULATES", - "from": 3722286, - "to": 3696973, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361930, - "label": "BINDS", - "from": 3722286, - "to": 3678430, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198092, - "label": "ENCODES", - "from": 3720037, - "to": 3702282, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198096, - "label": "ENCODES", - "from": 3702763, - "to": 3702285, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198101, - "label": "ENCODES", - "from": 3698604, - "to": 3702290, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361951, - "label": "REGULATES", - "from": 3710274, - "to": 3722291, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198111, - "label": "ENCODES", - "from": 3716882, - "to": 3702298, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361958, - "label": "REGULATES", - "from": 3708153, - "to": 3722293, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198118, - "label": "ENCODES", - "from": 3702528, - "to": 3702303, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198116, - "label": "ENCODES", - "from": 3690771, - "to": 3702302, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198121, - "label": "ENCODES", - "from": 3690613, - "to": 3702305, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198126, - "label": "ENCODES", - "from": 3701486, - "to": 3702310, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361981, - "label": "REGULATES", - "from": 3711445, - "to": 3722299, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361980, - "label": "REGULATES", - "from": 3722299, - "to": 3697075, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361983, - "label": "BINDS", - "from": 3722300, - "to": 3679660, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361979, - "label": "BINDS", - "from": 3722299, - "to": 3679929, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198140, - "label": "ENCODES", - "from": 3701395, - "to": 3702323, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361985, - "label": "REGULATES", - "from": 3711285, - "to": 3722300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361984, - "label": "REGULATES", - "from": 3722300, - "to": 3697087, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 361999, - "label": "REGULATES", - "from": 3722304, - "to": 3694342, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198158, - "label": "ENCODES", - "from": 3706854, - "to": 3702340, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198157, - "label": "ENCODES", - "from": 3698729, - "to": 3702339, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198166, - "label": "ENCODES", - "from": 3702863, - "to": 3702346, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362000, - "label": "REGULATES", - "from": 3710208, - "to": 3722304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362013, - "label": "BINDS", - "from": 3722308, - "to": 3687250, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362015, - "label": "REGULATES", - "from": 3710228, - "to": 3722308, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362014, - "label": "REGULATES", - "from": 3722308, - "to": 3694433, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362011, - "label": "REGULATES", - "from": 3677441, - "to": 3722307, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362010, - "label": "REGULATES", - "from": 3722307, - "to": 3692607, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362021, - "label": "BINDS", - "from": 3722310, - "to": 3685109, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362023, - "label": "REGULATES", - "from": 3715027, - "to": 3722310, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362022, - "label": "REGULATES", - "from": 3722310, - "to": 3699616, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362017, - "label": "BINDS", - "from": 3722309, - "to": 3685070, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362019, - "label": "REGULATES", - "from": 3710246, - "to": 3722309, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362018, - "label": "REGULATES", - "from": 3722309, - "to": 3697455, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362029, - "label": "REGULATES", - "from": 3722312, - "to": 3685664, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198185, - "label": "ENCODES", - "from": 3716831, - "to": 3702363, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362030, - "label": "REGULATES", - "from": 3683877, - "to": 3722312, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198195, - "label": "ENCODES", - "from": 3707270, - "to": 3702370, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362038, - "label": "REGULATES", - "from": 3705945, - "to": 3722314, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198199, - "label": "ENCODES", - "from": 3720011, - "to": 3702374, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198203, - "label": "ENCODES", - "from": 3717158, - "to": 3702378, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362044, - "label": "BINDS", - "from": 3722316, - "to": 3679627, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362046, - "label": "REGULATES", - "from": 3718648, - "to": 3722316, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362040, - "label": "BINDS", - "from": 3722315, - "to": 3686575, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362042, - "label": "REGULATES", - "from": 3715127, - "to": 3722315, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362053, - "label": "REGULATES", - "from": 3710228, - "to": 3722318, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362051, - "label": "BINDS", - "from": 3722318, - "to": 3682905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362061, - "label": "REGULATES", - "from": 3711285, - "to": 3722320, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198218, - "label": "ENCODES", - "from": 3690814, - "to": 3702390, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362063, - "label": "BINDS", - "from": 3722321, - "to": 3679750, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198223, - "label": "ENCODES", - "from": 3701384, - "to": 3702395, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198226, - "label": "ENCODES", - "from": 3690904, - "to": 3702398, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362068, - "label": "REGULATES", - "from": 3677368, - "to": 3722322, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362071, - "label": "REGULATES", - "from": 3722323, - "to": 3695191, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198224, - "label": "ENCODES", - "from": 3698772, - "to": 3702396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362070, - "label": "BINDS", - "from": 3722323, - "to": 3686590, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362065, - "label": "REGULATES", - "from": 3705945, - "to": 3722321, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198231, - "label": "ENCODES", - "from": 3706825, - "to": 3702402, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362078, - "label": "BINDS", - "from": 3722325, - "to": 3683087, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362072, - "label": "REGULATES", - "from": 3710228, - "to": 3722323, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362084, - "label": "REGULATES", - "from": 3711285, - "to": 3722326, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362080, - "label": "REGULATES", - "from": 3710228, - "to": 3722325, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362083, - "label": "REGULATES", - "from": 3722326, - "to": 3697034, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362082, - "label": "BINDS", - "from": 3722326, - "to": 3678921, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362101, - "label": "BINDS", - "from": 3722331, - "to": 3686145, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362103, - "label": "REGULATES", - "from": 3712283, - "to": 3722331, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362099, - "label": "REGULATES", - "from": 3710208, - "to": 3722330, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362098, - "label": "REGULATES", - "from": 3722330, - "to": 3700045, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362125, - "label": "REGULATES", - "from": 3677192, - "to": 3722337, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362133, - "label": "REGULATES", - "from": 3711179, - "to": 3722339, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362132, - "label": "REGULATES", - "from": 3722339, - "to": 3695047, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362131, - "label": "BINDS", - "from": 3722339, - "to": 3687534, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362143, - "label": "BINDS", - "from": 3722343, - "to": 3679991, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362149, - "label": "REGULATES", - "from": 3710594, - "to": 3722344, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362148, - "label": "REGULATES", - "from": 3722344, - "to": 3700078, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362145, - "label": "REGULATES", - "from": 3714081, - "to": 3722343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362144, - "label": "REGULATES", - "from": 3722343, - "to": 3697249, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362147, - "label": "BINDS", - "from": 3722344, - "to": 3686154, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395055, - "label": "ELEMENT_OF", - "from": 3706854, - "to": 3727145, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395060, - "label": "ELEMENT_OF", - "from": 3697779, - "to": 3727147, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395068, - "label": "ELEMENT_OF", - "from": 3687666, - "to": 3727150, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395065, - "label": "ELEMENT_OF", - "from": 3701395, - "to": 3727148, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395081, - "label": "ELEMENT_OF", - "from": 3682853, - "to": 3727154, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198487, - "label": "ENCODES", - "from": 3690606, - "to": 3702417, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395100, - "label": "ELEMENT_OF", - "from": 3701627, - "to": 3727160, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198489, - "label": "ENCODES", - "from": 3702608, - "to": 3702419, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395098, - "label": "ELEMENT_OF", - "from": 3702432, - "to": 3727159, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395105, - "label": "ELEMENT_OF", - "from": 3699418, - "to": 3727162, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395117, - "label": "ELEMENT_OF", - "from": 3701481, - "to": 3727166, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198512, - "label": "ENCODES", - "from": 3711717, - "to": 3704078, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198519, - "label": "ENCODES", - "from": 3702942, - "to": 3704084, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395121, - "label": "ELEMENT_OF", - "from": 3707183, - "to": 3727167, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198527, - "label": "ENCODES", - "from": 3719911, - "to": 3704090, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395131, - "label": "ELEMENT_OF", - "from": 3712000, - "to": 3727173, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395128, - "label": "ELEMENT_OF", - "from": 3695111, - "to": 3727170, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395140, - "label": "ELEMENT_OF", - "from": 3707214, - "to": 3727174, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198535, - "label": "ENCODES", - "from": 3702473, - "to": 3704097, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198538, - "label": "ENCODES", - "from": 3719974, - "to": 3704101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198542, - "label": "ENCODES", - "from": 3693885, - "to": 3704105, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198547, - "label": "ENCODES", - "from": 3711828, - "to": 3704110, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395159, - "label": "ELEMENT_OF", - "from": 3694591, - "to": 3727176, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198551, - "label": "ENCODES", - "from": 3712232, - "to": 3704114, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395164, - "label": "ELEMENT_OF", - "from": 3707222, - "to": 3727178, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395162, - "label": "ELEMENT_OF", - "from": 3716776, - "to": 3727177, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198557, - "label": "ENCODES", - "from": 3693804, - "to": 3704120, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198561, - "label": "ENCODES", - "from": 3698938, - "to": 3704124, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395171, - "label": "ELEMENT_OF", - "from": 3711892, - "to": 3727181, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395168, - "label": "ELEMENT_OF", - "from": 3701506, - "to": 3727180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198573, - "label": "ENCODES", - "from": 3719980, - "to": 3704135, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198583, - "label": "ENCODES", - "from": 3716976, - "to": 3704140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198582, - "label": "COMPONENT_OF", - "from": 3710591, - "to": 3704139, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395198, - "label": "ELEMENT_OF", - "from": 3699189, - "to": 3727188, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198591, - "label": "ENCODES", - "from": 3690575, - "to": 3704144, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395206, - "label": "ELEMENT_OF", - "from": 3702807, - "to": 3727190, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198593, - "label": "COMPONENT_OF", - "from": 3702062, - "to": 3704145, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198599, - "label": "ENCODES", - "from": 3702684, - "to": 3704148, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198603, - "label": "ENCODES", - "from": 3701809, - "to": 3704150, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395215, - "label": "ELEMENT_OF", - "from": 3701724, - "to": 3727195, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395218, - "label": "ELEMENT_OF", - "from": 3699153, - "to": 3727197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198615, - "label": "ENCODES", - "from": 3707296, - "to": 3704157, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395231, - "label": "ELEMENT_OF", - "from": 3701382, - "to": 3727200, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395224, - "label": "ELEMENT_OF", - "from": 3698733, - "to": 3727198, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395238, - "label": "ELEMENT_OF", - "from": 3695008, - "to": 3727204, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198627, - "label": "ENCODES", - "from": 3693767, - "to": 3704168, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198625, - "label": "ENCODES", - "from": 3712085, - "to": 3704166, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395244, - "label": "ELEMENT_OF", - "from": 3695171, - "to": 3727207, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395255, - "label": "ELEMENT_OF", - "from": 3707214, - "to": 3727209, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395259, - "label": "ELEMENT_OF", - "from": 3716976, - "to": 3727210, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198661, - "label": "ENCODES", - "from": 3698848, - "to": 3704201, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198667, - "label": "ENCODES", - "from": 3702930, - "to": 3704206, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395277, - "label": "ELEMENT_OF", - "from": 3694229, - "to": 3727218, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395274, - "label": "ELEMENT_OF", - "from": 3702818, - "to": 3727216, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198673, - "label": "ENCODES", - "from": 3698712, - "to": 3704212, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198680, - "label": "ENCODES", - "from": 3690446, - "to": 3704217, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198688, - "label": "ENCODES", - "from": 3698781, - "to": 3704224, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198692, - "label": "ENCODES", - "from": 3720005, - "to": 3704227, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198708, - "label": "ENCODES", - "from": 3711872, - "to": 3704239, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198714, - "label": "ENCODES", - "from": 3693960, - "to": 3704246, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198713, - "label": "ENCODES", - "from": 3702440, - "to": 3704245, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198716, - "label": "ENCODES", - "from": 3690591, - "to": 3704249, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362644, - "label": "REGULATES", - "from": 3710297, - "to": 3722348, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362646, - "label": "BINDS", - "from": 3722349, - "to": 3685093, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362642, - "label": "BINDS", - "from": 3722348, - "to": 3679889, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362648, - "label": "REGULATES", - "from": 3711237, - "to": 3722349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362661, - "label": "BINDS", - "from": 3722353, - "to": 3678523, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362663, - "label": "REGULATES", - "from": 3710578, - "to": 3722353, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362662, - "label": "REGULATES", - "from": 3722353, - "to": 3699153, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297121, - "label": "REGULATES", - "from": 3713647, - "to": 3685952, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362659, - "label": "REGULATES", - "from": 3683889, - "to": 3722352, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297122, - "label": "REGULATES", - "from": 3668188, - "to": 3713647, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362665, - "label": "BINDS", - "from": 3722354, - "to": 3683034, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362667, - "label": "REGULATES", - "from": 3705945, - "to": 3722354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362666, - "label": "REGULATES", - "from": 3722354, - "to": 3730363, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297140, - "label": "REGULATES", - "from": 3677394, - "to": 3713653, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297143, - "label": "REGULATES", - "from": 3677560, - "to": 3713654, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231607, - "label": "CONSUMED_BY", - "from": 3677495, - "to": 3706397, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297139, - "label": "REGULATES", - "from": 3713653, - "to": 3687807, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297149, - "label": "REGULATES", - "from": 3679018, - "to": 3713656, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297151, - "label": "REGULATES", - "from": 3713657, - "to": 3691499, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297145, - "label": "REGULATES", - "from": 3713655, - "to": 3691488, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297146, - "label": "REGULATES", - "from": 3679089, - "to": 3713655, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231619, - "label": "CONSUMED_BY", - "from": 3718318, - "to": 3706400, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297157, - "label": "REGULATES", - "from": 3713659, - "to": 3687999, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297158, - "label": "REGULATES", - "from": 3677458, - "to": 3713659, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166080, - "label": "CATALYZES", - "from": 3710253, - "to": 3688228, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231616, - "label": "CONSUMED_BY", - "from": 3681755, - "to": 3706399, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362694, - "label": "REGULATES", - "from": 3711179, - "to": 3722361, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166081, - "label": "CATALYZES", - "from": 3688228, - "to": 3706706, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297152, - "label": "REGULATES", - "from": 3677788, - "to": 3713657, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362689, - "label": "REGULATES", - "from": 3722360, - "to": 3699540, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231622, - "label": "PRODUCES", - "from": 3706400, - "to": 3710238, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362688, - "label": "BINDS", - "from": 3722360, - "to": 3685266, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231621, - "label": "PRODUCES", - "from": 3706400, - "to": 3714249, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297155, - "label": "REGULATES", - "from": 3681876, - "to": 3713658, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362690, - "label": "REGULATES", - "from": 3711237, - "to": 3722360, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297164, - "label": "REGULATES", - "from": 3677415, - "to": 3713661, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166091, - "label": "CATALYZES", - "from": 3688779, - "to": 3708726, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231625, - "label": "CONSUMED_BY", - "from": 3677435, - "to": 3706401, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166088, - "label": "CATALYZES", - "from": 3714126, - "to": 3688778, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297161, - "label": "REGULATES", - "from": 3677438, - "to": 3713660, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231629, - "label": "CONSUMED_BY", - "from": 3684172, - "to": 3706402, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362709, - "label": "REGULATES", - "from": 3710270, - "to": 3722365, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362711, - "label": "BINDS", - "from": 3722366, - "to": 3678565, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231639, - "label": "PRODUCES", - "from": 3706404, - "to": 3681350, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297169, - "label": "REGULATES", - "from": 3713663, - "to": 3688905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297170, - "label": "REGULATES", - "from": 3682118, - "to": 3713663, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362707, - "label": "BINDS", - "from": 3722365, - "to": 3683202, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166100, - "label": "CATALYZES", - "from": 3718460, - "to": 3688784, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231636, - "label": "CONSUMED_BY", - "from": 3681616, - "to": 3706404, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166101, - "label": "CATALYZES", - "from": 3688784, - "to": 3709057, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362716, - "label": "REGULATES", - "from": 3666872, - "to": 3722367, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297181, - "label": "REGULATES", - "from": 3713667, - "to": 3691045, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297182, - "label": "REGULATES", - "from": 3677336, - "to": 3713667, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362713, - "label": "REGULATES", - "from": 3714706, - "to": 3722366, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362712, - "label": "REGULATES", - "from": 3722366, - "to": 3694870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297178, - "label": "REGULATES", - "from": 3713666, - "to": 3685831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166108, - "label": "CATALYZES", - "from": 3713972, - "to": 3688788, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297179, - "label": "REGULATES", - "from": 3711204, - "to": 3713666, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166113, - "label": "CATALYZES", - "from": 3688790, - "to": 3709443, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231648, - "label": "CONSUMED_BY", - "from": 3682214, - "to": 3706406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231654, - "label": "CONSUMED_BY", - "from": 3679464, - "to": 3706407, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166116, - "label": "CATALYZES", - "from": 3708076, - "to": 3688792, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166117, - "label": "CATALYZES", - "from": 3688792, - "to": 3706491, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166123, - "label": "CATALYZES", - "from": 3688795, - "to": 3706747, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362732, - "label": "REGULATES", - "from": 3712313, - "to": 3722371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297199, - "label": "REGULATES", - "from": 3713673, - "to": 3689008, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166126, - "label": "CATALYZES", - "from": 3710433, - "to": 3688797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297193, - "label": "REGULATES", - "from": 3713671, - "to": 3685905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297194, - "label": "REGULATES", - "from": 3677496, - "to": 3713671, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231665, - "label": "CONSUMED_BY", - "from": 3677452, - "to": 3706410, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297206, - "label": "REGULATES", - "from": 3677368, - "to": 3713675, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297200, - "label": "REGULATES", - "from": 3677474, - "to": 3713673, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231671, - "label": "CONSUMED_BY", - "from": 3711204, - "to": 3706411, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362739, - "label": "REGULATES", - "from": 3712586, - "to": 3722373, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166132, - "label": "CATALYZES", - "from": 3712698, - "to": 3688800, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231675, - "label": "PRODUCES", - "from": 3706412, - "to": 3677607, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297212, - "label": "REGULATES", - "from": 3682200, - "to": 3713677, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362751, - "label": "REGULATES", - "from": 3708153, - "to": 3722376, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362745, - "label": "BINDS", - "from": 3722375, - "to": 3678701, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166143, - "label": "CATALYZES", - "from": 3688805, - "to": 3709138, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362747, - "label": "REGULATES", - "from": 3708153, - "to": 3722375, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362746, - "label": "REGULATES", - "from": 3722375, - "to": 3696969, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297220, - "label": "REGULATES", - "from": 3713680, - "to": 3691313, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297221, - "label": "REGULATES", - "from": 3677428, - "to": 3713680, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231682, - "label": "CONSUMED_BY", - "from": 3674696, - "to": 3706414, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297217, - "label": "REGULATES", - "from": 3713679, - "to": 3689662, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297218, - "label": "REGULATES", - "from": 3684013, - "to": 3713679, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166154, - "label": "CATALYZES", - "from": 3710433, - "to": 3688811, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166155, - "label": "CATALYZES", - "from": 3688811, - "to": 3707447, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297230, - "label": "REGULATES", - "from": 3677345, - "to": 3713683, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166152, - "label": "CATALYZES", - "from": 3715120, - "to": 3688810, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231695, - "label": "CONSUMED_BY", - "from": 3683881, - "to": 3706417, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166158, - "label": "CATALYZES", - "from": 3711327, - "to": 3688813, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166156, - "label": "CATALYZES", - "from": 3713972, - "to": 3688812, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231699, - "label": "PRODUCES", - "from": 3706418, - "to": 3681902, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297236, - "label": "REGULATES", - "from": 3684105, - "to": 3713685, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231697, - "label": "CONSUMED_BY", - "from": 3678962, - "to": 3706418, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297239, - "label": "REGULATES", - "from": 3670237, - "to": 3713686, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362769, - "label": "REGULATES", - "from": 3722381, - "to": 3700094, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362768, - "label": "BINDS", - "from": 3722381, - "to": 3686583, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362770, - "label": "REGULATES", - "from": 3711243, - "to": 3722381, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362781, - "label": "REGULATES", - "from": 3712313, - "to": 3722384, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166170, - "label": "CATALYZES", - "from": 3718537, - "to": 3688819, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362780, - "label": "REGULATES", - "from": 3722384, - "to": 3726671, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166171, - "label": "CATALYZES", - "from": 3688819, - "to": 3708837, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231704, - "label": "CONSUMED_BY", - "from": 3679474, - "to": 3706419, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166169, - "label": "CATALYZES", - "from": 3688818, - "to": 3709197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297241, - "label": "REGULATES", - "from": 3713687, - "to": 3691472, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297242, - "label": "REGULATES", - "from": 3679067, - "to": 3713687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362779, - "label": "BINDS", - "from": 3722384, - "to": 3678844, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166178, - "label": "CATALYZES", - "from": 3714112, - "to": 3688823, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231712, - "label": "CONSUMED_BY", - "from": 3705907, - "to": 3706421, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297248, - "label": "REGULATES", - "from": 3677204, - "to": 3713689, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231717, - "label": "CONSUMED_BY", - "from": 3669455, - "to": 3706422, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166181, - "label": "CATALYZES", - "from": 3688824, - "to": 3707790, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231721, - "label": "PRODUCES", - "from": 3706422, - "to": 3672668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362798, - "label": "BINDS", - "from": 3722389, - "to": 3687319, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362792, - "label": "REGULATES", - "from": 3681281, - "to": 3722387, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297268, - "label": "REGULATES", - "from": 3713696, - "to": 3689539, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297269, - "label": "REGULATES", - "from": 3681355, - "to": 3713696, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166192, - "label": "CATALYZES", - "from": 3714007, - "to": 3688830, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362807, - "label": "REGULATES", - "from": 3722391, - "to": 3695280, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231728, - "label": "CONSUMED_BY", - "from": 3670725, - "to": 3706423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198960, - "label": "ENCODES", - "from": 3699073, - "to": 3704253, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297271, - "label": "REGULATES", - "from": 3713697, - "to": 3688193, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362806, - "label": "BINDS", - "from": 3722391, - "to": 3683058, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166193, - "label": "CATALYZES", - "from": 3688830, - "to": 3707667, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166198, - "label": "CATALYZES", - "from": 3714452, - "to": 3688833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231735, - "label": "CONSUMED_BY", - "from": 3706229, - "to": 3706425, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362800, - "label": "REGULATES", - "from": 3708153, - "to": 3722389, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198966, - "label": "ENCODES", - "from": 3716684, - "to": 3704257, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297266, - "label": "REGULATES", - "from": 3677472, - "to": 3713695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198964, - "label": "ENCODES", - "from": 3716730, - "to": 3704255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166202, - "label": "CATALYZES", - "from": 3714255, - "to": 3688835, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166203, - "label": "CATALYZES", - "from": 3688835, - "to": 3707769, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297272, - "label": "REGULATES", - "from": 3677368, - "to": 3713697, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362808, - "label": "REGULATES", - "from": 3710187, - "to": 3722391, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166210, - "label": "CATALYZES", - "from": 3710183, - "to": 3688839, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231746, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3706428, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231744, - "label": "CONSUMED_BY", - "from": 3677794, - "to": 3706427, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297287, - "label": "REGULATES", - "from": 3677560, - "to": 3713702, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 198983, - "label": "ENCODES", - "from": 3701845, - "to": 3704273, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297292, - "label": "REGULATES", - "from": 3713704, - "to": 3689750, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231754, - "label": "CONSUMED_BY", - "from": 3670589, - "to": 3706430, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297293, - "label": "REGULATES", - "from": 3677368, - "to": 3713704, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166217, - "label": "CATALYZES", - "from": 3688842, - "to": 3707355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362830, - "label": "REGULATES", - "from": 3677328, - "to": 3722397, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362825, - "label": "BINDS", - "from": 3722396, - "to": 3686314, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166222, - "label": "CATALYZES", - "from": 3714814, - "to": 3688845, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362827, - "label": "REGULATES", - "from": 3712313, - "to": 3722396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362826, - "label": "REGULATES", - "from": 3722396, - "to": 3728852, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231763, - "label": "PRODUCES", - "from": 3706431, - "to": 3681574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166226, - "label": "CATALYZES", - "from": 3711597, - "to": 3688847, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297301, - "label": "REGULATES", - "from": 3713707, - "to": 3689254, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297302, - "label": "REGULATES", - "from": 3677445, - "to": 3713707, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166224, - "label": "CATALYZES", - "from": 3714814, - "to": 3688846, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231760, - "label": "CONSUMED_BY", - "from": 3681262, - "to": 3706431, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166225, - "label": "CATALYZES", - "from": 3688846, - "to": 3707820, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297296, - "label": "REGULATES", - "from": 3677337, - "to": 3713705, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297308, - "label": "REGULATES", - "from": 3679440, - "to": 3713709, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231770, - "label": "CONSUMED_BY", - "from": 3668943, - "to": 3706433, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362844, - "label": "BINDS", - "from": 3722401, - "to": 3686217, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362846, - "label": "REGULATES", - "from": 3710228, - "to": 3722401, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297305, - "label": "REGULATES", - "from": 3677368, - "to": 3713708, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231773, - "label": "PRODUCES", - "from": 3706433, - "to": 3682163, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166243, - "label": "CATALYZES", - "from": 3688855, - "to": 3709585, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166240, - "label": "CATALYZES", - "from": 3710432, - "to": 3688854, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231776, - "label": "CONSUMED_BY", - "from": 3681226, - "to": 3706434, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199015, - "label": "ENCODES", - "from": 3717046, - "to": 3704301, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199014, - "label": "ENCODES", - "from": 3698823, - "to": 3704300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297314, - "label": "REGULATES", - "from": 3681147, - "to": 3713711, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231787, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3706437, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362861, - "label": "REGULATES", - "from": 3710428, - "to": 3722405, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362860, - "label": "REGULATES", - "from": 3722405, - "to": 3699596, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231785, - "label": "CONSUMED_BY", - "from": 3677435, - "to": 3706436, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199016, - "label": "ENCODES", - "from": 3701866, - "to": 3704302, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231794, - "label": "CONSUMED_BY", - "from": 3685555, - "to": 3706438, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199026, - "label": "ENCODES", - "from": 3690614, - "to": 3704311, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199024, - "label": "ENCODES", - "from": 3711838, - "to": 3704309, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199031, - "label": "ENCODES", - "from": 3699044, - "to": 3704316, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231798, - "label": "PRODUCES", - "from": 3706439, - "to": 3675819, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231803, - "label": "CONSUMED_BY", - "from": 3677438, - "to": 3706441, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362876, - "label": "REGULATES", - "from": 3712313, - "to": 3722409, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166264, - "label": "CATALYZES", - "from": 3714751, - "to": 3688866, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199032, - "label": "ENCODES", - "from": 3699123, - "to": 3704317, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231807, - "label": "PRODUCES", - "from": 3706441, - "to": 3681627, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362875, - "label": "REGULATES", - "from": 3722409, - "to": 3726376, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362874, - "label": "BINDS", - "from": 3722409, - "to": 3686121, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199043, - "label": "ENCODES", - "from": 3690779, - "to": 3704328, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166274, - "label": "CATALYZES", - "from": 3711603, - "to": 3688871, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297349, - "label": "REGULATES", - "from": 3713723, - "to": 3687933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166275, - "label": "CATALYZES", - "from": 3688871, - "to": 3705241, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297350, - "label": "REGULATES", - "from": 3677368, - "to": 3713723, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362887, - "label": "REGULATES", - "from": 3677560, - "to": 3722412, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362886, - "label": "REGULATES", - "from": 3722412, - "to": 3688896, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199045, - "label": "ENCODES", - "from": 3690863, - "to": 3704330, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166277, - "label": "CATALYZES", - "from": 3688872, - "to": 3708805, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231812, - "label": "CONSUMED_BY", - "from": 3681239, - "to": 3706442, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166280, - "label": "CATALYZES", - "from": 3708012, - "to": 3688874, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 297353, - "label": "REGULATES", - "from": 3684210, - "to": 3713724, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166290, - "label": "CATALYZES", - "from": 3711696, - "to": 3688879, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231826, - "label": "PRODUCES", - "from": 3706445, - "to": 3684128, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166291, - "label": "CATALYZES", - "from": 3688879, - "to": 3708537, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199061, - "label": "ENCODES", - "from": 3690520, - "to": 3704340, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362909, - "label": "REGULATES", - "from": 3722418, - "to": 3694879, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362908, - "label": "BINDS", - "from": 3722418, - "to": 3687152, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166297, - "label": "CATALYZES", - "from": 3688882, - "to": 3708964, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362910, - "label": "REGULATES", - "from": 3710270, - "to": 3722418, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199069, - "label": "ENCODES", - "from": 3719945, - "to": 3704348, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166304, - "label": "CATALYZES", - "from": 3708315, - "to": 3688886, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166305, - "label": "CATALYZES", - "from": 3688886, - "to": 3705630, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362912, - "label": "BINDS", - "from": 3722419, - "to": 3685260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362914, - "label": "REGULATES", - "from": 3711285, - "to": 3722419, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166314, - "label": "CATALYZES", - "from": 3714244, - "to": 3688891, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199082, - "label": "ENCODES", - "from": 3707315, - "to": 3704359, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199081, - "label": "ENCODES", - "from": 3711999, - "to": 3704358, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362921, - "label": "REGULATES", - "from": 3722421, - "to": 3726295, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 166319, - "label": "CATALYZES", - "from": 3688893, - "to": 3708873, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362920, - "label": "BINDS", - "from": 3722421, - "to": 3678468, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199084, - "label": "ENCODES", - "from": 3690738, - "to": 3704361, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362922, - "label": "REGULATES", - "from": 3712313, - "to": 3722421, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362935, - "label": "BINDS", - "from": 3722425, - "to": 3678494, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199093, - "label": "ENCODES", - "from": 3702949, - "to": 3704366, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199098, - "label": "ENCODES", - "from": 3701348, - "to": 3704371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362937, - "label": "REGULATES", - "from": 3710167, - "to": 3722425, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199107, - "label": "ENCODES", - "from": 3693751, - "to": 3704378, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199106, - "label": "ENCODES", - "from": 3702613, - "to": 3704377, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199105, - "label": "ENCODES", - "from": 3698609, - "to": 3704376, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362973, - "label": "BINDS", - "from": 3722435, - "to": 3678672, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362975, - "label": "REGULATES", - "from": 3710228, - "to": 3722435, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362974, - "label": "REGULATES", - "from": 3722435, - "to": 3700186, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362971, - "label": "REGULATES", - "from": 3712313, - "to": 3722434, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362970, - "label": "REGULATES", - "from": 3722434, - "to": 3726377, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199132, - "label": "MODIFIED_TO", - "from": 3704396, - "to": 3710284, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199143, - "label": "ENCODES", - "from": 3702957, - "to": 3704402, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199140, - "label": "ENCODES", - "from": 3702957, - "to": 3704400, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199151, - "label": "ENCODES", - "from": 3701575, - "to": 3704409, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199150, - "label": "ENCODES", - "from": 3717010, - "to": 3704408, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362986, - "label": "REGULATES", - "from": 3718538, - "to": 3722438, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395764, - "label": "ELEMENT_OF", - "from": 3697688, - "to": 3727220, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199167, - "label": "ENCODES", - "from": 3701636, - "to": 3704424, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395769, - "label": "ELEMENT_OF", - "from": 3717010, - "to": 3727221, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178847915, - "label": "CONSUMED_BY", - "from": 3671386, - "to": 3705549, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363015, - "label": "BINDS", - "from": 3722446, - "to": 3679585, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199175, - "label": "ENCODES", - "from": 3687570, - "to": 3704431, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199172, - "label": "ENCODES", - "from": 3719936, - "to": 3704429, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199178, - "label": "ENCODES", - "from": 3702913, - "to": 3704434, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363023, - "label": "REGULATES", - "from": 3722448, - "to": 3727777, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395788, - "label": "ELEMENT_OF", - "from": 3698848, - "to": 3727228, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363017, - "label": "REGULATES", - "from": 3710143, - "to": 3722446, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395785, - "label": "ELEMENT_OF", - "from": 3701574, - "to": 3727227, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199187, - "label": "ENCODES", - "from": 3702580, - "to": 3704442, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395799, - "label": "ELEMENT_OF", - "from": 3678828, - "to": 3727231, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363024, - "label": "REGULATES", - "from": 3712313, - "to": 3722448, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395807, - "label": "ELEMENT_OF", - "from": 3690815, - "to": 3727234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363036, - "label": "REGULATES", - "from": 3715127, - "to": 3722451, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199192, - "label": "ENCODES", - "from": 3693713, - "to": 3704447, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199196, - "label": "ENCODES", - "from": 3693780, - "to": 3704451, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363034, - "label": "BINDS", - "from": 3722451, - "to": 3686292, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199200, - "label": "ENCODES", - "from": 3717056, - "to": 3704455, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395813, - "label": "ELEMENT_OF", - "from": 3698852, - "to": 3727237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395810, - "label": "ELEMENT_OF", - "from": 3707332, - "to": 3727235, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363049, - "label": "BINDS", - "from": 3722455, - "to": 3685282, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199214, - "label": "ENCODES", - "from": 3687581, - "to": 3704466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363051, - "label": "REGULATES", - "from": 3711285, - "to": 3722455, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363050, - "label": "REGULATES", - "from": 3722455, - "to": 3697999, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199217, - "label": "ENCODES", - "from": 3712219, - "to": 3704468, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395826, - "label": "ELEMENT_OF", - "from": 3702773, - "to": 3727238, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363069, - "label": "REGULATES", - "from": 3722460, - "to": 3697961, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199227, - "label": "ENCODES", - "from": 3693726, - "to": 3704477, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363068, - "label": "BINDS", - "from": 3722460, - "to": 3680007, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363070, - "label": "REGULATES", - "from": 3711183, - "to": 3722460, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395835, - "label": "ELEMENT_OF", - "from": 3717062, - "to": 3727241, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395832, - "label": "ELEMENT_OF", - "from": 3698851, - "to": 3727240, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395846, - "label": "ELEMENT_OF", - "from": 3690883, - "to": 3727244, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363072, - "label": "BINDS", - "from": 3722461, - "to": 3678495, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395843, - "label": "ELEMENT_OF", - "from": 3694557, - "to": 3727242, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363074, - "label": "REGULATES", - "from": 3712313, - "to": 3722461, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199245, - "label": "ENCODES", - "from": 3699145, - "to": 3704494, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395849, - "label": "ELEMENT_OF", - "from": 3707296, - "to": 3727246, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395858, - "label": "ELEMENT_OF", - "from": 3700109, - "to": 3727247, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199253, - "label": "ENCODES", - "from": 3707137, - "to": 3704499, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199252, - "label": "MODIFIED_TO", - "from": 3704498, - "to": 3704483, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395878, - "label": "ELEMENT_OF", - "from": 3701352, - "to": 3727252, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363108, - "label": "REGULATES", - "from": 3710167, - "to": 3722470, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395874, - "label": "ELEMENT_OF", - "from": 3690651, - "to": 3727249, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363107, - "label": "REGULATES", - "from": 3722470, - "to": 3694778, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363106, - "label": "BINDS", - "from": 3722470, - "to": 3687438, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199274, - "label": "ENCODES", - "from": 3694235, - "to": 3704518, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199276, - "label": "ENCODES", - "from": 3701574, - "to": 3704520, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199291, - "label": "ENCODES", - "from": 3717112, - "to": 3704531, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395900, - "label": "ELEMENT_OF", - "from": 3701942, - "to": 3727257, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395897, - "label": "ELEMENT_OF", - "from": 3707240, - "to": 3727255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395905, - "label": "ELEMENT_OF", - "from": 3690792, - "to": 3727258, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178847777, - "label": "CONSUMED_BY", - "from": 3671386, - "to": 3706573, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199306, - "label": "MODIFIED_TO", - "from": 3704538, - "to": 3710204, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199305, - "label": "COMPONENT_OF", - "from": 3704166, - "to": 3704538, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395915, - "label": "ELEMENT_OF", - "from": 3699360, - "to": 3727260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395924, - "label": "ELEMENT_OF", - "from": 3699923, - "to": 3727265, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199317, - "label": "ENCODES", - "from": 3711940, - "to": 3704548, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199321, - "label": "ENCODES", - "from": 3693880, - "to": 3704552, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395941, - "label": "ELEMENT_OF", - "from": 3695300, - "to": 3727269, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178847757, - "label": "CONSUMED_BY", - "from": 3684161, - "to": 3707411, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395936, - "label": "ELEMENT_OF", - "from": 3701623, - "to": 3727268, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199333, - "label": "ENCODES", - "from": 3701415, - "to": 3704560, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199339, - "label": "ENCODES", - "from": 3719971, - "to": 3704565, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395956, - "label": "ELEMENT_OF", - "from": 3687209, - "to": 3727277, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199351, - "label": "ENCODES", - "from": 3716743, - "to": 3704575, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199354, - "label": "ENCODES", - "from": 3720041, - "to": 3704577, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395967, - "label": "ELEMENT_OF", - "from": 3701547, - "to": 3727278, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199359, - "label": "ENCODES", - "from": 3702611, - "to": 3704580, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199363, - "label": "ENCODES", - "from": 3702797, - "to": 3704584, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199361, - "label": "ENCODES", - "from": 3707087, - "to": 3704582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395971, - "label": "ELEMENT_OF", - "from": 3716709, - "to": 3727279, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395977, - "label": "ELEMENT_OF", - "from": 3684961, - "to": 3727280, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199372, - "label": "ENCODES", - "from": 3712113, - "to": 3704590, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395990, - "label": "ELEMENT_OF", - "from": 3701336, - "to": 3727281, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199382, - "label": "ENCODES", - "from": 3712175, - "to": 3704597, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199388, - "label": "ENCODES", - "from": 3707128, - "to": 3704603, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199393, - "label": "ENCODES", - "from": 3717021, - "to": 3704606, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199398, - "label": "ENCODES", - "from": 3698784, - "to": 3705702, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199409, - "label": "ENCODES", - "from": 3712143, - "to": 3705712, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199418, - "label": "ENCODES", - "from": 3701355, - "to": 3705722, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199430, - "label": "ENCODES", - "from": 3707288, - "to": 3705734, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363363, - "label": "REGULATES", - "from": 3710270, - "to": 3722474, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363374, - "label": "REGULATES", - "from": 3681355, - "to": 3722477, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363382, - "label": "REGULATES", - "from": 3704409, - "to": 3722479, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363386, - "label": "REGULATES", - "from": 3708153, - "to": 3722480, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363397, - "label": "REGULATES", - "from": 3710270, - "to": 3722483, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363396, - "label": "REGULATES", - "from": 3722483, - "to": 3699552, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363393, - "label": "REGULATES", - "from": 3684067, - "to": 3722482, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363392, - "label": "REGULATES", - "from": 3722482, - "to": 3687805, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363395, - "label": "BINDS", - "from": 3722483, - "to": 3686577, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363407, - "label": "BINDS", - "from": 3722486, - "to": 3678779, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363415, - "label": "REGULATES", - "from": 3722488, - "to": 3694760, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363414, - "label": "BINDS", - "from": 3722488, - "to": 3685498, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363409, - "label": "REGULATES", - "from": 3711243, - "to": 3722486, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363408, - "label": "REGULATES", - "from": 3722486, - "to": 3695220, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363420, - "label": "REGULATES", - "from": 3711317, - "to": 3722489, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363416, - "label": "REGULATES", - "from": 3711247, - "to": 3722488, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363419, - "label": "REGULATES", - "from": 3722489, - "to": 3694890, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363418, - "label": "BINDS", - "from": 3722489, - "to": 3678512, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178848013, - "label": "CONSUMED_BY", - "from": 3684156, - "to": 3709304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363435, - "label": "REGULATES", - "from": 3708153, - "to": 3722493, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363434, - "label": "REGULATES", - "from": 3722493, - "to": 3697977, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178848024, - "label": "CONSUMED_BY", - "from": 3671386, - "to": 3700701, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363441, - "label": "BINDS", - "from": 3722495, - "to": 3678402, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363443, - "label": "REGULATES", - "from": 3711285, - "to": 3722495, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363442, - "label": "REGULATES", - "from": 3722495, - "to": 3697444, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363450, - "label": "REGULATES", - "from": 3677441, - "to": 3722497, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363461, - "label": "REGULATES", - "from": 3722500, - "to": 3695947, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363462, - "label": "REGULATES", - "from": 3710228, - "to": 3722500, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363456, - "label": "BINDS", - "from": 3722499, - "to": 3679925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363458, - "label": "REGULATES", - "from": 3712313, - "to": 3722499, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363464, - "label": "BINDS", - "from": 3722501, - "to": 3686380, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363466, - "label": "REGULATES", - "from": 3710274, - "to": 3722501, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363477, - "label": "REGULATES", - "from": 3711179, - "to": 3722504, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396244, - "label": "ELEMENT_OF", - "from": 3701509, - "to": 3727287, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363475, - "label": "BINDS", - "from": 3722504, - "to": 3679941, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396240, - "label": "ELEMENT_OF", - "from": 3702766, - "to": 3727285, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363485, - "label": "REGULATES", - "from": 3705945, - "to": 3722506, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396254, - "label": "ELEMENT_OF", - "from": 3702005, - "to": 3727290, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363483, - "label": "BINDS", - "from": 3722506, - "to": 3685177, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363492, - "label": "REGULATES", - "from": 3714706, - "to": 3722508, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396261, - "label": "ELEMENT_OF", - "from": 3699894, - "to": 3727295, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363490, - "label": "BINDS", - "from": 3722508, - "to": 3678647, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396268, - "label": "ELEMENT_OF", - "from": 3697304, - "to": 3727297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396278, - "label": "ELEMENT_OF", - "from": 3711908, - "to": 3727300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396272, - "label": "ELEMENT_OF", - "from": 3717005, - "to": 3727298, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396280, - "label": "ELEMENT_OF", - "from": 3706808, - "to": 3727301, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199683, - "label": "ENCODES", - "from": 3702542, - "to": 3705746, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396294, - "label": "ELEMENT_OF", - "from": 3695030, - "to": 3727305, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199681, - "label": "ENCODES", - "from": 3719903, - "to": 3705744, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363526, - "label": "REGULATES", - "from": 3682104, - "to": 3722517, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363521, - "label": "BINDS", - "from": 3722516, - "to": 3683008, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363523, - "label": "REGULATES", - "from": 3707928, - "to": 3722516, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363532, - "label": "BINDS", - "from": 3722519, - "to": 3686547, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363534, - "label": "REGULATES", - "from": 3708153, - "to": 3722519, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199698, - "label": "ENCODES", - "from": 3698851, - "to": 3705758, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363536, - "label": "BINDS", - "from": 3722520, - "to": 3679616, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363538, - "label": "REGULATES", - "from": 3708423, - "to": 3722520, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396305, - "label": "ELEMENT_OF", - "from": 3712085, - "to": 3727307, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363545, - "label": "REGULATES", - "from": 3677711, - "to": 3722522, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363544, - "label": "REGULATES", - "from": 3722522, - "to": 3688007, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396325, - "label": "ELEMENT_OF", - "from": 3697034, - "to": 3727314, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363553, - "label": "REGULATES", - "from": 3710274, - "to": 3722524, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199718, - "label": "ENCODES", - "from": 3719950, - "to": 3705774, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199717, - "label": "ENCODES", - "from": 3706858, - "to": 3705773, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396334, - "label": "ELEMENT_OF", - "from": 3717122, - "to": 3727317, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363564, - "label": "REGULATES", - "from": 3670727, - "to": 3722527, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396335, - "label": "ELEMENT_OF", - "from": 3716976, - "to": 3727318, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199721, - "label": "COMPONENT_OF", - "from": 3707977, - "to": 3705776, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396330, - "label": "ELEMENT_OF", - "from": 3720028, - "to": 3727315, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396331, - "label": "ELEMENT_OF", - "from": 3690565, - "to": 3727316, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363572, - "label": "REGULATES", - "from": 3710572, - "to": 3722529, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396340, - "label": "ELEMENT_OF", - "from": 3716842, - "to": 3727320, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363571, - "label": "REGULATES", - "from": 3722529, - "to": 3696395, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363570, - "label": "BINDS", - "from": 3722529, - "to": 3683229, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396350, - "label": "ELEMENT_OF", - "from": 3711999, - "to": 3727323, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363580, - "label": "REGULATES", - "from": 3711265, - "to": 3722531, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199743, - "label": "ENCODES", - "from": 3687672, - "to": 3705792, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396345, - "label": "ELEMENT_OF", - "from": 3697256, - "to": 3727321, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396356, - "label": "ELEMENT_OF", - "from": 3717136, - "to": 3727325, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199745, - "label": "ENCODES", - "from": 3694153, - "to": 3705794, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199750, - "label": "ENCODES", - "from": 3702846, - "to": 3705798, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199749, - "label": "ENCODES", - "from": 3694041, - "to": 3705797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396366, - "label": "ELEMENT_OF", - "from": 3686226, - "to": 3727329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199753, - "label": "ENCODES", - "from": 3719900, - "to": 3705801, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199752, - "label": "ENCODES", - "from": 3706973, - "to": 3705800, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363593, - "label": "BINDS", - "from": 3722535, - "to": 3687224, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 363595, - "label": "REGULATES", - "from": 3710270, - "to": 3722535, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396381, - "label": "ELEMENT_OF", - "from": 3695047, - "to": 3727332, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396378, - "label": "ELEMENT_OF", - "from": 3711928, - "to": 3727331, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199777, - "label": "ENCODES", - "from": 3702738, - "to": 3705821, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396386, - "label": "ELEMENT_OF", - "from": 3693713, - "to": 3727335, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199787, - "label": "ENCODES", - "from": 3702881, - "to": 3705829, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178849479, - "label": "PRODUCES", - "from": 3707554, - "to": 3681862, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396392, - "label": "ELEMENT_OF", - "from": 3702570, - "to": 3727336, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199788, - "label": "ENCODES", - "from": 3698632, - "to": 3705830, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232562, - "label": "CONSUMED_BY", - "from": 3677501, - "to": 3706449, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396404, - "label": "ELEMENT_OF", - "from": 3699403, - "to": 3727338, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199792, - "label": "ENCODES", - "from": 3702773, - "to": 3705834, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199799, - "label": "ENCODES", - "from": 3690470, - "to": 3705841, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232564, - "label": "PRODUCES", - "from": 3706449, - "to": 3677615, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199803, - "label": "ENCODES", - "from": 3707125, - "to": 3705845, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232570, - "label": "CONSUMED_BY", - "from": 3679446, - "to": 3706451, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396412, - "label": "ELEMENT_OF", - "from": 3718698, - "to": 3727343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199800, - "label": "ENCODES", - "from": 3716924, - "to": 3705842, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232568, - "label": "CONSUMED_BY", - "from": 3681392, - "to": 3706450, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178849493, - "label": "PRODUCES", - "from": 3707727, - "to": 3666881, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232574, - "label": "CONSUMED_BY", - "from": 3702419, - "to": 3706452, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396423, - "label": "ELEMENT_OF", - "from": 3694498, - "to": 3727346, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232577, - "label": "CONSUMED_BY", - "from": 3681817, - "to": 3706453, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232582, - "label": "CONSUMED_BY", - "from": 3682122, - "to": 3706454, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167045, - "label": "CATALYZES", - "from": 3688896, - "to": 3705622, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232585, - "label": "CONSUMED_BY", - "from": 3677445, - "to": 3706455, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167055, - "label": "CATALYZES", - "from": 3688901, - "to": 3709364, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232589, - "label": "CONSUMED_BY", - "from": 3684390, - "to": 3706456, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167052, - "label": "CATALYZES", - "from": 3712747, - "to": 3688900, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232594, - "label": "PRODUCES", - "from": 3706457, - "to": 3684087, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396439, - "label": "ELEMENT_OF", - "from": 3694635, - "to": 3727354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232592, - "label": "CONSUMED_BY", - "from": 3667436, - "to": 3706457, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396432, - "label": "ELEMENT_OF", - "from": 3694042, - "to": 3727350, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167066, - "label": "CATALYZES", - "from": 3708270, - "to": 3688907, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232607, - "label": "CONSUMED_BY", - "from": 3677196, - "to": 3706460, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167071, - "label": "CATALYZES", - "from": 3688909, - "to": 3708798, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167074, - "label": "CATALYZES", - "from": 3715215, - "to": 3688911, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232610, - "label": "CONSUMED_BY", - "from": 3677696, - "to": 3706461, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396455, - "label": "ELEMENT_OF", - "from": 3698921, - "to": 3727359, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199841, - "label": "ENCODES", - "from": 3693807, - "to": 3705875, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396453, - "label": "ELEMENT_OF", - "from": 3697955, - "to": 3727357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199847, - "label": "ENCODES", - "from": 3702944, - "to": 3705880, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167076, - "label": "CATALYZES", - "from": 3711517, - "to": 3688912, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232612, - "label": "PRODUCES", - "from": 3706461, - "to": 3677613, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199851, - "label": "ENCODES", - "from": 3701620, - "to": 3705885, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232617, - "label": "CONSUMED_BY", - "from": 3677603, - "to": 3706462, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396461, - "label": "ELEMENT_OF", - "from": 3702544, - "to": 3727362, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167084, - "label": "CATALYZES", - "from": 3711350, - "to": 3688916, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178685449, - "label": "CONSUMED_BY", - "from": 3669639, - "to": 3705638, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232620, - "label": "CONSUMED_BY", - "from": 3682124, - "to": 3706463, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167085, - "label": "CATALYZES", - "from": 3688916, - "to": 3709288, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199859, - "label": "ENCODES", - "from": 3707293, - "to": 3705893, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167095, - "label": "CATALYZES", - "from": 3688921, - "to": 3705290, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232629, - "label": "PRODUCES", - "from": 3706465, - "to": 3682145, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396464, - "label": "ELEMENT_OF", - "from": 3711710, - "to": 3727363, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167092, - "label": "CATALYZES", - "from": 3712754, - "to": 3688920, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232628, - "label": "CONSUMED_BY", - "from": 3685599, - "to": 3706465, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167093, - "label": "CATALYZES", - "from": 3688920, - "to": 3708958, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232632, - "label": "CONSUMED_BY", - "from": 3677742, - "to": 3706466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 396474, - "label": "ELEMENT_OF", - "from": 3711806, - "to": 3727367, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199870, - "label": "ENCODES", - "from": 3690807, - "to": 3705903, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167100, - "label": "CATALYZES", - "from": 3708400, - "to": 3688924, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167101, - "label": "CATALYZES", - "from": 3688924, - "to": 3708635, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232636, - "label": "PRODUCES", - "from": 3706467, - "to": 3681870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232643, - "label": "CONSUMED_BY", - "from": 3684009, - "to": 3706469, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199874, - "label": "ENCODES", - "from": 3701481, - "to": 3705907, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232640, - "label": "CONSUMED_BY", - "from": 3682083, - "to": 3706468, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199879, - "label": "ENCODES", - "from": 3690735, - "to": 3705912, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232645, - "label": "PRODUCES", - "from": 3706469, - "to": 3676851, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167109, - "label": "CATALYZES", - "from": 3688928, - "to": 3708456, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199880, - "label": "ENCODES", - "from": 3690618, - "to": 3705913, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167118, - "label": "CATALYZES", - "from": 3712720, - "to": 3688933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167122, - "label": "CATALYZES", - "from": 3715090, - "to": 3688935, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199890, - "label": "ENCODES", - "from": 3712100, - "to": 3705922, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167126, - "label": "CATALYZES", - "from": 3710433, - "to": 3688937, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199895, - "label": "ENCODES", - "from": 3699117, - "to": 3705927, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232662, - "label": "PRODUCES", - "from": 3706473, - "to": 3710230, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199893, - "label": "ENCODES", - "from": 3690414, - "to": 3705925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232661, - "label": "CONSUMED_BY", - "from": 3710312, - "to": 3706473, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167124, - "label": "CATALYZES", - "from": 3714517, - "to": 3688936, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232671, - "label": "PRODUCES", - "from": 3706475, - "to": 3674585, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232670, - "label": "CONSUMED_BY", - "from": 3677495, - "to": 3706475, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199907, - "label": "COMPONENT_OF", - "from": 3710301, - "to": 3705936, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199904, - "label": "ENCODES", - "from": 3690815, - "to": 3705935, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199911, - "label": "MODIFIED_TO", - "from": 3705936, - "to": 3710303, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167140, - "label": "CATALYZES", - "from": 3710433, - "to": 3688944, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167141, - "label": "CATALYZES", - "from": 3688944, - "to": 3709445, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232676, - "label": "CONSUMED_BY", - "from": 3679065, - "to": 3706476, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199914, - "label": "ENCODES", - "from": 3702858, - "to": 3705938, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167147, - "label": "CATALYZES", - "from": 3688947, - "to": 3706293, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167144, - "label": "CATALYZES", - "from": 3714255, - "to": 3688946, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232680, - "label": "PRODUCES", - "from": 3706477, - "to": 3668646, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167145, - "label": "CATALYZES", - "from": 3688946, - "to": 3708665, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232687, - "label": "CONSUMED_BY", - "from": 3672657, - "to": 3706479, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167148, - "label": "CATALYZES", - "from": 3704498, - "to": 3688948, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232684, - "label": "CONSUMED_BY", - "from": 3677474, - "to": 3706478, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 199916, - "label": "COMPONENT_OF", - "from": 3710301, - "to": 3705939, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167154, - "label": "CATALYZES", - "from": 3718460, - "to": 3688951, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232688, - "label": "PRODUCES", - "from": 3706479, - "to": 3672650, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167158, - "label": "CATALYZES", - "from": 3714255, - "to": 3688953, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232694, - "label": "CONSUMED_BY", - "from": 3652193, - "to": 3706481, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167159, - "label": "CATALYZES", - "from": 3688953, - "to": 3708737, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167162, - "label": "CATALYZES", - "from": 3718524, - "to": 3688955, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167166, - "label": "CATALYZES", - "from": 3715102, - "to": 3688957, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232705, - "label": "PRODUCES", - "from": 3706483, - "to": 3669943, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167174, - "label": "CATALYZES", - "from": 3707982, - "to": 3688961, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167175, - "label": "CATALYZES", - "from": 3688961, - "to": 3706483, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167172, - "label": "CATALYZES", - "from": 3710433, - "to": 3688960, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232708, - "label": "CONSUMED_BY", - "from": 3681950, - "to": 3706484, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167178, - "label": "CATALYZES", - "from": 3718369, - "to": 3688963, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167179, - "label": "CATALYZES", - "from": 3688963, - "to": 3706716, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232719, - "label": "CONSUMED_BY", - "from": 3681505, - "to": 3706487, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232717, - "label": "CONSUMED_BY", - "from": 3681312, - "to": 3706486, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167180, - "label": "CATALYZES", - "from": 3714552, - "to": 3688964, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167181, - "label": "CATALYZES", - "from": 3688964, - "to": 3706558, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232722, - "label": "PRODUCES", - "from": 3706487, - "to": 3681527, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167190, - "label": "CATALYZES", - "from": 3714225, - "to": 3688969, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232726, - "label": "CONSUMED_BY", - "from": 3684176, - "to": 3706488, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167188, - "label": "CATALYZES", - "from": 3708211, - "to": 3688968, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178849726, - "label": "PRODUCES", - "from": 3700701, - "to": 3684120, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232731, - "label": "PRODUCES", - "from": 3706489, - "to": 3681298, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232730, - "label": "CONSUMED_BY", - "from": 3672997, - "to": 3706489, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232735, - "label": "CONSUMED_BY", - "from": 3677131, - "to": 3706490, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167206, - "label": "CATALYZES", - "from": 3710453, - "to": 3688977, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232741, - "label": "PRODUCES", - "from": 3706491, - "to": 3677715, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232745, - "label": "CONSUMED_BY", - "from": 3677501, - "to": 3706492, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167218, - "label": "CATALYZES", - "from": 3714336, - "to": 3688983, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167219, - "label": "CATALYZES", - "from": 3688983, - "to": 3708589, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232753, - "label": "CONSUMED_BY", - "from": 3677196, - "to": 3706494, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167220, - "label": "CATALYZES", - "from": 3708225, - "to": 3688984, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232761, - "label": "CONSUMED_BY", - "from": 3677707, - "to": 3706496, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232766, - "label": "PRODUCES", - "from": 3706497, - "to": 3669503, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232770, - "label": "CONSUMED_BY", - "from": 3677412, - "to": 3706498, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167240, - "label": "CATALYZES", - "from": 3712788, - "to": 3688994, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167250, - "label": "CATALYZES", - "from": 3711591, - "to": 3688999, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232786, - "label": "CONSUMED_BY", - "from": 3712799, - "to": 3706502, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178849790, - "label": "PRODUCES", - "from": 3706734, - "to": 3668896, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 232795, - "label": "CONSUMED_BY", - "from": 3677495, - "to": 3706504, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167260, - "label": "CATALYZES", - "from": 3714715, - "to": 3689004, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167261, - "label": "CATALYZES", - "from": 3689004, - "to": 3707504, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167265, - "label": "CATALYZES", - "from": 3689006, - "to": 3706661, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167270, - "label": "CATALYZES", - "from": 3714255, - "to": 3689009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 167271, - "label": "CATALYZES", - "from": 3689009, - "to": 3707470, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178685801, - "label": "CONSUMED_BY", - "from": 3674860, - "to": 3708649, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178849003, - "label": "PRODUCES", - "from": 3709144, - "to": 3667436, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178849002, - "label": "PRODUCES", - "from": 3709144, - "to": 3684111, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178684989, - "label": "CONSUMED_BY", - "from": 3676180, - "to": 3705300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 265920, - "label": "PRODUCES", - "from": 3709478, - "to": 3671805, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 265922, - "label": "CONSUMED_BY", - "from": 3681147, - "to": 3709479, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 265933, - "label": "CONSUMED_BY", - "from": 3677196, - "to": 3709481, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200402, - "label": "ENCODES", - "from": 3699025, - "to": 3705940, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 265942, - "label": "PRODUCES", - "from": 3709482, - "to": 3677120, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200401, - "label": "MODIFIED_TO", - "from": 3705939, - "to": 3710165, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200407, - "label": "ENCODES", - "from": 3701510, - "to": 3705945, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 265937, - "label": "PRODUCES", - "from": 3709481, - "to": 3682060, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178848894, - "label": "PRODUCES", - "from": 3709522, - "to": 3684112, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 265939, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3709482, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178848840, - "label": "PRODUCES", - "from": 3705579, - "to": 3684009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200417, - "label": "ENCODES", - "from": 3702438, - "to": 3705953, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 265955, - "label": "PRODUCES", - "from": 3709485, - "to": 3702197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200427, - "label": "ENCODES", - "from": 3717034, - "to": 3705960, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 265966, - "label": "CONSUMED_BY", - "from": 3667416, - "to": 3709488, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 265967, - "label": "PRODUCES", - "from": 3709488, - "to": 3675828, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 265960, - "label": "CONSUMED_BY", - "from": 3685591, - "to": 3709487, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178848839, - "label": "PRODUCES", - "from": 3705579, - "to": 3681822, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200428, - "label": "ENCODES", - "from": 3702776, - "to": 3705961, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 265972, - "label": "CONSUMED_BY", - "from": 3675459, - "to": 3709489, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 265974, - "label": "PRODUCES", - "from": 3709489, - "to": 3675445, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200437, - "label": "ENCODES", - "from": 3702570, - "to": 3705969, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 265980, - "label": "CONSUMED_BY", - "from": 3670406, - "to": 3709491, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 265982, - "label": "PRODUCES", - "from": 3709491, - "to": 3681987, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 265977, - "label": "CONSUMED_BY", - "from": 3681161, - "to": 3709490, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 265988, - "label": "PRODUCES", - "from": 3709492, - "to": 3675474, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 265986, - "label": "CONSUMED_BY", - "from": 3677445, - "to": 3709492, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200459, - "label": "ENCODES", - "from": 3701833, - "to": 3705989, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 265999, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3709495, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 265992, - "label": "PRODUCES", - "from": 3709493, - "to": 3672530, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 265994, - "label": "CONSUMED_BY", - "from": 3677196, - "to": 3709494, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 265995, - "label": "PRODUCES", - "from": 3709494, - "to": 3681438, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200460, - "label": "ENCODES", - "from": 3687641, - "to": 3705990, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200467, - "label": "ENCODES", - "from": 3716946, - "to": 3705998, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266001, - "label": "PRODUCES", - "from": 3709495, - "to": 3670713, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266014, - "label": "CONSUMED_BY", - "from": 3677624, - "to": 3709498, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266011, - "label": "PRODUCES", - "from": 3709497, - "to": 3679284, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200476, - "label": "ENCODES", - "from": 3707222, - "to": 3706006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266023, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3709500, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200485, - "label": "ENCODES", - "from": 3711812, - "to": 3706016, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266028, - "label": "CONSUMED_BY", - "from": 3684327, - "to": 3709501, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266026, - "label": "PRODUCES", - "from": 3709500, - "to": 3669021, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266036, - "label": "CONSUMED_BY", - "from": 3679447, - "to": 3709502, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266038, - "label": "PRODUCES", - "from": 3709502, - "to": 3679450, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266039, - "label": "CONSUMED_BY", - "from": 3679290, - "to": 3709503, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200503, - "label": "ENCODES", - "from": 3716948, - "to": 3706032, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200510, - "label": "ENCODES", - "from": 3706798, - "to": 3706039, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266041, - "label": "PRODUCES", - "from": 3709503, - "to": 3684029, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200514, - "label": "ENCODES", - "from": 3711714, - "to": 3706043, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266054, - "label": "PRODUCES", - "from": 3709506, - "to": 3677156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200513, - "label": "ENCODES", - "from": 3706808, - "to": 3706042, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266051, - "label": "CONSUMED_BY", - "from": 3679097, - "to": 3709506, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233284, - "label": "CONSUMED_BY", - "from": 3677441, - "to": 3706506, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266060, - "label": "PRODUCES", - "from": 3709507, - "to": 3682120, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233290, - "label": "PRODUCES", - "from": 3706507, - "to": 3681362, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233289, - "label": "PRODUCES", - "from": 3706507, - "to": 3670598, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266062, - "label": "CONSUMED_BY", - "from": 3684327, - "to": 3709508, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200527, - "label": "ENCODES", - "from": 3701391, - "to": 3706051, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266057, - "label": "CONSUMED_BY", - "from": 3682206, - "to": 3709507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200525, - "label": "ENCODES", - "from": 3702891, - "to": 3706050, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233293, - "label": "CONSUMED_BY", - "from": 3677369, - "to": 3706508, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266070, - "label": "CONSUMED_BY", - "from": 3681633, - "to": 3709510, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233296, - "label": "CONSUMED_BY", - "from": 3681868, - "to": 3706509, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233302, - "label": "CONSUMED_BY", - "from": 3684069, - "to": 3706510, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200534, - "label": "ENCODES", - "from": 3702755, - "to": 3706057, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233306, - "label": "CONSUMED_BY", - "from": 3677458, - "to": 3706511, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266077, - "label": "PRODUCES", - "from": 3709511, - "to": 3677579, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266072, - "label": "PRODUCES", - "from": 3709510, - "to": 3681383, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233309, - "label": "PRODUCES", - "from": 3706511, - "to": 3669808, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266085, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3709513, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233314, - "label": "CONSUMED_BY", - "from": 3679440, - "to": 3706512, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200545, - "label": "COMPONENT_OF", - "from": 3718462, - "to": 3706067, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266087, - "label": "PRODUCES", - "from": 3709513, - "to": 3670743, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178849228, - "label": "PRODUCES", - "from": 3708870, - "to": 3684108, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200548, - "label": "COMPONENT_OF", - "from": 3710301, - "to": 3706069, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266092, - "label": "PRODUCES", - "from": 3709514, - "to": 3677493, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233322, - "label": "CONSUMED_BY", - "from": 3718577, - "to": 3706514, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266094, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3709515, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200553, - "label": "MODIFIED_TO", - "from": 3706069, - "to": 3710177, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200557, - "label": "COMPONENT_OF", - "from": 3710301, - "to": 3706072, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200562, - "label": "MODIFIED_TO", - "from": 3706072, - "to": 3710191, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266096, - "label": "PRODUCES", - "from": 3709515, - "to": 3682039, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233334, - "label": "CONSUMED_BY", - "from": 3677460, - "to": 3706517, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233332, - "label": "CONSUMED_BY", - "from": 3681923, - "to": 3706516, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233339, - "label": "CONSUMED_BY", - "from": 3666725, - "to": 3706518, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233336, - "label": "PRODUCES", - "from": 3706517, - "to": 3678957, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178849237, - "label": "PRODUCES", - "from": 3707827, - "to": 3676878, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266104, - "label": "CONSUMED_BY", - "from": 3677462, - "to": 3709517, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178849239, - "label": "PRODUCES", - "from": 3707827, - "to": 3672986, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200573, - "label": "ENCODES", - "from": 3690954, - "to": 3706078, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178849238, - "label": "PRODUCES", - "from": 3707827, - "to": 3667422, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178685219, - "label": "CONSUMED_BY", - "from": 3652193, - "to": 3707660, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200580, - "label": "ENCODES", - "from": 3702598, - "to": 3706084, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266125, - "label": "CONSUMED_BY", - "from": 3682039, - "to": 3709520, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233354, - "label": "CONSUMED_BY", - "from": 3677714, - "to": 3706522, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233358, - "label": "PRODUCES", - "from": 3706523, - "to": 3668894, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233363, - "label": "CONSUMED_BY", - "from": 3684372, - "to": 3706524, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266128, - "label": "PRODUCES", - "from": 3709520, - "to": 3681992, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200599, - "label": "ENCODES", - "from": 3693706, - "to": 3706101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397201, - "label": "ELEMENT_OF", - "from": 3699569, - "to": 3727369, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397214, - "label": "ELEMENT_OF", - "from": 3694225, - "to": 3727373, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233370, - "label": "CONSUMED_BY", - "from": 3677368, - "to": 3706526, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266141, - "label": "CONSUMED_BY", - "from": 3652193, - "to": 3709523, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397210, - "label": "ELEMENT_OF", - "from": 3698813, - "to": 3727372, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266138, - "label": "PRODUCES", - "from": 3709522, - "to": 3677633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233372, - "label": "CONSUMED_BY", - "from": 3669565, - "to": 3706527, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233379, - "label": "CONSUMED_BY", - "from": 3677452, - "to": 3706528, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397223, - "label": "ELEMENT_OF", - "from": 3699965, - "to": 3727376, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331684, - "label": "REGULATES", - "from": 3705945, - "to": 3718186, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331687, - "label": "REGULATES", - "from": 3718187, - "to": 3699913, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331686, - "label": "BINDS", - "from": 3718187, - "to": 3686160, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397221, - "label": "ELEMENT_OF", - "from": 3702791, - "to": 3727375, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200614, - "label": "ENCODES", - "from": 3701526, - "to": 3706113, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331680, - "label": "REGULATES", - "from": 3677336, - "to": 3718185, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397216, - "label": "ELEMENT_OF", - "from": 3706825, - "to": 3727374, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233381, - "label": "CONSUMED_BY", - "from": 3677286, - "to": 3706529, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331682, - "label": "BINDS", - "from": 3718186, - "to": 3678717, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266156, - "label": "PRODUCES", - "from": 3709526, - "to": 3685551, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397230, - "label": "ELEMENT_OF", - "from": 3701656, - "to": 3727377, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266157, - "label": "PRODUCES", - "from": 3709526, - "to": 3676000, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331688, - "label": "REGULATES", - "from": 3710270, - "to": 3718187, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266154, - "label": "CONSUMED_BY", - "from": 3677478, - "to": 3709526, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266165, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3709529, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397237, - "label": "ELEMENT_OF", - "from": 3719932, - "to": 3727381, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200635, - "label": "ENCODES", - "from": 3690584, - "to": 3706130, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331709, - "label": "REGULATES", - "from": 3718193, - "to": 3695166, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233401, - "label": "PRODUCES", - "from": 3706533, - "to": 3675775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233400, - "label": "CONSUMED_BY", - "from": 3671495, - "to": 3706533, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331710, - "label": "REGULATES", - "from": 3718263, - "to": 3718193, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266168, - "label": "PRODUCES", - "from": 3709529, - "to": 3679355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266169, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3709530, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233405, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3706534, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200637, - "label": "ENCODES", - "from": 3711750, - "to": 3706132, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331706, - "label": "REGULATES", - "from": 3710270, - "to": 3718192, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233409, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3706535, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200646, - "label": "ENCODES", - "from": 3690646, - "to": 3706140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233412, - "label": "PRODUCES", - "from": 3706535, - "to": 3670330, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200644, - "label": "ENCODES", - "from": 3716777, - "to": 3706138, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233418, - "label": "CONSUMED_BY", - "from": 3684310, - "to": 3706537, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200655, - "label": "ENCODES", - "from": 3690682, - "to": 3706148, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233421, - "label": "PRODUCES", - "from": 3706537, - "to": 3678954, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200653, - "label": "ENCODES", - "from": 3717130, - "to": 3706146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331732, - "label": "REGULATES", - "from": 3712313, - "to": 3718199, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266199, - "label": "PRODUCES", - "from": 3709536, - "to": 3681836, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200656, - "label": "ENCODES", - "from": 3699081, - "to": 3706149, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266193, - "label": "PRODUCES", - "from": 3709535, - "to": 3675455, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331731, - "label": "REGULATES", - "from": 3718199, - "to": 3726464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233435, - "label": "PRODUCES", - "from": 3706540, - "to": 3671804, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397278, - "label": "ELEMENT_OF", - "from": 3716968, - "to": 3727391, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233434, - "label": "PRODUCES", - "from": 3706540, - "to": 3671501, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331743, - "label": "REGULATES", - "from": 3710167, - "to": 3718202, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233432, - "label": "CONSUMED_BY", - "from": 3671502, - "to": 3706540, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266201, - "label": "CONSUMED_BY", - "from": 3681573, - "to": 3709537, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233443, - "label": "PRODUCES", - "from": 3706542, - "to": 3708108, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331749, - "label": "REGULATES", - "from": 3718204, - "to": 3696974, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233442, - "label": "PRODUCES", - "from": 3706542, - "to": 3712692, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331748, - "label": "BINDS", - "from": 3718204, - "to": 3678428, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331750, - "label": "REGULATES", - "from": 3718538, - "to": 3718204, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397285, - "label": "ELEMENT_OF", - "from": 3719933, - "to": 3727394, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266208, - "label": "CONSUMED_BY", - "from": 3668896, - "to": 3709538, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266209, - "label": "PRODUCES", - "from": 3709538, - "to": 3668884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233445, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3706543, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266211, - "label": "CONSUMED_BY", - "from": 3681398, - "to": 3709539, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397294, - "label": "ELEMENT_OF", - "from": 3687581, - "to": 3727397, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266220, - "label": "PRODUCES", - "from": 3709541, - "to": 3685592, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266221, - "label": "PRODUCES", - "from": 3709541, - "to": 3674751, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233448, - "label": "PRODUCES", - "from": 3706543, - "to": 3669013, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233455, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3706545, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397290, - "label": "ELEMENT_OF", - "from": 3706919, - "to": 3727396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397289, - "label": "ELEMENT_OF", - "from": 3702766, - "to": 3727395, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266228, - "label": "PRODUCES", - "from": 3709543, - "to": 3670482, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200691, - "label": "ENCODES", - "from": 3711908, - "to": 3706181, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397302, - "label": "ELEMENT_OF", - "from": 3690614, - "to": 3727401, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266230, - "label": "CONSUMED_BY", - "from": 3679338, - "to": 3709544, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200689, - "label": "ENCODES", - "from": 3717023, - "to": 3706180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233456, - "label": "PRODUCES", - "from": 3706545, - "to": 3678970, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266231, - "label": "PRODUCES", - "from": 3709544, - "to": 3674692, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200695, - "label": "ENCODES", - "from": 3687590, - "to": 3706185, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200694, - "label": "ENCODES", - "from": 3693776, - "to": 3706184, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233461, - "label": "CONSUMED_BY", - "from": 3673210, - "to": 3706546, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200699, - "label": "ENCODES", - "from": 3698783, - "to": 3706189, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233467, - "label": "PRODUCES", - "from": 3706547, - "to": 3681411, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200698, - "label": "ENCODES", - "from": 3712211, - "to": 3706188, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266238, - "label": "CONSUMED_BY", - "from": 3677445, - "to": 3709546, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200697, - "label": "ENCODES", - "from": 3690820, - "to": 3706187, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331774, - "label": "BINDS", - "from": 3718211, - "to": 3679865, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233464, - "label": "CONSUMED_BY", - "from": 3679054, - "to": 3706547, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266232, - "label": "PRODUCES", - "from": 3709544, - "to": 3677258, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233470, - "label": "CONSUMED_BY", - "from": 3673210, - "to": 3706548, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266233, - "label": "CONSUMED_BY", - "from": 3681649, - "to": 3709545, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200701, - "label": "ENCODES", - "from": 3698985, - "to": 3706191, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397305, - "label": "ELEMENT_OF", - "from": 3702754, - "to": 3727403, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266246, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3709547, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233473, - "label": "CONSUMED_BY", - "from": 3684051, - "to": 3706549, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266247, - "label": "PRODUCES", - "from": 3709547, - "to": 3668781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331776, - "label": "REGULATES", - "from": 3710270, - "to": 3718211, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200709, - "label": "ENCODES", - "from": 3706943, - "to": 3706197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266243, - "label": "PRODUCES", - "from": 3709546, - "to": 3681868, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397313, - "label": "ELEMENT_OF", - "from": 3697765, - "to": 3727406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200715, - "label": "ENCODES", - "from": 3702668, - "to": 3706200, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266252, - "label": "PRODUCES", - "from": 3709548, - "to": 3679054, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233481, - "label": "PRODUCES", - "from": 3706550, - "to": 3714507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233487, - "label": "CONSUMED_BY", - "from": 3671803, - "to": 3706552, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331785, - "label": "BINDS", - "from": 3718214, - "to": 3685297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200719, - "label": "ENCODES", - "from": 3699030, - "to": 3706204, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266249, - "label": "CONSUMED_BY", - "from": 3681791, - "to": 3709548, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331787, - "label": "REGULATES", - "from": 3710270, - "to": 3718214, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331786, - "label": "REGULATES", - "from": 3718214, - "to": 3697222, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266260, - "label": "CONSUMED_BY", - "from": 3684064, - "to": 3709550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233491, - "label": "CONSUMED_BY", - "from": 3679089, - "to": 3706553, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266261, - "label": "PRODUCES", - "from": 3709550, - "to": 3684076, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266262, - "label": "PRODUCES", - "from": 3709550, - "to": 3677624, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233488, - "label": "PRODUCES", - "from": 3706552, - "to": 3671492, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331793, - "label": "REGULATES", - "from": 3718216, - "to": 3720341, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233494, - "label": "PRODUCES", - "from": 3706553, - "to": 3679110, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200726, - "label": "ENCODES", - "from": 3717005, - "to": 3706209, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397328, - "label": "ELEMENT_OF", - "from": 3701809, - "to": 3727411, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331794, - "label": "REGULATES", - "from": 3712313, - "to": 3718216, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200724, - "label": "ENCODES", - "from": 3716703, - "to": 3706207, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 233498, - "label": "CONSUMED_BY", - "from": 3671834, - "to": 3706554, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200729, - "label": "ENCODES", - "from": 3717029, - "to": 3706212, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200728, - "label": "ENCODES", - "from": 3701789, - "to": 3706211, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266265, - "label": "CONSUMED_BY", - "from": 3710230, - "to": 3709551, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266276, - "label": "PRODUCES", - "from": 3709553, - "to": 3677570, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331812, - "label": "REGULATES", - "from": 3677711, - "to": 3718221, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266279, - "label": "CONSUMED_BY", - "from": 3681275, - "to": 3709554, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266272, - "label": "CONSUMED_BY", - "from": 3681242, - "to": 3709553, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331811, - "label": "REGULATES", - "from": 3718221, - "to": 3688978, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397344, - "label": "ELEMENT_OF", - "from": 3724945, - "to": 3727415, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200747, - "label": "ENCODES", - "from": 3702432, - "to": 3706225, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331823, - "label": "REGULATES", - "from": 3718224, - "to": 3697310, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331822, - "label": "BINDS", - "from": 3718224, - "to": 3685087, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200751, - "label": "ENCODES", - "from": 3701554, - "to": 3706229, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266281, - "label": "CONSUMED_BY", - "from": 3677458, - "to": 3709555, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397353, - "label": "ELEMENT_OF", - "from": 3724820, - "to": 3727418, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200748, - "label": "ENCODES", - "from": 3701631, - "to": 3706226, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266283, - "label": "PRODUCES", - "from": 3709555, - "to": 3677366, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266295, - "label": "PRODUCES", - "from": 3709557, - "to": 3684107, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397365, - "label": "ELEMENT_OF", - "from": 3693780, - "to": 3727420, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266288, - "label": "PRODUCES", - "from": 3709556, - "to": 3677222, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331824, - "label": "REGULATES", - "from": 3710270, - "to": 3718224, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331836, - "label": "BINDS", - "from": 3718228, - "to": 3682938, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266302, - "label": "PRODUCES", - "from": 3709558, - "to": 3684243, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331838, - "label": "REGULATES", - "from": 3710228, - "to": 3718228, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331833, - "label": "REGULATES", - "from": 3718227, - "to": 3691288, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397370, - "label": "ELEMENT_OF", - "from": 3706812, - "to": 3727422, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266299, - "label": "CONSUMED_BY", - "from": 3677432, - "to": 3709558, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331834, - "label": "REGULATES", - "from": 3677474, - "to": 3718227, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266309, - "label": "PRODUCES", - "from": 3709560, - "to": 3677453, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266304, - "label": "CONSUMED_BY", - "from": 3677469, - "to": 3709559, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266307, - "label": "CONSUMED_BY", - "from": 3677438, - "to": 3709560, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331853, - "label": "REGULATES", - "from": 3710270, - "to": 3718232, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331852, - "label": "REGULATES", - "from": 3718232, - "to": 3702058, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331851, - "label": "BINDS", - "from": 3718232, - "to": 3679647, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397398, - "label": "ELEMENT_OF", - "from": 3697646, - "to": 3727428, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178789112, - "label": "CONSUMED_BY", - "from": 3674849, - "to": 3705433, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266324, - "label": "CONSUMED_BY", - "from": 3677238, - "to": 3709564, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266320, - "label": "CONSUMED_BY", - "from": 3684006, - "to": 3709563, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266323, - "label": "PRODUCES", - "from": 3709563, - "to": 3677573, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200788, - "label": "ENCODES", - "from": 3687612, - "to": 3707893, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397393, - "label": "ELEMENT_OF", - "from": 3690814, - "to": 3727426, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266333, - "label": "CONSUMED_BY", - "from": 3677445, - "to": 3709566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397404, - "label": "ELEMENT_OF", - "from": 3701550, - "to": 3727430, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331871, - "label": "REGULATES", - "from": 3677336, - "to": 3718237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266335, - "label": "PRODUCES", - "from": 3709566, - "to": 3681698, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200798, - "label": "MODIFIED_TO", - "from": 3707900, - "to": 3710224, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200797, - "label": "ENCODES", - "from": 3720034, - "to": 3707900, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266340, - "label": "PRODUCES", - "from": 3709567, - "to": 3681557, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266343, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3709568, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331878, - "label": "REGULATES", - "from": 3679440, - "to": 3718239, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266338, - "label": "CONSUMED_BY", - "from": 3681868, - "to": 3709567, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200805, - "label": "ENCODES", - "from": 3716835, - "to": 3707906, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397422, - "label": "ELEMENT_OF", - "from": 3701809, - "to": 3727437, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266349, - "label": "PRODUCES", - "from": 3709569, - "to": 3677740, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266344, - "label": "PRODUCES", - "from": 3709568, - "to": 3679421, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397416, - "label": "ELEMENT_OF", - "from": 3693706, - "to": 3727436, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266347, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3709569, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331893, - "label": "REGULATES", - "from": 3677401, - "to": 3718243, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331892, - "label": "REGULATES", - "from": 3718243, - "to": 3689644, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397429, - "label": "ELEMENT_OF", - "from": 3693795, - "to": 3727440, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266352, - "label": "CONSUMED_BY", - "from": 3677428, - "to": 3709570, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266354, - "label": "PRODUCES", - "from": 3709570, - "to": 3679250, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397425, - "label": "ELEMENT_OF", - "from": 3711955, - "to": 3727439, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397438, - "label": "ELEMENT_OF", - "from": 3720004, - "to": 3727443, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200824, - "label": "ENCODES", - "from": 3706919, - "to": 3707919, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266360, - "label": "PRODUCES", - "from": 3709571, - "to": 3681769, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200831, - "label": "ENCODES", - "from": 3693706, - "to": 3707925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331909, - "label": "BINDS", - "from": 3718248, - "to": 3685021, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331911, - "label": "REGULATES", - "from": 3711317, - "to": 3718248, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200836, - "label": "ENCODES", - "from": 3701533, - "to": 3707928, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266371, - "label": "CONSUMED_BY", - "from": 3685574, - "to": 3709574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266378, - "label": "CONSUMED_BY", - "from": 3684206, - "to": 3709575, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 331914, - "label": "REGULATES", - "from": 3677438, - "to": 3718249, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266389, - "label": "PRODUCES", - "from": 3709577, - "to": 3681503, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266391, - "label": "CONSUMED_BY", - "from": 3681777, - "to": 3709578, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200855, - "label": "ENCODES", - "from": 3711749, - "to": 3707945, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200854, - "label": "ENCODES", - "from": 3719951, - "to": 3707944, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266387, - "label": "CONSUMED_BY", - "from": 3681524, - "to": 3709577, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266397, - "label": "PRODUCES", - "from": 3709579, - "to": 3684188, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266399, - "label": "CONSUMED_BY", - "from": 3682077, - "to": 3709580, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266395, - "label": "CONSUMED_BY", - "from": 3710202, - "to": 3709579, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200871, - "label": "ENCODES", - "from": 3694078, - "to": 3707959, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200870, - "label": "ENCODES", - "from": 3702821, - "to": 3707958, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200874, - "label": "ENCODES", - "from": 3698986, - "to": 3707962, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266428, - "label": "PRODUCES", - "from": 3709585, - "to": 3682086, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200889, - "label": "ENCODES", - "from": 3712061, - "to": 3707974, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200893, - "label": "ENCODES", - "from": 3717004, - "to": 3707977, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200898, - "label": "ENCODES", - "from": 3707009, - "to": 3707982, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200896, - "label": "ENCODES", - "from": 3687673, - "to": 3707980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266432, - "label": "CONSUMED_BY", - "from": 3666563, - "to": 3709586, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266433, - "label": "PRODUCES", - "from": 3709586, - "to": 3684048, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200905, - "label": "ENCODES", - "from": 3690494, - "to": 3707989, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200904, - "label": "ENCODES", - "from": 3706826, - "to": 3707987, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200911, - "label": "ENCODES", - "from": 3690565, - "to": 3707994, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200914, - "label": "COMPONENT_OF", - "from": 3669028, - "to": 3707997, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200913, - "label": "ENCODES", - "from": 3707190, - "to": 3707996, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266448, - "label": "CONSUMED_BY", - "from": 3682014, - "to": 3709590, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266450, - "label": "PRODUCES", - "from": 3709590, - "to": 3677384, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200923, - "label": "ENCODES", - "from": 3712101, - "to": 3708004, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200921, - "label": "ENCODES", - "from": 3712159, - "to": 3708002, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266457, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3709592, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266459, - "label": "PRODUCES", - "from": 3709592, - "to": 3672670, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266470, - "label": "PRODUCES", - "from": 3709595, - "to": 3684277, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266464, - "label": "PRODUCES", - "from": 3709593, - "to": 3667464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200933, - "label": "ENCODES", - "from": 3702607, - "to": 3708012, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266466, - "label": "CONSUMED_BY", - "from": 3710198, - "to": 3709594, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200938, - "label": "ENCODES", - "from": 3690548, - "to": 3708017, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266479, - "label": "CONSUMED_BY", - "from": 3677447, - "to": 3709597, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200940, - "label": "ENCODES", - "from": 3693786, - "to": 3708019, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266480, - "label": "PRODUCES", - "from": 3709597, - "to": 3677386, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266494, - "label": "PRODUCES", - "from": 3709600, - "to": 3675462, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200959, - "label": "ENCODES", - "from": 3701834, - "to": 3708038, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364804, - "label": "BINDS", - "from": 3722538, - "to": 3686345, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364806, - "label": "REGULATES", - "from": 3708153, - "to": 3722538, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266497, - "label": "CONSUMED_BY", - "from": 3682155, - "to": 3709601, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200971, - "label": "ENCODES", - "from": 3693718, - "to": 3708048, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200969, - "label": "ENCODES", - "from": 3699101, - "to": 3708047, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200975, - "label": "ENCODES", - "from": 3698905, - "to": 3708051, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200973, - "label": "ENCODES", - "from": 3706857, - "to": 3708049, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364816, - "label": "BINDS", - "from": 3722541, - "to": 3678410, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200982, - "label": "ENCODES", - "from": 3711948, - "to": 3708057, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364818, - "label": "REGULATES", - "from": 3711265, - "to": 3722541, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200980, - "label": "ENCODES", - "from": 3717106, - "to": 3708056, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364829, - "label": "REGULATES", - "from": 3712313, - "to": 3722544, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200987, - "label": "ENCODES", - "from": 3702836, - "to": 3708062, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200986, - "label": "ENCODES", - "from": 3701710, - "to": 3708061, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364825, - "label": "REGULATES", - "from": 3711189, - "to": 3722543, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364827, - "label": "BINDS", - "from": 3722544, - "to": 3687501, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266534, - "label": "PRODUCES", - "from": 3709608, - "to": 3684275, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266535, - "label": "PRODUCES", - "from": 3709608, - "to": 3681906, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266531, - "label": "CONSUMED_BY", - "from": 3684270, - "to": 3709608, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364844, - "label": "REGULATES", - "from": 3718538, - "to": 3722548, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201002, - "label": "ENCODES", - "from": 3699124, - "to": 3708076, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201000, - "label": "ENCODES", - "from": 3711915, - "to": 3708074, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201011, - "label": "ENCODES", - "from": 3702749, - "to": 3708083, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364852, - "label": "REGULATES", - "from": 3710208, - "to": 3722550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266550, - "label": "BINDS", - "from": 3709612, - "to": 3686340, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266551, - "label": "REGULATES", - "from": 3709612, - "to": 3699267, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364848, - "label": "REGULATES", - "from": 3708153, - "to": 3722549, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364851, - "label": "REGULATES", - "from": 3722550, - "to": 3697321, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364850, - "label": "BINDS", - "from": 3722550, - "to": 3684994, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266557, - "label": "BINDS", - "from": 3709614, - "to": 3682917, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364863, - "label": "REGULATES", - "from": 3707928, - "to": 3722553, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266559, - "label": "REGULATES", - "from": 3711445, - "to": 3709614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266552, - "label": "REGULATES", - "from": 3710208, - "to": 3709612, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266555, - "label": "REGULATES", - "from": 3684067, - "to": 3709613, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266564, - "label": "BINDS", - "from": 3709616, - "to": 3679562, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266565, - "label": "REGULATES", - "from": 3709616, - "to": 3695034, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266566, - "label": "REGULATES", - "from": 3710246, - "to": 3709616, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266573, - "label": "REGULATES", - "from": 3714417, - "to": 3709618, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364873, - "label": "BINDS", - "from": 3722556, - "to": 3687531, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364875, - "label": "REGULATES", - "from": 3710228, - "to": 3722556, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266582, - "label": "BINDS", - "from": 3709621, - "to": 3686185, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364886, - "label": "REGULATES", - "from": 3707928, - "to": 3722559, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364893, - "label": "REGULATES", - "from": 3722561, - "to": 3702034, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364892, - "label": "BINDS", - "from": 3722561, - "to": 3679744, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364894, - "label": "REGULATES", - "from": 3711163, - "to": 3722561, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201055, - "label": "ENCODES", - "from": 3716765, - "to": 3708119, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266584, - "label": "REGULATES", - "from": 3710228, - "to": 3709621, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364901, - "label": "REGULATES", - "from": 3711317, - "to": 3722563, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201057, - "label": "ENCODES", - "from": 3698835, - "to": 3708121, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266593, - "label": "BINDS", - "from": 3709624, - "to": 3678832, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364899, - "label": "BINDS", - "from": 3722563, - "to": 3678485, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266595, - "label": "REGULATES", - "from": 3707928, - "to": 3709624, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364909, - "label": "REGULATES", - "from": 3711265, - "to": 3722565, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266604, - "label": "REGULATES", - "from": 3709627, - "to": 3688110, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364908, - "label": "REGULATES", - "from": 3722565, - "to": 3701931, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266605, - "label": "REGULATES", - "from": 3677336, - "to": 3709627, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364907, - "label": "BINDS", - "from": 3722565, - "to": 3686062, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266602, - "label": "REGULATES", - "from": 3711317, - "to": 3709626, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364916, - "label": "REGULATES", - "from": 3677427, - "to": 3722567, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201079, - "label": "ENCODES", - "from": 3701504, - "to": 3708137, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266609, - "label": "REGULATES", - "from": 3708153, - "to": 3709628, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266620, - "label": "REGULATES", - "from": 3718538, - "to": 3709631, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201087, - "label": "ENCODES", - "from": 3702787, - "to": 3708144, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266616, - "label": "REGULATES", - "from": 3711317, - "to": 3709630, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266618, - "label": "BINDS", - "from": 3709631, - "to": 3683299, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397689, - "label": "ELEMENT_OF", - "from": 3717046, - "to": 3727446, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266619, - "label": "REGULATES", - "from": 3709631, - "to": 3694508, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332165, - "label": "REGULATES", - "from": 3711207, - "to": 3718252, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201091, - "label": "ENCODES", - "from": 3712165, - "to": 3708147, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332164, - "label": "REGULATES", - "from": 3718252, - "to": 3697789, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364932, - "label": "REGULATES", - "from": 3712712, - "to": 3722571, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364935, - "label": "REGULATES", - "from": 3682104, - "to": 3722572, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332161, - "label": "REGULATES", - "from": 3677401, - "to": 3718251, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332160, - "label": "REGULATES", - "from": 3718251, - "to": 3689249, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266625, - "label": "BINDS", - "from": 3709633, - "to": 3685208, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332163, - "label": "BINDS", - "from": 3718252, - "to": 3682809, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266626, - "label": "REGULATES", - "from": 3709633, - "to": 3697140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266627, - "label": "REGULATES", - "from": 3710270, - "to": 3709633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397697, - "label": "ELEMENT_OF", - "from": 3717151, - "to": 3727449, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364930, - "label": "BINDS", - "from": 3722571, - "to": 3678945, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201099, - "label": "ENCODES", - "from": 3698990, - "to": 3708154, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397710, - "label": "ELEMENT_OF", - "from": 3702622, - "to": 3727453, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201098, - "label": "ENCODES", - "from": 3719983, - "to": 3708153, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201096, - "label": "ENCODES", - "from": 3687602, - "to": 3708150, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 266639, - "label": "BINDS", - "from": 3709637, - "to": 3685237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201103, - "label": "ENCODES", - "from": 3701493, - "to": 3708157, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332180, - "label": "REGULATES", - "from": 3711285, - "to": 3718256, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397727, - "label": "ELEMENT_OF", - "from": 3707074, - "to": 3727460, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397723, - "label": "ELEMENT_OF", - "from": 3698970, - "to": 3727459, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397733, - "label": "ELEMENT_OF", - "from": 3699123, - "to": 3727462, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332205, - "label": "REGULATES", - "from": 3682104, - "to": 3718809, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397742, - "label": "ELEMENT_OF", - "from": 3698764, - "to": 3727464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332204, - "label": "REGULATES", - "from": 3718809, - "to": 3689587, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364969, - "label": "REGULATES", - "from": 3722581, - "to": 3694661, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397738, - "label": "ELEMENT_OF", - "from": 3695998, - "to": 3727463, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364968, - "label": "BINDS", - "from": 3722581, - "to": 3683109, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364970, - "label": "REGULATES", - "from": 3711285, - "to": 3722581, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332213, - "label": "REGULATES", - "from": 3711207, - "to": 3718811, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332212, - "label": "REGULATES", - "from": 3718811, - "to": 3700105, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364983, - "label": "BINDS", - "from": 3722585, - "to": 3687262, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332211, - "label": "BINDS", - "from": 3718811, - "to": 3685234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332220, - "label": "REGULATES", - "from": 3677466, - "to": 3718813, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397754, - "label": "ELEMENT_OF", - "from": 3702944, - "to": 3727467, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364985, - "label": "REGULATES", - "from": 3712283, - "to": 3722585, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 364984, - "label": "REGULATES", - "from": 3722585, - "to": 3697801, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397752, - "label": "ELEMENT_OF", - "from": 3701453, - "to": 3727466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397762, - "label": "ELEMENT_OF", - "from": 3707315, - "to": 3727471, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397760, - "label": "ELEMENT_OF", - "from": 3693944, - "to": 3727470, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332237, - "label": "BINDS", - "from": 3718818, - "to": 3683081, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332239, - "label": "REGULATES", - "from": 3711285, - "to": 3718818, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332238, - "label": "REGULATES", - "from": 3718818, - "to": 3697162, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365006, - "label": "BINDS", - "from": 3722591, - "to": 3685467, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365008, - "label": "REGULATES", - "from": 3705945, - "to": 3722591, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365011, - "label": "REGULATES", - "from": 3674585, - "to": 3722592, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365021, - "label": "BINDS", - "from": 3722595, - "to": 3679861, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365023, - "label": "REGULATES", - "from": 3711285, - "to": 3722595, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365022, - "label": "REGULATES", - "from": 3722595, - "to": 3695137, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365017, - "label": "BINDS", - "from": 3722594, - "to": 3679955, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365019, - "label": "REGULATES", - "from": 3712586, - "to": 3722594, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397798, - "label": "ELEMENT_OF", - "from": 3707057, - "to": 3727483, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397792, - "label": "ELEMENT_OF", - "from": 3711867, - "to": 3727480, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365037, - "label": "REGULATES", - "from": 3722599, - "to": 3699216, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332268, - "label": "REGULATES", - "from": 3711249, - "to": 3718826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365036, - "label": "BINDS", - "from": 3722599, - "to": 3678818, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397804, - "label": "ELEMENT_OF", - "from": 3693960, - "to": 3727484, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365038, - "label": "REGULATES", - "from": 3710208, - "to": 3722599, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365033, - "label": "REGULATES", - "from": 3722598, - "to": 3694591, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365032, - "label": "BINDS", - "from": 3722598, - "to": 3687473, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365034, - "label": "REGULATES", - "from": 3710594, - "to": 3722598, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397814, - "label": "ELEMENT_OF", - "from": 3690525, - "to": 3727489, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397813, - "label": "ELEMENT_OF", - "from": 3699704, - "to": 3727488, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332293, - "label": "REGULATES", - "from": 3677336, - "to": 3718833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397828, - "label": "ELEMENT_OF", - "from": 3694990, - "to": 3727494, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397825, - "label": "ELEMENT_OF", - "from": 3693883, - "to": 3727493, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234003, - "label": "PRODUCES", - "from": 3706558, - "to": 3666567, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332308, - "label": "REGULATES", - "from": 3677496, - "to": 3718837, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234007, - "label": "PRODUCES", - "from": 3706559, - "to": 3684041, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234005, - "label": "CONSUMED_BY", - "from": 3682137, - "to": 3706559, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332307, - "label": "REGULATES", - "from": 3718837, - "to": 3687893, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234011, - "label": "CONSUMED_BY", - "from": 3670482, - "to": 3706560, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397855, - "label": "ELEMENT_OF", - "from": 3699353, - "to": 3727506, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397851, - "label": "ELEMENT_OF", - "from": 3685267, - "to": 3727504, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332315, - "label": "REGULATES", - "from": 3681160, - "to": 3718839, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332325, - "label": "BINDS", - "from": 3718842, - "to": 3682827, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332327, - "label": "REGULATES", - "from": 3711285, - "to": 3718842, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397861, - "label": "ELEMENT_OF", - "from": 3687380, - "to": 3727508, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234022, - "label": "CONSUMED_BY", - "from": 3666922, - "to": 3706562, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234027, - "label": "PRODUCES", - "from": 3706563, - "to": 3682032, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234024, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3706563, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397869, - "label": "ELEMENT_OF", - "from": 3686509, - "to": 3727509, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332334, - "label": "REGULATES", - "from": 3707928, - "to": 3718844, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332329, - "label": "REGULATES", - "from": 3718843, - "to": 3688085, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332330, - "label": "REGULATES", - "from": 3677715, - "to": 3718843, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234034, - "label": "PRODUCES", - "from": 3706565, - "to": 3677785, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332343, - "label": "BINDS", - "from": 3718847, - "to": 3679685, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234032, - "label": "CONSUMED_BY", - "from": 3681583, - "to": 3706565, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234038, - "label": "CONSUMED_BY", - "from": 3684390, - "to": 3706566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332349, - "label": "REGULATES", - "from": 3711265, - "to": 3718848, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332345, - "label": "REGULATES", - "from": 3712586, - "to": 3718847, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234046, - "label": "CONSUMED_BY", - "from": 3685555, - "to": 3706568, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397883, - "label": "ELEMENT_OF", - "from": 3701336, - "to": 3727510, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234051, - "label": "PRODUCES", - "from": 3706568, - "to": 3670738, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332359, - "label": "REGULATES", - "from": 3681924, - "to": 3718851, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234054, - "label": "PRODUCES", - "from": 3706569, - "to": 3679128, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332352, - "label": "REGULATES", - "from": 3668939, - "to": 3718849, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234052, - "label": "CONSUMED_BY", - "from": 3677330, - "to": 3706569, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234059, - "label": "PRODUCES", - "from": 3706570, - "to": 3670478, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234058, - "label": "CONSUMED_BY", - "from": 3710323, - "to": 3706570, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332367, - "label": "REGULATES", - "from": 3708153, - "to": 3718853, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234063, - "label": "PRODUCES", - "from": 3706571, - "to": 3679169, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234062, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3706571, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397897, - "label": "ELEMENT_OF", - "from": 3683028, - "to": 3727518, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332373, - "label": "REGULATES", - "from": 3718855, - "to": 3689368, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397908, - "label": "ELEMENT_OF", - "from": 3701683, - "to": 3727521, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332374, - "label": "REGULATES", - "from": 3677501, - "to": 3718855, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332381, - "label": "REGULATES", - "from": 3677443, - "to": 3718857, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234073, - "label": "PRODUCES", - "from": 3706573, - "to": 3684093, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332383, - "label": "BINDS", - "from": 3718858, - "to": 3683281, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234077, - "label": "CONSUMED_BY", - "from": 3681895, - "to": 3706574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397912, - "label": "ELEMENT_OF", - "from": 3690575, - "to": 3727523, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397913, - "label": "ELEMENT_OF", - "from": 3700139, - "to": 3727524, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234083, - "label": "PRODUCES", - "from": 3706575, - "to": 3677789, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234081, - "label": "CONSUMED_BY", - "from": 3681583, - "to": 3706575, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332385, - "label": "REGULATES", - "from": 3708326, - "to": 3718858, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234086, - "label": "CONSUMED_BY", - "from": 3684064, - "to": 3706576, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234095, - "label": "PRODUCES", - "from": 3706578, - "to": 3669211, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234096, - "label": "CONSUMED_BY", - "from": 3681637, - "to": 3706579, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234103, - "label": "PRODUCES", - "from": 3706580, - "to": 3677520, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234105, - "label": "CONSUMED_BY", - "from": 3677444, - "to": 3706581, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234112, - "label": "CONSUMED_BY", - "from": 3679067, - "to": 3706582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234118, - "label": "PRODUCES", - "from": 3706583, - "to": 3676168, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234116, - "label": "CONSUMED_BY", - "from": 3676959, - "to": 3706583, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234122, - "label": "CONSUMED_BY", - "from": 3677447, - "to": 3706584, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234127, - "label": "PRODUCES", - "from": 3706585, - "to": 3681588, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234125, - "label": "CONSUMED_BY", - "from": 3681703, - "to": 3706585, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234130, - "label": "CONSUMED_BY", - "from": 3670406, - "to": 3706586, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201366, - "label": "ENCODES", - "from": 3719941, - "to": 3708178, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234132, - "label": "CONSUMED_BY", - "from": 3677498, - "to": 3706587, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234138, - "label": "CONSUMED_BY", - "from": 3684130, - "to": 3706589, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201369, - "label": "ENCODES", - "from": 3693706, - "to": 3708180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234136, - "label": "CONSUMED_BY", - "from": 3679221, - "to": 3706588, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234142, - "label": "PRODUCES", - "from": 3706589, - "to": 3677805, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234141, - "label": "PRODUCES", - "from": 3706589, - "to": 3684133, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201379, - "label": "MODIFIED_TO", - "from": 3708188, - "to": 3705884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201378, - "label": "ENCODES", - "from": 3701453, - "to": 3708188, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201377, - "label": "ENCODES", - "from": 3719984, - "to": 3708187, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234148, - "label": "CONSUMED_BY", - "from": 3670533, - "to": 3706591, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201387, - "label": "ENCODES", - "from": 3698617, - "to": 3708194, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234154, - "label": "CONSUMED_BY", - "from": 3672867, - "to": 3706592, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201386, - "label": "ENCODES", - "from": 3690944, - "to": 3708193, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201384, - "label": "ENCODES", - "from": 3716813, - "to": 3708192, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201391, - "label": "ENCODES", - "from": 3699002, - "to": 3708198, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234158, - "label": "PRODUCES", - "from": 3706593, - "to": 3677663, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234156, - "label": "CONSUMED_BY", - "from": 3684109, - "to": 3706593, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234161, - "label": "CONSUMED_BY", - "from": 3684270, - "to": 3706594, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234165, - "label": "CONSUMED_BY", - "from": 3682118, - "to": 3706595, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201396, - "label": "ENCODES", - "from": 3694054, - "to": 3708203, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201401, - "label": "ENCODES", - "from": 3716696, - "to": 3708207, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234168, - "label": "PRODUCES", - "from": 3706595, - "to": 3682203, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201407, - "label": "ENCODES", - "from": 3698873, - "to": 3708212, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201406, - "label": "ENCODES", - "from": 3707326, - "to": 3708211, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234182, - "label": "CONSUMED_BY", - "from": 3681538, - "to": 3706599, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234187, - "label": "CONSUMED_BY", - "from": 3677427, - "to": 3706600, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201418, - "label": "ENCODES", - "from": 3699089, - "to": 3708221, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234184, - "label": "PRODUCES", - "from": 3706599, - "to": 3681336, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234195, - "label": "CONSUMED_BY", - "from": 3677550, - "to": 3706602, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201427, - "label": "ENCODES", - "from": 3716740, - "to": 3708228, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201426, - "label": "ENCODES", - "from": 3690881, - "to": 3708227, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201425, - "label": "ENCODES", - "from": 3690638, - "to": 3708226, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234193, - "label": "PRODUCES", - "from": 3706601, - "to": 3681405, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201424, - "label": "ENCODES", - "from": 3698921, - "to": 3708225, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234198, - "label": "PRODUCES", - "from": 3706603, - "to": 3679325, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234197, - "label": "CONSUMED_BY", - "from": 3679323, - "to": 3706603, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234203, - "label": "PRODUCES", - "from": 3706604, - "to": 3674616, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201434, - "label": "ENCODES", - "from": 3694092, - "to": 3708234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201438, - "label": "ENCODES", - "from": 3694066, - "to": 3708238, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201436, - "label": "ENCODES", - "from": 3720029, - "to": 3708236, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234204, - "label": "CONSUMED_BY", - "from": 3652193, - "to": 3706605, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234212, - "label": "PRODUCES", - "from": 3706606, - "to": 3674721, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201453, - "label": "ENCODES", - "from": 3701536, - "to": 3708249, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234221, - "label": "PRODUCES", - "from": 3706608, - "to": 3676044, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178690130, - "label": "PRODUCES", - "from": 3705300, - "to": 3674860, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201462, - "label": "ENCODES", - "from": 3706909, - "to": 3708255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201461, - "label": "MODIFIED_TO", - "from": 3708254, - "to": 3710294, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201460, - "label": "ENCODES", - "from": 3698929, - "to": 3708254, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234228, - "label": "CONSUMED_BY", - "from": 3684219, - "to": 3706610, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234232, - "label": "CONSUMED_BY", - "from": 3677689, - "to": 3706611, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201470, - "label": "MODIFIED_TO", - "from": 3708258, - "to": 3710175, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201469, - "label": "MODIFIED_TO", - "from": 3708258, - "to": 3710212, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201468, - "label": "ENCODES", - "from": 3707148, - "to": 3708258, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201477, - "label": "ENCODES", - "from": 3694165, - "to": 3708264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201476, - "label": "ENCODES", - "from": 3687664, - "to": 3708263, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201483, - "label": "ENCODES", - "from": 3707094, - "to": 3708270, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201481, - "label": "ENCODES", - "from": 3707250, - "to": 3708268, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201486, - "label": "ENCODES", - "from": 3717089, - "to": 3708272, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201491, - "label": "ENCODES", - "from": 3719959, - "to": 3708276, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201495, - "label": "ENCODES", - "from": 3687582, - "to": 3708280, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201498, - "label": "ENCODES", - "from": 3712193, - "to": 3708283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201496, - "label": "ENCODES", - "from": 3698677, - "to": 3708281, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201501, - "label": "ENCODES", - "from": 3701683, - "to": 3708286, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201513, - "label": "ENCODES", - "from": 3711892, - "to": 3708293, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201517, - "label": "ENCODES", - "from": 3702835, - "to": 3708295, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201532, - "label": "ENCODES", - "from": 3701721, - "to": 3708304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201543, - "label": "ENCODES", - "from": 3698684, - "to": 3708315, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201542, - "label": "ENCODES", - "from": 3690664, - "to": 3708314, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201559, - "label": "ENCODES", - "from": 3712063, - "to": 3708328, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201558, - "label": "ENCODES", - "from": 3712185, - "to": 3708327, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201557, - "label": "ENCODES", - "from": 3707237, - "to": 3708326, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201569, - "label": "ENCODES", - "from": 3701422, - "to": 3708337, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201580, - "label": "ENCODES", - "from": 3698830, - "to": 3708348, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201595, - "label": "ENCODES", - "from": 3687592, - "to": 3708361, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201610, - "label": "ENCODES", - "from": 3702733, - "to": 3708372, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201618, - "label": "ENCODES", - "from": 3712073, - "to": 3708378, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201617, - "label": "MODIFIED_TO", - "from": 3708377, - "to": 3710377, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201623, - "label": "ENCODES", - "from": 3717020, - "to": 3708384, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201622, - "label": "ENCODES", - "from": 3701776, - "to": 3708382, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201627, - "label": "ENCODES", - "from": 3711844, - "to": 3708387, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201625, - "label": "ENCODES", - "from": 3707313, - "to": 3708386, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201629, - "label": "ENCODES", - "from": 3690473, - "to": 3708389, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201634, - "label": "ENCODES", - "from": 3693706, - "to": 3708391, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201639, - "label": "MODIFIED_TO", - "from": 3708391, - "to": 3706060, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201659, - "label": "ENCODES", - "from": 3717109, - "to": 3708400, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201668, - "label": "ENCODES", - "from": 3698975, - "to": 3708409, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201683, - "label": "ENCODES", - "from": 3711789, - "to": 3708422, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365525, - "label": "REGULATES", - "from": 3722601, - "to": 3696253, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365524, - "label": "BINDS", - "from": 3722601, - "to": 3685104, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365526, - "label": "REGULATES", - "from": 3718431, - "to": 3722601, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365521, - "label": "REGULATES", - "from": 3722600, - "to": 3699394, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365520, - "label": "BINDS", - "from": 3722600, - "to": 3687315, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365522, - "label": "REGULATES", - "from": 3710238, - "to": 3722600, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201684, - "label": "ENCODES", - "from": 3720012, - "to": 3708423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365535, - "label": "BINDS", - "from": 3722604, - "to": 3686329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201692, - "label": "ENCODES", - "from": 3693706, - "to": 3708429, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365537, - "label": "REGULATES", - "from": 3711285, - "to": 3722604, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365536, - "label": "REGULATES", - "from": 3722604, - "to": 3694874, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201702, - "label": "ENCODES", - "from": 3698653, - "to": 3710076, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365548, - "label": "REGULATES", - "from": 3681355, - "to": 3722607, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365550, - "label": "BINDS", - "from": 3722608, - "to": 3687331, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365545, - "label": "REGULATES", - "from": 3715027, - "to": 3722606, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365544, - "label": "REGULATES", - "from": 3722606, - "to": 3694419, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365547, - "label": "REGULATES", - "from": 3722607, - "to": 3692792, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234481, - "label": "CONSUMED_BY", - "from": 3668939, - "to": 3706613, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234487, - "label": "CONSUMED_BY", - "from": 3670737, - "to": 3706614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365552, - "label": "REGULATES", - "from": 3714706, - "to": 3722608, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234484, - "label": "PRODUCES", - "from": 3706613, - "to": 3677816, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365567, - "label": "REGULATES", - "from": 3684013, - "to": 3722612, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365566, - "label": "REGULATES", - "from": 3722612, - "to": 3687860, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234488, - "label": "PRODUCES", - "from": 3706614, - "to": 3684290, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365560, - "label": "REGULATES", - "from": 3715127, - "to": 3722610, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365573, - "label": "BINDS", - "from": 3722614, - "to": 3683315, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234497, - "label": "CONSUMED_BY", - "from": 3677401, - "to": 3706616, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365575, - "label": "REGULATES", - "from": 3710228, - "to": 3722614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365574, - "label": "REGULATES", - "from": 3722614, - "to": 3701929, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365569, - "label": "BINDS", - "from": 3722613, - "to": 3678515, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234503, - "label": "PRODUCES", - "from": 3706617, - "to": 3684150, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365571, - "label": "REGULATES", - "from": 3711285, - "to": 3722613, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365570, - "label": "REGULATES", - "from": 3722613, - "to": 3697689, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365581, - "label": "BINDS", - "from": 3722616, - "to": 3687401, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234506, - "label": "CONSUMED_BY", - "from": 3670737, - "to": 3706618, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365583, - "label": "REGULATES", - "from": 3710167, - "to": 3722616, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365582, - "label": "REGULATES", - "from": 3722616, - "to": 3695924, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234510, - "label": "CONSUMED_BY", - "from": 3684169, - "to": 3706619, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365589, - "label": "REGULATES", - "from": 3722618, - "to": 3730443, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365588, - "label": "BINDS", - "from": 3722618, - "to": 3679952, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365590, - "label": "REGULATES", - "from": 3708423, - "to": 3722618, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234516, - "label": "CONSUMED_BY", - "from": 3677452, - "to": 3706620, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201755, - "label": "ENCODES", - "from": 3693984, - "to": 3710112, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365597, - "label": "REGULATES", - "from": 3722620, - "to": 3699430, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365596, - "label": "BINDS", - "from": 3722620, - "to": 3678767, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201753, - "label": "ENCODES", - "from": 3712251, - "to": 3710110, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365598, - "label": "REGULATES", - "from": 3710228, - "to": 3722620, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365592, - "label": "BINDS", - "from": 3722619, - "to": 3687339, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365594, - "label": "REGULATES", - "from": 3711179, - "to": 3722619, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365605, - "label": "REGULATES", - "from": 3677454, - "to": 3722622, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365600, - "label": "BINDS", - "from": 3722621, - "to": 3686272, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234532, - "label": "CONSUMED_BY", - "from": 3677501, - "to": 3706624, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365602, - "label": "REGULATES", - "from": 3710228, - "to": 3722621, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365613, - "label": "REGULATES", - "from": 3708423, - "to": 3722624, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365612, - "label": "REGULATES", - "from": 3722624, - "to": 3699329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234536, - "label": "PRODUCES", - "from": 3706624, - "to": 3670737, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201775, - "label": "ENCODES", - "from": 3719933, - "to": 3710129, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365611, - "label": "BINDS", - "from": 3722624, - "to": 3680000, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201779, - "label": "ENCODES", - "from": 3717151, - "to": 3710132, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234546, - "label": "CONSUMED_BY", - "from": 3715467, - "to": 3706626, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365623, - "label": "REGULATES", - "from": 3722627, - "to": 3685998, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234551, - "label": "PRODUCES", - "from": 3706627, - "to": 3668965, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234550, - "label": "CONSUMED_BY", - "from": 3668943, - "to": 3706627, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234548, - "label": "PRODUCES", - "from": 3706626, - "to": 3684374, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234552, - "label": "PRODUCES", - "from": 3706627, - "to": 3677168, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201791, - "label": "ENCODES", - "from": 3701484, - "to": 3710143, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365624, - "label": "REGULATES", - "from": 3677613, - "to": 3722627, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234558, - "label": "CONSUMED_BY", - "from": 3668939, - "to": 3706629, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201792, - "label": "ENCODES", - "from": 3698756, - "to": 3710144, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201799, - "label": "ENCODES", - "from": 3694004, - "to": 3710150, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234564, - "label": "CONSUMED_BY", - "from": 3684173, - "to": 3706630, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365645, - "label": "BINDS", - "from": 3722633, - "to": 3678574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365647, - "label": "REGULATES", - "from": 3711285, - "to": 3722633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234568, - "label": "CONSUMED_BY", - "from": 3679478, - "to": 3706631, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365646, - "label": "REGULATES", - "from": 3722633, - "to": 3697361, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365643, - "label": "REGULATES", - "from": 3679247, - "to": 3722632, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234577, - "label": "PRODUCES", - "from": 3706633, - "to": 3685594, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234576, - "label": "CONSUMED_BY", - "from": 3669028, - "to": 3706633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365649, - "label": "BINDS", - "from": 3722634, - "to": 3687223, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365651, - "label": "REGULATES", - "from": 3710270, - "to": 3722634, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234587, - "label": "PRODUCES", - "from": 3706635, - "to": 3670581, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332893, - "label": "BINDS", - "from": 3718866, - "to": 3686485, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234585, - "label": "CONSUMED_BY", - "from": 3677501, - "to": 3706635, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332895, - "label": "REGULATES", - "from": 3718538, - "to": 3718866, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365657, - "label": "BINDS", - "from": 3722636, - "to": 3683234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234591, - "label": "PRODUCES", - "from": 3706636, - "to": 3669219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365659, - "label": "REGULATES", - "from": 3714081, - "to": 3722636, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365658, - "label": "REGULATES", - "from": 3722636, - "to": 3697569, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201827, - "label": "ENCODES", - "from": 3690758, - "to": 3710176, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201830, - "label": "ENCODES", - "from": 3711888, - "to": 3710178, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332909, - "label": "REGULATES", - "from": 3711265, - "to": 3718870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332911, - "label": "BINDS", - "from": 3718871, - "to": 3682965, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234600, - "label": "CONSUMED_BY", - "from": 3677478, - "to": 3706639, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234607, - "label": "CONSUMED_BY", - "from": 3677464, - "to": 3706641, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332907, - "label": "BINDS", - "from": 3718870, - "to": 3678476, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234611, - "label": "PRODUCES", - "from": 3706641, - "to": 3677469, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332913, - "label": "REGULATES", - "from": 3707928, - "to": 3718871, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332912, - "label": "REGULATES", - "from": 3718871, - "to": 3697529, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365693, - "label": "REGULATES", - "from": 3710578, - "to": 3722645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365692, - "label": "REGULATES", - "from": 3722645, - "to": 3696088, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365695, - "label": "BINDS", - "from": 3722646, - "to": 3686354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365691, - "label": "BINDS", - "from": 3722645, - "to": 3686131, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234620, - "label": "CONSUMED_BY", - "from": 3677171, - "to": 3706644, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365702, - "label": "BINDS", - "from": 3722648, - "to": 3679883, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365697, - "label": "REGULATES", - "from": 3710586, - "to": 3722646, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234629, - "label": "CONSUMED_BY", - "from": 3677710, - "to": 3706646, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201860, - "label": "ENCODES", - "from": 3707183, - "to": 3710205, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332941, - "label": "REGULATES", - "from": 3718879, - "to": 3686033, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365708, - "label": "REGULATES", - "from": 3710578, - "to": 3722649, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201866, - "label": "ENCODES", - "from": 3707108, - "to": 3710211, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234633, - "label": "PRODUCES", - "from": 3706647, - "to": 3670390, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365711, - "label": "REGULATES", - "from": 3722650, - "to": 3697688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234632, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3706647, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332942, - "label": "REGULATES", - "from": 3677415, - "to": 3718879, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365710, - "label": "BINDS", - "from": 3722650, - "to": 3683235, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201864, - "label": "ENCODES", - "from": 3699007, - "to": 3710209, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365704, - "label": "REGULATES", - "from": 3708423, - "to": 3722648, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365707, - "label": "REGULATES", - "from": 3722649, - "to": 3696292, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234636, - "label": "CONSUMED_BY", - "from": 3677696, - "to": 3706648, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365706, - "label": "BINDS", - "from": 3722649, - "to": 3682947, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201868, - "label": "ENCODES", - "from": 3719979, - "to": 3710213, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332951, - "label": "BINDS", - "from": 3718882, - "to": 3679564, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201872, - "label": "ENCODES", - "from": 3717060, - "to": 3710217, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234640, - "label": "CONSUMED_BY", - "from": 3677603, - "to": 3706649, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365712, - "label": "REGULATES", - "from": 3710270, - "to": 3722650, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201878, - "label": "ENCODES", - "from": 3719992, - "to": 3710223, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332946, - "label": "REGULATES", - "from": 3718538, - "to": 3718880, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234651, - "label": "PRODUCES", - "from": 3706651, - "to": 3682143, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332957, - "label": "REGULATES", - "from": 3708153, - "to": 3718883, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234649, - "label": "CONSUMED_BY", - "from": 3681291, - "to": 3706651, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201880, - "label": "ENCODES", - "from": 3687669, - "to": 3710225, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234655, - "label": "CONSUMED_BY", - "from": 3715467, - "to": 3706652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332953, - "label": "REGULATES", - "from": 3710228, - "to": 3718882, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365723, - "label": "REGULATES", - "from": 3710586, - "to": 3722653, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365733, - "label": "BINDS", - "from": 3722656, - "to": 3685466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365735, - "label": "REGULATES", - "from": 3710208, - "to": 3722656, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234656, - "label": "PRODUCES", - "from": 3706652, - "to": 3681226, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365734, - "label": "REGULATES", - "from": 3722656, - "to": 3699831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201902, - "label": "ENCODES", - "from": 3687561, - "to": 3710247, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332971, - "label": "REGULATES", - "from": 3681287, - "to": 3718887, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234675, - "label": "PRODUCES", - "from": 3706657, - "to": 3679367, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201906, - "label": "ENCODES", - "from": 3719988, - "to": 3710251, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201909, - "label": "ENCODES", - "from": 3702961, - "to": 3710253, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365746, - "label": "REGULATES", - "from": 3718384, - "to": 3722659, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234683, - "label": "PRODUCES", - "from": 3706659, - "to": 3681367, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234682, - "label": "CONSUMED_BY", - "from": 3681273, - "to": 3706659, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332988, - "label": "BINDS", - "from": 3718892, - "to": 3683003, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365759, - "label": "BINDS", - "from": 3722663, - "to": 3678766, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332990, - "label": "REGULATES", - "from": 3710228, - "to": 3718892, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234686, - "label": "CONSUMED_BY", - "from": 3681453, - "to": 3706660, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365752, - "label": "BINDS", - "from": 3722661, - "to": 3685349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365754, - "label": "REGULATES", - "from": 3710270, - "to": 3722661, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234695, - "label": "CONSUMED_BY", - "from": 3677683, - "to": 3706663, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201926, - "label": "MODIFIED_TO", - "from": 3710267, - "to": 3718265, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234693, - "label": "CONSUMED_BY", - "from": 3677401, - "to": 3706662, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333005, - "label": "REGULATES", - "from": 3710167, - "to": 3718896, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234698, - "label": "CONSUMED_BY", - "from": 3666602, - "to": 3706664, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234696, - "label": "PRODUCES", - "from": 3706663, - "to": 3684022, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333001, - "label": "REGULATES", - "from": 3707928, - "to": 3718895, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234702, - "label": "CONSUMED_BY", - "from": 3674585, - "to": 3706665, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333003, - "label": "BINDS", - "from": 3718896, - "to": 3679992, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201942, - "label": "ENCODES", - "from": 3701382, - "to": 3710281, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 234708, - "label": "CONSUMED_BY", - "from": 3683877, - "to": 3706666, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333021, - "label": "BINDS", - "from": 3718901, - "to": 3685244, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333023, - "label": "REGULATES", - "from": 3711207, - "to": 3718901, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333017, - "label": "BINDS", - "from": 3718900, - "to": 3686551, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333019, - "label": "REGULATES", - "from": 3710208, - "to": 3718900, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333030, - "label": "REGULATES", - "from": 3684200, - "to": 3718903, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333025, - "label": "BINDS", - "from": 3718902, - "to": 3679829, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333027, - "label": "REGULATES", - "from": 3711247, - "to": 3718902, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333026, - "label": "REGULATES", - "from": 3718902, - "to": 3700013, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333039, - "label": "BINDS", - "from": 3718906, - "to": 3687355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201967, - "label": "COMPONENT_OF", - "from": 3704402, - "to": 3710301, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201971, - "label": "COMPONENT_OF", - "from": 3705774, - "to": 3710304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201968, - "label": "MODIFIED_TO", - "from": 3710301, - "to": 3710312, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333041, - "label": "REGULATES", - "from": 3714081, - "to": 3718906, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333052, - "label": "REGULATES", - "from": 3683877, - "to": 3718909, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 201981, - "label": "ENCODES", - "from": 3702575, - "to": 3710313, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333051, - "label": "REGULATES", - "from": 3718909, - "to": 3689232, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333056, - "label": "REGULATES", - "from": 3710228, - "to": 3718910, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333069, - "label": "BINDS", - "from": 3718914, - "to": 3687468, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333071, - "label": "REGULATES", - "from": 3710270, - "to": 3718914, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333076, - "label": "BINDS", - "from": 3718916, - "to": 3683094, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178692020, - "label": "PRODUCES", - "from": 3700714, - "to": 3672426, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333078, - "label": "REGULATES", - "from": 3710270, - "to": 3718916, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333093, - "label": "REGULATES", - "from": 3711285, - "to": 3718920, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333089, - "label": "REGULATES", - "from": 3708153, - "to": 3718919, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202021, - "label": "MODIFIED_TO", - "from": 3710347, - "to": 3718263, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202020, - "label": "ENCODES", - "from": 3701403, - "to": 3710347, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202026, - "label": "ENCODES", - "from": 3698742, - "to": 3710352, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202025, - "label": "ENCODES", - "from": 3687566, - "to": 3710351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202040, - "label": "ENCODES", - "from": 3698992, - "to": 3710365, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333118, - "label": "REGULATES", - "from": 3677368, - "to": 3718927, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202051, - "label": "ENCODES", - "from": 3690851, - "to": 3710378, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202049, - "label": "ENCODES", - "from": 3701528, - "to": 3710374, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398658, - "label": "ELEMENT_OF", - "from": 3700148, - "to": 3727534, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202060, - "label": "ENCODES", - "from": 3698717, - "to": 3710385, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398678, - "label": "ELEMENT_OF", - "from": 3724988, - "to": 3727540, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202066, - "label": "COMPONENT_OF", - "from": 3681226, - "to": 3710389, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398674, - "label": "ELEMENT_OF", - "from": 3702705, - "to": 3727539, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398691, - "label": "ELEMENT_OF", - "from": 3711750, - "to": 3727542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398708, - "label": "ELEMENT_OF", - "from": 3702772, - "to": 3727544, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398714, - "label": "ELEMENT_OF", - "from": 3701526, - "to": 3727546, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178790184, - "label": "PRODUCES", - "from": 3705433, - "to": 3670453, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398727, - "label": "ELEMENT_OF", - "from": 3702772, - "to": 3727549, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398733, - "label": "ELEMENT_OF", - "from": 3690694, - "to": 3727551, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398739, - "label": "ELEMENT_OF", - "from": 3717142, - "to": 3727553, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398746, - "label": "ELEMENT_OF", - "from": 3685373, - "to": 3727557, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398744, - "label": "ELEMENT_OF", - "from": 3719951, - "to": 3727555, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398757, - "label": "ELEMENT_OF", - "from": 3701856, - "to": 3727559, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398753, - "label": "ELEMENT_OF", - "from": 3706849, - "to": 3727558, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398765, - "label": "ELEMENT_OF", - "from": 3712211, - "to": 3727563, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398761, - "label": "ELEMENT_OF", - "from": 3693838, - "to": 3727562, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398771, - "label": "ELEMENT_OF", - "from": 3706821, - "to": 3727566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398768, - "label": "ELEMENT_OF", - "from": 3702735, - "to": 3727564, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398769, - "label": "ELEMENT_OF", - "from": 3717160, - "to": 3727565, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398781, - "label": "ELEMENT_OF", - "from": 3707148, - "to": 3727568, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300487, - "label": "REGULATES", - "from": 3713729, - "to": 3691430, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300493, - "label": "REGULATES", - "from": 3713731, - "to": 3692674, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300494, - "label": "REGULATES", - "from": 3682203, - "to": 3713731, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300488, - "label": "REGULATES", - "from": 3672867, - "to": 3713729, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398793, - "label": "ELEMENT_OF", - "from": 3699160, - "to": 3727574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398815, - "label": "ELEMENT_OF", - "from": 3716993, - "to": 3727584, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398810, - "label": "ELEMENT_OF", - "from": 3697195, - "to": 3727582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300505, - "label": "REGULATES", - "from": 3713735, - "to": 3687763, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300506, - "label": "REGULATES", - "from": 3677501, - "to": 3713735, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398823, - "label": "ELEMENT_OF", - "from": 3694092, - "to": 3727589, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398838, - "label": "ELEMENT_OF", - "from": 3682810, - "to": 3727596, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300533, - "label": "REGULATES", - "from": 3677394, - "to": 3713744, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398837, - "label": "ELEMENT_OF", - "from": 3699117, - "to": 3727595, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398832, - "label": "ELEMENT_OF", - "from": 3696278, - "to": 3727593, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398846, - "label": "ELEMENT_OF", - "from": 3711708, - "to": 3727598, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300536, - "label": "REGULATES", - "from": 3677446, - "to": 3713745, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398852, - "label": "ELEMENT_OF", - "from": 3690670, - "to": 3727600, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300550, - "label": "REGULATES", - "from": 3713750, - "to": 3691281, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300551, - "label": "REGULATES", - "from": 3677560, - "to": 3713750, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300544, - "label": "REGULATES", - "from": 3713748, - "to": 3689218, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300545, - "label": "REGULATES", - "from": 3677438, - "to": 3713748, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398859, - "label": "ELEMENT_OF", - "from": 3701484, - "to": 3727602, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300560, - "label": "REGULATES", - "from": 3677570, - "to": 3713753, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398864, - "label": "ELEMENT_OF", - "from": 3712061, - "to": 3727605, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300562, - "label": "REGULATES", - "from": 3713754, - "to": 3691148, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300563, - "label": "REGULATES", - "from": 3710552, - "to": 3713754, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300568, - "label": "REGULATES", - "from": 3713756, - "to": 3691163, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398874, - "label": "ELEMENT_OF", - "from": 3697682, - "to": 3727609, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300569, - "label": "REGULATES", - "from": 3684130, - "to": 3713756, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300580, - "label": "REGULATES", - "from": 3713760, - "to": 3687753, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300581, - "label": "REGULATES", - "from": 3677478, - "to": 3713760, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300577, - "label": "REGULATES", - "from": 3713759, - "to": 3689680, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300578, - "label": "REGULATES", - "from": 3677711, - "to": 3713759, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300584, - "label": "REGULATES", - "from": 3677496, - "to": 3713761, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333365, - "label": "REGULATES", - "from": 3684133, - "to": 3718929, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300598, - "label": "REGULATES", - "from": 3713766, - "to": 3688073, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300599, - "label": "REGULATES", - "from": 3681453, - "to": 3713766, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333380, - "label": "REGULATES", - "from": 3677501, - "to": 3718933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 267841, - "label": "REGULATES", - "from": 3710228, - "to": 3709637, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333379, - "label": "REGULATES", - "from": 3718933, - "to": 3689571, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300610, - "label": "REGULATES", - "from": 3713770, - "to": 3685860, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300611, - "label": "REGULATES", - "from": 3679440, - "to": 3713770, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 267852, - "label": "REGULATES", - "from": 3714908, - "to": 3709640, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 267855, - "label": "REGULATES", - "from": 3677458, - "to": 3709641, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 267851, - "label": "REGULATES", - "from": 3709640, - "to": 3699574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300629, - "label": "REGULATES", - "from": 3683889, - "to": 3713776, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333399, - "label": "REGULATES", - "from": 3711265, - "to": 3718938, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333393, - "label": "BINDS", - "from": 3718937, - "to": 3679998, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300626, - "label": "REGULATES", - "from": 3677711, - "to": 3713775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333395, - "label": "REGULATES", - "from": 3711179, - "to": 3718937, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333394, - "label": "REGULATES", - "from": 3718937, - "to": 3699565, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202324, - "label": "ENCODES", - "from": 3693740, - "to": 3710405, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 267859, - "label": "REGULATES", - "from": 3710228, - "to": 3709642, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 267869, - "label": "REGULATES", - "from": 3709645, - "to": 3697269, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202329, - "label": "ENCODES", - "from": 3690683, - "to": 3710409, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 267870, - "label": "REGULATES", - "from": 3710208, - "to": 3709645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333406, - "label": "REGULATES", - "from": 3710238, - "to": 3718940, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 267864, - "label": "BINDS", - "from": 3709644, - "to": 3685200, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202335, - "label": "ENCODES", - "from": 3690687, - "to": 3710415, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 267866, - "label": "REGULATES", - "from": 3710582, - "to": 3709644, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300635, - "label": "REGULATES", - "from": 3684067, - "to": 3713778, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333413, - "label": "REGULATES", - "from": 3711183, - "to": 3718942, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202339, - "label": "ENCODES", - "from": 3707218, - "to": 3710418, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333415, - "label": "BINDS", - "from": 3718943, - "to": 3685002, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333409, - "label": "REGULATES", - "from": 3677496, - "to": 3718941, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 267873, - "label": "REGULATES", - "from": 3718356, - "to": 3709646, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333411, - "label": "BINDS", - "from": 3718942, - "to": 3683304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300652, - "label": "REGULATES", - "from": 3713784, - "to": 3689664, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202347, - "label": "ENCODES", - "from": 3706935, - "to": 3710424, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300653, - "label": "REGULATES", - "from": 3666563, - "to": 3713784, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333417, - "label": "REGULATES", - "from": 3712313, - "to": 3718943, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202351, - "label": "ENCODES", - "from": 3693985, - "to": 3710428, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300650, - "label": "REGULATES", - "from": 3677466, - "to": 3713783, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333431, - "label": "REGULATES", - "from": 3681355, - "to": 3718947, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300662, - "label": "REGULATES", - "from": 3677409, - "to": 3713787, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333430, - "label": "REGULATES", - "from": 3718947, - "to": 3691267, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 267888, - "label": "REGULATES", - "from": 3684133, - "to": 3709651, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300656, - "label": "REGULATES", - "from": 3668965, - "to": 3713785, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202359, - "label": "ENCODES", - "from": 3712147, - "to": 3710434, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202358, - "label": "COMPONENT_OF", - "from": 3714433, - "to": 3710433, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202357, - "label": "ENCODES", - "from": 3711847, - "to": 3710432, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 267891, - "label": "REGULATES", - "from": 3713939, - "to": 3709652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333437, - "label": "BINDS", - "from": 3718949, - "to": 3683002, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333439, - "label": "REGULATES", - "from": 3710274, - "to": 3718949, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333433, - "label": "BINDS", - "from": 3718948, - "to": 3686462, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333435, - "label": "REGULATES", - "from": 3712308, - "to": 3718948, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300679, - "label": "REGULATES", - "from": 3713793, - "to": 3691026, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333446, - "label": "REGULATES", - "from": 3677689, - "to": 3718951, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333441, - "label": "BINDS", - "from": 3718950, - "to": 3686481, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333443, - "label": "REGULATES", - "from": 3708153, - "to": 3718950, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333442, - "label": "REGULATES", - "from": 3718950, - "to": 3696111, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202372, - "label": "ENCODES", - "from": 3694149, - "to": 3710447, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333453, - "label": "REGULATES", - "from": 3683877, - "to": 3718953, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202378, - "label": "COMPONENT_OF", - "from": 3718266, - "to": 3710453, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300686, - "label": "REGULATES", - "from": 3677462, - "to": 3713795, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300680, - "label": "REGULATES", - "from": 3684009, - "to": 3713793, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 267915, - "label": "REGULATES", - "from": 3677469, - "to": 3709660, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333450, - "label": "REGULATES", - "from": 3710228, - "to": 3718952, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202387, - "label": "ENCODES", - "from": 3701400, - "to": 3710462, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333463, - "label": "BINDS", - "from": 3718956, - "to": 3678435, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333457, - "label": "REGULATES", - "from": 3711265, - "to": 3718954, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202391, - "label": "ENCODES", - "from": 3698788, - "to": 3710466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202395, - "label": "ENCODES", - "from": 3693775, - "to": 3710470, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333465, - "label": "REGULATES", - "from": 3711207, - "to": 3718956, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333464, - "label": "REGULATES", - "from": 3718956, - "to": 3699800, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 267930, - "label": "REGULATES", - "from": 3720073, - "to": 3709665, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 267941, - "label": "REGULATES", - "from": 3709669, - "to": 3689816, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 267942, - "label": "REGULATES", - "from": 3666563, - "to": 3709669, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178691072, - "label": "PRODUCES", - "from": 3708649, - "to": 3675720, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300707, - "label": "REGULATES", - "from": 3677560, - "to": 3713802, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300716, - "label": "REGULATES", - "from": 3684068, - "to": 3713805, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 267948, - "label": "REGULATES", - "from": 3720094, - "to": 3709671, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300719, - "label": "REGULATES", - "from": 3679073, - "to": 3713806, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202415, - "label": "ENCODES", - "from": 3690726, - "to": 3710489, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 300713, - "label": "REGULATES", - "from": 3684128, - "to": 3713804, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 267947, - "label": "REGULATES", - "from": 3709671, - "to": 3694099, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333493, - "label": "REGULATES", - "from": 3718964, - "to": 3697116, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333492, - "label": "BINDS", - "from": 3718964, - "to": 3678654, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333494, - "label": "REGULATES", - "from": 3711313, - "to": 3718964, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202421, - "label": "ENCODES", - "from": 3716984, - "to": 3710494, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333501, - "label": "REGULATES", - "from": 3710228, - "to": 3718966, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 267966, - "label": "REGULATES", - "from": 3720117, - "to": 3709677, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333497, - "label": "REGULATES", - "from": 3677501, - "to": 3718965, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333496, - "label": "REGULATES", - "from": 3718965, - "to": 3691041, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333509, - "label": "REGULATES", - "from": 3711313, - "to": 3718968, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202437, - "label": "ENCODES", - "from": 3707248, - "to": 3710505, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333507, - "label": "BINDS", - "from": 3718968, - "to": 3686114, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 267981, - "label": "REGULATES", - "from": 3720111, - "to": 3709682, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202442, - "label": "ENCODES", - "from": 3719961, - "to": 3710509, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202449, - "label": "ENCODES", - "from": 3693890, - "to": 3710516, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 267984, - "label": "REGULATES", - "from": 3720073, - "to": 3709683, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333521, - "label": "BINDS", - "from": 3718972, - "to": 3687329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202453, - "label": "ENCODES", - "from": 3712020, - "to": 3710520, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333523, - "label": "REGULATES", - "from": 3710167, - "to": 3718972, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202459, - "label": "COMPONENT_OF", - "from": 3711192, - "to": 3710524, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333534, - "label": "REGULATES", - "from": 3677368, - "to": 3718975, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202462, - "label": "ENCODES", - "from": 3702688, - "to": 3710526, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333541, - "label": "REGULATES", - "from": 3677689, - "to": 3718977, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 268004, - "label": "REGULATES", - "from": 3709690, - "to": 3689497, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 268005, - "label": "REGULATES", - "from": 3668965, - "to": 3709690, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202471, - "label": "ENCODES", - "from": 3707056, - "to": 3710535, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 268001, - "label": "REGULATES", - "from": 3709689, - "to": 3694225, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 268002, - "label": "REGULATES", - "from": 3720094, - "to": 3709689, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333549, - "label": "REGULATES", - "from": 3711179, - "to": 3718979, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333548, - "label": "REGULATES", - "from": 3718979, - "to": 3699923, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202474, - "label": "ENCODES", - "from": 3693919, - "to": 3710538, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333547, - "label": "BINDS", - "from": 3718979, - "to": 3683051, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202482, - "label": "COMPONENT_OF", - "from": 3720229, - "to": 3710544, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202491, - "label": "COMPONENT_OF", - "from": 3704584, - "to": 3710546, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 268029, - "label": "REGULATES", - "from": 3720103, - "to": 3709698, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333567, - "label": "REGULATES", - "from": 3710270, - "to": 3718984, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333563, - "label": "REGULATES", - "from": 3677501, - "to": 3718983, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333562, - "label": "REGULATES", - "from": 3718983, - "to": 3691023, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333569, - "label": "BINDS", - "from": 3718985, - "to": 3675625, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333571, - "label": "REGULATES", - "from": 3715127, - "to": 3718985, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333581, - "label": "REGULATES", - "from": 3718988, - "to": 3697418, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 268044, - "label": "REGULATES", - "from": 3720073, - "to": 3709703, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333580, - "label": "BINDS", - "from": 3718988, - "to": 3687306, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333582, - "label": "REGULATES", - "from": 3711285, - "to": 3718988, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 268040, - "label": "REGULATES", - "from": 3709702, - "to": 3689179, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333577, - "label": "REGULATES", - "from": 3718987, - "to": 3692641, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 268041, - "label": "REGULATES", - "from": 3677464, - "to": 3709702, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333578, - "label": "REGULATES", - "from": 3684058, - "to": 3718987, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333589, - "label": "REGULATES", - "from": 3714081, - "to": 3718990, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202519, - "label": "ENCODES", - "from": 3687585, - "to": 3710547, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333587, - "label": "BINDS", - "from": 3718990, - "to": 3683033, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333597, - "label": "REGULATES", - "from": 3711281, - "to": 3718992, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 268061, - "label": "REGULATES", - "from": 3709709, - "to": 3694071, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202522, - "label": "ENCODES", - "from": 3702861, - "to": 3710549, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 268062, - "label": "REGULATES", - "from": 3720094, - "to": 3709709, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202527, - "label": "COMPONENT_OF", - "from": 3710546, - "to": 3710552, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 268056, - "label": "REGULATES", - "from": 3720094, - "to": 3709707, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 268058, - "label": "REGULATES", - "from": 3709708, - "to": 3685638, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333595, - "label": "BINDS", - "from": 3718992, - "to": 3678947, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 268059, - "label": "REGULATES", - "from": 3679284, - "to": 3709708, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 268068, - "label": "REGULATES", - "from": 3684128, - "to": 3709711, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 268070, - "label": "REGULATES", - "from": 3709712, - "to": 3727591, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 268071, - "label": "REGULATES", - "from": 3720073, - "to": 3709712, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202535, - "label": "COMPONENT_OF", - "from": 3720117, - "to": 3710558, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202534, - "label": "ENCODES", - "from": 3702856, - "to": 3710557, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 202546, - "label": "COMPONENT_OF", - "from": 3718356, - "to": 3710560, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366721, - "label": "REGULATES", - "from": 3714706, - "to": 3722663, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366733, - "label": "REGULATES", - "from": 3708157, - "to": 3722666, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366732, - "label": "REGULATES", - "from": 3722666, - "to": 3697021, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366731, - "label": "BINDS", - "from": 3722666, - "to": 3679873, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366740, - "label": "REGULATES", - "from": 3712313, - "to": 3722668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301205, - "label": "REGULATES", - "from": 3677368, - "to": 3713808, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366736, - "label": "REGULATES", - "from": 3677336, - "to": 3722667, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366739, - "label": "REGULATES", - "from": 3722668, - "to": 3726422, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366748, - "label": "REGULATES", - "from": 3711233, - "to": 3722670, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366746, - "label": "BINDS", - "from": 3722670, - "to": 3685304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366759, - "label": "REGULATES", - "from": 3708153, - "to": 3722673, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301217, - "label": "REGULATES", - "from": 3684133, - "to": 3713812, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366773, - "label": "REGULATES", - "from": 3722677, - "to": 3691136, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366774, - "label": "REGULATES", - "from": 3684390, - "to": 3722677, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366769, - "label": "BINDS", - "from": 3722676, - "to": 3679842, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366771, - "label": "REGULATES", - "from": 3710270, - "to": 3722676, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366770, - "label": "REGULATES", - "from": 3722676, - "to": 3694990, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366781, - "label": "REGULATES", - "from": 3722679, - "to": 3697955, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366780, - "label": "BINDS", - "from": 3722679, - "to": 3683006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366782, - "label": "REGULATES", - "from": 3711233, - "to": 3722679, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301240, - "label": "REGULATES", - "from": 3713820, - "to": 3687852, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301241, - "label": "REGULATES", - "from": 3677368, - "to": 3713820, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301253, - "label": "REGULATES", - "from": 3677431, - "to": 3713824, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366785, - "label": "REGULATES", - "from": 3722680, - "to": 3730286, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366786, - "label": "REGULATES", - "from": 3712313, - "to": 3722680, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366799, - "label": "BINDS", - "from": 3722684, - "to": 3682785, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366793, - "label": "REGULATES", - "from": 3684200, - "to": 3722682, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301258, - "label": "REGULATES", - "from": 3713826, - "to": 3691110, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301259, - "label": "REGULATES", - "from": 3715467, - "to": 3713826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366805, - "label": "REGULATES", - "from": 3712357, - "to": 3722685, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366804, - "label": "REGULATES", - "from": 3722685, - "to": 3696054, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366801, - "label": "REGULATES", - "from": 3711247, - "to": 3722684, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366800, - "label": "REGULATES", - "from": 3722684, - "to": 3699498, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366803, - "label": "BINDS", - "from": 3722685, - "to": 3682831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366812, - "label": "REGULATES", - "from": 3677161, - "to": 3722687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366809, - "label": "REGULATES", - "from": 3710270, - "to": 3722686, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366808, - "label": "REGULATES", - "from": 3722686, - "to": 3696273, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366811, - "label": "REGULATES", - "from": 3722687, - "to": 3691390, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366820, - "label": "REGULATES", - "from": 3710270, - "to": 3722689, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366818, - "label": "BINDS", - "from": 3722689, - "to": 3682793, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366837, - "label": "BINDS", - "from": 3722694, - "to": 3678618, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366839, - "label": "REGULATES", - "from": 3715127, - "to": 3722694, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301303, - "label": "REGULATES", - "from": 3713841, - "to": 3689186, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366833, - "label": "BINDS", - "from": 3722693, - "to": 3678853, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301297, - "label": "REGULATES", - "from": 3713839, - "to": 3687972, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301298, - "label": "REGULATES", - "from": 3677464, - "to": 3713839, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366835, - "label": "REGULATES", - "from": 3712313, - "to": 3722693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366834, - "label": "REGULATES", - "from": 3722693, - "to": 3727087, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301304, - "label": "REGULATES", - "from": 3677401, - "to": 3713841, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301316, - "label": "REGULATES", - "from": 3679440, - "to": 3713845, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334084, - "label": "REGULATES", - "from": 3711179, - "to": 3718994, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366852, - "label": "BINDS", - "from": 3722698, - "to": 3678756, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334087, - "label": "REGULATES", - "from": 3677550, - "to": 3718995, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301318, - "label": "REGULATES", - "from": 3713846, - "to": 3728944, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334086, - "label": "REGULATES", - "from": 3718995, - "to": 3685934, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301319, - "label": "REGULATES", - "from": 3679440, - "to": 3713846, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366854, - "label": "REGULATES", - "from": 3710228, - "to": 3722698, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334083, - "label": "REGULATES", - "from": 3718994, - "to": 3694566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334082, - "label": "BINDS", - "from": 3718994, - "to": 3678582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301324, - "label": "REGULATES", - "from": 3713848, - "to": 3685684, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301325, - "label": "REGULATES", - "from": 3677368, - "to": 3713848, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334095, - "label": "REGULATES", - "from": 3708423, - "to": 3718997, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366857, - "label": "REGULATES", - "from": 3722699, - "to": 3697559, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334089, - "label": "BINDS", - "from": 3718996, - "to": 3682932, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301321, - "label": "REGULATES", - "from": 3713847, - "to": 3694896, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334091, - "label": "REGULATES", - "from": 3710270, - "to": 3718996, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301322, - "label": "REGULATES", - "from": 3679440, - "to": 3713847, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366858, - "label": "REGULATES", - "from": 3711207, - "to": 3722699, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334090, - "label": "REGULATES", - "from": 3718996, - "to": 3696412, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366869, - "label": "REGULATES", - "from": 3677049, - "to": 3722702, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366871, - "label": "BINDS", - "from": 3722703, - "to": 3686197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301334, - "label": "REGULATES", - "from": 3679440, - "to": 3713851, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334102, - "label": "REGULATES", - "from": 3677477, - "to": 3718999, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301328, - "label": "REGULATES", - "from": 3679440, - "to": 3713849, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366864, - "label": "BINDS", - "from": 3722701, - "to": 3685287, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366866, - "label": "REGULATES", - "from": 3711285, - "to": 3722701, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301340, - "label": "REGULATES", - "from": 3679440, - "to": 3713853, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334109, - "label": "REGULATES", - "from": 3677336, - "to": 3719001, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334111, - "label": "BINDS", - "from": 3719002, - "to": 3675648, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301343, - "label": "REGULATES", - "from": 3681872, - "to": 3713854, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366873, - "label": "REGULATES", - "from": 3711265, - "to": 3722703, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334105, - "label": "REGULATES", - "from": 3719000, - "to": 3729495, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334104, - "label": "BINDS", - "from": 3719000, - "to": 3685279, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301337, - "label": "REGULATES", - "from": 3679440, - "to": 3713852, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334106, - "label": "REGULATES", - "from": 3714706, - "to": 3719000, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301339, - "label": "REGULATES", - "from": 3713853, - "to": 3728726, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301351, - "label": "REGULATES", - "from": 3713857, - "to": 3695985, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366881, - "label": "REGULATES", - "from": 3712313, - "to": 3722705, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334113, - "label": "REGULATES", - "from": 3714753, - "to": 3719002, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366880, - "label": "REGULATES", - "from": 3722705, - "to": 3729111, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301346, - "label": "REGULATES", - "from": 3679440, - "to": 3713855, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334127, - "label": "REGULATES", - "from": 3719006, - "to": 3725913, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334126, - "label": "BINDS", - "from": 3719006, - "to": 3682910, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301352, - "label": "REGULATES", - "from": 3679440, - "to": 3713857, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301354, - "label": "REGULATES", - "from": 3713858, - "to": 3728046, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301355, - "label": "REGULATES", - "from": 3679440, - "to": 3713858, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301364, - "label": "REGULATES", - "from": 3679440, - "to": 3713861, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301360, - "label": "REGULATES", - "from": 3713860, - "to": 3688790, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301361, - "label": "REGULATES", - "from": 3679474, - "to": 3713860, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334128, - "label": "REGULATES", - "from": 3712313, - "to": 3719006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366909, - "label": "REGULATES", - "from": 3722713, - "to": 3701892, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301372, - "label": "REGULATES", - "from": 3713864, - "to": 3700166, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366908, - "label": "BINDS", - "from": 3722713, - "to": 3683074, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301373, - "label": "REGULATES", - "from": 3711269, - "to": 3713864, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366910, - "label": "REGULATES", - "from": 3714677, - "to": 3722713, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301369, - "label": "REGULATES", - "from": 3713863, - "to": 3694814, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301370, - "label": "REGULATES", - "from": 3679440, - "to": 3713863, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301376, - "label": "REGULATES", - "from": 3679440, - "to": 3713865, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301388, - "label": "REGULATES", - "from": 3679440, - "to": 3713869, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366927, - "label": "BINDS", - "from": 3722718, - "to": 3678670, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301390, - "label": "REGULATES", - "from": 3713870, - "to": 3725973, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301391, - "label": "REGULATES", - "from": 3679440, - "to": 3713870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334153, - "label": "REGULATES", - "from": 3677368, - "to": 3719013, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366920, - "label": "BINDS", - "from": 3722716, - "to": 3678890, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366922, - "label": "REGULATES", - "from": 3710143, - "to": 3722716, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301396, - "label": "REGULATES", - "from": 3713872, - "to": 3691189, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334165, - "label": "REGULATES", - "from": 3711207, - "to": 3719016, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301397, - "label": "REGULATES", - "from": 3682104, - "to": 3713872, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334164, - "label": "REGULATES", - "from": 3719016, - "to": 3694742, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366929, - "label": "REGULATES", - "from": 3712313, - "to": 3722718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334163, - "label": "BINDS", - "from": 3719016, - "to": 3686518, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301394, - "label": "REGULATES", - "from": 3679440, - "to": 3713871, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334172, - "label": "REGULATES", - "from": 3707928, - "to": 3719018, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301405, - "label": "REGULATES", - "from": 3713875, - "to": 3727833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366940, - "label": "REGULATES", - "from": 3710274, - "to": 3722721, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301406, - "label": "REGULATES", - "from": 3679440, - "to": 3713875, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301400, - "label": "REGULATES", - "from": 3679440, - "to": 3713873, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334170, - "label": "BINDS", - "from": 3719018, - "to": 3682995, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366938, - "label": "BINDS", - "from": 3722721, - "to": 3686158, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334181, - "label": "BINDS", - "from": 3719021, - "to": 3686103, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301412, - "label": "REGULATES", - "from": 3679440, - "to": 3713877, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334183, - "label": "REGULATES", - "from": 3712313, - "to": 3719021, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301415, - "label": "REGULATES", - "from": 3681547, - "to": 3713878, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334182, - "label": "REGULATES", - "from": 3719021, - "to": 3727535, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301409, - "label": "REGULATES", - "from": 3679440, - "to": 3713876, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301411, - "label": "REGULATES", - "from": 3713877, - "to": 3699529, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366957, - "label": "BINDS", - "from": 3722726, - "to": 3686334, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 366959, - "label": "REGULATES", - "from": 3710228, - "to": 3722726, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301423, - "label": "REGULATES", - "from": 3713881, - "to": 3696109, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301417, - "label": "REGULATES", - "from": 3713879, - "to": 3695982, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301418, - "label": "REGULATES", - "from": 3679440, - "to": 3713879, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334197, - "label": "REGULATES", - "from": 3677368, - "to": 3719025, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334196, - "label": "REGULATES", - "from": 3719025, - "to": 3691276, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334199, - "label": "BINDS", - "from": 3719026, - "to": 3678906, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301424, - "label": "REGULATES", - "from": 3679440, - "to": 3713881, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301426, - "label": "REGULATES", - "from": 3713882, - "to": 3694337, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301427, - "label": "REGULATES", - "from": 3679440, - "to": 3713882, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334205, - "label": "REGULATES", - "from": 3708153, - "to": 3719027, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 301436, - "label": "REGULATES", - "from": 3679440, - "to": 3713885, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334201, - "label": "REGULATES", - "from": 3711213, - "to": 3719026, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334219, - "label": "REGULATES", - "from": 3681949, - "to": 3719031, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334218, - "label": "REGULATES", - "from": 3719031, - "to": 3689117, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 235923, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3706669, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 235920, - "label": "PRODUCES", - "from": 3706668, - "to": 3679464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334237, - "label": "REGULATES", - "from": 3719036, - "to": 3726582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334236, - "label": "BINDS", - "from": 3719036, - "to": 3686112, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 235929, - "label": "PRODUCES", - "from": 3706669, - "to": 3669512, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334238, - "label": "REGULATES", - "from": 3712313, - "to": 3719036, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 235939, - "label": "PRODUCES", - "from": 3706671, - "to": 3682081, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 235937, - "label": "CONSUMED_BY", - "from": 3681635, - "to": 3706671, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 235947, - "label": "PRODUCES", - "from": 3706673, - "to": 3681473, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 235945, - "label": "CONSUMED_BY", - "from": 3681956, - "to": 3706673, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334260, - "label": "REGULATES", - "from": 3712357, - "to": 3719042, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334263, - "label": "REGULATES", - "from": 3677196, - "to": 3719043, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 235958, - "label": "PRODUCES", - "from": 3706675, - "to": 3681919, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 235956, - "label": "CONSUMED_BY", - "from": 3681943, - "to": 3706675, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 235961, - "label": "CONSUMED_BY", - "from": 3677396, - "to": 3706676, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334265, - "label": "BINDS", - "from": 3719044, - "to": 3687311, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334267, - "label": "REGULATES", - "from": 3711237, - "to": 3719044, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334273, - "label": "BINDS", - "from": 3719046, - "to": 3679823, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334275, - "label": "REGULATES", - "from": 3710143, - "to": 3719046, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 235972, - "label": "PRODUCES", - "from": 3706678, - "to": 3677161, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334287, - "label": "BINDS", - "from": 3719050, - "to": 3685225, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 235982, - "label": "CONSUMED_BY", - "from": 3679474, - "to": 3706681, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334293, - "label": "REGULATES", - "from": 3712313, - "to": 3719051, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 235986, - "label": "CONSUMED_BY", - "from": 3670744, - "to": 3706682, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334295, - "label": "BINDS", - "from": 3719052, - "to": 3679761, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 235991, - "label": "CONSUMED_BY", - "from": 3684045, - "to": 3706683, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334289, - "label": "REGULATES", - "from": 3714771, - "to": 3719050, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 235990, - "label": "PRODUCES", - "from": 3706682, - "to": 3681214, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334288, - "label": "REGULATES", - "from": 3719050, - "to": 3697256, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334291, - "label": "BINDS", - "from": 3719051, - "to": 3687466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334300, - "label": "REGULATES", - "from": 3684390, - "to": 3719053, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334297, - "label": "REGULATES", - "from": 3706006, - "to": 3719052, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 399846, - "label": "ELEMENT_OF", - "from": 3707293, - "to": 3727612, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236005, - "label": "CONSUMED_BY", - "from": 3674721, - "to": 3706686, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 399854, - "label": "ELEMENT_OF", - "from": 3695220, - "to": 3727617, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334317, - "label": "BINDS", - "from": 3719058, - "to": 3682984, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236010, - "label": "PRODUCES", - "from": 3706687, - "to": 3674696, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334319, - "label": "REGULATES", - "from": 3710208, - "to": 3719058, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236015, - "label": "CONSUMED_BY", - "from": 3684274, - "to": 3706689, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 399851, - "label": "ELEMENT_OF", - "from": 3711989, - "to": 3727615, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236013, - "label": "CONSUMED_BY", - "from": 3685555, - "to": 3706688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 399849, - "label": "ELEMENT_OF", - "from": 3698684, - "to": 3727613, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 399863, - "label": "ELEMENT_OF", - "from": 3690517, - "to": 3727620, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 399860, - "label": "ELEMENT_OF", - "from": 3696973, - "to": 3727619, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236022, - "label": "CONSUMED_BY", - "from": 3677504, - "to": 3706691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236021, - "label": "PRODUCES", - "from": 3706690, - "to": 3675862, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236027, - "label": "CONSUMED_BY", - "from": 3682122, - "to": 3706692, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 399870, - "label": "ELEMENT_OF", - "from": 3694229, - "to": 3727622, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236024, - "label": "PRODUCES", - "from": 3706691, - "to": 3684105, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236031, - "label": "PRODUCES", - "from": 3706693, - "to": 3677550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236029, - "label": "CONSUMED_BY", - "from": 3677543, - "to": 3706693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236035, - "label": "CONSUMED_BY", - "from": 3684064, - "to": 3706694, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 399876, - "label": "ELEMENT_OF", - "from": 3690571, - "to": 3727624, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236039, - "label": "PRODUCES", - "from": 3706695, - "to": 3675985, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236038, - "label": "CONSUMED_BY", - "from": 3675954, - "to": 3706695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 399873, - "label": "ELEMENT_OF", - "from": 3702528, - "to": 3727623, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236043, - "label": "CONSUMED_BY", - "from": 3682122, - "to": 3706696, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236040, - "label": "PRODUCES", - "from": 3706695, - "to": 3677621, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236046, - "label": "CONSUMED_BY", - "from": 3677474, - "to": 3706697, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203282, - "label": "COMPONENT_OF", - "from": 3705907, - "to": 3710562, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236054, - "label": "PRODUCES", - "from": 3706698, - "to": 3679307, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236053, - "label": "CONSUMED_BY", - "from": 3715467, - "to": 3706698, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203291, - "label": "COMPONENT_OF", - "from": 3677650, - "to": 3710568, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236058, - "label": "PRODUCES", - "from": 3706699, - "to": 3681960, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203288, - "label": "COMPONENT_OF", - "from": 3670725, - "to": 3710566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236056, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3706699, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236061, - "label": "CONSUMED_BY", - "from": 3677691, - "to": 3706700, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203298, - "label": "COMPONENT_OF", - "from": 3702395, - "to": 3710572, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 399908, - "label": "ELEMENT_OF", - "from": 3699233, - "to": 3727633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236065, - "label": "CONSUMED_BY", - "from": 3681206, - "to": 3706701, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236071, - "label": "CONSUMED_BY", - "from": 3677272, - "to": 3706702, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236068, - "label": "PRODUCES", - "from": 3706701, - "to": 3682200, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203306, - "label": "COMPONENT_OF", - "from": 3677441, - "to": 3710578, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 399916, - "label": "ELEMENT_OF", - "from": 3690667, - "to": 3727638, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203304, - "label": "COMPONENT_OF", - "from": 3677435, - "to": 3710576, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236079, - "label": "CONSUMED_BY", - "from": 3677742, - "to": 3706704, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 399914, - "label": "ELEMENT_OF", - "from": 3690520, - "to": 3727636, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203310, - "label": "COMPONENT_OF", - "from": 3681384, - "to": 3710580, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203314, - "label": "COMPONENT_OF", - "from": 3681809, - "to": 3710582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 399925, - "label": "ELEMENT_OF", - "from": 3699969, - "to": 3727639, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236089, - "label": "PRODUCES", - "from": 3706706, - "to": 3666642, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 399933, - "label": "ELEMENT_OF", - "from": 3687664, - "to": 3727641, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203320, - "label": "COMPONENT_OF", - "from": 3714377, - "to": 3710586, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203326, - "label": "COMPONENT_OF", - "from": 3681392, - "to": 3710590, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236099, - "label": "CONSUMED_BY", - "from": 3711352, - "to": 3706709, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203330, - "label": "COMPONENT_OF", - "from": 3677196, - "to": 3710592, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 399943, - "label": "ELEMENT_OF", - "from": 3700033, - "to": 3727643, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203328, - "label": "ENCODES", - "from": 3698909, - "to": 3710591, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203335, - "label": "COMPONENT_OF", - "from": 3706229, - "to": 3710596, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203333, - "label": "COMPONENT_OF", - "from": 3685555, - "to": 3710594, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 399936, - "label": "ELEMENT_OF", - "from": 3702668, - "to": 3727642, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236104, - "label": "CONSUMED_BY", - "from": 3672867, - "to": 3706710, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203343, - "label": "COMPONENT_OF", - "from": 3681547, - "to": 3710600, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236109, - "label": "PRODUCES", - "from": 3706711, - "to": 3684194, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 399945, - "label": "ELEMENT_OF", - "from": 3711789, - "to": 3727644, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 399958, - "label": "ELEMENT_OF", - "from": 3701866, - "to": 3727648, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178688247, - "label": "PRODUCES", - "from": 3706555, - "to": 3669631, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203349, - "label": "COMPONENT_OF", - "from": 3677603, - "to": 3710604, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 399967, - "label": "ELEMENT_OF", - "from": 3693721, - "to": 3727650, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 399962, - "label": "ELEMENT_OF", - "from": 3696989, - "to": 3727649, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203358, - "label": "COMPONENT_OF", - "from": 3684390, - "to": 3710611, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203356, - "label": "COMPONENT_OF", - "from": 3681755, - "to": 3710609, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203362, - "label": "ENCODES", - "from": 3706849, - "to": 3710614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236130, - "label": "PRODUCES", - "from": 3706716, - "to": 3677466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203364, - "label": "COMPONENT_OF", - "from": 3679464, - "to": 3710615, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203371, - "label": "COMPONENT_OF", - "from": 3677474, - "to": 3711165, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 399982, - "label": "ELEMENT_OF", - "from": 3694870, - "to": 3727651, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203368, - "label": "COMPONENT_OF", - "from": 3679065, - "to": 3711163, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236143, - "label": "PRODUCES", - "from": 3706719, - "to": 3712727, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236142, - "label": "CONSUMED_BY", - "from": 3708188, - "to": 3706719, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236146, - "label": "CONSUMED_BY", - "from": 3652193, - "to": 3706720, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236144, - "label": "PRODUCES", - "from": 3706719, - "to": 3712586, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236150, - "label": "PRODUCES", - "from": 3706721, - "to": 3681505, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236149, - "label": "PRODUCES", - "from": 3706721, - "to": 3677625, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236148, - "label": "CONSUMED_BY", - "from": 3685580, - "to": 3706721, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203387, - "label": "COMPONENT_OF", - "from": 3683881, - "to": 3711175, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 399998, - "label": "ELEMENT_OF", - "from": 3696209, - "to": 3727658, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203386, - "label": "ENCODES", - "from": 3707299, - "to": 3711174, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236153, - "label": "CONSUMED_BY", - "from": 3677476, - "to": 3706722, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203384, - "label": "COMPONENT_OF", - "from": 3681787, - "to": 3711173, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203391, - "label": "COMPONENT_OF", - "from": 3684176, - "to": 3711177, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236157, - "label": "PRODUCES", - "from": 3706723, - "to": 3681908, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 236156, - "label": "CONSUMED_BY", - "from": 3681568, - "to": 3706723, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203394, - "label": "COMPONENT_OF", - "from": 3677435, - "to": 3711179, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203398, - "label": "ENCODES", - "from": 3690732, - "to": 3711182, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203396, - "label": "COMPONENT_OF", - "from": 3677131, - "to": 3711181, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203402, - "label": "ENCODES", - "from": 3707118, - "to": 3711184, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400012, - "label": "ELEMENT_OF", - "from": 3701415, - "to": 3727662, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203400, - "label": "COMPONENT_OF", - "from": 3681239, - "to": 3711183, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203404, - "label": "COMPONENT_OF", - "from": 3677794, - "to": 3711185, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400009, - "label": "ELEMENT_OF", - "from": 3701809, - "to": 3727661, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203410, - "label": "COMPONENT_OF", - "from": 3684186, - "to": 3711189, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203415, - "label": "ENCODES", - "from": 3698659, - "to": 3711192, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203412, - "label": "COMPONENT_OF", - "from": 3712799, - "to": 3711191, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400031, - "label": "ELEMENT_OF", - "from": 3701411, - "to": 3727669, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400026, - "label": "ELEMENT_OF", - "from": 3719983, - "to": 3727667, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203420, - "label": "COMPONENT_OF", - "from": 3677495, - "to": 3711195, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203427, - "label": "COMPONENT_OF", - "from": 3684069, - "to": 3711199, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400033, - "label": "ELEMENT_OF", - "from": 3701391, - "to": 3727670, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203433, - "label": "COMPONENT_OF", - "from": 3682044, - "to": 3711203, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203439, - "label": "COMPONENT_OF", - "from": 3681923, - "to": 3711205, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203437, - "label": "MODIFIED_TO", - "from": 3711204, - "to": 3715467, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400054, - "label": "ELEMENT_OF", - "from": 3696231, - "to": 3727677, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203442, - "label": "COMPONENT_OF", - "from": 3682122, - "to": 3711207, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203444, - "label": "COMPONENT_OF", - "from": 3702419, - "to": 3711209, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203451, - "label": "COMPONENT_OF", - "from": 3684372, - "to": 3711213, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400062, - "label": "ELEMENT_OF", - "from": 3690668, - "to": 3727680, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203448, - "label": "COMPONENT_OF", - "from": 3677501, - "to": 3711211, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203454, - "label": "COMPONENT_OF", - "from": 3677196, - "to": 3711215, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203456, - "label": "COMPONENT_OF", - "from": 3718577, - "to": 3711217, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203460, - "label": "COMPONENT_OF", - "from": 3677452, - "to": 3711219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400065, - "label": "ELEMENT_OF", - "from": 3693776, - "to": 3727681, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203471, - "label": "ENCODES", - "from": 3720028, - "to": 3711226, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400074, - "label": "ELEMENT_OF", - "from": 3699437, - "to": 3727682, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203470, - "label": "COMPONENT_OF", - "from": 3677714, - "to": 3711225, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203473, - "label": "COMPONENT_OF", - "from": 3677605, - "to": 3711227, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203480, - "label": "COMPONENT_OF", - "from": 3677572, - "to": 3711231, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203487, - "label": "COMPONENT_OF", - "from": 3684327, - "to": 3711235, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203484, - "label": "COMPONENT_OF", - "from": 3677501, - "to": 3711233, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203490, - "label": "COMPONENT_OF", - "from": 3677454, - "to": 3711237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203499, - "label": "COMPONENT_OF", - "from": 3679474, - "to": 3711243, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203496, - "label": "COMPONENT_OF", - "from": 3681950, - "to": 3711241, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203501, - "label": "COMPONENT_OF", - "from": 3714553, - "to": 3711245, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203505, - "label": "COMPONENT_OF", - "from": 3677742, - "to": 3711247, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269046, - "label": "REGULATES", - "from": 3671356, - "to": 3709717, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203508, - "label": "COMPONENT_OF", - "from": 3679447, - "to": 3711249, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203512, - "label": "COMPONENT_OF", - "from": 3677369, - "to": 3711251, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269076, - "label": "REGULATES", - "from": 3720094, - "to": 3709727, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269078, - "label": "REGULATES", - "from": 3709728, - "to": 3702684, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269079, - "label": "REGULATES", - "from": 3720094, - "to": 3709728, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269072, - "label": "REGULATES", - "from": 3709726, - "to": 3687882, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269073, - "label": "REGULATES", - "from": 3681418, - "to": 3709726, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269075, - "label": "REGULATES", - "from": 3709727, - "to": 3717034, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269090, - "label": "REGULATES", - "from": 3709732, - "to": 3688796, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269091, - "label": "REGULATES", - "from": 3711204, - "to": 3709732, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269109, - "label": "REGULATES", - "from": 3681891, - "to": 3709738, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269112, - "label": "REGULATES", - "from": 3720073, - "to": 3709739, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269132, - "label": "REGULATES", - "from": 3709746, - "to": 3690820, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269133, - "label": "REGULATES", - "from": 3720094, - "to": 3709746, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269136, - "label": "REGULATES", - "from": 3677336, - "to": 3709747, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269139, - "label": "REGULATES", - "from": 3720094, - "to": 3709748, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269150, - "label": "REGULATES", - "from": 3709752, - "to": 3727727, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269151, - "label": "REGULATES", - "from": 3720077, - "to": 3709752, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269181, - "label": "REGULATES", - "from": 3677368, - "to": 3709762, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 170880, - "label": "CATALYZES", - "from": 3714808, - "to": 3689014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 170881, - "label": "CATALYZES", - "from": 3689014, - "to": 3705296, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269192, - "label": "REGULATES", - "from": 3709766, - "to": 3707310, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269193, - "label": "REGULATES", - "from": 3720094, - "to": 3709766, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 170892, - "label": "CATALYZES", - "from": 3714065, - "to": 3689020, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 170893, - "label": "CATALYZES", - "from": 3689020, - "to": 3705539, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 170897, - "label": "CATALYZES", - "from": 3689022, - "to": 3705183, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269211, - "label": "REGULATES", - "from": 3720077, - "to": 3709772, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 170922, - "label": "CATALYZES", - "from": 3712765, - "to": 3689035, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269228, - "label": "REGULATES", - "from": 3709778, - "to": 3690694, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269229, - "label": "REGULATES", - "from": 3720073, - "to": 3709778, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269226, - "label": "REGULATES", - "from": 3681190, - "to": 3709777, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 170924, - "label": "CATALYZES", - "from": 3718642, - "to": 3689036, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 170928, - "label": "CATALYZES", - "from": 3710432, - "to": 3689038, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269247, - "label": "REGULATES", - "from": 3720094, - "to": 3709784, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 170945, - "label": "CATALYZES", - "from": 3689046, - "to": 3707586, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400322, - "label": "ELEMENT_OF", - "from": 3696242, - "to": 3727686, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269261, - "label": "REGULATES", - "from": 3709789, - "to": 3688928, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269262, - "label": "REGULATES", - "from": 3677501, - "to": 3709789, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 170958, - "label": "CATALYZES", - "from": 3706130, - "to": 3689053, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269270, - "label": "REGULATES", - "from": 3709792, - "to": 3685752, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269271, - "label": "REGULATES", - "from": 3677696, - "to": 3709792, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 170964, - "label": "CATALYZES", - "from": 3712593, - "to": 3689056, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400337, - "label": "ELEMENT_OF", - "from": 3693858, - "to": 3727688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 170965, - "label": "CATALYZES", - "from": 3689056, - "to": 3706667, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334813, - "label": "REGULATES", - "from": 3711179, - "to": 3719062, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334809, - "label": "REGULATES", - "from": 3677445, - "to": 3719061, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178688378, - "label": "PRODUCES", - "from": 3706357, - "to": 3679297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400346, - "label": "ELEMENT_OF", - "from": 3706796, - "to": 3727690, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334808, - "label": "REGULATES", - "from": 3719061, - "to": 3691095, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334811, - "label": "BINDS", - "from": 3719062, - "to": 3686222, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400344, - "label": "ELEMENT_OF", - "from": 3707294, - "to": 3727689, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 170972, - "label": "CATALYZES", - "from": 3708295, - "to": 3689060, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 269274, - "label": "REGULATES", - "from": 3720103, - "to": 3709793, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 170973, - "label": "CATALYZES", - "from": 3689060, - "to": 3709359, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 170976, - "label": "CATALYZES", - "from": 3715116, - "to": 3689062, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400366, - "label": "ELEMENT_OF", - "from": 3706984, - "to": 3727697, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334828, - "label": "REGULATES", - "from": 3712313, - "to": 3719066, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 170984, - "label": "CATALYZES", - "from": 3704548, - "to": 3689066, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 170985, - "label": "CATALYZES", - "from": 3689066, - "to": 3707454, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334827, - "label": "REGULATES", - "from": 3719066, - "to": 3726829, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400375, - "label": "ELEMENT_OF", - "from": 3702966, - "to": 3727703, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203766, - "label": "ENCODES", - "from": 3720001, - "to": 3711260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203765, - "label": "COMPONENT_OF", - "from": 3677368, - "to": 3711259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 170997, - "label": "CATALYZES", - "from": 3689072, - "to": 3706687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400369, - "label": "ELEMENT_OF", - "from": 3702480, - "to": 3727699, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334846, - "label": "REGULATES", - "from": 3677454, - "to": 3719071, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334841, - "label": "BINDS", - "from": 3719070, - "to": 3685152, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203773, - "label": "COMPONENT_OF", - "from": 3708153, - "to": 3711265, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334843, - "label": "REGULATES", - "from": 3710270, - "to": 3719070, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334842, - "label": "REGULATES", - "from": 3719070, - "to": 3695942, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203772, - "label": "ENCODES", - "from": 3690599, - "to": 3711264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334853, - "label": "REGULATES", - "from": 3670533, - "to": 3719073, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171010, - "label": "CATALYZES", - "from": 3718309, - "to": 3689079, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334852, - "label": "REGULATES", - "from": 3719073, - "to": 3691290, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400391, - "label": "ELEMENT_OF", - "from": 3694170, - "to": 3727708, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203777, - "label": "COMPONENT_OF", - "from": 3677501, - "to": 3711267, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203783, - "label": "COMPONENT_OF", - "from": 3681918, - "to": 3711271, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171014, - "label": "CATALYZES", - "from": 3704239, - "to": 3689081, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171015, - "label": "CATALYZES", - "from": 3689081, - "to": 3707526, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203780, - "label": "COMPONENT_OF", - "from": 3679440, - "to": 3711269, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171018, - "label": "CATALYZES", - "from": 3708270, - "to": 3689083, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203786, - "label": "COMPONENT_OF", - "from": 3677447, - "to": 3711273, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171023, - "label": "CATALYZES", - "from": 3689085, - "to": 3705289, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203790, - "label": "COMPONENT_OF", - "from": 3666725, - "to": 3711277, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203789, - "label": "ENCODES", - "from": 3701411, - "to": 3711276, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171026, - "label": "CATALYZES", - "from": 3715215, - "to": 3689087, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171024, - "label": "CATALYZES", - "from": 3711376, - "to": 3689086, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203799, - "label": "COMPONENT_OF", - "from": 3718577, - "to": 3711283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400400, - "label": "ELEMENT_OF", - "from": 3711838, - "to": 3727712, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203797, - "label": "COMPONENT_OF", - "from": 3677368, - "to": 3711281, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203802, - "label": "COMPONENT_OF", - "from": 3677401, - "to": 3711285, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400415, - "label": "ELEMENT_OF", - "from": 3702874, - "to": 3727716, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203801, - "label": "ENCODES", - "from": 3698657, - "to": 3711284, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400408, - "label": "ELEMENT_OF", - "from": 3701688, - "to": 3727713, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400422, - "label": "ELEMENT_OF", - "from": 3695235, - "to": 3727717, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171042, - "label": "CATALYZES", - "from": 3714417, - "to": 3689095, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203809, - "label": "COMPONENT_OF", - "from": 3682083, - "to": 3711289, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171040, - "label": "CATALYZES", - "from": 3712579, - "to": 3689094, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203815, - "label": "COMPONENT_OF", - "from": 3677168, - "to": 3711293, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171046, - "label": "CATALYZES", - "from": 3711699, - "to": 3689097, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334881, - "label": "BINDS", - "from": 3719081, - "to": 3685190, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334883, - "label": "REGULATES", - "from": 3712313, - "to": 3719081, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334882, - "label": "REGULATES", - "from": 3719081, - "to": 3727935, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203819, - "label": "COMPONENT_OF", - "from": 3679336, - "to": 3711295, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203822, - "label": "COMPONENT_OF", - "from": 3684116, - "to": 3711297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171052, - "label": "CATALYZES", - "from": 3714685, - "to": 3689100, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171053, - "label": "CATALYZES", - "from": 3689100, - "to": 3708554, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334900, - "label": "REGULATES", - "from": 3710270, - "to": 3719086, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203825, - "label": "COMPONENT_OF", - "from": 3677495, - "to": 3711299, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400436, - "label": "ELEMENT_OF", - "from": 3701486, - "to": 3727720, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171062, - "label": "CATALYZES", - "from": 3712585, - "to": 3689105, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334896, - "label": "REGULATES", - "from": 3679139, - "to": 3719085, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171063, - "label": "CATALYZES", - "from": 3689105, - "to": 3706471, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400435, - "label": "ELEMENT_OF", - "from": 3693740, - "to": 3727719, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203829, - "label": "COMPONENT_OF", - "from": 3677707, - "to": 3711301, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334899, - "label": "REGULATES", - "from": 3719086, - "to": 3696155, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334898, - "label": "BINDS", - "from": 3719086, - "to": 3678683, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400447, - "label": "ELEMENT_OF", - "from": 3690807, - "to": 3727725, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203833, - "label": "ENCODES", - "from": 3690525, - "to": 3711304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171064, - "label": "CATALYZES", - "from": 3705938, - "to": 3689106, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203832, - "label": "COMPONENT_OF", - "from": 3677192, - "to": 3711303, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400443, - "label": "ELEMENT_OF", - "from": 3701336, - "to": 3727723, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171068, - "label": "CATALYZES", - "from": 3704217, - "to": 3689108, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400441, - "label": "ELEMENT_OF", - "from": 3697635, - "to": 3727722, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203842, - "label": "COMPONENT_OF", - "from": 3681312, - "to": 3711309, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334918, - "label": "REGULATES", - "from": 3681996, - "to": 3719091, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334913, - "label": "BINDS", - "from": 3719090, - "to": 3679758, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171078, - "label": "CATALYZES", - "from": 3710433, - "to": 3689113, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334915, - "label": "REGULATES", - "from": 3711179, - "to": 3719090, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334914, - "label": "REGULATES", - "from": 3719090, - "to": 3699890, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400462, - "label": "ELEMENT_OF", - "from": 3687612, - "to": 3727731, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203850, - "label": "COMPONENT_OF", - "from": 3677412, - "to": 3711313, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334921, - "label": "REGULATES", - "from": 3719092, - "to": 3697271, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203855, - "label": "COMPONENT_OF", - "from": 3706204, - "to": 3711317, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334920, - "label": "BINDS", - "from": 3719092, - "to": 3678599, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400459, - "label": "ELEMENT_OF", - "from": 3693960, - "to": 3727729, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334922, - "label": "REGULATES", - "from": 3711285, - "to": 3719092, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334933, - "label": "REGULATES", - "from": 3677464, - "to": 3719095, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203859, - "label": "COMPONENT_OF", - "from": 3679389, - "to": 3711319, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334932, - "label": "REGULATES", - "from": 3719095, - "to": 3685800, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203857, - "label": "ENCODES", - "from": 3693841, - "to": 3711318, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334935, - "label": "BINDS", - "from": 3719096, - "to": 3685199, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400466, - "label": "ELEMENT_OF", - "from": 3685368, - "to": 3727732, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203862, - "label": "COMPONENT_OF", - "from": 3684130, - "to": 3711321, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203867, - "label": "ENCODES", - "from": 3712180, - "to": 3711324, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171096, - "label": "CATALYZES", - "from": 3710433, - "to": 3689122, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203864, - "label": "COMPONENT_OF", - "from": 3677805, - "to": 3711323, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171097, - "label": "CATALYZES", - "from": 3689122, - "to": 3709451, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334937, - "label": "REGULATES", - "from": 3712313, - "to": 3719096, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203870, - "label": "ENCODES", - "from": 3716776, - "to": 3711327, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334936, - "label": "REGULATES", - "from": 3719096, - "to": 3727754, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171100, - "label": "CATALYZES", - "from": 3714255, - "to": 3689124, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171101, - "label": "CATALYZES", - "from": 3689124, - "to": 3708746, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400486, - "label": "ELEMENT_OF", - "from": 3697769, - "to": 3727737, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203874, - "label": "ENCODES", - "from": 3707121, - "to": 3711331, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171104, - "label": "CATALYZES", - "from": 3706197, - "to": 3689126, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171110, - "label": "CATALYZES", - "from": 3718369, - "to": 3689129, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203878, - "label": "COMPONENT_OF", - "from": 3708019, - "to": 3711334, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171108, - "label": "CATALYZES", - "from": 3710504, - "to": 3689128, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171114, - "label": "CATALYZES", - "from": 3714255, - "to": 3689131, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171115, - "label": "CATALYZES", - "from": 3689131, - "to": 3706578, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171118, - "label": "CATALYZES", - "from": 3704273, - "to": 3689133, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171119, - "label": "CATALYZES", - "from": 3689133, - "to": 3709300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400502, - "label": "ELEMENT_OF", - "from": 3698905, - "to": 3727741, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203891, - "label": "ENCODES", - "from": 3712127, - "to": 3711345, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203898, - "label": "COMPONENT_OF", - "from": 3711226, - "to": 3711352, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400508, - "label": "ELEMENT_OF", - "from": 3698903, - "to": 3727742, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203896, - "label": "COMPONENT_OF", - "from": 3704120, - "to": 3711350, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334981, - "label": "REGULATES", - "from": 3710274, - "to": 3719108, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400519, - "label": "ELEMENT_OF", - "from": 3699174, - "to": 3727747, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334977, - "label": "REGULATES", - "from": 3683882, - "to": 3719107, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334976, - "label": "REGULATES", - "from": 3719107, - "to": 3691158, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334979, - "label": "BINDS", - "from": 3719108, - "to": 3683203, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334991, - "label": "REGULATES", - "from": 3719111, - "to": 3697846, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203912, - "label": "ENCODES", - "from": 3694229, - "to": 3711361, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400523, - "label": "ELEMENT_OF", - "from": 3694004, - "to": 3727748, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203923, - "label": "COMPONENT_OF", - "from": 3718277, - "to": 3711370, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334996, - "label": "REGULATES", - "from": 3712313, - "to": 3719112, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400535, - "label": "ELEMENT_OF", - "from": 3694814, - "to": 3727751, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203921, - "label": "COMPONENT_OF", - "from": 3705746, - "to": 3711368, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334992, - "label": "REGULATES", - "from": 3711179, - "to": 3719111, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400531, - "label": "ELEMENT_OF", - "from": 3711915, - "to": 3727750, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 334995, - "label": "REGULATES", - "from": 3719112, - "to": 3720364, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 335006, - "label": "REGULATES", - "from": 3677466, - "to": 3719115, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400539, - "label": "ELEMENT_OF", - "from": 3707142, - "to": 3727753, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203932, - "label": "ENCODES", - "from": 3698749, - "to": 3711376, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400551, - "label": "ELEMENT_OF", - "from": 3699173, - "to": 3727757, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203937, - "label": "COMPONENT_OF", - "from": 3714909, - "to": 3711379, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203943, - "label": "COMPONENT_OF", - "from": 3705969, - "to": 3711383, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203944, - "label": "ENCODES", - "from": 3701511, - "to": 3711384, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203950, - "label": "MODIFIED_TO", - "from": 3711387, - "to": 3710288, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203949, - "label": "MODIFIED_TO", - "from": 3711387, - "to": 3710173, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 335018, - "label": "REGULATES", - "from": 3708153, - "to": 3719118, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203948, - "label": "MODIFIED_TO", - "from": 3711387, - "to": 3710222, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203955, - "label": "COMPONENT_OF", - "from": 3712645, - "to": 3711389, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203952, - "label": "ENCODES", - "from": 3698833, - "to": 3711388, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 335036, - "label": "REGULATES", - "from": 3711247, - "to": 3719123, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203960, - "label": "COMPONENT_OF", - "from": 3708188, - "to": 3711393, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 335038, - "label": "BINDS", - "from": 3719124, - "to": 3683001, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203967, - "label": "ENCODES", - "from": 3690883, - "to": 3711400, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203966, - "label": "COMPONENT_OF", - "from": 3704424, - "to": 3711399, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 335035, - "label": "REGULATES", - "from": 3719123, - "to": 3727503, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 335034, - "label": "BINDS", - "from": 3719123, - "to": 3683302, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203969, - "label": "COMPONENT_OF", - "from": 3708422, - "to": 3711401, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203975, - "label": "ENCODES", - "from": 3707240, - "to": 3711406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203974, - "label": "COMPONENT_OF", - "from": 3704371, - "to": 3711405, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203999, - "label": "COMPONENT_OF", - "from": 3705829, - "to": 3711427, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400814, - "label": "ELEMENT_OF", - "from": 3694661, - "to": 3727761, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400816, - "label": "ELEMENT_OF", - "from": 3701668, - "to": 3727762, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400830, - "label": "ELEMENT_OF", - "from": 3699183, - "to": 3727767, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400839, - "label": "ELEMENT_OF", - "from": 3706973, - "to": 3727769, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400847, - "label": "ELEMENT_OF", - "from": 3701911, - "to": 3727771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400860, - "label": "ELEMENT_OF", - "from": 3694566, - "to": 3727776, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400858, - "label": "ELEMENT_OF", - "from": 3717105, - "to": 3727775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400867, - "label": "ELEMENT_OF", - "from": 3697343, - "to": 3727778, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400878, - "label": "ELEMENT_OF", - "from": 3699890, - "to": 3727782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400877, - "label": "ELEMENT_OF", - "from": 3697021, - "to": 3727781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400874, - "label": "ELEMENT_OF", - "from": 3697480, - "to": 3727780, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400887, - "label": "ELEMENT_OF", - "from": 3701384, - "to": 3727785, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400891, - "label": "ELEMENT_OF", - "from": 3700094, - "to": 3727787, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400903, - "label": "ELEMENT_OF", - "from": 3699558, - "to": 3727789, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400896, - "label": "ELEMENT_OF", - "from": 3720005, - "to": 3727788, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400907, - "label": "ELEMENT_OF", - "from": 3716942, - "to": 3727791, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400935, - "label": "ELEMENT_OF", - "from": 3717140, - "to": 3727804, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400949, - "label": "ELEMENT_OF", - "from": 3699132, - "to": 3727810, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400946, - "label": "ELEMENT_OF", - "from": 3690621, - "to": 3727809, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400957, - "label": "ELEMENT_OF", - "from": 3698781, - "to": 3727813, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400953, - "label": "ELEMENT_OF", - "from": 3707183, - "to": 3727812, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237122, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3706725, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237124, - "label": "PRODUCES", - "from": 3706725, - "to": 3676180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400968, - "label": "ELEMENT_OF", - "from": 3701796, - "to": 3727816, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400983, - "label": "ELEMENT_OF", - "from": 3707269, - "to": 3727822, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237136, - "label": "CONSUMED_BY", - "from": 3677560, - "to": 3706728, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237147, - "label": "PRODUCES", - "from": 3706730, - "to": 3677472, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400991, - "label": "ELEMENT_OF", - "from": 3687602, - "to": 3727824, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 400998, - "label": "ELEMENT_OF", - "from": 3697797, - "to": 3727826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237159, - "label": "CONSUMED_BY", - "from": 3677401, - "to": 3706733, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237156, - "label": "PRODUCES", - "from": 3706732, - "to": 3677336, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237167, - "label": "CONSUMED_BY", - "from": 3683871, - "to": 3706735, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237166, - "label": "PRODUCES", - "from": 3706734, - "to": 3711204, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237164, - "label": "CONSUMED_BY", - "from": 3669565, - "to": 3706734, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401001, - "label": "ELEMENT_OF", - "from": 3697092, - "to": 3727828, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237175, - "label": "CONSUMED_BY", - "from": 3669639, - "to": 3706737, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237177, - "label": "PRODUCES", - "from": 3706737, - "to": 3671588, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401020, - "label": "ELEMENT_OF", - "from": 3701809, - "to": 3727835, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237182, - "label": "CONSUMED_BY", - "from": 3677438, - "to": 3706738, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401030, - "label": "ELEMENT_OF", - "from": 3702772, - "to": 3727837, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401028, - "label": "ELEMENT_OF", - "from": 3717054, - "to": 3727836, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237190, - "label": "PRODUCES", - "from": 3706739, - "to": 3672877, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237188, - "label": "CONSUMED_BY", - "from": 3667424, - "to": 3706739, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401038, - "label": "ELEMENT_OF", - "from": 3696384, - "to": 3727839, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237199, - "label": "CONSUMED_BY", - "from": 3681141, - "to": 3706740, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237204, - "label": "CONSUMED_BY", - "from": 3677625, - "to": 3706741, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237209, - "label": "CONSUMED_BY", - "from": 3674721, - "to": 3706742, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237219, - "label": "CONSUMED_BY", - "from": 3676152, - "to": 3706744, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237223, - "label": "CONSUMED_BY", - "from": 3679073, - "to": 3706745, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237235, - "label": "CONSUMED_BY", - "from": 3677699, - "to": 3706748, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237233, - "label": "PRODUCES", - "from": 3706747, - "to": 3682069, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237238, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3706749, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237240, - "label": "PRODUCES", - "from": 3706749, - "to": 3669319, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237246, - "label": "CONSUMED_BY", - "from": 3677464, - "to": 3706751, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237244, - "label": "CONSUMED_BY", - "from": 3677196, - "to": 3706750, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237250, - "label": "PRODUCES", - "from": 3706751, - "to": 3684308, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204482, - "label": "ENCODES", - "from": 3702799, - "to": 3711430, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237261, - "label": "CONSUMED_BY", - "from": 3670485, - "to": 3706754, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204503, - "label": "COMPONENT_OF", - "from": 3710405, - "to": 3711445, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237271, - "label": "PRODUCES", - "from": 3706756, - "to": 3683925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237275, - "label": "PRODUCES", - "from": 3706757, - "to": 3679163, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204507, - "label": "ENCODES", - "from": 3699069, - "to": 3711448, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237272, - "label": "CONSUMED_BY", - "from": 3679166, - "to": 3706757, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237278, - "label": "CONSUMED_BY", - "from": 3684324, - "to": 3706758, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204515, - "label": "ENCODES", - "from": 3717062, - "to": 3711454, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237282, - "label": "CONSUMED_BY", - "from": 3677533, - "to": 3706759, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237281, - "label": "PRODUCES", - "from": 3706758, - "to": 3677435, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204513, - "label": "COMPONENT_OF", - "from": 3704468, - "to": 3711453, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204518, - "label": "COMPONENT_OF", - "from": 3706032, - "to": 3711457, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237285, - "label": "PRODUCES", - "from": 3706759, - "to": 3679104, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237291, - "label": "CONSUMED_BY", - "from": 3677714, - "to": 3706761, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204521, - "label": "COMPONENT_OF", - "from": 3711260, - "to": 3711459, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237289, - "label": "PRODUCES", - "from": 3706760, - "to": 3669136, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204533, - "label": "COMPONENT_OF", - "from": 3715294, - "to": 3711471, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237305, - "label": "CONSUMED_BY", - "from": 3684061, - "to": 3706764, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204537, - "label": "COMPONENT_OF", - "from": 3702390, - "to": 3711475, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237311, - "label": "PRODUCES", - "from": 3706765, - "to": 3672572, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237308, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3706765, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237314, - "label": "CONSUMED_BY", - "from": 3677336, - "to": 3706766, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204545, - "label": "COMPONENT_OF", - "from": 3714867, - "to": 3711481, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204554, - "label": "ENCODES", - "from": 3701343, - "to": 3711488, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237322, - "label": "CONSUMED_BY", - "from": 3669080, - "to": 3706768, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204552, - "label": "ENCODES", - "from": 3693858, - "to": 3711486, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237324, - "label": "CONSUMED_BY", - "from": 3681875, - "to": 3706769, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204556, - "label": "ENCODES", - "from": 3694210, - "to": 3711490, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237328, - "label": "PRODUCES", - "from": 3706769, - "to": 3681879, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237334, - "label": "CONSUMED_BY", - "from": 3681943, - "to": 3706771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237332, - "label": "CONSUMED_BY", - "from": 3679367, - "to": 3706770, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237339, - "label": "CONSUMED_BY", - "from": 3670744, - "to": 3706772, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237336, - "label": "PRODUCES", - "from": 3706771, - "to": 3681141, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204573, - "label": "COMPONENT_OF", - "from": 3704302, - "to": 3711501, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237344, - "label": "CONSUMED_BY", - "from": 3669462, - "to": 3706773, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237354, - "label": "CONSUMED_BY", - "from": 3677258, - "to": 3706775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237353, - "label": "PRODUCES", - "from": 3706774, - "to": 3677093, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204585, - "label": "ENCODES", - "from": 3707205, - "to": 3711510, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204598, - "label": "COMPONENT_OF", - "from": 3711654, - "to": 3711517, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204604, - "label": "COMPONENT_OF", - "from": 3708017, - "to": 3711521, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204615, - "label": "ENCODES", - "from": 3712087, - "to": 3711528, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204614, - "label": "COMPONENT_OF", - "from": 3711598, - "to": 3711527, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204612, - "label": "ENCODES", - "from": 3707258, - "to": 3711526, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171852, - "label": "CATALYZES", - "from": 3708002, - "to": 3689140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171853, - "label": "CATALYZES", - "from": 3689140, - "to": 3707421, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171856, - "label": "CATALYZES", - "from": 3704212, - "to": 3689142, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171862, - "label": "CATALYZES", - "from": 3710433, - "to": 3689145, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171863, - "label": "CATALYZES", - "from": 3689145, - "to": 3705554, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171864, - "label": "CATALYZES", - "from": 3704552, - "to": 3689146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204633, - "label": "COMPONENT_OF", - "from": 3712396, - "to": 3711545, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204632, - "label": "ENCODES", - "from": 3719987, - "to": 3711544, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204647, - "label": "COMPONENT_OF", - "from": 3702065, - "to": 3711555, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171878, - "label": "CATALYZES", - "from": 3714660, - "to": 3689153, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171879, - "label": "CATALYZES", - "from": 3689153, - "to": 3705185, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204645, - "label": "COMPONENT_OF", - "from": 3702255, - "to": 3711553, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204651, - "label": "ENCODES", - "from": 3694005, - "to": 3711560, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171889, - "label": "CATALYZES", - "from": 3689158, - "to": 3706567, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204662, - "label": "ENCODES", - "from": 3693935, - "to": 3711568, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204661, - "label": "COMPONENT_OF", - "from": 3708348, - "to": 3711567, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171896, - "label": "CATALYZES", - "from": 3714783, - "to": 3689162, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204669, - "label": "ENCODES", - "from": 3706940, - "to": 3711574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171906, - "label": "CATALYZES", - "from": 3713907, - "to": 3689167, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171907, - "label": "CATALYZES", - "from": 3689167, - "to": 3700672, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204672, - "label": "ENCODES", - "from": 3707310, - "to": 3711576, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204678, - "label": "COMPONENT_OF", - "from": 3715300, - "to": 3711581, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204677, - "label": "ENCODES", - "from": 3687621, - "to": 3711580, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401293, - "label": "ELEMENT_OF", - "from": 3702754, - "to": 3727845, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171918, - "label": "CATALYZES", - "from": 3714491, - "to": 3689173, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401289, - "label": "ELEMENT_OF", - "from": 3707150, - "to": 3727843, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401301, - "label": "ELEMENT_OF", - "from": 3724820, - "to": 3727847, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401299, - "label": "ELEMENT_OF", - "from": 3687618, - "to": 3727846, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171931, - "label": "CATALYZES", - "from": 3689179, - "to": 3706597, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204697, - "label": "COMPONENT_OF", - "from": 3714750, - "to": 3711591, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401309, - "label": "ELEMENT_OF", - "from": 3700230, - "to": 3727849, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204707, - "label": "ENCODES", - "from": 3707116, - "to": 3711594, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401315, - "label": "ELEMENT_OF", - "from": 3719915, - "to": 3727853, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204710, - "label": "COMPONENT_OF", - "from": 3704124, - "to": 3711597, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204708, - "label": "COMPONENT_OF", - "from": 3718636, - "to": 3711595, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171946, - "label": "CATALYZES", - "from": 3714255, - "to": 3689187, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204714, - "label": "ENCODES", - "from": 3701627, - "to": 3711600, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171947, - "label": "CATALYZES", - "from": 3689187, - "to": 3707524, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171945, - "label": "CATALYZES", - "from": 3689186, - "to": 3705299, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204712, - "label": "ENCODES", - "from": 3693944, - "to": 3711598, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 204719, - "label": "COMPONENT_OF", - "from": 3712789, - "to": 3711603, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401323, - "label": "ELEMENT_OF", - "from": 3698970, - "to": 3727856, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401321, - "label": "ELEMENT_OF", - "from": 3697162, - "to": 3727855, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401333, - "label": "ELEMENT_OF", - "from": 3702881, - "to": 3727859, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401328, - "label": "ELEMENT_OF", - "from": 3698833, - "to": 3727857, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401337, - "label": "ELEMENT_OF", - "from": 3716792, - "to": 3727860, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171970, - "label": "CATALYZES", - "from": 3714197, - "to": 3689199, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401357, - "label": "ELEMENT_OF", - "from": 3702865, - "to": 3727869, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171983, - "label": "CATALYZES", - "from": 3689205, - "to": 3708692, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401353, - "label": "ELEMENT_OF", - "from": 3720029, - "to": 3727868, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 171986, - "label": "CATALYZES", - "from": 3710242, - "to": 3689207, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401361, - "label": "ELEMENT_OF", - "from": 3695235, - "to": 3727870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401370, - "label": "ELEMENT_OF", - "from": 3712175, - "to": 3727875, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401368, - "label": "ELEMENT_OF", - "from": 3711717, - "to": 3727873, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401369, - "label": "ELEMENT_OF", - "from": 3690863, - "to": 3727874, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172003, - "label": "CATALYZES", - "from": 3689215, - "to": 3707823, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401378, - "label": "ELEMENT_OF", - "from": 3712239, - "to": 3727876, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172004, - "label": "CATALYZES", - "from": 3705792, - "to": 3689216, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172019, - "label": "CATALYZES", - "from": 3689223, - "to": 3705385, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401399, - "label": "ELEMENT_OF", - "from": 3719974, - "to": 3727881, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401407, - "label": "ELEMENT_OF", - "from": 3707238, - "to": 3727885, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172037, - "label": "CATALYZES", - "from": 3689232, - "to": 3708434, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368653, - "label": "REGULATES", - "from": 3722730, - "to": 3728637, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368654, - "label": "REGULATES", - "from": 3712313, - "to": 3722730, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368648, - "label": "BINDS", - "from": 3722729, - "to": 3687284, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368650, - "label": "REGULATES", - "from": 3710143, - "to": 3722729, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172051, - "label": "CATALYZES", - "from": 3689239, - "to": 3706497, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401426, - "label": "ELEMENT_OF", - "from": 3697403, - "to": 3727892, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368657, - "label": "REGULATES", - "from": 3722731, - "to": 3699212, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368656, - "label": "BINDS", - "from": 3722731, - "to": 3686352, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368658, - "label": "REGULATES", - "from": 3715127, - "to": 3722731, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368669, - "label": "REGULATES", - "from": 3714081, - "to": 3722734, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172056, - "label": "CATALYZES", - "from": 3714634, - "to": 3689242, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368667, - "label": "BINDS", - "from": 3722734, - "to": 3685141, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401433, - "label": "ELEMENT_OF", - "from": 3701535, - "to": 3727895, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368677, - "label": "REGULATES", - "from": 3714908, - "to": 3722736, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368676, - "label": "REGULATES", - "from": 3722736, - "to": 3694583, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368679, - "label": "REGULATES", - "from": 3722737, - "to": 3691478, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401444, - "label": "ELEMENT_OF", - "from": 3701391, - "to": 3727898, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172068, - "label": "CATALYZES", - "from": 3714226, - "to": 3689248, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368675, - "label": "BINDS", - "from": 3722736, - "to": 3682855, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368684, - "label": "REGULATES", - "from": 3710208, - "to": 3722738, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368680, - "label": "REGULATES", - "from": 3679474, - "to": 3722737, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368683, - "label": "REGULATES", - "from": 3722738, - "to": 3697232, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368682, - "label": "BINDS", - "from": 3722738, - "to": 3684966, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368692, - "label": "REGULATES", - "from": 3710270, - "to": 3722740, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368690, - "label": "BINDS", - "from": 3722740, - "to": 3686182, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368701, - "label": "BINDS", - "from": 3722743, - "to": 3678836, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368703, - "label": "REGULATES", - "from": 3710246, - "to": 3722743, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401469, - "label": "ELEMENT_OF", - "from": 3698985, - "to": 3727905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368707, - "label": "REGULATES", - "from": 3712313, - "to": 3722744, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368706, - "label": "REGULATES", - "from": 3722744, - "to": 3729073, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368724, - "label": "BINDS", - "from": 3722749, - "to": 3683151, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368726, - "label": "REGULATES", - "from": 3708153, - "to": 3722749, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368721, - "label": "REGULATES", - "from": 3722748, - "to": 3694571, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368720, - "label": "BINDS", - "from": 3722748, - "to": 3683107, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401489, - "label": "ELEMENT_OF", - "from": 3697036, - "to": 3727915, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368722, - "label": "REGULATES", - "from": 3705945, - "to": 3722748, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368732, - "label": "BINDS", - "from": 3722751, - "to": 3687422, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368734, - "label": "REGULATES", - "from": 3711285, - "to": 3722751, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401498, - "label": "ELEMENT_OF", - "from": 3711835, - "to": 3727918, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401509, - "label": "ELEMENT_OF", - "from": 3690779, - "to": 3727924, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368737, - "label": "REGULATES", - "from": 3677689, - "to": 3722752, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401517, - "label": "ELEMENT_OF", - "from": 3702688, - "to": 3727926, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368764, - "label": "REGULATES", - "from": 3711285, - "to": 3722759, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368768, - "label": "REGULATES", - "from": 3710228, - "to": 3722760, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368771, - "label": "REGULATES", - "from": 3684133, - "to": 3722761, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368770, - "label": "REGULATES", - "from": 3722761, - "to": 3691287, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368792, - "label": "BINDS", - "from": 3722767, - "to": 3679978, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368794, - "label": "REGULATES", - "from": 3704409, - "to": 3722767, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368813, - "label": "REGULATES", - "from": 3711393, - "to": 3722772, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368809, - "label": "REGULATES", - "from": 3710270, - "to": 3722771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368808, - "label": "REGULATES", - "from": 3722771, - "to": 3702044, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368811, - "label": "BINDS", - "from": 3722772, - "to": 3678706, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368832, - "label": "REGULATES", - "from": 3708153, - "to": 3722777, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368835, - "label": "REGULATES", - "from": 3681885, - "to": 3722778, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368849, - "label": "BINDS", - "from": 3722782, - "to": 3679510, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368851, - "label": "REGULATES", - "from": 3711207, - "to": 3722782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368850, - "label": "REGULATES", - "from": 3722782, - "to": 3700067, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368879, - "label": "BINDS", - "from": 3722790, - "to": 3686117, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368887, - "label": "BINDS", - "from": 3722792, - "to": 3682880, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368881, - "label": "REGULATES", - "from": 3711285, - "to": 3722790, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368880, - "label": "REGULATES", - "from": 3722790, - "to": 3697304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368889, - "label": "REGULATES", - "from": 3711285, - "to": 3722792, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368888, - "label": "REGULATES", - "from": 3722792, - "to": 3699271, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368908, - "label": "REGULATES", - "from": 3712357, - "to": 3722797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368907, - "label": "REGULATES", - "from": 3722797, - "to": 3699158, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368906, - "label": "BINDS", - "from": 3722797, - "to": 3678787, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237843, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3706777, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237840, - "label": "CONSUMED_BY", - "from": 3677549, - "to": 3706776, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368913, - "label": "BINDS", - "from": 3722799, - "to": 3687171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368915, - "label": "REGULATES", - "from": 3711285, - "to": 3722799, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237845, - "label": "PRODUCES", - "from": 3706777, - "to": 3672537, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368914, - "label": "REGULATES", - "from": 3722799, - "to": 3694640, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237850, - "label": "CONSUMED_BY", - "from": 3684327, - "to": 3706778, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368927, - "label": "REGULATES", - "from": 3712586, - "to": 3722802, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237854, - "label": "CONSUMED_BY", - "from": 3679098, - "to": 3706779, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368933, - "label": "REGULATES", - "from": 3722804, - "to": 3697870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368932, - "label": "BINDS", - "from": 3722804, - "to": 3685380, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237857, - "label": "PRODUCES", - "from": 3706779, - "to": 3684082, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237856, - "label": "PRODUCES", - "from": 3706779, - "to": 3681727, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368934, - "label": "REGULATES", - "from": 3710228, - "to": 3722804, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237863, - "label": "CONSUMED_BY", - "from": 3684128, - "to": 3706780, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368937, - "label": "REGULATES", - "from": 3722805, - "to": 3696122, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368936, - "label": "BINDS", - "from": 3722805, - "to": 3686113, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368938, - "label": "REGULATES", - "from": 3714706, - "to": 3722805, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237875, - "label": "CONSUMED_BY", - "from": 3684068, - "to": 3706782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368951, - "label": "BINDS", - "from": 3722809, - "to": 3679803, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237878, - "label": "CONSUMED_BY", - "from": 3681178, - "to": 3706783, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237883, - "label": "CONSUMED_BY", - "from": 3684271, - "to": 3706784, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237881, - "label": "PRODUCES", - "from": 3706783, - "to": 3677691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237887, - "label": "CONSUMED_BY", - "from": 3684022, - "to": 3706785, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368953, - "label": "REGULATES", - "from": 3705945, - "to": 3722809, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368952, - "label": "REGULATES", - "from": 3722809, - "to": 3699233, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368972, - "label": "REGULATES", - "from": 3707928, - "to": 3722814, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237901, - "label": "PRODUCES", - "from": 3706787, - "to": 3675453, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368970, - "label": "BINDS", - "from": 3722814, - "to": 3683210, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368980, - "label": "REGULATES", - "from": 3708153, - "to": 3722816, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368982, - "label": "BINDS", - "from": 3722817, - "to": 3679818, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368979, - "label": "REGULATES", - "from": 3722816, - "to": 3699411, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237915, - "label": "CONSUMED_BY", - "from": 3670742, - "to": 3706790, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368988, - "label": "REGULATES", - "from": 3711265, - "to": 3722818, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368984, - "label": "REGULATES", - "from": 3711259, - "to": 3722817, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368986, - "label": "BINDS", - "from": 3722818, - "to": 3684972, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237923, - "label": "PRODUCES", - "from": 3706791, - "to": 3681418, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 368996, - "label": "REGULATES", - "from": 3710270, - "to": 3722820, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237921, - "label": "CONSUMED_BY", - "from": 3684009, - "to": 3706791, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401765, - "label": "ELEMENT_OF", - "from": 3701511, - "to": 3727929, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237925, - "label": "CONSUMED_BY", - "from": 3670738, - "to": 3706792, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237929, - "label": "CONSUMED_BY", - "from": 3681239, - "to": 3706793, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401773, - "label": "ELEMENT_OF", - "from": 3690732, - "to": 3727931, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401770, - "label": "ELEMENT_OF", - "from": 3716628, - "to": 3727930, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369003, - "label": "REGULATES", - "from": 3681868, - "to": 3722822, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369002, - "label": "REGULATES", - "from": 3722822, - "to": 3691012, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237936, - "label": "CONSUMED_BY", - "from": 3670737, - "to": 3707340, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401781, - "label": "ELEMENT_OF", - "from": 3701983, - "to": 3727936, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237940, - "label": "CONSUMED_BY", - "from": 3681857, - "to": 3707341, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237947, - "label": "CONSUMED_BY", - "from": 3677460, - "to": 3707342, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401789, - "label": "ELEMENT_OF", - "from": 3693744, - "to": 3727939, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237950, - "label": "CONSUMED_BY", - "from": 3682137, - "to": 3707343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401787, - "label": "ELEMENT_OF", - "from": 3702490, - "to": 3727938, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369037, - "label": "REGULATES", - "from": 3722831, - "to": 3697945, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369036, - "label": "BINDS", - "from": 3722831, - "to": 3686475, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369038, - "label": "REGULATES", - "from": 3710270, - "to": 3722831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401800, - "label": "ELEMENT_OF", - "from": 3696339, - "to": 3727942, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237964, - "label": "CONSUMED_BY", - "from": 3682077, - "to": 3707346, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205203, - "label": "ENCODES", - "from": 3720014, - "to": 3711606, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369045, - "label": "REGULATES", - "from": 3718538, - "to": 3722833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205206, - "label": "COMPONENT_OF", - "from": 3714488, - "to": 3711609, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237979, - "label": "PRODUCES", - "from": 3707349, - "to": 3677835, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237978, - "label": "CONSUMED_BY", - "from": 3681583, - "to": 3707349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205208, - "label": "COMPONENT_OF", - "from": 3711490, - "to": 3711611, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369060, - "label": "REGULATES", - "from": 3684009, - "to": 3722837, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237985, - "label": "CONSUMED_BY", - "from": 3679145, - "to": 3707351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369063, - "label": "REGULATES", - "from": 3722838, - "to": 3697346, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369062, - "label": "BINDS", - "from": 3722838, - "to": 3678612, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237984, - "label": "PRODUCES", - "from": 3707350, - "to": 3676824, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 237991, - "label": "PRODUCES", - "from": 3707352, - "to": 3677516, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205222, - "label": "COMPONENT_OF", - "from": 3710247, - "to": 3711623, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369068, - "label": "REGULATES", - "from": 3711189, - "to": 3722839, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205225, - "label": "ENCODES", - "from": 3690792, - "to": 3711626, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369070, - "label": "BINDS", - "from": 3722840, - "to": 3685400, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369064, - "label": "REGULATES", - "from": 3711265, - "to": 3722838, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369066, - "label": "BINDS", - "from": 3722839, - "to": 3686194, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205235, - "label": "COMPONENT_OF", - "from": 3702136, - "to": 3711633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205234, - "label": "ENCODES", - "from": 3687618, - "to": 3711632, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369079, - "label": "REGULATES", - "from": 3681640, - "to": 3722842, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205232, - "label": "COMPONENT_OF", - "from": 3704097, - "to": 3711631, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238007, - "label": "CONSUMED_BY", - "from": 3670738, - "to": 3707356, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369072, - "label": "REGULATES", - "from": 3710208, - "to": 3722840, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238004, - "label": "PRODUCES", - "from": 3707355, - "to": 3684051, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401841, - "label": "ELEMENT_OF", - "from": 3699536, - "to": 3727952, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369087, - "label": "REGULATES", - "from": 3718538, - "to": 3722844, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238015, - "label": "PRODUCES", - "from": 3707357, - "to": 3681949, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238014, - "label": "CONSUMED_BY", - "from": 3681336, - "to": 3707357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401862, - "label": "ELEMENT_OF", - "from": 3694972, - "to": 3727958, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238018, - "label": "CONSUMED_BY", - "from": 3681365, - "to": 3707358, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369095, - "label": "REGULATES", - "from": 3708153, - "to": 3722846, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369089, - "label": "BINDS", - "from": 3722845, - "to": 3679983, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369091, - "label": "REGULATES", - "from": 3710228, - "to": 3722845, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205259, - "label": "COMPONENT_OF", - "from": 3714539, - "to": 3711649, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238028, - "label": "CONSUMED_BY", - "from": 3684173, - "to": 3707360, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205260, - "label": "ENCODES", - "from": 3720026, - "to": 3711650, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205267, - "label": "COMPONENT_OF", - "from": 3702130, - "to": 3711653, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238032, - "label": "CONSUMED_BY", - "from": 3678993, - "to": 3707361, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238039, - "label": "PRODUCES", - "from": 3707362, - "to": 3681178, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401874, - "label": "ELEMENT_OF", - "from": 3694584, - "to": 3727960, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238037, - "label": "CONSUMED_BY", - "from": 3715467, - "to": 3707362, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205269, - "label": "ENCODES", - "from": 3687645, - "to": 3711654, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238043, - "label": "CONSUMED_BY", - "from": 3685566, - "to": 3707363, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401886, - "label": "ELEMENT_OF", - "from": 3697242, - "to": 3727963, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205274, - "label": "ENCODES", - "from": 3719956, - "to": 3711658, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205272, - "label": "COMPONENT_OF", - "from": 3705938, - "to": 3711657, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401882, - "label": "ELEMENT_OF", - "from": 3697513, - "to": 3727961, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369112, - "label": "BINDS", - "from": 3722851, - "to": 3687494, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369114, - "label": "REGULATES", - "from": 3707928, - "to": 3722851, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401894, - "label": "ELEMENT_OF", - "from": 3696292, - "to": 3727966, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369125, - "label": "REGULATES", - "from": 3710228, - "to": 3722854, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401888, - "label": "ELEMENT_OF", - "from": 3719987, - "to": 3727964, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205285, - "label": "COMPONENT_OF", - "from": 3702398, - "to": 3711661, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369123, - "label": "BINDS", - "from": 3722854, - "to": 3679640, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401889, - "label": "ELEMENT_OF", - "from": 3720018, - "to": 3727965, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369133, - "label": "REGULATES", - "from": 3707928, - "to": 3722856, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238056, - "label": "PRODUCES", - "from": 3707366, - "to": 3669199, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369143, - "label": "REGULATES", - "from": 3722859, - "to": 3699174, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238064, - "label": "CONSUMED_BY", - "from": 3682175, - "to": 3707369, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369142, - "label": "BINDS", - "from": 3722859, - "to": 3686193, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205303, - "label": "COMPONENT_OF", - "from": 3708207, - "to": 3711677, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238070, - "label": "CONSUMED_BY", - "from": 3674616, - "to": 3707370, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238075, - "label": "PRODUCES", - "from": 3707371, - "to": 3677266, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238073, - "label": "CONSUMED_BY", - "from": 3682104, - "to": 3707371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205304, - "label": "ENCODES", - "from": 3698615, - "to": 3711678, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369150, - "label": "BINDS", - "from": 3722861, - "to": 3678692, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401914, - "label": "ELEMENT_OF", - "from": 3719979, - "to": 3727969, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369144, - "label": "REGULATES", - "from": 3711207, - "to": 3722859, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205310, - "label": "COMPONENT_OF", - "from": 3711528, - "to": 3711681, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238078, - "label": "CONSUMED_BY", - "from": 3666557, - "to": 3707372, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238076, - "label": "PRODUCES", - "from": 3707371, - "to": 3682194, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205314, - "label": "ENCODES", - "from": 3716628, - "to": 3711684, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205319, - "label": "COMPONENT_OF", - "from": 3714689, - "to": 3711689, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369152, - "label": "REGULATES", - "from": 3710586, - "to": 3722861, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369155, - "label": "REGULATES", - "from": 3677613, - "to": 3722862, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369154, - "label": "REGULATES", - "from": 3722862, - "to": 3689547, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369165, - "label": "BINDS", - "from": 3722865, - "to": 3679693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369167, - "label": "REGULATES", - "from": 3714081, - "to": 3722865, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401930, - "label": "ELEMENT_OF", - "from": 3695896, - "to": 3727972, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205327, - "label": "ENCODES", - "from": 3711787, - "to": 3711696, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205330, - "label": "COMPONENT_OF", - "from": 3715275, - "to": 3711699, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401941, - "label": "ELEMENT_OF", - "from": 3707230, - "to": 3727978, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369181, - "label": "BINDS", - "from": 3722869, - "to": 3684962, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401948, - "label": "ELEMENT_OF", - "from": 3698990, - "to": 3727981, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369183, - "label": "REGULATES", - "from": 3714124, - "to": 3722869, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369182, - "label": "REGULATES", - "from": 3722869, - "to": 3700056, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205342, - "label": "MODIFIED_TO", - "from": 3711707, - "to": 3712388, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205344, - "label": "COMPONENT_OF", - "from": 3711567, - "to": 3712255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401955, - "label": "ELEMENT_OF", - "from": 3699119, - "to": 3727984, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205354, - "label": "COMPONENT_OF", - "from": 3714717, - "to": 3712261, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401962, - "label": "ELEMENT_OF", - "from": 3716951, - "to": 3727986, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205357, - "label": "ENCODES", - "from": 3693848, - "to": 3712262, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369205, - "label": "REGULATES", - "from": 3722875, - "to": 3696068, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369204, - "label": "BINDS", - "from": 3722875, - "to": 3686288, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401975, - "label": "ELEMENT_OF", - "from": 3701430, - "to": 3727988, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369206, - "label": "REGULATES", - "from": 3711183, - "to": 3722875, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369213, - "label": "REGULATES", - "from": 3711285, - "to": 3722877, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369209, - "label": "REGULATES", - "from": 3677447, - "to": 3722876, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369208, - "label": "REGULATES", - "from": 3722876, - "to": 3691147, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369211, - "label": "BINDS", - "from": 3722877, - "to": 3686373, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401976, - "label": "ELEMENT_OF", - "from": 3698992, - "to": 3727990, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 401991, - "label": "ELEMENT_OF", - "from": 3699430, - "to": 3727996, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369223, - "label": "BINDS", - "from": 3722880, - "to": 3687460, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369225, - "label": "REGULATES", - "from": 3708153, - "to": 3722880, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369224, - "label": "REGULATES", - "from": 3722880, - "to": 3696220, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205389, - "label": "ENCODES", - "from": 3707149, - "to": 3712284, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205388, - "label": "COMPONENT_OF", - "from": 3710143, - "to": 3712283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369239, - "label": "REGULATES", - "from": 3722884, - "to": 3694430, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369238, - "label": "BINDS", - "from": 3722884, - "to": 3687433, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205392, - "label": "ENCODES", - "from": 3698765, - "to": 3712286, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369244, - "label": "REGULATES", - "from": 3718538, - "to": 3722885, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369240, - "label": "REGULATES", - "from": 3708153, - "to": 3722884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369243, - "label": "REGULATES", - "from": 3722885, - "to": 3701911, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369242, - "label": "BINDS", - "from": 3722885, - "to": 3685161, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369253, - "label": "BINDS", - "from": 3722888, - "to": 3685433, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369255, - "label": "REGULATES", - "from": 3710246, - "to": 3722888, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369249, - "label": "BINDS", - "from": 3722887, - "to": 3682886, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369251, - "label": "REGULATES", - "from": 3712586, - "to": 3722887, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205419, - "label": "COMPONENT_OF", - "from": 3708147, - "to": 3712304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205416, - "label": "COMPONENT_OF", - "from": 3708236, - "to": 3712302, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205431, - "label": "COMPONENT_OF", - "from": 3714383, - "to": 3712312, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369277, - "label": "REGULATES", - "from": 3722894, - "to": 3694732, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369276, - "label": "BINDS", - "from": 3722894, - "to": 3683141, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205432, - "label": "ENCODES", - "from": 3698937, - "to": 3712313, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369278, - "label": "REGULATES", - "from": 3710590, - "to": 3722894, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369273, - "label": "REGULATES", - "from": 3722893, - "to": 3697765, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369272, - "label": "BINDS", - "from": 3722893, - "to": 3687517, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 205437, - "label": "COMPONENT_OF", - "from": 3712650, - "to": 3712318, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369274, - "label": "REGULATES", - "from": 3710238, - "to": 3722893, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369293, - "label": "REGULATES", - "from": 3711285, - "to": 3722898, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369292, - "label": "REGULATES", - "from": 3722898, - "to": 3696181, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369291, - "label": "BINDS", - "from": 3722898, - "to": 3685227, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369301, - "label": "REGULATES", - "from": 3718384, - "to": 3722900, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369297, - "label": "REGULATES", - "from": 3715027, - "to": 3722899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369296, - "label": "REGULATES", - "from": 3722899, - "to": 3695267, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369299, - "label": "BINDS", - "from": 3722900, - "to": 3687532, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369316, - "label": "REGULATES", - "from": 3710167, - "to": 3722904, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369312, - "label": "REGULATES", - "from": 3712586, - "to": 3722903, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369314, - "label": "BINDS", - "from": 3722904, - "to": 3687526, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369353, - "label": "REGULATES", - "from": 3722914, - "to": 3699518, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369352, - "label": "BINDS", - "from": 3722914, - "to": 3679762, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369354, - "label": "REGULATES", - "from": 3710270, - "to": 3722914, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172822, - "label": "CATALYZES", - "from": 3711653, - "to": 3689265, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172823, - "label": "CATALYZES", - "from": 3689265, - "to": 3708910, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172820, - "label": "CATALYZES", - "from": 3715215, - "to": 3689264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172821, - "label": "CATALYZES", - "from": 3689264, - "to": 3707348, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172834, - "label": "CATALYZES", - "from": 3713901, - "to": 3689271, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172846, - "label": "CATALYZES", - "from": 3711576, - "to": 3689277, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172844, - "label": "CATALYZES", - "from": 3714801, - "to": 3689276, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172858, - "label": "CATALYZES", - "from": 3702303, - "to": 3689283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172856, - "label": "CATALYZES", - "from": 3712585, - "to": 3689282, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172857, - "label": "CATALYZES", - "from": 3689282, - "to": 3705240, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172872, - "label": "CATALYZES", - "from": 3710433, - "to": 3689290, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172873, - "label": "CATALYZES", - "from": 3689290, - "to": 3709136, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172882, - "label": "CATALYZES", - "from": 3714386, - "to": 3689295, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172883, - "label": "CATALYZES", - "from": 3689295, - "to": 3708984, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402260, - "label": "ELEMENT_OF", - "from": 3696319, - "to": 3728003, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172880, - "label": "CATALYZES", - "from": 3718395, - "to": 3689294, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172888, - "label": "CATALYZES", - "from": 3710433, - "to": 3689298, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172889, - "label": "CATALYZES", - "from": 3689298, - "to": 3709467, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172892, - "label": "CATALYZES", - "from": 3714255, - "to": 3689300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172893, - "label": "CATALYZES", - "from": 3689300, - "to": 3707488, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402274, - "label": "ELEMENT_OF", - "from": 3702799, - "to": 3728008, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402287, - "label": "ELEMENT_OF", - "from": 3698751, - "to": 3728011, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402284, - "label": "ELEMENT_OF", - "from": 3701688, - "to": 3728010, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172910, - "label": "CATALYZES", - "from": 3714030, - "to": 3689309, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172914, - "label": "CATALYZES", - "from": 3715490, - "to": 3689311, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172915, - "label": "CATALYZES", - "from": 3689311, - "to": 3707375, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402290, - "label": "ELEMENT_OF", - "from": 3701403, - "to": 3728013, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172922, - "label": "CATALYZES", - "from": 3715323, - "to": 3689315, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172923, - "label": "CATALYZES", - "from": 3689315, - "to": 3706493, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172920, - "label": "CATALYZES", - "from": 3706084, - "to": 3689314, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172926, - "label": "CATALYZES", - "from": 3711501, - "to": 3689317, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402308, - "label": "ELEMENT_OF", - "from": 3697877, - "to": 3728018, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402316, - "label": "ELEMENT_OF", - "from": 3702440, - "to": 3728020, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172936, - "label": "CATALYZES", - "from": 3705922, - "to": 3689322, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402317, - "label": "ELEMENT_OF", - "from": 3701382, - "to": 3728021, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172940, - "label": "CATALYZES", - "from": 3713972, - "to": 3689324, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172944, - "label": "CATALYZES", - "from": 3715522, - "to": 3689326, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172945, - "label": "CATALYZES", - "from": 3689326, - "to": 3705496, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172950, - "label": "CATALYZES", - "from": 3706067, - "to": 3689329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402321, - "label": "ELEMENT_OF", - "from": 3699463, - "to": 3728025, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172954, - "label": "CATALYZES", - "from": 3715522, - "to": 3689331, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402335, - "label": "ELEMENT_OF", - "from": 3701377, - "to": 3728031, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402331, - "label": "ELEMENT_OF", - "from": 3702688, - "to": 3728028, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402342, - "label": "ELEMENT_OF", - "from": 3693788, - "to": 3728034, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402348, - "label": "ELEMENT_OF", - "from": 3698717, - "to": 3728036, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172978, - "label": "CATALYZES", - "from": 3714548, - "to": 3689343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172976, - "label": "CATALYZES", - "from": 3710433, - "to": 3689342, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172977, - "label": "CATALYZES", - "from": 3689342, - "to": 3700716, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402355, - "label": "ELEMENT_OF", - "from": 3699906, - "to": 3728040, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402364, - "label": "ELEMENT_OF", - "from": 3701688, - "to": 3728043, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402374, - "label": "ELEMENT_OF", - "from": 3702690, - "to": 3728048, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 172994, - "label": "CATALYZES", - "from": 3710524, - "to": 3689351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402369, - "label": "ELEMENT_OF", - "from": 3702743, - "to": 3728045, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 173002, - "label": "CATALYZES", - "from": 3704148, - "to": 3689355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 173003, - "label": "CATALYZES", - "from": 3689355, - "to": 3709413, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 173000, - "label": "CATALYZES", - "from": 3706084, - "to": 3689354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402381, - "label": "ELEMENT_OF", - "from": 3693802, - "to": 3728052, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402376, - "label": "ELEMENT_OF", - "from": 3699533, - "to": 3728049, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 173008, - "label": "CATALYZES", - "from": 3712261, - "to": 3689358, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 173009, - "label": "CATALYZES", - "from": 3689358, - "to": 3708525, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402396, - "label": "ELEMENT_OF", - "from": 3699416, - "to": 3728055, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402392, - "label": "ELEMENT_OF", - "from": 3687582, - "to": 3728054, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238562, - "label": "PRODUCES", - "from": 3707373, - "to": 3670550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238560, - "label": "CONSUMED_BY", - "from": 3681631, - "to": 3707373, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402403, - "label": "ELEMENT_OF", - "from": 3693880, - "to": 3728060, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238566, - "label": "CONSUMED_BY", - "from": 3681787, - "to": 3707374, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 173031, - "label": "CATALYZES", - "from": 3689369, - "to": 3707578, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 173036, - "label": "CATALYZES", - "from": 3704224, - "to": 3689372, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 173037, - "label": "CATALYZES", - "from": 3689372, - "to": 3707745, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402421, - "label": "ELEMENT_OF", - "from": 3698834, - "to": 3728065, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238582, - "label": "CONSUMED_BY", - "from": 3679336, - "to": 3707378, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238587, - "label": "PRODUCES", - "from": 3707379, - "to": 3670689, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238585, - "label": "CONSUMED_BY", - "from": 3670312, - "to": 3707379, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238591, - "label": "CONSUMED_BY", - "from": 3677432, - "to": 3707380, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402427, - "label": "ELEMENT_OF", - "from": 3697827, - "to": 3728066, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238592, - "label": "PRODUCES", - "from": 3707380, - "to": 3684130, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238596, - "label": "CONSUMED_BY", - "from": 3681891, - "to": 3707381, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402447, - "label": "ELEMENT_OF", - "from": 3706808, - "to": 3728075, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238606, - "label": "PRODUCES", - "from": 3707383, - "to": 3679137, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402440, - "label": "ELEMENT_OF", - "from": 3699030, - "to": 3728072, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238604, - "label": "CONSUMED_BY", - "from": 3681700, - "to": 3707383, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402452, - "label": "ELEMENT_OF", - "from": 3683229, - "to": 3728078, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238614, - "label": "CONSUMED_BY", - "from": 3677543, - "to": 3707385, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402451, - "label": "ELEMENT_OF", - "from": 3711766, - "to": 3728077, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402459, - "label": "ELEMENT_OF", - "from": 3711955, - "to": 3728081, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238621, - "label": "PRODUCES", - "from": 3707387, - "to": 3679344, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238620, - "label": "CONSUMED_BY", - "from": 3674692, - "to": 3707387, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238627, - "label": "PRODUCES", - "from": 3707388, - "to": 3681469, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402467, - "label": "ELEMENT_OF", - "from": 3717010, - "to": 3728082, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238629, - "label": "CONSUMED_BY", - "from": 3652193, - "to": 3707389, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238633, - "label": "CONSUMED_BY", - "from": 3671836, - "to": 3707390, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238639, - "label": "CONSUMED_BY", - "from": 3681895, - "to": 3707391, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238636, - "label": "PRODUCES", - "from": 3707390, - "to": 3671475, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402473, - "label": "ELEMENT_OF", - "from": 3712012, - "to": 3728083, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238643, - "label": "CONSUMED_BY", - "from": 3677721, - "to": 3707392, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238641, - "label": "PRODUCES", - "from": 3707391, - "to": 3681923, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238651, - "label": "CONSUMED_BY", - "from": 3668911, - "to": 3707394, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402502, - "label": "ELEMENT_OF", - "from": 3717112, - "to": 3728639, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402503, - "label": "ELEMENT_OF", - "from": 3717079, - "to": 3728640, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 336960, - "label": "REGULATES", - "from": 3710274, - "to": 3719124, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238661, - "label": "CONSUMED_BY", - "from": 3666911, - "to": 3707397, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238664, - "label": "PRODUCES", - "from": 3707397, - "to": 3677355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 336969, - "label": "REGULATES", - "from": 3719127, - "to": 3688942, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238669, - "label": "CONSUMED_BY", - "from": 3682023, - "to": 3707398, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402504, - "label": "ELEMENT_OF", - "from": 3678860, - "to": 3728641, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 336970, - "label": "REGULATES", - "from": 3683877, - "to": 3719127, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 336980, - "label": "BINDS", - "from": 3719130, - "to": 3686315, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 336982, - "label": "REGULATES", - "from": 3718384, - "to": 3719130, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238683, - "label": "PRODUCES", - "from": 3707400, - "to": 3670485, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238682, - "label": "CONSUMED_BY", - "from": 3715467, - "to": 3707400, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 336985, - "label": "REGULATES", - "from": 3679247, - "to": 3719131, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238686, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3707401, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238691, - "label": "CONSUMED_BY", - "from": 3669924, - "to": 3707402, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238689, - "label": "PRODUCES", - "from": 3707401, - "to": 3677788, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238695, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3707403, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238693, - "label": "PRODUCES", - "from": 3707402, - "to": 3669994, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402529, - "label": "ELEMENT_OF", - "from": 3693744, - "to": 3728649, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238697, - "label": "PRODUCES", - "from": 3707403, - "to": 3684169, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238703, - "label": "CONSUMED_BY", - "from": 3677501, - "to": 3707405, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402539, - "label": "ELEMENT_OF", - "from": 3701636, - "to": 3728651, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337000, - "label": "REGULATES", - "from": 3707928, - "to": 3719135, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238701, - "label": "CONSUMED_BY", - "from": 3677427, - "to": 3707404, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238710, - "label": "CONSUMED_BY", - "from": 3677570, - "to": 3707406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402547, - "label": "ELEMENT_OF", - "from": 3720014, - "to": 3728653, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402559, - "label": "ELEMENT_OF", - "from": 3697249, - "to": 3728659, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238713, - "label": "CONSUMED_BY", - "from": 3679065, - "to": 3707407, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238717, - "label": "CONSUMED_BY", - "from": 3684064, - "to": 3707408, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238721, - "label": "CONSUMED_BY", - "from": 3684352, - "to": 3707409, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238726, - "label": "CONSUMED_BY", - "from": 3682023, - "to": 3707410, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337038, - "label": "BINDS", - "from": 3719146, - "to": 3685224, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238734, - "label": "PRODUCES", - "from": 3707411, - "to": 3668066, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402569, - "label": "ELEMENT_OF", - "from": 3719990, - "to": 3728661, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238732, - "label": "PRODUCES", - "from": 3707411, - "to": 3684158, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238739, - "label": "PRODUCES", - "from": 3707412, - "to": 3677513, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337044, - "label": "REGULATES", - "from": 3710270, - "to": 3719147, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337047, - "label": "REGULATES", - "from": 3719148, - "to": 3702023, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402581, - "label": "ELEMENT_OF", - "from": 3720037, - "to": 3728664, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337046, - "label": "BINDS", - "from": 3719148, - "to": 3683009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337040, - "label": "REGULATES", - "from": 3711317, - "to": 3719146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337042, - "label": "BINDS", - "from": 3719147, - "to": 3685376, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238747, - "label": "CONSUMED_BY", - "from": 3684067, - "to": 3707415, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337053, - "label": "BINDS", - "from": 3719150, - "to": 3679598, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337055, - "label": "REGULATES", - "from": 3711265, - "to": 3719150, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238744, - "label": "CONSUMED_BY", - "from": 3677501, - "to": 3707414, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337048, - "label": "REGULATES", - "from": 3710208, - "to": 3719148, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238755, - "label": "CONSUMED_BY", - "from": 3681918, - "to": 3707417, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238754, - "label": "PRODUCES", - "from": 3707416, - "to": 3677414, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337062, - "label": "REGULATES", - "from": 3710143, - "to": 3719152, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337057, - "label": "REGULATES", - "from": 3719151, - "to": 3689089, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238758, - "label": "CONSUMED_BY", - "from": 3683902, - "to": 3707418, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337058, - "label": "REGULATES", - "from": 3682122, - "to": 3719151, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337068, - "label": "BINDS", - "from": 3719154, - "to": 3685391, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337070, - "label": "REGULATES", - "from": 3710270, - "to": 3719154, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238767, - "label": "CONSUMED_BY", - "from": 3677469, - "to": 3707420, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402603, - "label": "ELEMENT_OF", - "from": 3701391, - "to": 3728671, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402600, - "label": "ELEMENT_OF", - "from": 3702784, - "to": 3728670, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402615, - "label": "ELEMENT_OF", - "from": 3699073, - "to": 3728676, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238775, - "label": "CONSUMED_BY", - "from": 3670744, - "to": 3707422, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337073, - "label": "REGULATES", - "from": 3679336, - "to": 3719155, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238779, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3707423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402620, - "label": "ELEMENT_OF", - "from": 3697271, - "to": 3728677, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238781, - "label": "PRODUCES", - "from": 3707423, - "to": 3672676, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304324, - "label": "REGULATES", - "from": 3713888, - "to": 3699996, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304325, - "label": "REGULATES", - "from": 3711269, - "to": 3713888, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402628, - "label": "ELEMENT_OF", - "from": 3706826, - "to": 3728680, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304327, - "label": "REGULATES", - "from": 3713889, - "to": 3697177, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238791, - "label": "PRODUCES", - "from": 3707425, - "to": 3681384, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402626, - "label": "ELEMENT_OF", - "from": 3717167, - "to": 3728679, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304321, - "label": "REGULATES", - "from": 3713887, - "to": 3697014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238789, - "label": "CONSUMED_BY", - "from": 3715467, - "to": 3707425, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304322, - "label": "REGULATES", - "from": 3711269, - "to": 3713887, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337101, - "label": "REGULATES", - "from": 3677711, - "to": 3719163, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238795, - "label": "PRODUCES", - "from": 3707426, - "to": 3676902, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238793, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3707426, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337103, - "label": "BINDS", - "from": 3719164, - "to": 3686258, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304328, - "label": "REGULATES", - "from": 3679440, - "to": 3713889, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 238799, - "label": "CONSUMED_BY", - "from": 3679065, - "to": 3707427, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402635, - "label": "ELEMENT_OF", - "from": 3693788, - "to": 3728682, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402632, - "label": "ELEMENT_OF", - "from": 3701892, - "to": 3728681, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304340, - "label": "REGULATES", - "from": 3679440, - "to": 3716077, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337111, - "label": "BINDS", - "from": 3719166, - "to": 3678858, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402645, - "label": "ELEMENT_OF", - "from": 3697282, - "to": 3728687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304343, - "label": "REGULATES", - "from": 3679440, - "to": 3716078, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337105, - "label": "REGULATES", - "from": 3710167, - "to": 3719164, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304337, - "label": "REGULATES", - "from": 3684133, - "to": 3716076, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337116, - "label": "REGULATES", - "from": 3677421, - "to": 3719167, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337113, - "label": "REGULATES", - "from": 3711177, - "to": 3719166, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337112, - "label": "REGULATES", - "from": 3719166, - "to": 3694657, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304345, - "label": "REGULATES", - "from": 3716079, - "to": 3726644, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337115, - "label": "REGULATES", - "from": 3719167, - "to": 3691213, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304346, - "label": "REGULATES", - "from": 3679440, - "to": 3716079, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304357, - "label": "REGULATES", - "from": 3716083, - "to": 3727597, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304358, - "label": "REGULATES", - "from": 3679440, - "to": 3716083, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402661, - "label": "ELEMENT_OF", - "from": 3702514, - "to": 3728690, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304352, - "label": "REGULATES", - "from": 3679440, - "to": 3716081, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304354, - "label": "REGULATES", - "from": 3716082, - "to": 3689424, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304355, - "label": "REGULATES", - "from": 3677368, - "to": 3716082, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304364, - "label": "REGULATES", - "from": 3679440, - "to": 3716085, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337129, - "label": "BINDS", - "from": 3719171, - "to": 3685262, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304360, - "label": "REGULATES", - "from": 3716084, - "to": 3727817, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304361, - "label": "REGULATES", - "from": 3679440, - "to": 3716084, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337131, - "label": "REGULATES", - "from": 3710270, - "to": 3719171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337130, - "label": "REGULATES", - "from": 3719171, - "to": 3697123, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304363, - "label": "REGULATES", - "from": 3716085, - "to": 3699360, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304373, - "label": "REGULATES", - "from": 3682104, - "to": 3716088, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304375, - "label": "REGULATES", - "from": 3716089, - "to": 3699231, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402674, - "label": "ELEMENT_OF", - "from": 3706798, - "to": 3728697, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304370, - "label": "REGULATES", - "from": 3679440, - "to": 3716087, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337149, - "label": "REGULATES", - "from": 3707928, - "to": 3719176, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304381, - "label": "REGULATES", - "from": 3716091, - "to": 3694635, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304382, - "label": "REGULATES", - "from": 3711269, - "to": 3716091, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304376, - "label": "REGULATES", - "from": 3679440, - "to": 3716089, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304388, - "label": "REGULATES", - "from": 3711269, - "to": 3716093, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337159, - "label": "REGULATES", - "from": 3719179, - "to": 3688856, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337153, - "label": "REGULATES", - "from": 3711209, - "to": 3719177, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304385, - "label": "REGULATES", - "from": 3677432, - "to": 3716092, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337152, - "label": "REGULATES", - "from": 3719177, - "to": 3694886, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304396, - "label": "REGULATES", - "from": 3716096, - "to": 3699910, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337164, - "label": "REGULATES", - "from": 3711265, - "to": 3719180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304397, - "label": "REGULATES", - "from": 3679440, - "to": 3716096, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304393, - "label": "REGULATES", - "from": 3716095, - "to": 3699463, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337160, - "label": "REGULATES", - "from": 3677560, - "to": 3719179, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337163, - "label": "REGULATES", - "from": 3719180, - "to": 3694461, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304394, - "label": "REGULATES", - "from": 3711269, - "to": 3716095, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402710, - "label": "ELEMENT_OF", - "from": 3707313, - "to": 3728705, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304405, - "label": "REGULATES", - "from": 3716099, - "to": 3700028, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304406, - "label": "REGULATES", - "from": 3679440, - "to": 3716099, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337171, - "label": "REGULATES", - "from": 3711285, - "to": 3719182, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337170, - "label": "REGULATES", - "from": 3719182, - "to": 3694537, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304403, - "label": "REGULATES", - "from": 3677337, - "to": 3716098, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402705, - "label": "ELEMENT_OF", - "from": 3699817, - "to": 3728703, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337181, - "label": "REGULATES", - "from": 3719185, - "to": 3689739, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402718, - "label": "ELEMENT_OF", - "from": 3678887, - "to": 3728708, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304412, - "label": "REGULATES", - "from": 3679440, - "to": 3716101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337182, - "label": "REGULATES", - "from": 3677711, - "to": 3719185, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304415, - "label": "REGULATES", - "from": 3679440, - "to": 3716102, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304411, - "label": "REGULATES", - "from": 3716101, - "to": 3729012, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304420, - "label": "REGULATES", - "from": 3716104, - "to": 3689831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304421, - "label": "REGULATES", - "from": 3677560, - "to": 3716104, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337191, - "label": "BINDS", - "from": 3719188, - "to": 3679769, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304417, - "label": "REGULATES", - "from": 3716103, - "to": 3726986, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304418, - "label": "REGULATES", - "from": 3679440, - "to": 3716103, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337197, - "label": "REGULATES", - "from": 3708153, - "to": 3719189, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304430, - "label": "REGULATES", - "from": 3679440, - "to": 3716107, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337193, - "label": "REGULATES", - "from": 3711285, - "to": 3719188, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304424, - "label": "REGULATES", - "from": 3679440, - "to": 3716105, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304436, - "label": "REGULATES", - "from": 3679440, - "to": 3716109, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304433, - "label": "REGULATES", - "from": 3679440, - "to": 3716108, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304435, - "label": "REGULATES", - "from": 3716109, - "to": 3699189, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304441, - "label": "REGULATES", - "from": 3716111, - "to": 3699220, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304442, - "label": "REGULATES", - "from": 3679440, - "to": 3716111, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271685, - "label": "REGULATES", - "from": 3709797, - "to": 3726996, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271686, - "label": "REGULATES", - "from": 3720073, - "to": 3709797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271680, - "label": "REGULATES", - "from": 3677415, - "to": 3709795, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304448, - "label": "REGULATES", - "from": 3711269, - "to": 3716113, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271683, - "label": "REGULATES", - "from": 3720073, - "to": 3709796, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304460, - "label": "REGULATES", - "from": 3679440, - "to": 3716117, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271700, - "label": "REGULATES", - "from": 3709802, - "to": 3712097, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271701, - "label": "REGULATES", - "from": 3720094, - "to": 3709802, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304469, - "label": "REGULATES", - "from": 3711269, - "to": 3716120, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271703, - "label": "REGULATES", - "from": 3709803, - "to": 3702598, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304466, - "label": "REGULATES", - "from": 3711269, - "to": 3716119, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304477, - "label": "REGULATES", - "from": 3716123, - "to": 3696322, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304478, - "label": "REGULATES", - "from": 3679440, - "to": 3716123, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271704, - "label": "REGULATES", - "from": 3720094, - "to": 3709803, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304472, - "label": "REGULATES", - "from": 3711269, - "to": 3716121, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304484, - "label": "REGULATES", - "from": 3679440, - "to": 3716125, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304487, - "label": "REGULATES", - "from": 3679440, - "to": 3716126, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271725, - "label": "REGULATES", - "from": 3684176, - "to": 3709810, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304493, - "label": "REGULATES", - "from": 3684173, - "to": 3716128, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304495, - "label": "REGULATES", - "from": 3716129, - "to": 3729336, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271722, - "label": "REGULATES", - "from": 3720073, - "to": 3709809, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304490, - "label": "REGULATES", - "from": 3679440, - "to": 3716127, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271733, - "label": "REGULATES", - "from": 3709813, - "to": 3688195, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304501, - "label": "REGULATES", - "from": 3716131, - "to": 3729713, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271734, - "label": "REGULATES", - "from": 3677478, - "to": 3709813, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304502, - "label": "REGULATES", - "from": 3679440, - "to": 3716131, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304496, - "label": "REGULATES", - "from": 3679440, - "to": 3716129, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304508, - "label": "REGULATES", - "from": 3677414, - "to": 3716133, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304510, - "label": "REGULATES", - "from": 3716134, - "to": 3699740, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304511, - "label": "REGULATES", - "from": 3679440, - "to": 3716134, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304505, - "label": "REGULATES", - "from": 3679440, - "to": 3716132, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304516, - "label": "REGULATES", - "from": 3716136, - "to": 3694584, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304517, - "label": "REGULATES", - "from": 3679440, - "to": 3716136, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304519, - "label": "REGULATES", - "from": 3716137, - "to": 3689548, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304514, - "label": "REGULATES", - "from": 3677204, - "to": 3716135, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304525, - "label": "REGULATES", - "from": 3716139, - "to": 3720429, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304526, - "label": "REGULATES", - "from": 3679440, - "to": 3716139, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271758, - "label": "REGULATES", - "from": 3720094, - "to": 3709821, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304520, - "label": "REGULATES", - "from": 3677560, - "to": 3716137, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304522, - "label": "REGULATES", - "from": 3716138, - "to": 3699993, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304523, - "label": "REGULATES", - "from": 3711269, - "to": 3716138, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271764, - "label": "REGULATES", - "from": 3720094, - "to": 3709823, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304534, - "label": "REGULATES", - "from": 3716142, - "to": 3699168, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304535, - "label": "REGULATES", - "from": 3711269, - "to": 3716142, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304528, - "label": "REGULATES", - "from": 3716140, - "to": 3726639, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304529, - "label": "REGULATES", - "from": 3679440, - "to": 3716140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271763, - "label": "REGULATES", - "from": 3709823, - "to": 3702570, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304540, - "label": "REGULATES", - "from": 3716144, - "to": 3694787, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304541, - "label": "REGULATES", - "from": 3711269, - "to": 3716144, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304543, - "label": "REGULATES", - "from": 3716145, - "to": 3699691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271781, - "label": "REGULATES", - "from": 3709829, - "to": 3702772, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271782, - "label": "REGULATES", - "from": 3720094, - "to": 3709829, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304544, - "label": "REGULATES", - "from": 3679440, - "to": 3716145, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271779, - "label": "REGULATES", - "from": 3681569, - "to": 3709828, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304547, - "label": "REGULATES", - "from": 3711269, - "to": 3716146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304556, - "label": "REGULATES", - "from": 3677696, - "to": 3716149, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304559, - "label": "REGULATES", - "from": 3679440, - "to": 3716150, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304553, - "label": "REGULATES", - "from": 3679440, - "to": 3716148, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 304555, - "label": "REGULATES", - "from": 3716149, - "to": 3688014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271815, - "label": "REGULATES", - "from": 3677787, - "to": 3709840, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271820, - "label": "REGULATES", - "from": 3709842, - "to": 3702763, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271821, - "label": "REGULATES", - "from": 3720094, - "to": 3709842, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271817, - "label": "REGULATES", - "from": 3709841, - "to": 3707020, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271818, - "label": "REGULATES", - "from": 3720094, - "to": 3709841, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271848, - "label": "REGULATES", - "from": 3720073, - "to": 3709851, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271860, - "label": "REGULATES", - "from": 3677192, - "to": 3709855, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271869, - "label": "REGULATES", - "from": 3682163, - "to": 3709858, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271874, - "label": "REGULATES", - "from": 3709860, - "to": 3702861, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271875, - "label": "REGULATES", - "from": 3720094, - "to": 3709860, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271881, - "label": "REGULATES", - "from": 3720094, - "to": 3709862, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402966, - "label": "ELEMENT_OF", - "from": 3697262, - "to": 3728710, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271893, - "label": "REGULATES", - "from": 3720077, - "to": 3709866, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402971, - "label": "ELEMENT_OF", - "from": 3695985, - "to": 3728711, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337444, - "label": "REGULATES", - "from": 3677550, - "to": 3719191, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402981, - "label": "ELEMENT_OF", - "from": 3702749, - "to": 3728716, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337443, - "label": "REGULATES", - "from": 3719191, - "to": 3687779, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337453, - "label": "BINDS", - "from": 3719194, - "to": 3678551, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271916, - "label": "REGULATES", - "from": 3709874, - "to": 3726237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271917, - "label": "REGULATES", - "from": 3720073, - "to": 3709874, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337455, - "label": "REGULATES", - "from": 3711285, - "to": 3719194, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271913, - "label": "REGULATES", - "from": 3709873, - "to": 3691278, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 271914, - "label": "REGULATES", - "from": 3684058, - "to": 3709873, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402985, - "label": "ELEMENT_OF", - "from": 3694508, - "to": 3728718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402994, - "label": "ELEMENT_OF", - "from": 3698970, - "to": 3728721, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337457, - "label": "BINDS", - "from": 3719195, - "to": 3687346, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337459, - "label": "REGULATES", - "from": 3710143, - "to": 3719195, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337458, - "label": "REGULATES", - "from": 3719195, - "to": 3700194, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337477, - "label": "REGULATES", - "from": 3710576, - "to": 3719200, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337473, - "label": "REGULATES", - "from": 3677421, - "to": 3719199, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337472, - "label": "REGULATES", - "from": 3719199, - "to": 3691403, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337475, - "label": "BINDS", - "from": 3719200, - "to": 3686337, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337485, - "label": "REGULATES", - "from": 3711681, - "to": 3719202, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403021, - "label": "ELEMENT_OF", - "from": 3707096, - "to": 3728728, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337483, - "label": "BINDS", - "from": 3719202, - "to": 3686284, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337492, - "label": "REGULATES", - "from": 3708153, - "to": 3719204, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337490, - "label": "BINDS", - "from": 3719204, - "to": 3678884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337509, - "label": "REGULATES", - "from": 3719209, - "to": 3691457, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337510, - "label": "REGULATES", - "from": 3683877, - "to": 3719209, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403054, - "label": "ELEMENT_OF", - "from": 3697087, - "to": 3728738, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337519, - "label": "BINDS", - "from": 3719212, - "to": 3686146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337514, - "label": "REGULATES", - "from": 3714081, - "to": 3719210, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337521, - "label": "REGULATES", - "from": 3705945, - "to": 3719212, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337520, - "label": "REGULATES", - "from": 3719212, - "to": 3694943, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403071, - "label": "ELEMENT_OF", - "from": 3717046, - "to": 3728742, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337543, - "label": "REGULATES", - "from": 3718538, - "to": 3719218, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403075, - "label": "ELEMENT_OF", - "from": 3695980, - "to": 3728743, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337549, - "label": "BINDS", - "from": 3719220, - "to": 3678678, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337551, - "label": "REGULATES", - "from": 3710208, - "to": 3719220, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403081, - "label": "ELEMENT_OF", - "from": 3690638, - "to": 3728745, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370325, - "label": "REGULATES", - "from": 3712313, - "to": 3722917, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337557, - "label": "REGULATES", - "from": 3719222, - "to": 3697520, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403095, - "label": "ELEMENT_OF", - "from": 3699924, - "to": 3728752, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337556, - "label": "BINDS", - "from": 3719222, - "to": 3679639, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370327, - "label": "BINDS", - "from": 3722918, - "to": 3687556, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337558, - "label": "REGULATES", - "from": 3710143, - "to": 3719222, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370321, - "label": "REGULATES", - "from": 3681638, - "to": 3722916, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403091, - "label": "ELEMENT_OF", - "from": 3702573, - "to": 3728750, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370323, - "label": "BINDS", - "from": 3722917, - "to": 3678407, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403088, - "label": "ELEMENT_OF", - "from": 3702942, - "to": 3728748, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337561, - "label": "REGULATES", - "from": 3679440, - "to": 3719223, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370329, - "label": "REGULATES", - "from": 3710208, - "to": 3722918, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337560, - "label": "REGULATES", - "from": 3719223, - "to": 3688115, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370328, - "label": "REGULATES", - "from": 3722918, - "to": 3696127, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370343, - "label": "REGULATES", - "from": 3722922, - "to": 3697872, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370342, - "label": "BINDS", - "from": 3722922, - "to": 3683250, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403119, - "label": "ELEMENT_OF", - "from": 3701414, - "to": 3728759, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403115, - "label": "ELEMENT_OF", - "from": 3719992, - "to": 3728758, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370344, - "label": "REGULATES", - "from": 3710167, - "to": 3722922, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239283, - "label": "PRODUCES", - "from": 3707428, - "to": 3685555, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337591, - "label": "REGULATES", - "from": 3707928, - "to": 3719231, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239286, - "label": "CONSUMED_BY", - "from": 3677474, - "to": 3707429, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337597, - "label": "REGULATES", - "from": 3719233, - "to": 3688795, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239291, - "label": "CONSUMED_BY", - "from": 3677624, - "to": 3707430, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337598, - "label": "REGULATES", - "from": 3677696, - "to": 3719233, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337593, - "label": "BINDS", - "from": 3719232, - "to": 3679588, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370361, - "label": "BINDS", - "from": 3722927, - "to": 3687241, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239293, - "label": "PRODUCES", - "from": 3707430, - "to": 3681465, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337595, - "label": "REGULATES", - "from": 3711317, - "to": 3719232, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370363, - "label": "REGULATES", - "from": 3715127, - "to": 3722927, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403142, - "label": "ELEMENT_OF", - "from": 3699325, - "to": 3728764, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370373, - "label": "BINDS", - "from": 3722930, - "to": 3685068, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370375, - "label": "REGULATES", - "from": 3718648, - "to": 3722930, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337607, - "label": "BINDS", - "from": 3719236, - "to": 3685401, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239296, - "label": "CONSUMED_BY", - "from": 3666774, - "to": 3707431, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337602, - "label": "REGULATES", - "from": 3708153, - "to": 3719234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337613, - "label": "REGULATES", - "from": 3718538, - "to": 3719237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370380, - "label": "BINDS", - "from": 3722932, - "to": 3678791, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239304, - "label": "PRODUCES", - "from": 3707433, - "to": 3674690, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370382, - "label": "REGULATES", - "from": 3715127, - "to": 3722932, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239311, - "label": "CONSUMED_BY", - "from": 3681906, - "to": 3707435, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337609, - "label": "REGULATES", - "from": 3711317, - "to": 3719236, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403147, - "label": "ELEMENT_OF", - "from": 3698701, - "to": 3728767, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337620, - "label": "REGULATES", - "from": 3679473, - "to": 3719239, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370388, - "label": "BINDS", - "from": 3722934, - "to": 3687369, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337623, - "label": "REGULATES", - "from": 3719240, - "to": 3699792, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370390, - "label": "REGULATES", - "from": 3712586, - "to": 3722934, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239319, - "label": "CONSUMED_BY", - "from": 3681145, - "to": 3707438, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370385, - "label": "REGULATES", - "from": 3722933, - "to": 3698056, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403154, - "label": "ELEMENT_OF", - "from": 3701460, - "to": 3728770, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370386, - "label": "REGULATES", - "from": 3711285, - "to": 3722933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239323, - "label": "PRODUCES", - "from": 3707439, - "to": 3681440, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239322, - "label": "CONSUMED_BY", - "from": 3677605, - "to": 3707439, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337628, - "label": "REGULATES", - "from": 3710228, - "to": 3719241, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239326, - "label": "CONSUMED_BY", - "from": 3677567, - "to": 3707440, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337624, - "label": "REGULATES", - "from": 3712313, - "to": 3719240, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337626, - "label": "BINDS", - "from": 3719241, - "to": 3682803, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370405, - "label": "REGULATES", - "from": 3711237, - "to": 3722938, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370404, - "label": "REGULATES", - "from": 3722938, - "to": 3699193, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370401, - "label": "REGULATES", - "from": 3710194, - "to": 3722937, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403168, - "label": "ELEMENT_OF", - "from": 3699565, - "to": 3728775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370403, - "label": "BINDS", - "from": 3722938, - "to": 3685296, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370413, - "label": "REGULATES", - "from": 3708423, - "to": 3722940, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403176, - "label": "ELEMENT_OF", - "from": 3716776, - "to": 3728777, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370411, - "label": "BINDS", - "from": 3722940, - "to": 3687545, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337643, - "label": "REGULATES", - "from": 3710228, - "to": 3719245, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337653, - "label": "REGULATES", - "from": 3719248, - "to": 3699869, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239346, - "label": "PRODUCES", - "from": 3707445, - "to": 3675780, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370420, - "label": "REGULATES", - "from": 3710270, - "to": 3722942, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337652, - "label": "BINDS", - "from": 3719248, - "to": 3687299, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370423, - "label": "REGULATES", - "from": 3722943, - "to": 3695241, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239344, - "label": "CONSUMED_BY", - "from": 3669455, - "to": 3707445, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337654, - "label": "REGULATES", - "from": 3710208, - "to": 3719248, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337649, - "label": "REGULATES", - "from": 3719247, - "to": 3700033, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337648, - "label": "BINDS", - "from": 3719247, - "to": 3679840, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337650, - "label": "REGULATES", - "from": 3710582, - "to": 3719247, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370418, - "label": "BINDS", - "from": 3722942, - "to": 3679577, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403198, - "label": "ELEMENT_OF", - "from": 3685075, - "to": 3728781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239355, - "label": "PRODUCES", - "from": 3707447, - "to": 3681204, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370431, - "label": "REGULATES", - "from": 3722945, - "to": 3697934, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239352, - "label": "PRODUCES", - "from": 3707446, - "to": 3677192, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370430, - "label": "BINDS", - "from": 3722945, - "to": 3686163, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403194, - "label": "ELEMENT_OF", - "from": 3702738, - "to": 3728779, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370424, - "label": "REGULATES", - "from": 3711265, - "to": 3722943, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239362, - "label": "CONSUMED_BY", - "from": 3681679, - "to": 3707449, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337668, - "label": "REGULATES", - "from": 3683877, - "to": 3719252, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403202, - "label": "ELEMENT_OF", - "from": 3694730, - "to": 3728783, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370432, - "label": "REGULATES", - "from": 3710586, - "to": 3722945, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370435, - "label": "REGULATES", - "from": 3677501, - "to": 3722946, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337667, - "label": "REGULATES", - "from": 3719252, - "to": 3688063, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370434, - "label": "REGULATES", - "from": 3722946, - "to": 3688971, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370441, - "label": "BINDS", - "from": 3722948, - "to": 3685348, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239374, - "label": "CONSUMED_BY", - "from": 3677474, - "to": 3707451, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 337672, - "label": "REGULATES", - "from": 3710208, - "to": 3719253, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370443, - "label": "REGULATES", - "from": 3712313, - "to": 3722948, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370442, - "label": "REGULATES", - "from": 3722948, - "to": 3727525, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370454, - "label": "REGULATES", - "from": 3677474, - "to": 3722951, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239376, - "label": "PRODUCES", - "from": 3707451, - "to": 3675466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239380, - "label": "CONSUMED_BY", - "from": 3677513, - "to": 3707452, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239386, - "label": "PRODUCES", - "from": 3707453, - "to": 3684372, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239384, - "label": "CONSUMED_BY", - "from": 3684374, - "to": 3707453, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239390, - "label": "PRODUCES", - "from": 3707454, - "to": 3681924, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239393, - "label": "PRODUCES", - "from": 3707455, - "to": 3683951, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403236, - "label": "ELEMENT_OF", - "from": 3716882, - "to": 3728792, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239392, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3707455, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403242, - "label": "ELEMENT_OF", - "from": 3700186, - "to": 3728793, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239404, - "label": "CONSUMED_BY", - "from": 3666570, - "to": 3707458, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370485, - "label": "REGULATES", - "from": 3710274, - "to": 3722959, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239415, - "label": "PRODUCES", - "from": 3707460, - "to": 3681635, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239413, - "label": "CONSUMED_BY", - "from": 3715467, - "to": 3707460, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370483, - "label": "BINDS", - "from": 3722959, - "to": 3686517, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403249, - "label": "ELEMENT_OF", - "from": 3701501, - "to": 3728797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370495, - "label": "BINDS", - "from": 3722962, - "to": 3687140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239417, - "label": "CONSUMED_BY", - "from": 3681210, - "to": 3707461, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370489, - "label": "REGULATES", - "from": 3712313, - "to": 3722960, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370488, - "label": "REGULATES", - "from": 3722960, - "to": 3729173, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370501, - "label": "REGULATES", - "from": 3711313, - "to": 3722963, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370500, - "label": "REGULATES", - "from": 3722963, - "to": 3696144, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370503, - "label": "BINDS", - "from": 3722964, - "to": 3686411, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370497, - "label": "REGULATES", - "from": 3711233, - "to": 3722962, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370499, - "label": "BINDS", - "from": 3722963, - "to": 3686165, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370508, - "label": "REGULATES", - "from": 3677466, - "to": 3722965, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370511, - "label": "REGULATES", - "from": 3722966, - "to": 3696029, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239432, - "label": "CONSUMED_BY", - "from": 3677498, - "to": 3707464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370510, - "label": "BINDS", - "from": 3722966, - "to": 3686377, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370505, - "label": "REGULATES", - "from": 3708153, - "to": 3722964, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239438, - "label": "PRODUCES", - "from": 3707465, - "to": 3677237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239436, - "label": "CONSUMED_BY", - "from": 3679101, - "to": 3707465, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239443, - "label": "PRODUCES", - "from": 3707466, - "to": 3670744, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239442, - "label": "CONSUMED_BY", - "from": 3684068, - "to": 3707466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370516, - "label": "REGULATES", - "from": 3710167, - "to": 3722967, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370518, - "label": "BINDS", - "from": 3722968, - "to": 3685414, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370512, - "label": "REGULATES", - "from": 3710270, - "to": 3722966, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239445, - "label": "CONSUMED_BY", - "from": 3684045, - "to": 3707467, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370515, - "label": "REGULATES", - "from": 3722967, - "to": 3698047, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239451, - "label": "CONSUMED_BY", - "from": 3684176, - "to": 3707468, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239455, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3707469, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370520, - "label": "REGULATES", - "from": 3710270, - "to": 3722968, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370533, - "label": "BINDS", - "from": 3722972, - "to": 3679795, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370535, - "label": "REGULATES", - "from": 3712313, - "to": 3722972, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239456, - "label": "PRODUCES", - "from": 3707469, - "to": 3684100, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370534, - "label": "REGULATES", - "from": 3722972, - "to": 3728071, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403301, - "label": "ELEMENT_OF", - "from": 3694344, - "to": 3728815, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239463, - "label": "PRODUCES", - "from": 3707471, - "to": 3677432, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239460, - "label": "PRODUCES", - "from": 3707470, - "to": 3674992, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403311, - "label": "ELEMENT_OF", - "from": 3701809, - "to": 3728817, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239468, - "label": "PRODUCES", - "from": 3707472, - "to": 3677431, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239475, - "label": "CONSUMED_BY", - "from": 3682200, - "to": 3707474, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370548, - "label": "BINDS", - "from": 3722976, - "to": 3679852, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370550, - "label": "REGULATES", - "from": 3706146, - "to": 3722976, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239483, - "label": "CONSUMED_BY", - "from": 3681887, - "to": 3707477, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403327, - "label": "ELEMENT_OF", - "from": 3706886, - "to": 3728821, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370553, - "label": "REGULATES", - "from": 3722977, - "to": 3697779, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370552, - "label": "BINDS", - "from": 3722977, - "to": 3679900, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239485, - "label": "PRODUCES", - "from": 3707477, - "to": 3681247, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370554, - "label": "REGULATES", - "from": 3712308, - "to": 3722977, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403321, - "label": "ELEMENT_OF", - "from": 3701395, - "to": 3728818, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370565, - "label": "REGULATES", - "from": 3681355, - "to": 3722980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370567, - "label": "BINDS", - "from": 3722981, - "to": 3678516, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239488, - "label": "CONSUMED_BY", - "from": 3677520, - "to": 3707478, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403340, - "label": "ELEMENT_OF", - "from": 3695942, - "to": 3728824, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239503, - "label": "PRODUCES", - "from": 3707481, - "to": 3681638, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370569, - "label": "REGULATES", - "from": 3710270, - "to": 3722981, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370581, - "label": "REGULATES", - "from": 3712313, - "to": 3722984, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370580, - "label": "REGULATES", - "from": 3722984, - "to": 3728862, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 239505, - "label": "CONSUMED_BY", - "from": 3677495, - "to": 3707482, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370583, - "label": "REGULATES", - "from": 3722985, - "to": 3689304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370579, - "label": "BINDS", - "from": 3722984, - "to": 3685402, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403358, - "label": "ELEMENT_OF", - "from": 3690694, - "to": 3728828, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403359, - "label": "ELEMENT_OF", - "from": 3699063, - "to": 3728829, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370584, - "label": "REGULATES", - "from": 3677444, - "to": 3722985, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403355, - "label": "ELEMENT_OF", - "from": 3701623, - "to": 3728827, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403363, - "label": "ELEMENT_OF", - "from": 3702755, - "to": 3728830, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370603, - "label": "REGULATES", - "from": 3684130, - "to": 3722990, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370602, - "label": "REGULATES", - "from": 3722990, - "to": 3688824, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370613, - "label": "BINDS", - "from": 3722993, - "to": 3679711, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403383, - "label": "ELEMENT_OF", - "from": 3701481, - "to": 3728836, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370615, - "label": "REGULATES", - "from": 3711285, - "to": 3722993, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370614, - "label": "REGULATES", - "from": 3722993, - "to": 3699340, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403387, - "label": "ELEMENT_OF", - "from": 3695300, - "to": 3728837, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370629, - "label": "REGULATES", - "from": 3722997, - "to": 3726196, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370628, - "label": "BINDS", - "from": 3722997, - "to": 3678862, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403399, - "label": "ELEMENT_OF", - "from": 3698835, - "to": 3728843, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370630, - "label": "REGULATES", - "from": 3712313, - "to": 3722997, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403393, - "label": "ELEMENT_OF", - "from": 3707087, - "to": 3728840, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370644, - "label": "REGULATES", - "from": 3711265, - "to": 3723001, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370647, - "label": "REGULATES", - "from": 3723002, - "to": 3699569, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403412, - "label": "ELEMENT_OF", - "from": 3711708, - "to": 3728848, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370646, - "label": "BINDS", - "from": 3723002, - "to": 3683040, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370643, - "label": "REGULATES", - "from": 3723001, - "to": 3696313, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370652, - "label": "REGULATES", - "from": 3711317, - "to": 3723003, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370655, - "label": "REGULATES", - "from": 3723004, - "to": 3699362, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370654, - "label": "BINDS", - "from": 3723004, - "to": 3683275, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370648, - "label": "REGULATES", - "from": 3710576, - "to": 3723002, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370651, - "label": "REGULATES", - "from": 3723003, - "to": 3698051, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403417, - "label": "ELEMENT_OF", - "from": 3701506, - "to": 3728850, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370650, - "label": "BINDS", - "from": 3723003, - "to": 3678593, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370661, - "label": "BINDS", - "from": 3723006, - "to": 3685267, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370663, - "label": "REGULATES", - "from": 3711207, - "to": 3723006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370662, - "label": "REGULATES", - "from": 3723006, - "to": 3699353, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370656, - "label": "REGULATES", - "from": 3710187, - "to": 3723004, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403425, - "label": "ELEMENT_OF", - "from": 3699963, - "to": 3728854, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403438, - "label": "ELEMENT_OF", - "from": 3719964, - "to": 3728858, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403434, - "label": "ELEMENT_OF", - "from": 3699030, - "to": 3728856, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370673, - "label": "BINDS", - "from": 3723009, - "to": 3678871, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370675, - "label": "REGULATES", - "from": 3712313, - "to": 3723009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370674, - "label": "REGULATES", - "from": 3723009, - "to": 3726344, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370687, - "label": "BINDS", - "from": 3723013, - "to": 3679959, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370681, - "label": "REGULATES", - "from": 3723011, - "to": 3694564, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370680, - "label": "BINDS", - "from": 3723011, - "to": 3686289, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370682, - "label": "REGULATES", - "from": 3711285, - "to": 3723011, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370689, - "label": "REGULATES", - "from": 3710274, - "to": 3723013, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370721, - "label": "BINDS", - "from": 3723022, - "to": 3678880, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370723, - "label": "REGULATES", - "from": 3712313, - "to": 3723022, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370722, - "label": "REGULATES", - "from": 3723022, - "to": 3729140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370733, - "label": "REGULATES", - "from": 3723025, - "to": 3689223, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370734, - "label": "REGULATES", - "from": 3677476, - "to": 3723025, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370729, - "label": "BINDS", - "from": 3723024, - "to": 3679576, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370731, - "label": "REGULATES", - "from": 3710167, - "to": 3723024, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370741, - "label": "REGULATES", - "from": 3723027, - "to": 3697704, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370740, - "label": "BINDS", - "from": 3723027, - "to": 3686527, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370742, - "label": "REGULATES", - "from": 3710270, - "to": 3723027, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370737, - "label": "REGULATES", - "from": 3723026, - "to": 3702038, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370736, - "label": "BINDS", - "from": 3723026, - "to": 3685344, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370738, - "label": "REGULATES", - "from": 3714081, - "to": 3723026, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370744, - "label": "BINDS", - "from": 3723028, - "to": 3683056, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370746, - "label": "REGULATES", - "from": 3714908, - "to": 3723028, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370757, - "label": "REGULATES", - "from": 3712586, - "to": 3723031, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370756, - "label": "REGULATES", - "from": 3723031, - "to": 3699921, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370759, - "label": "BINDS", - "from": 3723032, - "to": 3685437, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370755, - "label": "BINDS", - "from": 3723031, - "to": 3686277, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370761, - "label": "REGULATES", - "from": 3710270, - "to": 3723032, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370776, - "label": "REGULATES", - "from": 3712313, - "to": 3723036, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370788, - "label": "REGULATES", - "from": 3704560, - "to": 3723039, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370787, - "label": "REGULATES", - "from": 3723039, - "to": 3699188, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370786, - "label": "BINDS", - "from": 3723039, - "to": 3683308, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370793, - "label": "BINDS", - "from": 3723041, - "to": 3682950, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370795, - "label": "REGULATES", - "from": 3708153, - "to": 3723041, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370794, - "label": "REGULATES", - "from": 3723041, - "to": 3695106, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174242, - "label": "CATALYZES", - "from": 3718575, - "to": 3689375, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174243, - "label": "CATALYZES", - "from": 3689375, - "to": 3705266, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174247, - "label": "CATALYZES", - "from": 3689377, - "to": 3709270, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174250, - "label": "CATALYZES", - "from": 3710183, - "to": 3689379, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174258, - "label": "CATALYZES", - "from": 3704358, - "to": 3689383, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174259, - "label": "CATALYZES", - "from": 3689383, - "to": 3700697, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174278, - "label": "CATALYZES", - "from": 3702067, - "to": 3689393, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174279, - "label": "CATALYZES", - "from": 3689393, - "to": 3708519, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174277, - "label": "CATALYZES", - "from": 3689392, - "to": 3709595, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174283, - "label": "CATALYZES", - "from": 3689395, - "to": 3708627, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174281, - "label": "CATALYZES", - "from": 3689394, - "to": 3709226, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174288, - "label": "CATALYZES", - "from": 3710209, - "to": 3689398, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174289, - "label": "CATALYZES", - "from": 3689398, - "to": 3708744, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174293, - "label": "CATALYZES", - "from": 3689400, - "to": 3707863, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174299, - "label": "CATALYZES", - "from": 3689403, - "to": 3706420, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174302, - "label": "CATALYZES", - "from": 3704577, - "to": 3689405, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403685, - "label": "ELEMENT_OF", - "from": 3697200, - "to": 3728860, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174309, - "label": "CATALYZES", - "from": 3689408, - "to": 3709237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174318, - "label": "CATALYZES", - "from": 3714650, - "to": 3689413, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174323, - "label": "CATALYZES", - "from": 3689415, - "to": 3706364, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174321, - "label": "CATALYZES", - "from": 3689414, - "to": 3709400, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403699, - "label": "ELEMENT_OF", - "from": 3702573, - "to": 3728867, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174331, - "label": "CATALYZES", - "from": 3714801, - "to": 3689419, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403712, - "label": "ELEMENT_OF", - "from": 3719965, - "to": 3728869, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174345, - "label": "CATALYZES", - "from": 3711677, - "to": 3689426, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403723, - "label": "ELEMENT_OF", - "from": 3697485, - "to": 3728877, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174353, - "label": "CATALYZES", - "from": 3710433, - "to": 3689430, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207126, - "label": "COMPONENT_OF", - "from": 3702363, - "to": 3712324, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207131, - "label": "ENCODES", - "from": 3707143, - "to": 3712329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207129, - "label": "ENCODES", - "from": 3711860, - "to": 3712327, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174361, - "label": "CATALYZES", - "from": 3714452, - "to": 3689434, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403738, - "label": "ELEMENT_OF", - "from": 3697718, - "to": 3728880, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403739, - "label": "ELEMENT_OF", - "from": 3687585, - "to": 3728881, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403736, - "label": "ELEMENT_OF", - "from": 3697418, - "to": 3728879, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403750, - "label": "ELEMENT_OF", - "from": 3697496, - "to": 3728886, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207138, - "label": "COMPONENT_OF", - "from": 3706188, - "to": 3712332, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174371, - "label": "CATALYZES", - "from": 3714190, - "to": 3689439, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403748, - "label": "ELEMENT_OF", - "from": 3698851, - "to": 3728884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174374, - "label": "CATALYZES", - "from": 3689440, - "to": 3707557, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174372, - "label": "CATALYZES", - "from": 3689439, - "to": 3706267, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174377, - "label": "CATALYZES", - "from": 3704366, - "to": 3689442, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174388, - "label": "CATALYZES", - "from": 3689447, - "to": 3707650, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174389, - "label": "CATALYZES", - "from": 3718379, - "to": 3689448, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174395, - "label": "CATALYZES", - "from": 3707974, - "to": 3689451, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207164, - "label": "ENCODES", - "from": 3716672, - "to": 3712346, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207169, - "label": "COMPONENT_OF", - "from": 3712262, - "to": 3712349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174401, - "label": "CATALYZES", - "from": 3714801, - "to": 3689454, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207175, - "label": "COMPONENT_OF", - "from": 3706043, - "to": 3712354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174406, - "label": "CATALYZES", - "from": 3689456, - "to": 3706551, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403776, - "label": "ELEMENT_OF", - "from": 3716868, - "to": 3728888, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174405, - "label": "CATALYZES", - "from": 3711379, - "to": 3689456, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403789, - "label": "ELEMENT_OF", - "from": 3698712, - "to": 3728891, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174414, - "label": "CATALYZES", - "from": 3689460, - "to": 3709004, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174412, - "label": "CATALYZES", - "from": 3689459, - "to": 3705403, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174413, - "label": "CATALYZES", - "from": 3712585, - "to": 3689460, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174426, - "label": "CATALYZES", - "from": 3689466, - "to": 3709535, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403806, - "label": "ELEMENT_OF", - "from": 3701833, - "to": 3728896, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174427, - "label": "CATALYZES", - "from": 3710433, - "to": 3689467, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403804, - "label": "ELEMENT_OF", - "from": 3720037, - "to": 3728895, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174425, - "label": "CATALYZES", - "from": 3711555, - "to": 3689466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207192, - "label": "COMPONENT_OF", - "from": 3710217, - "to": 3712364, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207199, - "label": "COMPONENT_OF", - "from": 3715151, - "to": 3712370, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174430, - "label": "CATALYZES", - "from": 3689468, - "to": 3708653, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207198, - "label": "ENCODES", - "from": 3694042, - "to": 3712369, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174428, - "label": "CATALYZES", - "from": 3689467, - "to": 3708995, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174429, - "label": "CATALYZES", - "from": 3712648, - "to": 3689468, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174434, - "label": "CATALYZES", - "from": 3689470, - "to": 3700779, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174435, - "label": "CATALYZES", - "from": 3712798, - "to": 3689471, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174433, - "label": "CATALYZES", - "from": 3714304, - "to": 3689470, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174439, - "label": "CATALYZES", - "from": 3714826, - "to": 3689473, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174436, - "label": "CATALYZES", - "from": 3689471, - "to": 3706679, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207205, - "label": "COMPONENT_OF", - "from": 3710213, - "to": 3712372, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403809, - "label": "ELEMENT_OF", - "from": 3693786, - "to": 3728898, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403822, - "label": "ELEMENT_OF", - "from": 3696079, - "to": 3728901, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174447, - "label": "CATALYZES", - "from": 3710433, - "to": 3689477, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207219, - "label": "COMPONENT_OF", - "from": 3714290, - "to": 3712378, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305524, - "label": "REGULATES", - "from": 3716152, - "to": 3726737, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305525, - "label": "REGULATES", - "from": 3679440, - "to": 3716152, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174451, - "label": "CATALYZES", - "from": 3714255, - "to": 3689479, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207217, - "label": "COMPONENT_OF", - "from": 3714923, - "to": 3712376, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174448, - "label": "CATALYZES", - "from": 3689477, - "to": 3705246, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207222, - "label": "COMPONENT_OF", - "from": 3713950, - "to": 3712380, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305521, - "label": "REGULATES", - "from": 3716151, - "to": 3728035, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305522, - "label": "REGULATES", - "from": 3679440, - "to": 3716151, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174452, - "label": "CATALYZES", - "from": 3689479, - "to": 3708505, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207226, - "label": "COMPONENT_OF", - "from": 3702218, - "to": 3712382, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174459, - "label": "CATALYZES", - "from": 3712382, - "to": 3689483, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305528, - "label": "REGULATES", - "from": 3677689, - "to": 3716153, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403834, - "label": "ELEMENT_OF", - "from": 3716993, - "to": 3728904, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174460, - "label": "CATALYZES", - "from": 3689483, - "to": 3705546, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305531, - "label": "REGULATES", - "from": 3679440, - "to": 3716154, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174466, - "label": "CATALYZES", - "from": 3689486, - "to": 3709557, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207235, - "label": "ENCODES", - "from": 3716786, - "to": 3712389, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305540, - "label": "REGULATES", - "from": 3679440, - "to": 3716157, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403847, - "label": "ELEMENT_OF", - "from": 3698783, - "to": 3728907, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240002, - "label": "PRODUCES", - "from": 3707486, - "to": 3684251, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305542, - "label": "REGULATES", - "from": 3716158, - "to": 3699956, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305543, - "label": "REGULATES", - "from": 3679440, - "to": 3716158, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305536, - "label": "REGULATES", - "from": 3716156, - "to": 3720339, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240006, - "label": "PRODUCES", - "from": 3707487, - "to": 3678962, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174471, - "label": "CATALYZES", - "from": 3711591, - "to": 3689489, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305537, - "label": "REGULATES", - "from": 3679440, - "to": 3716156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240005, - "label": "CONSUMED_BY", - "from": 3677788, - "to": 3707487, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403841, - "label": "ELEMENT_OF", - "from": 3716770, - "to": 3728905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174469, - "label": "CATALYZES", - "from": 3712727, - "to": 3689488, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240011, - "label": "CONSUMED_BY", - "from": 3677796, - "to": 3707489, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305548, - "label": "REGULATES", - "from": 3716160, - "to": 3694988, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305549, - "label": "REGULATES", - "from": 3679440, - "to": 3716160, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207241, - "label": "COMPONENT_OF", - "from": 3704531, - "to": 3712394, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240009, - "label": "PRODUCES", - "from": 3707488, - "to": 3669234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403853, - "label": "ELEMENT_OF", - "from": 3699284, - "to": 3728908, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174479, - "label": "CATALYZES", - "from": 3710433, - "to": 3689493, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240013, - "label": "PRODUCES", - "from": 3707489, - "to": 3684309, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207245, - "label": "COMPONENT_OF", - "from": 3707962, - "to": 3712396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240012, - "label": "PRODUCES", - "from": 3707489, - "to": 3666911, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403862, - "label": "ELEMENT_OF", - "from": 3707326, - "to": 3728913, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207251, - "label": "COMPONENT_OF", - "from": 3704424, - "to": 3712401, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240017, - "label": "PRODUCES", - "from": 3707490, - "to": 3682030, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240016, - "label": "CONSUMED_BY", - "from": 3715467, - "to": 3707490, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240023, - "label": "CONSUMED_BY", - "from": 3677368, - "to": 3707492, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305554, - "label": "REGULATES", - "from": 3716162, - "to": 3701942, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305555, - "label": "REGULATES", - "from": 3679440, - "to": 3716162, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305564, - "label": "REGULATES", - "from": 3682143, - "to": 3716165, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305566, - "label": "REGULATES", - "from": 3716166, - "to": 3697128, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207257, - "label": "COMPONENT_OF", - "from": 3712674, - "to": 3712405, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305567, - "label": "REGULATES", - "from": 3679440, - "to": 3716166, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305560, - "label": "REGULATES", - "from": 3716164, - "to": 3699666, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240030, - "label": "CONSUMED_BY", - "from": 3681987, - "to": 3707494, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305561, - "label": "REGULATES", - "from": 3679440, - "to": 3716164, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305563, - "label": "REGULATES", - "from": 3716165, - "to": 3691028, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403865, - "label": "ELEMENT_OF", - "from": 3701796, - "to": 3728914, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305572, - "label": "REGULATES", - "from": 3716168, - "to": 3700234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403878, - "label": "ELEMENT_OF", - "from": 3697529, - "to": 3728915, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305573, - "label": "REGULATES", - "from": 3711269, - "to": 3716168, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240032, - "label": "CONSUMED_BY", - "from": 3684186, - "to": 3707495, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305575, - "label": "REGULATES", - "from": 3716169, - "to": 3697049, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240038, - "label": "CONSUMED_BY", - "from": 3681568, - "to": 3707496, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403886, - "label": "ELEMENT_OF", - "from": 3699446, - "to": 3728917, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305576, - "label": "REGULATES", - "from": 3679440, - "to": 3716169, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240051, - "label": "CONSUMED_BY", - "from": 3666725, - "to": 3707500, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403895, - "label": "ELEMENT_OF", - "from": 3711889, - "to": 3728919, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403892, - "label": "ELEMENT_OF", - "from": 3701395, - "to": 3728918, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305590, - "label": "REGULATES", - "from": 3716174, - "to": 3726509, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305591, - "label": "REGULATES", - "from": 3679440, - "to": 3716174, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305585, - "label": "REGULATES", - "from": 3679440, - "to": 3716172, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305597, - "label": "REGULATES", - "from": 3679440, - "to": 3716176, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403900, - "label": "ELEMENT_OF", - "from": 3693893, - "to": 3728920, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207294, - "label": "ENCODES", - "from": 3702865, - "to": 3712434, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305594, - "label": "REGULATES", - "from": 3679440, - "to": 3716175, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403910, - "label": "ELEMENT_OF", - "from": 3699101, - "to": 3728924, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305605, - "label": "REGULATES", - "from": 3716179, - "to": 3687953, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305606, - "label": "REGULATES", - "from": 3677501, - "to": 3716179, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207297, - "label": "COMPONENT_OF", - "from": 3707989, - "to": 3712437, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403906, - "label": "ELEMENT_OF", - "from": 3699271, - "to": 3728922, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207301, - "label": "COMPONENT_OF", - "from": 3708004, - "to": 3712441, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305602, - "label": "REGULATES", - "from": 3716178, - "to": 3726180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305603, - "label": "REGULATES", - "from": 3679440, - "to": 3716178, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305612, - "label": "REGULATES", - "from": 3679440, - "to": 3716181, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403916, - "label": "ELEMENT_OF", - "from": 3711790, - "to": 3728927, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305614, - "label": "REGULATES", - "from": 3716182, - "to": 3697098, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240073, - "label": "CONSUMED_BY", - "from": 3710222, - "to": 3707505, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305615, - "label": "REGULATES", - "from": 3679440, - "to": 3716182, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305608, - "label": "REGULATES", - "from": 3716180, - "to": 3728059, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305609, - "label": "REGULATES", - "from": 3679440, - "to": 3716180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207309, - "label": "COMPONENT_OF", - "from": 3705841, - "to": 3712449, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240076, - "label": "CONSUMED_BY", - "from": 3677368, - "to": 3707506, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305611, - "label": "REGULATES", - "from": 3716181, - "to": 3727075, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305620, - "label": "REGULATES", - "from": 3716184, - "to": 3698033, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305621, - "label": "REGULATES", - "from": 3679440, - "to": 3716184, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207313, - "label": "COMPONENT_OF", - "from": 3708378, - "to": 3712453, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207312, - "label": "ENCODES", - "from": 3693955, - "to": 3712452, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240087, - "label": "CONSUMED_BY", - "from": 3681298, - "to": 3707509, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240085, - "label": "CONSUMED_BY", - "from": 3685566, - "to": 3707508, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207323, - "label": "COMPONENT_OF", - "from": 3714665, - "to": 3712461, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305629, - "label": "REGULATES", - "from": 3716187, - "to": 3694730, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240089, - "label": "PRODUCES", - "from": 3707509, - "to": 3682011, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305630, - "label": "REGULATES", - "from": 3711269, - "to": 3716187, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305624, - "label": "REGULATES", - "from": 3677438, - "to": 3716185, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305626, - "label": "REGULATES", - "from": 3716186, - "to": 3696222, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305627, - "label": "REGULATES", - "from": 3679440, - "to": 3716186, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305636, - "label": "REGULATES", - "from": 3677787, - "to": 3716189, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240098, - "label": "CONSUMED_BY", - "from": 3670744, - "to": 3707512, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305638, - "label": "REGULATES", - "from": 3716190, - "to": 3695144, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207328, - "label": "ENCODES", - "from": 3699063, - "to": 3712466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305639, - "label": "REGULATES", - "from": 3711269, - "to": 3716190, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305633, - "label": "REGULATES", - "from": 3711269, - "to": 3716188, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305644, - "label": "REGULATES", - "from": 3716192, - "to": 3697906, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305645, - "label": "REGULATES", - "from": 3711269, - "to": 3716192, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207336, - "label": "COMPONENT_OF", - "from": 3712329, - "to": 3712471, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305647, - "label": "REGULATES", - "from": 3716193, - "to": 3697539, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240111, - "label": "PRODUCES", - "from": 3707514, - "to": 3684310, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207342, - "label": "ENCODES", - "from": 3690781, - "to": 3712476, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305641, - "label": "REGULATES", - "from": 3716191, - "to": 3685747, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240109, - "label": "CONSUMED_BY", - "from": 3715467, - "to": 3707514, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305642, - "label": "REGULATES", - "from": 3683877, - "to": 3716191, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240115, - "label": "CONSUMED_BY", - "from": 3706167, - "to": 3707515, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207347, - "label": "ENCODES", - "from": 3701744, - "to": 3712480, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305648, - "label": "REGULATES", - "from": 3679440, - "to": 3716193, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240117, - "label": "PRODUCES", - "from": 3707515, - "to": 3714656, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240116, - "label": "PRODUCES", - "from": 3707515, - "to": 3712308, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207355, - "label": "COMPONENT_OF", - "from": 3712437, - "to": 3712486, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305662, - "label": "REGULATES", - "from": 3716198, - "to": 3726751, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305663, - "label": "REGULATES", - "from": 3679440, - "to": 3716198, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305657, - "label": "REGULATES", - "from": 3711269, - "to": 3716196, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240124, - "label": "CONSUMED_BY", - "from": 3682200, - "to": 3707517, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240131, - "label": "CONSUMED_BY", - "from": 3681249, - "to": 3707518, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305669, - "label": "REGULATES", - "from": 3679440, - "to": 3716200, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240134, - "label": "CONSUMED_BY", - "from": 3681169, - "to": 3707519, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305666, - "label": "REGULATES", - "from": 3679440, - "to": 3716199, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240139, - "label": "CONSUMED_BY", - "from": 3677707, - "to": 3707520, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305677, - "label": "REGULATES", - "from": 3716203, - "to": 3685703, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305678, - "label": "REGULATES", - "from": 3677711, - "to": 3716203, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240137, - "label": "PRODUCES", - "from": 3707519, - "to": 3681398, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305674, - "label": "REGULATES", - "from": 3716202, - "to": 3726611, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305675, - "label": "REGULATES", - "from": 3679440, - "to": 3716202, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305684, - "label": "REGULATES", - "from": 3679440, - "to": 3716205, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305680, - "label": "REGULATES", - "from": 3716204, - "to": 3727626, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240151, - "label": "PRODUCES", - "from": 3707522, - "to": 3666602, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305681, - "label": "REGULATES", - "from": 3679440, - "to": 3716204, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305683, - "label": "REGULATES", - "from": 3716205, - "to": 3697635, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240155, - "label": "PRODUCES", - "from": 3707523, - "to": 3671824, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305693, - "label": "REGULATES", - "from": 3679440, - "to": 3716208, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305702, - "label": "REGULATES", - "from": 3711269, - "to": 3716211, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240167, - "label": "PRODUCES", - "from": 3707526, - "to": 3669028, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305698, - "label": "REGULATES", - "from": 3716210, - "to": 3699446, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305699, - "label": "REGULATES", - "from": 3679440, - "to": 3716210, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240170, - "label": "CONSUMED_BY", - "from": 3677196, - "to": 3707527, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305711, - "label": "REGULATES", - "from": 3711269, - "to": 3716214, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305704, - "label": "REGULATES", - "from": 3716212, - "to": 3695913, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305705, - "label": "REGULATES", - "from": 3711269, - "to": 3716212, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240172, - "label": "PRODUCES", - "from": 3707527, - "to": 3675452, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305716, - "label": "REGULATES", - "from": 3716216, - "to": 3696368, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240179, - "label": "PRODUCES", - "from": 3707528, - "to": 3667418, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305717, - "label": "REGULATES", - "from": 3711269, - "to": 3716216, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240176, - "label": "CONSUMED_BY", - "from": 3667449, - "to": 3707528, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240182, - "label": "CONSUMED_BY", - "from": 3684352, - "to": 3707529, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305720, - "label": "REGULATES", - "from": 3679440, - "to": 3716217, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240188, - "label": "PRODUCES", - "from": 3707530, - "to": 3681782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240195, - "label": "PRODUCES", - "from": 3707531, - "to": 3677478, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305732, - "label": "REGULATES", - "from": 3679440, - "to": 3716221, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240194, - "label": "PRODUCES", - "from": 3707531, - "to": 3679386, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240199, - "label": "CONSUMED_BY", - "from": 3681547, - "to": 3707532, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240197, - "label": "PRODUCES", - "from": 3707531, - "to": 3668101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240196, - "label": "PRODUCES", - "from": 3707531, - "to": 3710504, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305731, - "label": "REGULATES", - "from": 3716221, - "to": 3695887, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305741, - "label": "REGULATES", - "from": 3679440, - "to": 3716224, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240201, - "label": "CONSUMED_BY", - "from": 3684156, - "to": 3707533, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305743, - "label": "REGULATES", - "from": 3716225, - "to": 3725962, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240207, - "label": "CONSUMED_BY", - "from": 3673110, - "to": 3707534, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240205, - "label": "PRODUCES", - "from": 3707533, - "to": 3667416, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240204, - "label": "PRODUCES", - "from": 3707533, - "to": 3684155, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240209, - "label": "PRODUCES", - "from": 3707534, - "to": 3677107, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305750, - "label": "REGULATES", - "from": 3679440, - "to": 3716227, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240215, - "label": "CONSUMED_BY", - "from": 3681876, - "to": 3707536, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305744, - "label": "REGULATES", - "from": 3679440, - "to": 3716225, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240213, - "label": "CONSUMED_BY", - "from": 3684076, - "to": 3707535, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305747, - "label": "REGULATES", - "from": 3679065, - "to": 3716226, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240219, - "label": "CONSUMED_BY", - "from": 3685555, - "to": 3707537, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305756, - "label": "REGULATES", - "from": 3679440, - "to": 3716229, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305758, - "label": "REGULATES", - "from": 3716230, - "to": 3730318, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305759, - "label": "REGULATES", - "from": 3679440, - "to": 3716230, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305752, - "label": "REGULATES", - "from": 3716228, - "to": 3691489, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240222, - "label": "PRODUCES", - "from": 3707537, - "to": 3681891, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305753, - "label": "REGULATES", - "from": 3677605, - "to": 3716228, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305764, - "label": "REGULATES", - "from": 3716232, - "to": 3697560, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305765, - "label": "REGULATES", - "from": 3679440, - "to": 3716232, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240231, - "label": "CONSUMED_BY", - "from": 3677460, - "to": 3707539, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305762, - "label": "REGULATES", - "from": 3681281, - "to": 3716231, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305774, - "label": "REGULATES", - "from": 3677466, - "to": 3716235, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240232, - "label": "PRODUCES", - "from": 3707539, - "to": 3669514, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240239, - "label": "PRODUCES", - "from": 3707540, - "to": 3668925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240238, - "label": "CONSUMED_BY", - "from": 3671355, - "to": 3707540, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305770, - "label": "REGULATES", - "from": 3716234, - "to": 3699331, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305771, - "label": "REGULATES", - "from": 3679440, - "to": 3716234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305780, - "label": "REGULATES", - "from": 3679440, - "to": 3716237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305783, - "label": "REGULATES", - "from": 3711269, - "to": 3716238, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305776, - "label": "REGULATES", - "from": 3716236, - "to": 3700058, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305777, - "label": "REGULATES", - "from": 3679440, - "to": 3716236, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305779, - "label": "REGULATES", - "from": 3716237, - "to": 3697016, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305788, - "label": "REGULATES", - "from": 3716240, - "to": 3697877, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305789, - "label": "REGULATES", - "from": 3679440, - "to": 3716240, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305797, - "label": "REGULATES", - "from": 3716243, - "to": 3694557, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305798, - "label": "REGULATES", - "from": 3711269, - "to": 3716243, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305795, - "label": "REGULATES", - "from": 3711269, - "to": 3716242, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305804, - "label": "REGULATES", - "from": 3684169, - "to": 3716245, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305806, - "label": "REGULATES", - "from": 3716246, - "to": 3695286, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305807, - "label": "REGULATES", - "from": 3679440, - "to": 3716246, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305800, - "label": "REGULATES", - "from": 3716244, - "to": 3699624, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305801, - "label": "REGULATES", - "from": 3679440, - "to": 3716244, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305812, - "label": "REGULATES", - "from": 3716248, - "to": 3727447, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305813, - "label": "REGULATES", - "from": 3679440, - "to": 3716248, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305810, - "label": "REGULATES", - "from": 3684067, - "to": 3716247, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305821, - "label": "REGULATES", - "from": 3716251, - "to": 3689447, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305822, - "label": "REGULATES", - "from": 3677560, - "to": 3716251, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305816, - "label": "REGULATES", - "from": 3679440, - "to": 3716249, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305819, - "label": "REGULATES", - "from": 3679440, - "to": 3716250, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305828, - "label": "REGULATES", - "from": 3677688, - "to": 3716253, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305830, - "label": "REGULATES", - "from": 3716254, - "to": 3729229, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305831, - "label": "REGULATES", - "from": 3679440, - "to": 3716254, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305825, - "label": "REGULATES", - "from": 3679440, - "to": 3716252, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305836, - "label": "REGULATES", - "from": 3716256, - "to": 3726014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305837, - "label": "REGULATES", - "from": 3679440, - "to": 3716256, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305833, - "label": "REGULATES", - "from": 3716255, - "to": 3727104, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305834, - "label": "REGULATES", - "from": 3679440, - "to": 3716255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305842, - "label": "REGULATES", - "from": 3716258, - "to": 3697862, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305843, - "label": "REGULATES", - "from": 3679440, - "to": 3716258, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305852, - "label": "REGULATES", - "from": 3679440, - "to": 3716261, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305855, - "label": "REGULATES", - "from": 3711269, - "to": 3716262, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305851, - "label": "REGULATES", - "from": 3716261, - "to": 3694578, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305860, - "label": "REGULATES", - "from": 3716264, - "to": 3696118, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305861, - "label": "REGULATES", - "from": 3679440, - "to": 3716264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305858, - "label": "REGULATES", - "from": 3679096, - "to": 3716263, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305870, - "label": "REGULATES", - "from": 3711269, - "to": 3716267, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305866, - "label": "REGULATES", - "from": 3716266, - "to": 3696323, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305867, - "label": "REGULATES", - "from": 3711269, - "to": 3716266, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305879, - "label": "REGULATES", - "from": 3679440, - "to": 3716270, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305873, - "label": "REGULATES", - "from": 3711269, - "to": 3716268, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305885, - "label": "REGULATES", - "from": 3679440, - "to": 3716272, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305887, - "label": "REGULATES", - "from": 3716273, - "to": 3729238, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305894, - "label": "REGULATES", - "from": 3679440, - "to": 3716275, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305888, - "label": "REGULATES", - "from": 3679440, - "to": 3716273, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305890, - "label": "REGULATES", - "from": 3716274, - "to": 3726116, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305891, - "label": "REGULATES", - "from": 3679440, - "to": 3716274, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305900, - "label": "REGULATES", - "from": 3679440, - "to": 3716277, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305902, - "label": "REGULATES", - "from": 3716278, - "to": 3728803, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305903, - "label": "REGULATES", - "from": 3679440, - "to": 3716278, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305906, - "label": "REGULATES", - "from": 3679440, - "to": 3716279, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207604, - "label": "COMPONENT_OF", - "from": 3708203, - "to": 3712494, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207609, - "label": "COMPONENT_OF", - "from": 3708228, - "to": 3712498, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305918, - "label": "REGULATES", - "from": 3711269, - "to": 3716283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305912, - "label": "REGULATES", - "from": 3679440, - "to": 3716281, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305924, - "label": "REGULATES", - "from": 3679440, - "to": 3716285, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207617, - "label": "COMPONENT_OF", - "from": 3715335, - "to": 3712504, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305920, - "label": "REGULATES", - "from": 3716284, - "to": 3727423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305921, - "label": "REGULATES", - "from": 3679440, - "to": 3716284, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371468, - "label": "REGULATES", - "from": 3710594, - "to": 3723046, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305933, - "label": "REGULATES", - "from": 3677496, - "to": 3716288, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305935, - "label": "REGULATES", - "from": 3716289, - "to": 3697938, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371465, - "label": "REGULATES", - "from": 3723046, - "to": 3697667, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371464, - "label": "BINDS", - "from": 3723046, - "to": 3686133, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305930, - "label": "REGULATES", - "from": 3679440, - "to": 3716287, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207634, - "label": "COMPONENT_OF", - "from": 3705800, - "to": 3712519, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305936, - "label": "REGULATES", - "from": 3711269, - "to": 3716289, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305938, - "label": "REGULATES", - "from": 3716290, - "to": 3699364, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305939, - "label": "REGULATES", - "from": 3679440, - "to": 3716290, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305948, - "label": "REGULATES", - "from": 3679440, - "to": 3716293, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207646, - "label": "COMPONENT_OF", - "from": 3714162, - "to": 3712527, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305957, - "label": "REGULATES", - "from": 3679440, - "to": 3716296, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207650, - "label": "COMPONENT_OF", - "from": 3702290, - "to": 3712531, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207649, - "label": "ENCODES", - "from": 3712105, - "to": 3712530, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207655, - "label": "COMPONENT_OF", - "from": 3706225, - "to": 3712535, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305953, - "label": "REGULATES", - "from": 3716295, - "to": 3727370, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305954, - "label": "REGULATES", - "from": 3679440, - "to": 3716295, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207652, - "label": "COMPONENT_OF", - "from": 3715163, - "to": 3712533, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371501, - "label": "REGULATES", - "from": 3711285, - "to": 3723051, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207659, - "label": "ENCODES", - "from": 3699093, - "to": 3712538, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305966, - "label": "REGULATES", - "from": 3679440, - "to": 3716299, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371497, - "label": "BINDS", - "from": 3723051, - "to": 3683185, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305960, - "label": "REGULATES", - "from": 3679440, - "to": 3716297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207661, - "label": "COMPONENT_OF", - "from": 3711453, - "to": 3712539, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371498, - "label": "REGULATES", - "from": 3723051, - "to": 3701894, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305972, - "label": "REGULATES", - "from": 3679440, - "to": 3716301, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305974, - "label": "REGULATES", - "from": 3716302, - "to": 3727349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305975, - "label": "REGULATES", - "from": 3679440, - "to": 3716302, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305969, - "label": "REGULATES", - "from": 3677714, - "to": 3716300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305981, - "label": "REGULATES", - "from": 3679440, - "to": 3716304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305977, - "label": "REGULATES", - "from": 3716303, - "to": 3697901, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305978, - "label": "REGULATES", - "from": 3679440, - "to": 3716303, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305989, - "label": "REGULATES", - "from": 3716307, - "to": 3726305, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305990, - "label": "REGULATES", - "from": 3679440, - "to": 3716307, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305984, - "label": "REGULATES", - "from": 3677414, - "to": 3716305, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207686, - "label": "COMPONENT_OF", - "from": 3711658, - "to": 3712557, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305986, - "label": "REGULATES", - "from": 3716306, - "to": 3697990, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305987, - "label": "REGULATES", - "from": 3679440, - "to": 3716306, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305996, - "label": "REGULATES", - "from": 3682200, - "to": 3716309, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371532, - "label": "REGULATES", - "from": 3711285, - "to": 3723056, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207690, - "label": "ENCODES", - "from": 3693818, - "to": 3712560, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305998, - "label": "REGULATES", - "from": 3716310, - "to": 3697783, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305999, - "label": "REGULATES", - "from": 3679440, - "to": 3716310, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371528, - "label": "BINDS", - "from": 3723056, - "to": 3685309, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 305993, - "label": "REGULATES", - "from": 3679440, - "to": 3716308, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207694, - "label": "COMPONENT_OF", - "from": 3712797, - "to": 3712563, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371531, - "label": "REGULATES", - "from": 3723056, - "to": 3697513, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207699, - "label": "COMPONENT_OF", - "from": 3714025, - "to": 3712565, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207701, - "label": "COMPONENT_OF", - "from": 3712530, - "to": 3712567, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207705, - "label": "COMPONENT_OF", - "from": 3710352, - "to": 3712571, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207708, - "label": "COMPONENT_OF", - "from": 3705776, - "to": 3712573, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207715, - "label": "ENCODES", - "from": 3716792, - "to": 3712580, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240482, - "label": "CONSUMED_BY", - "from": 3677464, - "to": 3707541, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207714, - "label": "COMPONENT_OF", - "from": 3708268, - "to": 3712579, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207712, - "label": "COMPONENT_OF", - "from": 3704246, - "to": 3712577, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240485, - "label": "CONSUMED_BY", - "from": 3684009, - "to": 3707542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371564, - "label": "REGULATES", - "from": 3679440, - "to": 3723060, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207720, - "label": "COMPONENT_OF", - "from": 3715452, - "to": 3712585, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174963, - "label": "CATALYZES", - "from": 3715474, - "to": 3689495, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207729, - "label": "COMPONENT_OF", - "from": 3708327, - "to": 3712593, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174960, - "label": "CATALYZES", - "from": 3689493, - "to": 3706731, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240497, - "label": "PRODUCES", - "from": 3707544, - "to": 3676974, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207728, - "label": "ENCODES", - "from": 3706821, - "to": 3712592, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207735, - "label": "COMPONENT_OF", - "from": 3704101, - "to": 3712599, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207733, - "label": "COMPONENT_OF", - "from": 3702231, - "to": 3712597, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207739, - "label": "ENCODES", - "from": 3701460, - "to": 3712602, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240504, - "label": "CONSUMED_BY", - "from": 3684009, - "to": 3707546, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371582, - "label": "BINDS", - "from": 3723063, - "to": 3678905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240508, - "label": "PRODUCES", - "from": 3707546, - "to": 3671441, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207747, - "label": "ENCODES", - "from": 3693706, - "to": 3712607, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371584, - "label": "REGULATES", - "from": 3723063, - "to": 3699245, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174983, - "label": "CATALYZES", - "from": 3712698, - "to": 3689505, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371587, - "label": "REGULATES", - "from": 3714706, - "to": 3723063, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174990, - "label": "CATALYZES", - "from": 3689508, - "to": 3707486, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174991, - "label": "CATALYZES", - "from": 3712788, - "to": 3689509, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207757, - "label": "COMPONENT_OF", - "from": 3704110, - "to": 3712614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174989, - "label": "CATALYZES", - "from": 3715122, - "to": 3689508, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371604, - "label": "BINDS", - "from": 3723066, - "to": 3687337, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240529, - "label": "CONSUMED_BY", - "from": 3684274, - "to": 3707550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207761, - "label": "COMPONENT_OF", - "from": 3714797, - "to": 3712616, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 174993, - "label": "CATALYZES", - "from": 3715522, - "to": 3689510, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240535, - "label": "PRODUCES", - "from": 3707551, - "to": 3666923, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240534, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3707551, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207765, - "label": "ENCODES", - "from": 3707228, - "to": 3712619, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207764, - "label": "COMPONENT_OF", - "from": 3714458, - "to": 3712618, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207769, - "label": "ENCODES", - "from": 3693706, - "to": 3712621, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207775, - "label": "COMPONENT_OF", - "from": 3708361, - "to": 3712626, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371610, - "label": "REGULATES", - "from": 3711207, - "to": 3723066, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240546, - "label": "CONSUMED_BY", - "from": 3681698, - "to": 3707554, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207777, - "label": "ENCODES", - "from": 3693706, - "to": 3712627, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240545, - "label": "PRODUCES", - "from": 3707553, - "to": 3672859, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371617, - "label": "REGULATES", - "from": 3723068, - "to": 3701964, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240550, - "label": "PRODUCES", - "from": 3707554, - "to": 3683960, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175015, - "label": "CATALYZES", - "from": 3712531, - "to": 3689521, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371618, - "label": "REGULATES", - "from": 3708153, - "to": 3723068, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240554, - "label": "CONSUMED_BY", - "from": 3671834, - "to": 3707555, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207785, - "label": "COMPONENT_OF", - "from": 3706042, - "to": 3712632, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175017, - "label": "CATALYZES", - "from": 3712533, - "to": 3689522, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207791, - "label": "COMPONENT_OF", - "from": 3711510, - "to": 3712636, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240559, - "label": "CONSUMED_BY", - "from": 3681773, - "to": 3707556, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175023, - "label": "CATALYZES", - "from": 3707959, - "to": 3689525, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240556, - "label": "PRODUCES", - "from": 3707555, - "to": 3671807, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240562, - "label": "PRODUCES", - "from": 3707557, - "to": 3681706, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240566, - "label": "CONSUMED_BY", - "from": 3670737, - "to": 3707558, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207796, - "label": "ENCODES", - "from": 3701336, - "to": 3712641, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175029, - "label": "CATALYZES", - "from": 3714782, - "to": 3689528, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240570, - "label": "PRODUCES", - "from": 3707558, - "to": 3675216, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371644, - "label": "REGULATES", - "from": 3677368, - "to": 3723075, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207801, - "label": "ENCODES", - "from": 3702622, - "to": 3712645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207807, - "label": "ENCODES", - "from": 3694060, - "to": 3712650, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371643, - "label": "REGULATES", - "from": 3723075, - "to": 3689415, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207805, - "label": "ENCODES", - "from": 3694071, - "to": 3712648, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175042, - "label": "CATALYZES", - "from": 3689534, - "to": 3709540, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207810, - "label": "COMPONENT_OF", - "from": 3704316, - "to": 3712653, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240578, - "label": "PRODUCES", - "from": 3707560, - "to": 3675463, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240576, - "label": "CONSUMED_BY", - "from": 3677472, - "to": 3707560, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240583, - "label": "CONSUMED_BY", - "from": 3681533, - "to": 3707561, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 404418, - "label": "ELEMENT_OF", - "from": 3699540, - "to": 3728932, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175047, - "label": "CATALYZES", - "from": 3714541, - "to": 3689537, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 404416, - "label": "ELEMENT_OF", - "from": 3720012, - "to": 3728931, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207812, - "label": "COMPONENT_OF", - "from": 3710614, - "to": 3712655, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371663, - "label": "REGULATES", - "from": 3681891, - "to": 3723080, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175048, - "label": "CATALYZES", - "from": 3689537, - "to": 3708592, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371662, - "label": "REGULATES", - "from": 3723080, - "to": 3689839, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207821, - "label": "COMPONENT_OF", - "from": 3714099, - "to": 3712663, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175053, - "label": "CATALYZES", - "from": 3708178, - "to": 3689540, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240594, - "label": "PRODUCES", - "from": 3707563, - "to": 3669302, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240592, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3707563, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371665, - "label": "BINDS", - "from": 3723081, - "to": 3686319, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240598, - "label": "CONSUMED_BY", - "from": 3676028, - "to": 3707564, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175063, - "label": "CATALYZES", - "from": 3714146, - "to": 3689545, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371667, - "label": "REGULATES", - "from": 3712586, - "to": 3723081, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 404433, - "label": "ELEMENT_OF", - "from": 3694742, - "to": 3728936, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371666, - "label": "REGULATES", - "from": 3723081, - "to": 3697131, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 338909, - "label": "REGULATES", - "from": 3711313, - "to": 3719263, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207834, - "label": "COMPONENT_OF", - "from": 3712773, - "to": 3712674, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 338908, - "label": "REGULATES", - "from": 3719263, - "to": 3699554, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 404444, - "label": "ELEMENT_OF", - "from": 3712239, - "to": 3728939, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 207833, - "label": "ENCODES", - "from": 3717160, - "to": 3712673, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371679, - "label": "REGULATES", - "from": 3712586, - "to": 3723084, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175064, - "label": "CATALYZES", - "from": 3689545, - "to": 3708689, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175065, - "label": "CATALYZES", - "from": 3712579, - "to": 3689546, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 338905, - "label": "REGULATES", - "from": 3684243, - "to": 3719262, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 338904, - "label": "REGULATES", - "from": 3719262, - "to": 3685962, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240606, - "label": "PRODUCES", - "from": 3707565, - "to": 3677368, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175068, - "label": "CATALYZES", - "from": 3689547, - "to": 3709449, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240611, - "label": "CONSUMED_BY", - "from": 3671356, - "to": 3707567, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 338916, - "label": "REGULATES", - "from": 3711179, - "to": 3719265, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 338912, - "label": "REGULATES", - "from": 3677495, - "to": 3719264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240613, - "label": "PRODUCES", - "from": 3707567, - "to": 3675352, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371693, - "label": "REGULATES", - "from": 3723088, - "to": 3702018, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371692, - "label": "BINDS", - "from": 3723088, - "to": 3679535, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240618, - "label": "CONSUMED_BY", - "from": 3677441, - "to": 3707568, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371694, - "label": "REGULATES", - "from": 3712357, - "to": 3723088, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 404461, - "label": "ELEMENT_OF", - "from": 3700173, - "to": 3728940, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175087, - "label": "CATALYZES", - "from": 3715215, - "to": 3689557, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175084, - "label": "CATALYZES", - "from": 3689555, - "to": 3709428, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240621, - "label": "CONSUMED_BY", - "from": 3681951, - "to": 3707569, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 404470, - "label": "ELEMENT_OF", - "from": 3719988, - "to": 3728945, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240625, - "label": "PRODUCES", - "from": 3707569, - "to": 3681952, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 338934, - "label": "REGULATES", - "from": 3677232, - "to": 3719270, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175095, - "label": "CATALYZES", - "from": 3714723, - "to": 3689561, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240629, - "label": "CONSUMED_BY", - "from": 3714305, - "to": 3707570, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 404465, - "label": "ELEMENT_OF", - "from": 3717103, - "to": 3728942, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175093, - "label": "CATALYZES", - "from": 3702160, - "to": 3689560, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240634, - "label": "CONSUMED_BY", - "from": 3679139, - "to": 3707571, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 338942, - "label": "REGULATES", - "from": 3708153, - "to": 3719272, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240632, - "label": "PRODUCES", - "from": 3707570, - "to": 3710267, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 404475, - "label": "ELEMENT_OF", - "from": 3699626, - "to": 3728946, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175101, - "label": "CATALYZES", - "from": 3710132, - "to": 3689564, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240643, - "label": "PRODUCES", - "from": 3707573, - "to": 3710274, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371717, - "label": "REGULATES", - "from": 3710274, - "to": 3723094, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240641, - "label": "CONSUMED_BY", - "from": 3712525, - "to": 3707573, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 404482, - "label": "ELEMENT_OF", - "from": 3687209, - "to": 3728948, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 338944, - "label": "BINDS", - "from": 3719273, - "to": 3686573, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240646, - "label": "CONSUMED_BY", - "from": 3681547, - "to": 3707574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371715, - "label": "BINDS", - "from": 3723094, - "to": 3686126, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 338946, - "label": "REGULATES", - "from": 3711285, - "to": 3719273, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240651, - "label": "PRODUCES", - "from": 3707575, - "to": 3677328, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 338956, - "label": "REGULATES", - "from": 3677337, - "to": 3719276, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371724, - "label": "REGULATES", - "from": 3710228, - "to": 3723096, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240655, - "label": "PRODUCES", - "from": 3707576, - "to": 3671834, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240654, - "label": "CONSUMED_BY", - "from": 3669745, - "to": 3707576, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371720, - "label": "REGULATES", - "from": 3683877, - "to": 3723095, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175116, - "label": "CATALYZES", - "from": 3689571, - "to": 3708754, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371723, - "label": "REGULATES", - "from": 3723096, - "to": 3694848, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240659, - "label": "CONSUMED_BY", - "from": 3670742, - "to": 3707577, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 404503, - "label": "ELEMENT_OF", - "from": 3697444, - "to": 3728950, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371735, - "label": "REGULATES", - "from": 3723099, - "to": 3700173, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371734, - "label": "BINDS", - "from": 3723099, - "to": 3680005, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240660, - "label": "PRODUCES", - "from": 3707577, - "to": 3677698, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371736, - "label": "REGULATES", - "from": 3712602, - "to": 3723099, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 338971, - "label": "REGULATES", - "from": 3677474, - "to": 3719280, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240669, - "label": "CONSUMED_BY", - "from": 3710191, - "to": 3707579, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 338970, - "label": "REGULATES", - "from": 3719280, - "to": 3687824, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175133, - "label": "CATALYZES", - "from": 3702111, - "to": 3689580, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240679, - "label": "PRODUCES", - "from": 3707581, - "to": 3681653, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 338977, - "label": "REGULATES", - "from": 3719282, - "to": 3685627, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240677, - "label": "CONSUMED_BY", - "from": 3682104, - "to": 3707581, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 404512, - "label": "ELEMENT_OF", - "from": 3701336, - "to": 3728952, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 338978, - "label": "REGULATES", - "from": 3677394, - "to": 3719282, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240683, - "label": "CONSUMED_BY", - "from": 3673111, - "to": 3707582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 404526, - "label": "ELEMENT_OF", - "from": 3701962, - "to": 3728958, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 338988, - "label": "BINDS", - "from": 3719285, - "to": 3679539, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 404524, - "label": "ELEMENT_OF", - "from": 3717054, - "to": 3728957, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 338990, - "label": "REGULATES", - "from": 3715027, - "to": 3719285, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175150, - "label": "CATALYZES", - "from": 3689588, - "to": 3708922, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371753, - "label": "BINDS", - "from": 3723104, - "to": 3685049, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240685, - "label": "PRODUCES", - "from": 3707582, - "to": 3667461, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175148, - "label": "CATALYZES", - "from": 3689587, - "to": 3709356, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371755, - "label": "REGULATES", - "from": 3707928, - "to": 3723104, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 404521, - "label": "ELEMENT_OF", - "from": 3717118, - "to": 3728956, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175149, - "label": "CATALYZES", - "from": 3711481, - "to": 3689588, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371754, - "label": "REGULATES", - "from": 3723104, - "to": 3699259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240689, - "label": "CONSUMED_BY", - "from": 3670742, - "to": 3707583, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240692, - "label": "PRODUCES", - "from": 3707583, - "to": 3685519, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240699, - "label": "CONSUMED_BY", - "from": 3667467, - "to": 3707585, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339004, - "label": "REGULATES", - "from": 3711265, - "to": 3719289, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175163, - "label": "CATALYZES", - "from": 3714876, - "to": 3689595, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240701, - "label": "PRODUCES", - "from": 3707585, - "to": 3682041, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339003, - "label": "REGULATES", - "from": 3719289, - "to": 3694634, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339002, - "label": "BINDS", - "from": 3719289, - "to": 3682943, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240707, - "label": "PRODUCES", - "from": 3707586, - "to": 3666747, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175170, - "label": "CATALYZES", - "from": 3689598, - "to": 3707412, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 404548, - "label": "ELEMENT_OF", - "from": 3695020, - "to": 3728966, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339015, - "label": "REGULATES", - "from": 3683877, - "to": 3719292, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339014, - "label": "REGULATES", - "from": 3719292, - "to": 3691237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 404546, - "label": "ELEMENT_OF", - "from": 3716703, - "to": 3728965, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175175, - "label": "CATALYZES", - "from": 3708198, - "to": 3689601, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240715, - "label": "CONSUMED_BY", - "from": 3714193, - "to": 3707588, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175179, - "label": "CATALYZES", - "from": 3714758, - "to": 3689603, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175176, - "label": "CATALYZES", - "from": 3689601, - "to": 3709403, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339017, - "label": "BINDS", - "from": 3719293, - "to": 3683189, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339019, - "label": "REGULATES", - "from": 3715027, - "to": 3719293, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175180, - "label": "CATALYZES", - "from": 3689603, - "to": 3707516, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339018, - "label": "REGULATES", - "from": 3719293, - "to": 3700174, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175185, - "label": "CATALYZES", - "from": 3715116, - "to": 3689606, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175190, - "label": "CATALYZES", - "from": 3689608, - "to": 3705582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 404562, - "label": "ELEMENT_OF", - "from": 3698717, - "to": 3728970, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339024, - "label": "BINDS", - "from": 3719295, - "to": 3686433, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339026, - "label": "REGULATES", - "from": 3712586, - "to": 3719295, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175194, - "label": "CATALYZES", - "from": 3689610, - "to": 3705523, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175198, - "label": "CATALYZES", - "from": 3689612, - "to": 3707840, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175199, - "label": "CATALYZES", - "from": 3714109, - "to": 3689613, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 404568, - "label": "ELEMENT_OF", - "from": 3706825, - "to": 3728972, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175197, - "label": "CATALYZES", - "from": 3704224, - "to": 3689612, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339046, - "label": "BINDS", - "from": 3719301, - "to": 3687211, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339041, - "label": "REGULATES", - "from": 3711285, - "to": 3719299, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339040, - "label": "REGULATES", - "from": 3719299, - "to": 3695132, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339052, - "label": "REGULATES", - "from": 3710228, - "to": 3719302, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 404588, - "label": "ELEMENT_OF", - "from": 3698921, - "to": 3728976, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339048, - "label": "REGULATES", - "from": 3712308, - "to": 3719301, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339050, - "label": "BINDS", - "from": 3719302, - "to": 3683204, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339061, - "label": "BINDS", - "from": 3719305, - "to": 3678699, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 404599, - "label": "ELEMENT_OF", - "from": 3698913, - "to": 3728980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339063, - "label": "REGULATES", - "from": 3710228, - "to": 3719305, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339059, - "label": "REGULATES", - "from": 3684133, - "to": 3719304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 404605, - "label": "ELEMENT_OF", - "from": 3694933, - "to": 3728982, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339066, - "label": "REGULATES", - "from": 3677435, - "to": 3719306, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 404608, - "label": "ELEMENT_OF", - "from": 3699740, - "to": 3728984, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339085, - "label": "REGULATES", - "from": 3711207, - "to": 3719311, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339084, - "label": "REGULATES", - "from": 3719311, - "to": 3697485, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 404621, - "label": "ELEMENT_OF", - "from": 3720034, - "to": 3728986, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339081, - "label": "REGULATES", - "from": 3677460, - "to": 3719310, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339080, - "label": "REGULATES", - "from": 3719310, - "to": 3691407, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339083, - "label": "BINDS", - "from": 3719311, - "to": 3682913, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339092, - "label": "REGULATES", - "from": 3711285, - "to": 3719313, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339095, - "label": "REGULATES", - "from": 3677368, - "to": 3719314, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339091, - "label": "REGULATES", - "from": 3719313, - "to": 3699894, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339090, - "label": "BINDS", - "from": 3719313, - "to": 3680030, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 404637, - "label": "ELEMENT_OF", - "from": 3699570, - "to": 3728992, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339097, - "label": "BINDS", - "from": 3719315, - "to": 3683283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339099, - "label": "REGULATES", - "from": 3710270, - "to": 3719315, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339098, - "label": "REGULATES", - "from": 3719315, - "to": 3699277, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339113, - "label": "REGULATES", - "from": 3677414, - "to": 3719319, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208082, - "label": "COMPONENT_OF", - "from": 3711453, - "to": 3712680, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208090, - "label": "COMPONENT_OF", - "from": 3705845, - "to": 3712686, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208088, - "label": "MODIFIED_TO", - "from": 3712684, - "to": 3715108, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208101, - "label": "ENCODES", - "from": 3711828, - "to": 3712697, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208104, - "label": "COMPONENT_OF", - "from": 3718636, - "to": 3712698, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208111, - "label": "MODIFIED_TO", - "from": 3712705, - "to": 3705718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208110, - "label": "ENCODES", - "from": 3690694, - "to": 3712705, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208112, - "label": "MODIFIED_TO", - "from": 3712705, - "to": 3718478, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208122, - "label": "COMPONENT_OF", - "from": 3702269, - "to": 3712712, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208126, - "label": "COMPONENT_OF", - "from": 3710225, - "to": 3712716, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208124, - "label": "COMPONENT_OF", - "from": 3718333, - "to": 3712714, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208130, - "label": "COMPONENT_OF", - "from": 3714975, - "to": 3712720, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208136, - "label": "COMPONENT_OF", - "from": 3715354, - "to": 3712724, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208140, - "label": "COMPONENT_OF", - "from": 3706078, - "to": 3712725, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208146, - "label": "ENCODES", - "from": 3720022, - "to": 3712728, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208144, - "label": "MODIFIED_TO", - "from": 3712727, - "to": 3712666, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208151, - "label": "COMPONENT_OF", - "from": 3705913, - "to": 3712733, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208154, - "label": "COMPONENT_OF", - "from": 3712780, - "to": 3712735, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208167, - "label": "COMPONENT_OF", - "from": 3714363, - "to": 3712747, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208176, - "label": "COMPONENT_OF", - "from": 3710385, - "to": 3712750, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208180, - "label": "COMPONENT_OF", - "from": 3711528, - "to": 3712752, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208186, - "label": "COMPONENT_OF", - "from": 3708276, - "to": 3712754, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240963, - "label": "PRODUCES", - "from": 3707589, - "to": 3684200, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208192, - "label": "ENCODES", - "from": 3698891, - "to": 3712759, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240967, - "label": "PRODUCES", - "from": 3707590, - "to": 3677233, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240965, - "label": "CONSUMED_BY", - "from": 3679099, - "to": 3707590, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240970, - "label": "CONSUMED_BY", - "from": 3682144, - "to": 3707591, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208201, - "label": "COMPONENT_OF", - "from": 3718588, - "to": 3712765, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208204, - "label": "ENCODES", - "from": 3693802, - "to": 3712767, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240978, - "label": "PRODUCES", - "from": 3707592, - "to": 3682137, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240976, - "label": "CONSUMED_BY", - "from": 3715467, - "to": 3707592, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208213, - "label": "ENCODES", - "from": 3706796, - "to": 3712773, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240990, - "label": "PRODUCES", - "from": 3707594, - "to": 3669942, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240988, - "label": "CONSUMED_BY", - "from": 3669981, - "to": 3707594, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208220, - "label": "COMPONENT_OF", - "from": 3710535, - "to": 3712780, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208224, - "label": "COMPONENT_OF", - "from": 3711560, - "to": 3712784, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 240997, - "label": "CONSUMED_BY", - "from": 3677441, - "to": 3707596, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208229, - "label": "ENCODES", - "from": 3687580, - "to": 3712789, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208228, - "label": "COMPONENT_OF", - "from": 3708051, - "to": 3712788, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241000, - "label": "PRODUCES", - "from": 3707596, - "to": 3675475, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241006, - "label": "PRODUCES", - "from": 3707597, - "to": 3677409, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241004, - "label": "CONSUMED_BY", - "from": 3681528, - "to": 3707597, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208243, - "label": "ENCODES", - "from": 3701531, - "to": 3712799, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241010, - "label": "CONSUMED_BY", - "from": 3681242, - "to": 3707598, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208242, - "label": "COMPONENT_OF", - "from": 3715248, - "to": 3712798, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208241, - "label": "ENCODES", - "from": 3698868, - "to": 3712797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241015, - "label": "PRODUCES", - "from": 3707599, - "to": 3682148, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241013, - "label": "CONSUMED_BY", - "from": 3681822, - "to": 3707599, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241019, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3707600, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208248, - "label": "COMPONENT_OF", - "from": 3712369, - "to": 3713895, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208254, - "label": "ENCODES", - "from": 3690442, - "to": 3713902, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241021, - "label": "PRODUCES", - "from": 3707600, - "to": 3668093, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208253, - "label": "COMPONENT_OF", - "from": 3712759, - "to": 3713901, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208252, - "label": "ENCODES", - "from": 3698915, - "to": 3713900, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241026, - "label": "PRODUCES", - "from": 3707601, - "to": 3666576, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241031, - "label": "CONSUMED_BY", - "from": 3675450, - "to": 3707602, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208262, - "label": "COMPONENT_OF", - "from": 3714677, - "to": 3713905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241034, - "label": "PRODUCES", - "from": 3707602, - "to": 3675178, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241033, - "label": "PRODUCES", - "from": 3707602, - "to": 3675097, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208264, - "label": "COMPONENT_OF", - "from": 3708212, - "to": 3713907, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208270, - "label": "ENCODES", - "from": 3698792, - "to": 3713912, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208272, - "label": "ENCODES", - "from": 3719976, - "to": 3713914, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241047, - "label": "PRODUCES", - "from": 3707605, - "to": 3670431, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241045, - "label": "CONSUMED_BY", - "from": 3670598, - "to": 3707605, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241044, - "label": "PRODUCES", - "from": 3707604, - "to": 3679065, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241054, - "label": "PRODUCES", - "from": 3707606, - "to": 3670011, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241053, - "label": "PRODUCES", - "from": 3707606, - "to": 3667454, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241052, - "label": "CONSUMED_BY", - "from": 3673162, - "to": 3707606, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241059, - "label": "CONSUMED_BY", - "from": 3682112, - "to": 3707607, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208291, - "label": "COMPONENT_OF", - "from": 3715466, - "to": 3713930, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208290, - "label": "ENCODES", - "from": 3701756, - "to": 3713929, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339361, - "label": "REGULATES", - "from": 3710228, - "to": 3719321, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208292, - "label": "ENCODES", - "from": 3717103, - "to": 3713931, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241065, - "label": "CONSUMED_BY", - "from": 3677648, - "to": 3707608, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339375, - "label": "REGULATES", - "from": 3677458, - "to": 3719325, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208303, - "label": "ENCODES", - "from": 3702743, - "to": 3713939, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208302, - "label": "COMPONENT_OF", - "from": 3715223, - "to": 3713938, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241069, - "label": "PRODUCES", - "from": 3707608, - "to": 3684271, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339381, - "label": "BINDS", - "from": 3719327, - "to": 3686223, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339383, - "label": "REGULATES", - "from": 3711189, - "to": 3719327, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208305, - "label": "ENCODES", - "from": 3717140, - "to": 3713941, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208304, - "label": "COMPONENT_OF", - "from": 3718500, - "to": 3713940, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339377, - "label": "BINDS", - "from": 3719326, - "to": 3686413, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241077, - "label": "CONSUMED_BY", - "from": 3684172, - "to": 3707610, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339379, - "label": "REGULATES", - "from": 3711404, - "to": 3719326, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208309, - "label": "ENCODES", - "from": 3694099, - "to": 3713945, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339378, - "label": "REGULATES", - "from": 3719326, - "to": 3699672, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241082, - "label": "CONSUMED_BY", - "from": 3666888, - "to": 3707611, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208313, - "label": "ENCODES", - "from": 3701547, - "to": 3713950, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208312, - "label": "COMPONENT_OF", - "from": 3714903, - "to": 3713949, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339397, - "label": "REGULATES", - "from": 3679089, - "to": 3719331, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241094, - "label": "PRODUCES", - "from": 3707612, - "to": 3669277, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241092, - "label": "CONSUMED_BY", - "from": 3667467, - "to": 3707612, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339405, - "label": "REGULATES", - "from": 3712712, - "to": 3719333, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241098, - "label": "PRODUCES", - "from": 3707613, - "to": 3674873, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339407, - "label": "BINDS", - "from": 3719334, - "to": 3679523, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241106, - "label": "PRODUCES", - "from": 3707615, - "to": 3677015, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241105, - "label": "CONSUMED_BY", - "from": 3668939, - "to": 3707615, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241111, - "label": "CONSUMED_BY", - "from": 3676152, - "to": 3707616, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339409, - "label": "REGULATES", - "from": 3711237, - "to": 3719334, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241115, - "label": "CONSUMED_BY", - "from": 3682000, - "to": 3707617, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241119, - "label": "CONSUMED_BY", - "from": 3673162, - "to": 3707618, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339419, - "label": "REGULATES", - "from": 3683877, - "to": 3719337, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241116, - "label": "PRODUCES", - "from": 3707617, - "to": 3684097, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339418, - "label": "REGULATES", - "from": 3719337, - "to": 3685900, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339429, - "label": "BINDS", - "from": 3719340, - "to": 3678557, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339431, - "label": "REGULATES", - "from": 3715127, - "to": 3719340, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339425, - "label": "BINDS", - "from": 3719339, - "to": 3682800, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241125, - "label": "CONSUMED_BY", - "from": 3683881, - "to": 3707619, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339427, - "label": "REGULATES", - "from": 3711384, - "to": 3719339, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339426, - "label": "REGULATES", - "from": 3719339, - "to": 3702013, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241135, - "label": "PRODUCES", - "from": 3707621, - "to": 3677667, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241133, - "label": "CONSUMED_BY", - "from": 3684109, - "to": 3707621, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241138, - "label": "CONSUMED_BY", - "from": 3681923, - "to": 3707622, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339447, - "label": "BINDS", - "from": 3719345, - "to": 3682832, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241141, - "label": "CONSUMED_BY", - "from": 3679065, - "to": 3707623, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241145, - "label": "CONSUMED_BY", - "from": 3676136, - "to": 3707624, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339449, - "label": "REGULATES", - "from": 3714081, - "to": 3719345, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241148, - "label": "PRODUCES", - "from": 3707624, - "to": 3669035, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241154, - "label": "CONSUMED_BY", - "from": 3676091, - "to": 3707626, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339460, - "label": "REGULATES", - "from": 3711281, - "to": 3719348, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339463, - "label": "REGULATES", - "from": 3684130, - "to": 3719349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339462, - "label": "REGULATES", - "from": 3719349, - "to": 3687998, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339456, - "label": "REGULATES", - "from": 3684067, - "to": 3719347, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339458, - "label": "BINDS", - "from": 3719348, - "to": 3679695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339465, - "label": "BINDS", - "from": 3719350, - "to": 3678783, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241166, - "label": "CONSUMED_BY", - "from": 3685582, - "to": 3707628, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339467, - "label": "REGULATES", - "from": 3711179, - "to": 3719350, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339466, - "label": "REGULATES", - "from": 3719350, - "to": 3699440, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372245, - "label": "REGULATES", - "from": 3712586, - "to": 3723107, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372253, - "label": "REGULATES", - "from": 3704409, - "to": 3723109, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339487, - "label": "BINDS", - "from": 3719356, - "to": 3685479, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241176, - "label": "CONSUMED_BY", - "from": 3667467, - "to": 3707630, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372249, - "label": "REGULATES", - "from": 3711265, - "to": 3723108, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241182, - "label": "CONSUMED_BY", - "from": 3670483, - "to": 3707631, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339480, - "label": "BINDS", - "from": 3719354, - "to": 3678725, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372251, - "label": "BINDS", - "from": 3723109, - "to": 3686580, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241180, - "label": "PRODUCES", - "from": 3707630, - "to": 3670382, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339482, - "label": "REGULATES", - "from": 3711285, - "to": 3719354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339493, - "label": "REGULATES", - "from": 3710270, - "to": 3719357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339492, - "label": "REGULATES", - "from": 3719357, - "to": 3699437, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339489, - "label": "REGULATES", - "from": 3714706, - "to": 3719356, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339491, - "label": "BINDS", - "from": 3719357, - "to": 3687188, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241188, - "label": "PRODUCES", - "from": 3707632, - "to": 3677049, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241194, - "label": "PRODUCES", - "from": 3707633, - "to": 3712684, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241192, - "label": "CONSUMED_BY", - "from": 3704339, - "to": 3707633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241196, - "label": "CONSUMED_BY", - "from": 3681204, - "to": 3707634, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372277, - "label": "BINDS", - "from": 3723116, - "to": 3678804, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339511, - "label": "REGULATES", - "from": 3712313, - "to": 3719362, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372279, - "label": "REGULATES", - "from": 3708326, - "to": 3723116, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339510, - "label": "REGULATES", - "from": 3719362, - "to": 3729366, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372278, - "label": "REGULATES", - "from": 3723116, - "to": 3697487, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339507, - "label": "REGULATES", - "from": 3667461, - "to": 3719361, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372275, - "label": "REGULATES", - "from": 3679145, - "to": 3723115, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339506, - "label": "REGULATES", - "from": 3719361, - "to": 3689104, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372274, - "label": "REGULATES", - "from": 3723115, - "to": 3689334, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175683, - "label": "CATALYZES", - "from": 3712750, - "to": 3689615, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175688, - "label": "CATALYZES", - "from": 3689617, - "to": 3700773, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175694, - "label": "CATALYZES", - "from": 3689620, - "to": 3707522, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175695, - "label": "CATALYZES", - "from": 3714392, - "to": 3689621, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175692, - "label": "CATALYZES", - "from": 3689619, - "to": 3700670, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175693, - "label": "CATALYZES", - "from": 3715403, - "to": 3689620, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175696, - "label": "CATALYZES", - "from": 3689621, - "to": 3708865, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175703, - "label": "CATALYZES", - "from": 3712380, - "to": 3689625, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372306, - "label": "REGULATES", - "from": 3718538, - "to": 3723123, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372317, - "label": "REGULATES", - "from": 3711265, - "to": 3723126, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339548, - "label": "REGULATES", - "from": 3710270, - "to": 3719372, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175710, - "label": "CATALYZES", - "from": 3689628, - "to": 3708532, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372315, - "label": "BINDS", - "from": 3723126, - "to": 3685392, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339546, - "label": "BINDS", - "from": 3719372, - "to": 3687303, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339557, - "label": "BINDS", - "from": 3719375, - "to": 3679882, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339559, - "label": "REGULATES", - "from": 3712401, - "to": 3719375, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372327, - "label": "BINDS", - "from": 3723129, - "to": 3687442, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339558, - "label": "REGULATES", - "from": 3719375, - "to": 3694707, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175713, - "label": "CATALYZES", - "from": 3714340, - "to": 3689630, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339553, - "label": "BINDS", - "from": 3719374, - "to": 3683197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339555, - "label": "REGULATES", - "from": 3711243, - "to": 3719374, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372332, - "label": "REGULATES", - "from": 3683877, - "to": 3723130, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175723, - "label": "CATALYZES", - "from": 3714322, - "to": 3689635, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339561, - "label": "BINDS", - "from": 3719376, - "to": 3686305, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372329, - "label": "REGULATES", - "from": 3711445, - "to": 3723129, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372328, - "label": "REGULATES", - "from": 3723129, - "to": 3697238, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339563, - "label": "REGULATES", - "from": 3712313, - "to": 3719376, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372331, - "label": "REGULATES", - "from": 3723130, - "to": 3686004, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175724, - "label": "CATALYZES", - "from": 3689635, - "to": 3705701, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339562, - "label": "REGULATES", - "from": 3719376, - "to": 3728006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175725, - "label": "CATALYZES", - "from": 3714554, - "to": 3689636, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175730, - "label": "CATALYZES", - "from": 3689638, - "to": 3707485, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175731, - "label": "CATALYZES", - "from": 3712560, - "to": 3689639, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372340, - "label": "REGULATES", - "from": 3710274, - "to": 3723132, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175729, - "label": "CATALYZES", - "from": 3710433, - "to": 3689638, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372338, - "label": "BINDS", - "from": 3723132, - "to": 3683218, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175738, - "label": "CATALYZES", - "from": 3689642, - "to": 3705188, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372348, - "label": "REGULATES", - "from": 3718538, - "to": 3723134, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175739, - "label": "CATALYZES", - "from": 3708387, - "to": 3689643, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339577, - "label": "REGULATES", - "from": 3711183, - "to": 3719380, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175743, - "label": "CATALYZES", - "from": 3710433, - "to": 3689645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175746, - "label": "CATALYZES", - "from": 3689646, - "to": 3705479, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405127, - "label": "ELEMENT_OF", - "from": 3686438, - "to": 3728996, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175744, - "label": "CATALYZES", - "from": 3689645, - "to": 3709327, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175745, - "label": "CATALYZES", - "from": 3710433, - "to": 3689646, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339585, - "label": "REGULATES", - "from": 3708153, - "to": 3719382, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372353, - "label": "BINDS", - "from": 3723136, - "to": 3679781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175751, - "label": "CATALYZES", - "from": 3714290, - "to": 3689649, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372355, - "label": "REGULATES", - "from": 3710228, - "to": 3723136, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372354, - "label": "REGULATES", - "from": 3723136, - "to": 3694724, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175752, - "label": "CATALYZES", - "from": 3689649, - "to": 3709052, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405131, - "label": "ELEMENT_OF", - "from": 3698916, - "to": 3728997, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175763, - "label": "CATALYZES", - "from": 3714255, - "to": 3689655, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405140, - "label": "ELEMENT_OF", - "from": 3695267, - "to": 3728998, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175764, - "label": "CATALYZES", - "from": 3689655, - "to": 3706760, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372370, - "label": "REGULATES", - "from": 3681638, - "to": 3723140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372381, - "label": "REGULATES", - "from": 3723143, - "to": 3696192, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372380, - "label": "BINDS", - "from": 3723143, - "to": 3687326, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405151, - "label": "ELEMENT_OF", - "from": 3695143, - "to": 3729000, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372382, - "label": "REGULATES", - "from": 3705945, - "to": 3723143, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372378, - "label": "REGULATES", - "from": 3710270, - "to": 3723142, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405158, - "label": "ELEMENT_OF", - "from": 3711745, - "to": 3729003, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175782, - "label": "CATALYZES", - "from": 3689664, - "to": 3707393, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405153, - "label": "ELEMENT_OF", - "from": 3701547, - "to": 3729001, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372397, - "label": "REGULATES", - "from": 3707928, - "to": 3723147, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405166, - "label": "ELEMENT_OF", - "from": 3694477, - "to": 3729007, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175791, - "label": "CATALYZES", - "from": 3710253, - "to": 3689669, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372395, - "label": "BINDS", - "from": 3723147, - "to": 3685354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175795, - "label": "CATALYZES", - "from": 3714249, - "to": 3689671, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405172, - "label": "ELEMENT_OF", - "from": 3680013, - "to": 3729009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175792, - "label": "CATALYZES", - "from": 3689669, - "to": 3707544, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405182, - "label": "ELEMENT_OF", - "from": 3718698, - "to": 3729014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175802, - "label": "CATALYZES", - "from": 3689674, - "to": 3700771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372412, - "label": "REGULATES", - "from": 3710270, - "to": 3723151, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372415, - "label": "REGULATES", - "from": 3723152, - "to": 3699412, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405181, - "label": "ELEMENT_OF", - "from": 3712107, - "to": 3729013, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372414, - "label": "BINDS", - "from": 3723152, - "to": 3686386, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175801, - "label": "CATALYZES", - "from": 3718460, - "to": 3689674, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372411, - "label": "REGULATES", - "from": 3723151, - "to": 3701985, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175810, - "label": "CATALYZES", - "from": 3689678, - "to": 3705271, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175809, - "label": "CATALYZES", - "from": 3708076, - "to": 3689678, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372416, - "label": "REGULATES", - "from": 3710270, - "to": 3723152, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175817, - "label": "CATALYZES", - "from": 3712698, - "to": 3689682, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405195, - "label": "ELEMENT_OF", - "from": 3694498, - "to": 3729017, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372437, - "label": "BINDS", - "from": 3723158, - "to": 3679901, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372439, - "label": "REGULATES", - "from": 3714081, - "to": 3723158, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372438, - "label": "REGULATES", - "from": 3723158, - "to": 3695275, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175831, - "label": "CATALYZES", - "from": 3711370, - "to": 3689689, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175829, - "label": "CATALYZES", - "from": 3713972, - "to": 3689688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405214, - "label": "ELEMENT_OF", - "from": 3698926, - "to": 3729022, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405213, - "label": "ELEMENT_OF", - "from": 3700078, - "to": 3729021, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175843, - "label": "CATALYZES", - "from": 3718537, - "to": 3689695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405219, - "label": "ELEMENT_OF", - "from": 3702754, - "to": 3729025, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405217, - "label": "ELEMENT_OF", - "from": 3702787, - "to": 3729024, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175851, - "label": "CATALYZES", - "from": 3714457, - "to": 3689699, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405229, - "label": "ELEMENT_OF", - "from": 3701575, - "to": 3729030, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372457, - "label": "REGULATES", - "from": 3723163, - "to": 3701940, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372456, - "label": "BINDS", - "from": 3723163, - "to": 3685166, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175852, - "label": "CATALYZES", - "from": 3689699, - "to": 3708941, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372458, - "label": "REGULATES", - "from": 3711265, - "to": 3723163, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405236, - "label": "ELEMENT_OF", - "from": 3698777, - "to": 3729034, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372471, - "label": "BINDS", - "from": 3723167, - "to": 3686538, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175863, - "label": "CATALYZES", - "from": 3713901, - "to": 3689705, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175866, - "label": "CATALYZES", - "from": 3689706, - "to": 3706608, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175865, - "label": "CATALYZES", - "from": 3714007, - "to": 3689706, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372473, - "label": "REGULATES", - "from": 3710270, - "to": 3723167, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175871, - "label": "CATALYZES", - "from": 3712798, - "to": 3689709, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175875, - "label": "CATALYZES", - "from": 3714255, - "to": 3689711, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405248, - "label": "ELEMENT_OF", - "from": 3706848, - "to": 3729038, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175876, - "label": "CATALYZES", - "from": 3689711, - "to": 3708713, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175877, - "label": "CATALYZES", - "from": 3708270, - "to": 3689712, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175883, - "label": "CATALYZES", - "from": 3710183, - "to": 3689715, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175887, - "label": "CATALYZES", - "from": 3712441, - "to": 3689717, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175890, - "label": "CATALYZES", - "from": 3689718, - "to": 3705571, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175889, - "label": "CATALYZES", - "from": 3718460, - "to": 3689718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175894, - "label": "CATALYZES", - "from": 3689720, - "to": 3709417, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175895, - "label": "CATALYZES", - "from": 3714814, - "to": 3689721, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175893, - "label": "CATALYZES", - "from": 3713895, - "to": 3689720, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175896, - "label": "CATALYZES", - "from": 3689721, - "to": 3708768, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175902, - "label": "CATALYZES", - "from": 3689724, - "to": 3707651, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175906, - "label": "CATALYZES", - "from": 3689726, - "to": 3707698, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405285, - "label": "ELEMENT_OF", - "from": 3699158, - "to": 3729045, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241446, - "label": "CONSUMED_BY", - "from": 3667467, - "to": 3707636, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405283, - "label": "ELEMENT_OF", - "from": 3697009, - "to": 3729044, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405280, - "label": "ELEMENT_OF", - "from": 3716868, - "to": 3729043, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241451, - "label": "CONSUMED_BY", - "from": 3670589, - "to": 3707637, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175914, - "label": "CATALYZES", - "from": 3689730, - "to": 3706678, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175915, - "label": "CATALYZES", - "from": 3715422, - "to": 3689731, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 175913, - "label": "CATALYZES", - "from": 3710432, - "to": 3689730, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241455, - "label": "PRODUCES", - "from": 3707638, - "to": 3670255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405291, - "label": "ELEMENT_OF", - "from": 3720011, - "to": 3729048, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241453, - "label": "CONSUMED_BY", - "from": 3670256, - "to": 3707638, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405288, - "label": "ELEMENT_OF", - "from": 3696054, - "to": 3729047, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405299, - "label": "ELEMENT_OF", - "from": 3701613, - "to": 3729053, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405304, - "label": "ELEMENT_OF", - "from": 3707054, - "to": 3729054, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241468, - "label": "CONSUMED_BY", - "from": 3681676, - "to": 3707641, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241478, - "label": "PRODUCES", - "from": 3707642, - "to": 3681885, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241476, - "label": "CONSUMED_BY", - "from": 3667467, - "to": 3707642, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241481, - "label": "CONSUMED_BY", - "from": 3684083, - "to": 3707643, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241484, - "label": "CONSUMED_BY", - "from": 3677549, - "to": 3707644, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405330, - "label": "ELEMENT_OF", - "from": 3694564, - "to": 3729062, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241492, - "label": "PRODUCES", - "from": 3707645, - "to": 3666807, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241499, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3707647, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241496, - "label": "CONSUMED_BY", - "from": 3679334, - "to": 3707646, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241507, - "label": "CONSUMED_BY", - "from": 3672997, - "to": 3707648, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241509, - "label": "PRODUCES", - "from": 3707648, - "to": 3684343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405345, - "label": "ELEMENT_OF", - "from": 3697908, - "to": 3729068, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241513, - "label": "CONSUMED_BY", - "from": 3679338, - "to": 3707649, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405352, - "label": "ELEMENT_OF", - "from": 3699145, - "to": 3729072, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241517, - "label": "PRODUCES", - "from": 3707650, - "to": 3675154, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241522, - "label": "PRODUCES", - "from": 3707651, - "to": 3679101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241526, - "label": "CONSUMED_BY", - "from": 3670737, - "to": 3707652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241533, - "label": "CONSUMED_BY", - "from": 3677600, - "to": 3707653, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241539, - "label": "CONSUMED_BY", - "from": 3685555, - "to": 3707654, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241543, - "label": "PRODUCES", - "from": 3707654, - "to": 3682118, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339841, - "label": "BINDS", - "from": 3719387, - "to": 3678498, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339843, - "label": "REGULATES", - "from": 3710270, - "to": 3719387, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339842, - "label": "REGULATES", - "from": 3719387, - "to": 3695235, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241547, - "label": "CONSUMED_BY", - "from": 3666563, - "to": 3707655, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339861, - "label": "REGULATES", - "from": 3712313, - "to": 3719392, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339860, - "label": "REGULATES", - "from": 3719392, - "to": 3729625, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339857, - "label": "REGULATES", - "from": 3677788, - "to": 3719391, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241559, - "label": "PRODUCES", - "from": 3707657, - "to": 3679389, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339856, - "label": "REGULATES", - "from": 3719391, - "to": 3685732, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241556, - "label": "CONSUMED_BY", - "from": 3677567, - "to": 3707657, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339869, - "label": "REGULATES", - "from": 3711183, - "to": 3719394, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241563, - "label": "CONSUMED_BY", - "from": 3677476, - "to": 3707658, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241567, - "label": "CONSUMED_BY", - "from": 3684076, - "to": 3707659, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339867, - "label": "BINDS", - "from": 3719394, - "to": 3678809, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208803, - "label": "COMPONENT_OF", - "from": 3706140, - "to": 3713955, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241579, - "label": "CONSUMED_BY", - "from": 3684130, - "to": 3707661, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208809, - "label": "ENCODES", - "from": 3717068, - "to": 3713960, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339883, - "label": "REGULATES", - "from": 3712357, - "to": 3719398, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241586, - "label": "PRODUCES", - "from": 3707662, - "to": 3685577, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241585, - "label": "PRODUCES", - "from": 3707662, - "to": 3679329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241591, - "label": "PRODUCES", - "from": 3707663, - "to": 3684397, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241590, - "label": "PRODUCES", - "from": 3707663, - "to": 3684353, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241589, - "label": "CONSUMED_BY", - "from": 3668943, - "to": 3707663, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339901, - "label": "REGULATES", - "from": 3679247, - "to": 3719403, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208827, - "label": "COMPONENT_OF", - "from": 3706187, - "to": 3713972, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241595, - "label": "PRODUCES", - "from": 3707664, - "to": 3666497, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339897, - "label": "REGULATES", - "from": 3719402, - "to": 3694722, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339896, - "label": "BINDS", - "from": 3719402, - "to": 3679825, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339898, - "label": "REGULATES", - "from": 3711247, - "to": 3719402, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339911, - "label": "BINDS", - "from": 3719406, - "to": 3680006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208843, - "label": "ENCODES", - "from": 3707139, - "to": 3713984, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339913, - "label": "REGULATES", - "from": 3712313, - "to": 3719406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339912, - "label": "REGULATES", - "from": 3719406, - "to": 3726326, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241612, - "label": "PRODUCES", - "from": 3707668, - "to": 3677287, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208849, - "label": "COMPONENT_OF", - "from": 3702282, - "to": 3713987, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241620, - "label": "CONSUMED_BY", - "from": 3679464, - "to": 3707670, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241625, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3707671, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339937, - "label": "REGULATES", - "from": 3719413, - "to": 3689400, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241638, - "label": "CONSUMED_BY", - "from": 3670737, - "to": 3707673, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339938, - "label": "REGULATES", - "from": 3708391, - "to": 3719413, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208875, - "label": "COMPONENT_OF", - "from": 3714229, - "to": 3714007, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339949, - "label": "REGULATES", - "from": 3710187, - "to": 3719416, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241642, - "label": "PRODUCES", - "from": 3707673, - "to": 3677427, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339948, - "label": "REGULATES", - "from": 3719416, - "to": 3695972, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208872, - "label": "COMPONENT_OF", - "from": 3713984, - "to": 3714005, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241645, - "label": "CONSUMED_BY", - "from": 3677547, - "to": 3707674, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339947, - "label": "BINDS", - "from": 3719416, - "to": 3686057, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339957, - "label": "REGULATES", - "from": 3711285, - "to": 3719418, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241651, - "label": "CONSUMED_BY", - "from": 3684390, - "to": 3707675, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372727, - "label": "REGULATES", - "from": 3723171, - "to": 3696339, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241655, - "label": "CONSUMED_BY", - "from": 3684068, - "to": 3707676, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208886, - "label": "ENCODES", - "from": 3693923, - "to": 3714014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339955, - "label": "BINDS", - "from": 3719418, - "to": 3679689, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241652, - "label": "PRODUCES", - "from": 3707675, - "to": 3681531, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241659, - "label": "CONSUMED_BY", - "from": 3674732, - "to": 3707677, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372728, - "label": "REGULATES", - "from": 3711285, - "to": 3723171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241661, - "label": "PRODUCES", - "from": 3707677, - "to": 3683924, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208899, - "label": "ENCODES", - "from": 3702807, - "to": 3714025, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241665, - "label": "CONSUMED_BY", - "from": 3670738, - "to": 3707678, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208897, - "label": "ENCODES", - "from": 3707269, - "to": 3714023, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372743, - "label": "REGULATES", - "from": 3677414, - "to": 3723721, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339969, - "label": "BINDS", - "from": 3719422, - "to": 3685384, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339971, - "label": "REGULATES", - "from": 3712313, - "to": 3719422, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241668, - "label": "PRODUCES", - "from": 3707678, - "to": 3672996, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339970, - "label": "REGULATES", - "from": 3719422, - "to": 3726932, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372749, - "label": "BINDS", - "from": 3723723, - "to": 3680013, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208906, - "label": "ENCODES", - "from": 3719993, - "to": 3714031, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372751, - "label": "REGULATES", - "from": 3708153, - "to": 3723723, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208905, - "label": "COMPONENT_OF", - "from": 3710526, - "to": 3714030, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372750, - "label": "REGULATES", - "from": 3723723, - "to": 3699403, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241677, - "label": "PRODUCES", - "from": 3707680, - "to": 3677153, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241676, - "label": "CONSUMED_BY", - "from": 3677464, - "to": 3707680, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372757, - "label": "BINDS", - "from": 3723725, - "to": 3685191, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372759, - "label": "REGULATES", - "from": 3710143, - "to": 3723725, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208918, - "label": "COMPONENT_OF", - "from": 3708255, - "to": 3714042, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339984, - "label": "BINDS", - "from": 3719426, - "to": 3683310, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 339986, - "label": "REGULATES", - "from": 3710228, - "to": 3719426, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208923, - "label": "ENCODES", - "from": 3698840, - "to": 3714045, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372765, - "label": "REGULATES", - "from": 3723727, - "to": 3699392, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372764, - "label": "BINDS", - "from": 3723727, - "to": 3679517, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208921, - "label": "ENCODES", - "from": 3720040, - "to": 3714043, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372766, - "label": "REGULATES", - "from": 3710270, - "to": 3723727, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208931, - "label": "ENCODES", - "from": 3712109, - "to": 3714052, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208930, - "label": "COMPONENT_OF", - "from": 3711580, - "to": 3714051, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340007, - "label": "REGULATES", - "from": 3719432, - "to": 3697036, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208929, - "label": "ENCODES", - "from": 3698880, - "to": 3714050, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340006, - "label": "BINDS", - "from": 3719432, - "to": 3685193, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340001, - "label": "REGULATES", - "from": 3711285, - "to": 3719430, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340000, - "label": "REGULATES", - "from": 3719430, - "to": 3699549, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372768, - "label": "BINDS", - "from": 3723728, - "to": 3686178, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372770, - "label": "REGULATES", - "from": 3710246, - "to": 3723728, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372781, - "label": "REGULATES", - "from": 3681547, - "to": 3723731, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372780, - "label": "REGULATES", - "from": 3723731, - "to": 3691170, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340008, - "label": "REGULATES", - "from": 3711247, - "to": 3719432, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340011, - "label": "REGULATES", - "from": 3677560, - "to": 3719433, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340010, - "label": "REGULATES", - "from": 3719433, - "to": 3688902, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372789, - "label": "REGULATES", - "from": 3710238, - "to": 3723733, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340021, - "label": "BINDS", - "from": 3719436, - "to": 3685393, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372788, - "label": "REGULATES", - "from": 3723733, - "to": 3725935, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372791, - "label": "BINDS", - "from": 3723734, - "to": 3686510, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340023, - "label": "REGULATES", - "from": 3712313, - "to": 3719436, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340022, - "label": "REGULATES", - "from": 3719436, - "to": 3727133, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372785, - "label": "REGULATES", - "from": 3708153, - "to": 3723732, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208951, - "label": "ENCODES", - "from": 3701407, - "to": 3714066, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208950, - "label": "COMPONENT_OF", - "from": 3715353, - "to": 3714065, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372787, - "label": "BINDS", - "from": 3723733, - "to": 3678510, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372797, - "label": "REGULATES", - "from": 3704560, - "to": 3723735, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372793, - "label": "REGULATES", - "from": 3711183, - "to": 3723734, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340039, - "label": "BINDS", - "from": 3719441, - "to": 3680037, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208967, - "label": "ENCODES", - "from": 3690571, - "to": 3714079, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208970, - "label": "COMPONENT_OF", - "from": 3710568, - "to": 3714081, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372814, - "label": "BINDS", - "from": 3723740, - "to": 3678525, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340041, - "label": "REGULATES", - "from": 3712586, - "to": 3719441, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208972, - "label": "COMPONENT_OF", - "from": 3707900, - "to": 3714083, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340052, - "label": "REGULATES", - "from": 3708153, - "to": 3719444, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372816, - "label": "REGULATES", - "from": 3710274, - "to": 3723740, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340051, - "label": "REGULATES", - "from": 3719444, - "to": 3694538, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372831, - "label": "REGULATES", - "from": 3711265, - "to": 3723744, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372830, - "label": "REGULATES", - "from": 3723744, - "to": 3694954, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372825, - "label": "BINDS", - "from": 3723743, - "to": 3678497, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 208990, - "label": "COMPONENT_OF", - "from": 3708337, - "to": 3714099, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372827, - "label": "REGULATES", - "from": 3710228, - "to": 3723743, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372837, - "label": "REGULATES", - "from": 3723746, - "to": 3691140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405606, - "label": "ELEMENT_OF", - "from": 3702835, - "to": 3729078, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405604, - "label": "ELEMENT_OF", - "from": 3707260, - "to": 3729077, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372838, - "label": "REGULATES", - "from": 3677504, - "to": 3723746, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405602, - "label": "ELEMENT_OF", - "from": 3707222, - "to": 3729076, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340077, - "label": "REGULATES", - "from": 3677560, - "to": 3719451, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372844, - "label": "BINDS", - "from": 3723748, - "to": 3687289, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405615, - "label": "ELEMENT_OF", - "from": 3698722, - "to": 3729082, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372846, - "label": "REGULATES", - "from": 3708423, - "to": 3723748, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405613, - "label": "ELEMENT_OF", - "from": 3701789, - "to": 3729081, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372840, - "label": "BINDS", - "from": 3723747, - "to": 3686554, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372842, - "label": "REGULATES", - "from": 3710274, - "to": 3723747, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209011, - "label": "COMPONENT_OF", - "from": 3704301, - "to": 3714112, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372852, - "label": "BINDS", - "from": 3723750, - "to": 3683084, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209009, - "label": "ENCODES", - "from": 3707214, - "to": 3714110, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405620, - "label": "ELEMENT_OF", - "from": 3684979, - "to": 3729084, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372854, - "label": "REGULATES", - "from": 3711404, - "to": 3723750, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209008, - "label": "COMPONENT_OF", - "from": 3702154, - "to": 3714109, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340081, - "label": "REGULATES", - "from": 3712313, - "to": 3719452, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372849, - "label": "REGULATES", - "from": 3723749, - "to": 3696170, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372848, - "label": "BINDS", - "from": 3723749, - "to": 3686074, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340080, - "label": "REGULATES", - "from": 3719452, - "to": 3728023, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372850, - "label": "REGULATES", - "from": 3705945, - "to": 3723749, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372861, - "label": "REGULATES", - "from": 3711285, - "to": 3723752, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372860, - "label": "REGULATES", - "from": 3723752, - "to": 3694466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209023, - "label": "ENCODES", - "from": 3702765, - "to": 3714120, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372859, - "label": "BINDS", - "from": 3723752, - "to": 3682811, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372869, - "label": "REGULATES", - "from": 3710228, - "to": 3723754, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209025, - "label": "COMPONENT_OF", - "from": 3711453, - "to": 3714121, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209030, - "label": "ENCODES", - "from": 3690423, - "to": 3714124, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340099, - "label": "REGULATES", - "from": 3677401, - "to": 3719457, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209029, - "label": "COMPONENT_OF", - "from": 3715512, - "to": 3714123, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372867, - "label": "BINDS", - "from": 3723754, - "to": 3682975, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340098, - "label": "REGULATES", - "from": 3719457, - "to": 3692754, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340109, - "label": "BINDS", - "from": 3719460, - "to": 3686571, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209035, - "label": "MODIFIED_TO", - "from": 3714126, - "to": 3710198, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209034, - "label": "MODIFIED_TO", - "from": 3714126, - "to": 3710250, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340111, - "label": "REGULATES", - "from": 3711285, - "to": 3719460, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372879, - "label": "REGULATES", - "from": 3677495, - "to": 3723757, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209033, - "label": "MODIFIED_TO", - "from": 3714126, - "to": 3710276, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405645, - "label": "ELEMENT_OF", - "from": 3693802, - "to": 3729089, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405655, - "label": "ELEMENT_OF", - "from": 3695275, - "to": 3729093, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372881, - "label": "BINDS", - "from": 3723758, - "to": 3679771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372883, - "label": "REGULATES", - "from": 3708153, - "to": 3723758, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340125, - "label": "REGULATES", - "from": 3710228, - "to": 3719464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372889, - "label": "BINDS", - "from": 3723760, - "to": 3686422, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372891, - "label": "REGULATES", - "from": 3710167, - "to": 3723760, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340123, - "label": "BINDS", - "from": 3719464, - "to": 3679808, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372901, - "label": "REGULATES", - "from": 3723763, - "to": 3696104, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340133, - "label": "REGULATES", - "from": 3711183, - "to": 3719466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372900, - "label": "BINDS", - "from": 3723763, - "to": 3679718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372902, - "label": "REGULATES", - "from": 3711249, - "to": 3723763, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340131, - "label": "BINDS", - "from": 3719466, - "to": 3686122, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405664, - "label": "ELEMENT_OF", - "from": 3698684, - "to": 3729095, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340140, - "label": "REGULATES", - "from": 3712313, - "to": 3719468, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340143, - "label": "REGULATES", - "from": 3684064, - "to": 3719469, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340142, - "label": "REGULATES", - "from": 3719469, - "to": 3685762, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405675, - "label": "ELEMENT_OF", - "from": 3694206, - "to": 3729100, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340139, - "label": "REGULATES", - "from": 3719468, - "to": 3729143, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405672, - "label": "ELEMENT_OF", - "from": 3702748, - "to": 3729099, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340138, - "label": "BINDS", - "from": 3719468, - "to": 3685411, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405684, - "label": "ELEMENT_OF", - "from": 3697601, - "to": 3729103, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372913, - "label": "REGULATES", - "from": 3723766, - "to": 3695049, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372912, - "label": "BINDS", - "from": 3723766, - "to": 3682902, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372914, - "label": "REGULATES", - "from": 3711285, - "to": 3723766, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405702, - "label": "ELEMENT_OF", - "from": 3693706, - "to": 3729105, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405701, - "label": "ELEMENT_OF", - "from": 3701503, - "to": 3729104, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340162, - "label": "REGULATES", - "from": 3708153, - "to": 3719474, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405710, - "label": "ELEMENT_OF", - "from": 3698747, - "to": 3729109, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340175, - "label": "BINDS", - "from": 3719478, - "to": 3685144, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372943, - "label": "REGULATES", - "from": 3723774, - "to": 3696347, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372942, - "label": "BINDS", - "from": 3723774, - "to": 3685010, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405706, - "label": "ELEMENT_OF", - "from": 3699236, - "to": 3729106, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372948, - "label": "REGULATES", - "from": 3714081, - "to": 3723775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340177, - "label": "REGULATES", - "from": 3711247, - "to": 3719478, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340176, - "label": "REGULATES", - "from": 3719478, - "to": 3699385, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372944, - "label": "REGULATES", - "from": 3711285, - "to": 3723774, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405715, - "label": "ELEMENT_OF", - "from": 3690414, - "to": 3729112, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372946, - "label": "BINDS", - "from": 3723775, - "to": 3686420, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372957, - "label": "BINDS", - "from": 3723778, - "to": 3686408, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372959, - "label": "REGULATES", - "from": 3711281, - "to": 3723778, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372958, - "label": "REGULATES", - "from": 3723778, - "to": 3697615, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340187, - "label": "REGULATES", - "from": 3681291, - "to": 3719481, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340186, - "label": "REGULATES", - "from": 3719481, - "to": 3691235, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405731, - "label": "ELEMENT_OF", - "from": 3679912, - "to": 3729118, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340195, - "label": "REGULATES", - "from": 3710270, - "to": 3719483, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405728, - "label": "ELEMENT_OF", - "from": 3702580, - "to": 3729117, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340204, - "label": "BINDS", - "from": 3719486, - "to": 3683130, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405743, - "label": "ELEMENT_OF", - "from": 3697645, - "to": 3729122, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340206, - "label": "REGULATES", - "from": 3710270, - "to": 3719486, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405739, - "label": "ELEMENT_OF", - "from": 3699069, - "to": 3729120, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340221, - "label": "REGULATES", - "from": 3710270, - "to": 3719490, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340220, - "label": "REGULATES", - "from": 3719490, - "to": 3699744, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405757, - "label": "ELEMENT_OF", - "from": 3685211, - "to": 3729125, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405767, - "label": "ELEMENT_OF", - "from": 3690735, - "to": 3729127, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405774, - "label": "ELEMENT_OF", - "from": 3707074, - "to": 3729129, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241928, - "label": "CONSUMED_BY", - "from": 3670737, - "to": 3707682, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340233, - "label": "BINDS", - "from": 3719494, - "to": 3683078, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340235, - "label": "REGULATES", - "from": 3708153, - "to": 3719494, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241939, - "label": "CONSUMED_BY", - "from": 3677501, - "to": 3707684, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241937, - "label": "PRODUCES", - "from": 3707683, - "to": 3684186, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405781, - "label": "ELEMENT_OF", - "from": 3697667, - "to": 3729132, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340241, - "label": "BINDS", - "from": 3719496, - "to": 3686425, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340243, - "label": "REGULATES", - "from": 3710167, - "to": 3719496, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241945, - "label": "PRODUCES", - "from": 3707684, - "to": 3671380, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241951, - "label": "CONSUMED_BY", - "from": 3668774, - "to": 3707686, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241949, - "label": "PRODUCES", - "from": 3707685, - "to": 3670483, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241948, - "label": "CONSUMED_BY", - "from": 3715467, - "to": 3707685, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405798, - "label": "ELEMENT_OF", - "from": 3701453, - "to": 3729135, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241953, - "label": "PRODUCES", - "from": 3707686, - "to": 3668778, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241958, - "label": "CONSUMED_BY", - "from": 3710256, - "to": 3707687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340268, - "label": "REGULATES", - "from": 3681852, - "to": 3719503, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405807, - "label": "ELEMENT_OF", - "from": 3712109, - "to": 3729139, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241960, - "label": "PRODUCES", - "from": 3707687, - "to": 3710206, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241965, - "label": "PRODUCES", - "from": 3707689, - "to": 3681146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241964, - "label": "CONSUMED_BY", - "from": 3677493, - "to": 3707689, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241969, - "label": "PRODUCES", - "from": 3707690, - "to": 3676946, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241968, - "label": "CONSUMED_BY", - "from": 3669207, - "to": 3707690, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241974, - "label": "CONSUMED_BY", - "from": 3677698, - "to": 3707691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340275, - "label": "REGULATES", - "from": 3682118, - "to": 3719505, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405823, - "label": "ELEMENT_OF", - "from": 3694419, - "to": 3729144, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241978, - "label": "CONSUMED_BY", - "from": 3677458, - "to": 3707692, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241987, - "label": "PRODUCES", - "from": 3707693, - "to": 3668230, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340293, - "label": "REGULATES", - "from": 3719510, - "to": 3700168, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241985, - "label": "CONSUMED_BY", - "from": 3677696, - "to": 3707693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340294, - "label": "REGULATES", - "from": 3711237, - "to": 3719510, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340290, - "label": "REGULATES", - "from": 3681147, - "to": 3719509, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340303, - "label": "BINDS", - "from": 3719513, - "to": 3687431, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 241992, - "label": "CONSUMED_BY", - "from": 3681312, - "to": 3707694, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242000, - "label": "CONSUMED_BY", - "from": 3677140, - "to": 3707696, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340305, - "label": "REGULATES", - "from": 3711285, - "to": 3719513, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242004, - "label": "PRODUCES", - "from": 3707696, - "to": 3676868, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242011, - "label": "PRODUCES", - "from": 3707698, - "to": 3679096, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340316, - "label": "REGULATES", - "from": 3710274, - "to": 3719516, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242008, - "label": "CONSUMED_BY", - "from": 3679223, - "to": 3707697, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242015, - "label": "PRODUCES", - "from": 3707699, - "to": 3673111, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242014, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3707699, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340314, - "label": "BINDS", - "from": 3719516, - "to": 3679928, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340325, - "label": "BINDS", - "from": 3719519, - "to": 3686056, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242018, - "label": "CONSUMED_BY", - "from": 3666563, - "to": 3707700, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340327, - "label": "REGULATES", - "from": 3711179, - "to": 3719519, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340321, - "label": "BINDS", - "from": 3719518, - "to": 3686183, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242022, - "label": "PRODUCES", - "from": 3707701, - "to": 3710262, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242021, - "label": "CONSUMED_BY", - "from": 3710308, - "to": 3707701, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340323, - "label": "REGULATES", - "from": 3705945, - "to": 3719518, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340322, - "label": "REGULATES", - "from": 3719518, - "to": 3699811, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242025, - "label": "CONSUMED_BY", - "from": 3676136, - "to": 3707702, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340329, - "label": "BINDS", - "from": 3719520, - "to": 3685083, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340331, - "label": "REGULATES", - "from": 3712586, - "to": 3719520, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242035, - "label": "PRODUCES", - "from": 3707704, - "to": 3677543, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242033, - "label": "CONSUMED_BY", - "from": 3681370, - "to": 3707704, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242039, - "label": "CONSUMED_BY", - "from": 3668646, - "to": 3707705, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340337, - "label": "REGULATES", - "from": 3719522, - "to": 3697581, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 274800, - "label": "REGULATES", - "from": 3720094, - "to": 3709875, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340336, - "label": "BINDS", - "from": 3719522, - "to": 3679607, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340338, - "label": "REGULATES", - "from": 3712602, - "to": 3719522, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 274803, - "label": "REGULATES", - "from": 3684200, - "to": 3709876, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340349, - "label": "REGULATES", - "from": 3711285, - "to": 3719525, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340348, - "label": "REGULATES", - "from": 3719525, - "to": 3699864, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340351, - "label": "BINDS", - "from": 3719526, - "to": 3679675, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 274814, - "label": "REGULATES", - "from": 3709880, - "to": 3716730, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 274815, - "label": "REGULATES", - "from": 3720094, - "to": 3709880, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340347, - "label": "BINDS", - "from": 3719525, - "to": 3685124, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340358, - "label": "BINDS", - "from": 3719528, - "to": 3686515, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340353, - "label": "REGULATES", - "from": 3711207, - "to": 3719526, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242054, - "label": "PRODUCES", - "from": 3707708, - "to": 3670554, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340352, - "label": "REGULATES", - "from": 3719526, - "to": 3695020, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242053, - "label": "CONSUMED_BY", - "from": 3710323, - "to": 3707708, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209284, - "label": "ENCODES", - "from": 3712253, - "to": 3714133, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242062, - "label": "PRODUCES", - "from": 3707710, - "to": 3677597, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340360, - "label": "REGULATES", - "from": 3706006, - "to": 3719528, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340363, - "label": "REGULATES", - "from": 3677368, - "to": 3719529, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242060, - "label": "CONSUMED_BY", - "from": 3667436, - "to": 3707710, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209298, - "label": "COMPONENT_OF", - "from": 3714717, - "to": 3714146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242065, - "label": "CONSUMED_BY", - "from": 3710208, - "to": 3707711, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340375, - "label": "REGULATES", - "from": 3710246, - "to": 3719532, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340374, - "label": "REGULATES", - "from": 3719532, - "to": 3697189, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209303, - "label": "ENCODES", - "from": 3711766, - "to": 3714148, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 274833, - "label": "REGULATES", - "from": 3720117, - "to": 3709886, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242074, - "label": "PRODUCES", - "from": 3707712, - "to": 3682180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209306, - "label": "COMPONENT_OF", - "from": 3705834, - "to": 3714152, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242072, - "label": "CONSUMED_BY", - "from": 3684064, - "to": 3707712, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242077, - "label": "PRODUCES", - "from": 3707713, - "to": 3685553, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242076, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3707713, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340378, - "label": "REGULATES", - "from": 3668965, - "to": 3719533, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209314, - "label": "COMPONENT_OF", - "from": 3714290, - "to": 3714155, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340391, - "label": "BINDS", - "from": 3719537, - "to": 3679633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 274854, - "label": "REGULATES", - "from": 3720073, - "to": 3709893, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242087, - "label": "CONSUMED_BY", - "from": 3681852, - "to": 3707716, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242086, - "label": "PRODUCES", - "from": 3707715, - "to": 3672884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 274851, - "label": "REGULATES", - "from": 3720073, - "to": 3709892, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209322, - "label": "COMPONENT_OF", - "from": 3704474, - "to": 3714160, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242089, - "label": "PRODUCES", - "from": 3707716, - "to": 3677699, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340393, - "label": "REGULATES", - "from": 3708153, - "to": 3719537, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242095, - "label": "PRODUCES", - "from": 3707717, - "to": 3704396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209325, - "label": "ENCODES", - "from": 3701550, - "to": 3714162, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340404, - "label": "REGULATES", - "from": 3705945, - "to": 3719540, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 274871, - "label": "REGULATES", - "from": 3709899, - "to": 3702813, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340403, - "label": "REGULATES", - "from": 3719540, - "to": 3695095, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209339, - "label": "COMPONENT_OF", - "from": 3708254, - "to": 3714169, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242106, - "label": "CONSUMED_BY", - "from": 3670388, - "to": 3707720, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209338, - "label": "ENCODES", - "from": 3687677, - "to": 3714168, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340415, - "label": "REGULATES", - "from": 3710228, - "to": 3719543, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 274872, - "label": "REGULATES", - "from": 3720094, - "to": 3709899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 274874, - "label": "REGULATES", - "from": 3709900, - "to": 3687873, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 274875, - "label": "REGULATES", - "from": 3677414, - "to": 3709900, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242115, - "label": "PRODUCES", - "from": 3707721, - "to": 3674826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209346, - "label": "COMPONENT_OF", - "from": 3702266, - "to": 3714174, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209345, - "label": "ENCODES", - "from": 3693706, - "to": 3714173, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340417, - "label": "BINDS", - "from": 3719544, - "to": 3686524, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242118, - "label": "PRODUCES", - "from": 3707722, - "to": 3681261, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209350, - "label": "COMPONENT_OF", - "from": 3705744, - "to": 3714178, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242117, - "label": "CONSUMED_BY", - "from": 3684289, - "to": 3707722, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340419, - "label": "REGULATES", - "from": 3710270, - "to": 3719544, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340418, - "label": "REGULATES", - "from": 3719544, - "to": 3699416, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 274892, - "label": "REGULATES", - "from": 3709906, - "to": 3689566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 274893, - "label": "REGULATES", - "from": 3677567, - "to": 3709906, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340431, - "label": "BINDS", - "from": 3719548, - "to": 3685317, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209352, - "label": "ENCODES", - "from": 3707260, - "to": 3714179, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 274890, - "label": "REGULATES", - "from": 3720073, - "to": 3709905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242124, - "label": "CONSUMED_BY", - "from": 3681145, - "to": 3707723, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340437, - "label": "REGULATES", - "from": 3710572, - "to": 3719549, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340436, - "label": "REGULATES", - "from": 3719549, - "to": 3694382, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209361, - "label": "COMPONENT_OF", - "from": 3708270, - "to": 3714188, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340433, - "label": "REGULATES", - "from": 3710228, - "to": 3719548, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242134, - "label": "PRODUCES", - "from": 3707725, - "to": 3681765, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242133, - "label": "CONSUMED_BY", - "from": 3669462, - "to": 3707725, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209365, - "label": "COMPONENT_OF", - "from": 3708234, - "to": 3714190, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340435, - "label": "BINDS", - "from": 3719549, - "to": 3686415, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209364, - "label": "ENCODES", - "from": 3706952, - "to": 3714189, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 274899, - "label": "REGULATES", - "from": 3720103, - "to": 3709908, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209371, - "label": "MODIFIED_TO", - "from": 3714193, - "to": 3704507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242138, - "label": "CONSUMED_BY", - "from": 3673110, - "to": 3707726, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209369, - "label": "COMPONENT_OF", - "from": 3711204, - "to": 3714192, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209375, - "label": "COMPONENT_OF", - "from": 3711626, - "to": 3714197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242140, - "label": "PRODUCES", - "from": 3707726, - "to": 3675321, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242147, - "label": "CONSUMED_BY", - "from": 3677438, - "to": 3707728, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340453, - "label": "BINDS", - "from": 3719554, - "to": 3685256, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340455, - "label": "REGULATES", - "from": 3711317, - "to": 3719554, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242144, - "label": "CONSUMED_BY", - "from": 3669207, - "to": 3707727, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340451, - "label": "REGULATES", - "from": 3681437, - "to": 3719553, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 274914, - "label": "REGULATES", - "from": 3720073, - "to": 3709913, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242148, - "label": "PRODUCES", - "from": 3707728, - "to": 3681242, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340461, - "label": "BINDS", - "from": 3719556, - "to": 3679763, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209387, - "label": "COMPONENT_OF", - "from": 3704311, - "to": 3714205, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340463, - "label": "REGULATES", - "from": 3710270, - "to": 3719556, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242158, - "label": "CONSUMED_BY", - "from": 3684128, - "to": 3707730, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209390, - "label": "COMPONENT_OF", - "from": 3708314, - "to": 3714208, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340469, - "label": "REGULATES", - "from": 3719558, - "to": 3694972, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 274932, - "label": "REGULATES", - "from": 3720094, - "to": 3709919, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340468, - "label": "BINDS", - "from": 3719558, - "to": 3686486, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340470, - "label": "REGULATES", - "from": 3708153, - "to": 3719558, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 274931, - "label": "REGULATES", - "from": 3709919, - "to": 3702438, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340477, - "label": "REGULATES", - "from": 3708153, - "to": 3719560, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209400, - "label": "COMPONENT_OF", - "from": 3714885, - "to": 3714216, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 274937, - "label": "REGULATES", - "from": 3709921, - "to": 3688039, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 274938, - "label": "REGULATES", - "from": 3677368, - "to": 3709921, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340487, - "label": "REGULATES", - "from": 3719563, - "to": 3689250, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 274950, - "label": "REGULATES", - "from": 3720117, - "to": 3709925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209415, - "label": "COMPONENT_OF", - "from": 3711184, - "to": 3714228, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209413, - "label": "ENCODES", - "from": 3719915, - "to": 3714226, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209419, - "label": "ENCODES", - "from": 3690717, - "to": 3714231, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340495, - "label": "REGULATES", - "from": 3682014, - "to": 3719565, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209417, - "label": "ENCODES", - "from": 3717054, - "to": 3714229, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340494, - "label": "REGULATES", - "from": 3719565, - "to": 3687747, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340488, - "label": "REGULATES", - "from": 3682118, - "to": 3719563, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340501, - "label": "BINDS", - "from": 3719567, - "to": 3682771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 274965, - "label": "REGULATES", - "from": 3677368, - "to": 3709930, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340503, - "label": "REGULATES", - "from": 3712313, - "to": 3719567, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340499, - "label": "REGULATES", - "from": 3714081, - "to": 3719566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340498, - "label": "REGULATES", - "from": 3719566, - "to": 3696362, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209436, - "label": "COMPONENT_OF", - "from": 3706207, - "to": 3714244, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340519, - "label": "BINDS", - "from": 3719572, - "to": 3679921, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209441, - "label": "ENCODES", - "from": 3707037, - "to": 3714247, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209446, - "label": "ENCODES", - "from": 3693788, - "to": 3714251, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340525, - "label": "REGULATES", - "from": 3718538, - "to": 3719573, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209451, - "label": "COMPONENT_OF", - "from": 3714189, - "to": 3714252, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 274988, - "label": "REGULATES", - "from": 3709938, - "to": 3702913, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 274989, - "label": "REGULATES", - "from": 3720094, - "to": 3709938, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340521, - "label": "REGULATES", - "from": 3711237, - "to": 3719572, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209455, - "label": "COMPONENT_OF", - "from": 3714258, - "to": 3714255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340520, - "label": "REGULATES", - "from": 3719572, - "to": 3694837, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 274985, - "label": "REGULATES", - "from": 3709937, - "to": 3707056, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 274986, - "label": "REGULATES", - "from": 3720094, - "to": 3709937, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209459, - "label": "COMPONENT_OF", - "from": 3714320, - "to": 3714259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209458, - "label": "ENCODES", - "from": 3707290, - "to": 3714258, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209464, - "label": "ENCODES", - "from": 3698813, - "to": 3714262, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340536, - "label": "REGULATES", - "from": 3710208, - "to": 3719576, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209469, - "label": "COMPONENT_OF", - "from": 3707906, - "to": 3714265, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406084, - "label": "ELEMENT_OF", - "from": 3694943, - "to": 3729147, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340547, - "label": "REGULATES", - "from": 3710143, - "to": 3719579, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275010, - "label": "REGULATES", - "from": 3682150, - "to": 3709945, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209491, - "label": "ENCODES", - "from": 3707295, - "to": 3714277, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209494, - "label": "ENCODES", - "from": 3716717, - "to": 3714280, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406111, - "label": "ELEMENT_OF", - "from": 3696222, - "to": 3729154, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406108, - "label": "ELEMENT_OF", - "from": 3697527, - "to": 3729153, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406104, - "label": "ELEMENT_OF", - "from": 3685464, - "to": 3729152, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209507, - "label": "COMPONENT_OF", - "from": 3715498, - "to": 3714290, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209514, - "label": "COMPONENT_OF", - "from": 3714052, - "to": 3714296, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209512, - "label": "COMPONENT_OF", - "from": 3704110, - "to": 3714295, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406123, - "label": "ELEMENT_OF", - "from": 3697093, - "to": 3729159, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209523, - "label": "COMPONENT_OF", - "from": 3711650, - "to": 3714302, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209521, - "label": "MODIFIED_TO", - "from": 3714300, - "to": 3710179, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209520, - "label": "ENCODES", - "from": 3702735, - "to": 3714300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209526, - "label": "ENCODES", - "from": 3711981, - "to": 3714304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406128, - "label": "ELEMENT_OF", - "from": 3697302, - "to": 3729162, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406143, - "label": "ELEMENT_OF", - "from": 3694628, - "to": 3729166, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209529, - "label": "MODIFIED_TO", - "from": 3714305, - "to": 3710194, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209528, - "label": "ENCODES", - "from": 3701538, - "to": 3714305, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406141, - "label": "ELEMENT_OF", - "from": 3699583, - "to": 3729165, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406150, - "label": "ELEMENT_OF", - "from": 3720034, - "to": 3729168, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209545, - "label": "ENCODES", - "from": 3702966, - "to": 3714315, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209551, - "label": "ENCODES", - "from": 3698799, - "to": 3714319, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406155, - "label": "ELEMENT_OF", - "from": 3699874, - "to": 3729172, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406166, - "label": "ELEMENT_OF", - "from": 3702865, - "to": 3729176, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209553, - "label": "ENCODES", - "from": 3702690, - "to": 3714320, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209552, - "label": "MODIFIED_TO", - "from": 3714319, - "to": 3710208, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209556, - "label": "COMPONENT_OF", - "from": 3711488, - "to": 3714322, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209560, - "label": "ENCODES", - "from": 3698852, - "to": 3714323, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406168, - "label": "ELEMENT_OF", - "from": 3679595, - "to": 3729177, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209564, - "label": "COMPONENT_OF", - "from": 3711684, - "to": 3714325, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406181, - "label": "ELEMENT_OF", - "from": 3701336, - "to": 3729178, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209575, - "label": "COMPONENT_OF", - "from": 3707980, - "to": 3714331, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406190, - "label": "ELEMENT_OF", - "from": 3697569, - "to": 3729182, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209581, - "label": "COMPONENT_OF", - "from": 3705821, - "to": 3714336, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406185, - "label": "ELEMENT_OF", - "from": 3687641, - "to": 3729180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209585, - "label": "COMPONENT_OF", - "from": 3702285, - "to": 3714340, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406194, - "label": "ELEMENT_OF", - "from": 3699029, - "to": 3729183, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209595, - "label": "ENCODES", - "from": 3687660, - "to": 3714348, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406207, - "label": "ELEMENT_OF", - "from": 3706943, - "to": 3729187, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406203, - "label": "ELEMENT_OF", - "from": 3683065, - "to": 3729186, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209598, - "label": "ENCODES", - "from": 3717090, - "to": 3714351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406200, - "label": "ELEMENT_OF", - "from": 3698813, - "to": 3729185, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209600, - "label": "ENCODES", - "from": 3693883, - "to": 3714353, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373441, - "label": "BINDS", - "from": 3723779, - "to": 3685496, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373443, - "label": "REGULATES", - "from": 3711179, - "to": 3723779, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209604, - "label": "COMPONENT_OF", - "from": 3714348, - "to": 3714357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209611, - "label": "ENCODES", - "from": 3720004, - "to": 3714363, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373453, - "label": "REGULATES", - "from": 3723782, - "to": 3691471, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406220, - "label": "ELEMENT_OF", - "from": 3695265, - "to": 3729192, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373454, - "label": "REGULATES", - "from": 3683918, - "to": 3723782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373449, - "label": "BINDS", - "from": 3723781, - "to": 3678538, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373451, - "label": "REGULATES", - "from": 3708423, - "to": 3723781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406231, - "label": "ELEMENT_OF", - "from": 3701721, - "to": 3729195, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373460, - "label": "BINDS", - "from": 3723784, - "to": 3679708, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406229, - "label": "ELEMENT_OF", - "from": 3698680, - "to": 3729194, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373462, - "label": "REGULATES", - "from": 3714706, - "to": 3723784, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373457, - "label": "REGULATES", - "from": 3723783, - "to": 3699401, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209621, - "label": "COMPONENT_OF", - "from": 3702155, - "to": 3714369, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373458, - "label": "REGULATES", - "from": 3710270, - "to": 3723783, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406236, - "label": "ELEMENT_OF", - "from": 3707270, - "to": 3729197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406235, - "label": "ELEMENT_OF", - "from": 3694896, - "to": 3729196, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373464, - "label": "BINDS", - "from": 3723785, - "to": 3678426, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209629, - "label": "COMPONENT_OF", - "from": 3715395, - "to": 3714377, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373466, - "label": "REGULATES", - "from": 3714753, - "to": 3723785, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242403, - "label": "PRODUCES", - "from": 3707731, - "to": 3684137, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242401, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3707731, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406244, - "label": "ELEMENT_OF", - "from": 3698975, - "to": 3729199, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373479, - "label": "BINDS", - "from": 3723789, - "to": 3678432, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209632, - "label": "ENCODES", - "from": 3690775, - "to": 3714380, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209638, - "label": "ENCODES", - "from": 3702514, - "to": 3714383, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209643, - "label": "COMPONENT_OF", - "from": 3702417, - "to": 3714386, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373481, - "label": "REGULATES", - "from": 3712313, - "to": 3723789, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373480, - "label": "REGULATES", - "from": 3723789, - "to": 3727533, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406248, - "label": "ELEMENT_OF", - "from": 3697594, - "to": 3729202, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242416, - "label": "CONSUMED_BY", - "from": 3683891, - "to": 3707734, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242422, - "label": "CONSUMED_BY", - "from": 3677648, - "to": 3707735, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209654, - "label": "COMPONENT_OF", - "from": 3704442, - "to": 3714392, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242425, - "label": "PRODUCES", - "from": 3707735, - "to": 3671322, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242430, - "label": "CONSUMED_BY", - "from": 3679067, - "to": 3707736, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406274, - "label": "ELEMENT_OF", - "from": 3696181, - "to": 3729206, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242439, - "label": "PRODUCES", - "from": 3707738, - "to": 3668908, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242436, - "label": "CONSUMED_BY", - "from": 3677114, - "to": 3707738, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406286, - "label": "ELEMENT_OF", - "from": 3693923, - "to": 3729210, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373513, - "label": "BINDS", - "from": 3723798, - "to": 3686555, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209678, - "label": "ENCODES", - "from": 3707187, - "to": 3714412, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373515, - "label": "REGULATES", - "from": 3710297, - "to": 3723798, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373514, - "label": "REGULATES", - "from": 3723798, - "to": 3696263, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242444, - "label": "PRODUCES", - "from": 3707739, - "to": 3677180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373525, - "label": "BINDS", - "from": 3723801, - "to": 3679988, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373527, - "label": "REGULATES", - "from": 3712313, - "to": 3723801, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373526, - "label": "REGULATES", - "from": 3723801, - "to": 3726614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373521, - "label": "BINDS", - "from": 3723800, - "to": 3682908, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242454, - "label": "CONSUMED_BY", - "from": 3681531, - "to": 3707741, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209685, - "label": "COMPONENT_OF", - "from": 3704377, - "to": 3714417, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373523, - "label": "REGULATES", - "from": 3710274, - "to": 3723800, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209691, - "label": "COMPONENT_OF", - "from": 3704590, - "to": 3714421, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242458, - "label": "CONSUMED_BY", - "from": 3677501, - "to": 3707742, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242463, - "label": "CONSUMED_BY", - "from": 3710210, - "to": 3707743, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406298, - "label": "ELEMENT_OF", - "from": 3702772, - "to": 3729212, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373530, - "label": "REGULATES", - "from": 3682081, - "to": 3723802, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242467, - "label": "CONSUMED_BY", - "from": 3677153, - "to": 3707744, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242464, - "label": "PRODUCES", - "from": 3707743, - "to": 3710308, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373537, - "label": "REGULATES", - "from": 3723804, - "to": 3699933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373536, - "label": "BINDS", - "from": 3723804, - "to": 3686394, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242469, - "label": "PRODUCES", - "from": 3707744, - "to": 3669906, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373538, - "label": "REGULATES", - "from": 3711233, - "to": 3723804, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406317, - "label": "ELEMENT_OF", - "from": 3699818, - "to": 3729218, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373544, - "label": "BINDS", - "from": 3723806, - "to": 3687159, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209710, - "label": "ENCODES", - "from": 3694174, - "to": 3714435, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242477, - "label": "PRODUCES", - "from": 3707745, - "to": 3684378, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373546, - "label": "REGULATES", - "from": 3708153, - "to": 3723806, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209708, - "label": "ENCODES", - "from": 3698827, - "to": 3714433, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242480, - "label": "CONSUMED_BY", - "from": 3669455, - "to": 3707746, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242484, - "label": "PRODUCES", - "from": 3707746, - "to": 3672647, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373565, - "label": "REGULATES", - "from": 3677192, - "to": 3723811, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242490, - "label": "CONSUMED_BY", - "from": 3671356, - "to": 3707747, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242492, - "label": "PRODUCES", - "from": 3707747, - "to": 3673040, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373573, - "label": "REGULATES", - "from": 3712313, - "to": 3723813, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340805, - "label": "REGULATES", - "from": 3710228, - "to": 3719584, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373572, - "label": "REGULATES", - "from": 3723813, - "to": 3727862, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242497, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3707748, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373571, - "label": "BINDS", - "from": 3723813, - "to": 3679997, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209733, - "label": "COMPONENT_OF", - "from": 3711453, - "to": 3714453, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340803, - "label": "BINDS", - "from": 3719584, - "to": 3682801, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209732, - "label": "ENCODES", - "from": 3711835, - "to": 3714452, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242507, - "label": "CONSUMED_BY", - "from": 3668128, - "to": 3707750, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373581, - "label": "REGULATES", - "from": 3711183, - "to": 3723815, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209739, - "label": "COMPONENT_OF", - "from": 3715306, - "to": 3714457, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340813, - "label": "REGULATES", - "from": 3707928, - "to": 3719586, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373580, - "label": "REGULATES", - "from": 3723815, - "to": 3699173, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209738, - "label": "ENCODES", - "from": 3698733, - "to": 3714456, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209737, - "label": "COMPONENT_OF", - "from": 3711453, - "to": 3714455, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209742, - "label": "COMPONENT_OF", - "from": 3704150, - "to": 3714459, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373579, - "label": "BINDS", - "from": 3723815, - "to": 3685464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209741, - "label": "ENCODES", - "from": 3693744, - "to": 3714458, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340811, - "label": "BINDS", - "from": 3719586, - "to": 3683309, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 209740, - "label": "MODIFIED_TO", - "from": 3714457, - "to": 3712525, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242519, - "label": "CONSUMED_BY", - "from": 3710278, - "to": 3707753, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242521, - "label": "PRODUCES", - "from": 3707753, - "to": 3710234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340831, - "label": "REGULATES", - "from": 3711317, - "to": 3719591, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242527, - "label": "CONSUMED_BY", - "from": 3684105, - "to": 3707755, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340837, - "label": "REGULATES", - "from": 3719593, - "to": 3685949, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373605, - "label": "BINDS", - "from": 3723822, - "to": 3678700, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242529, - "label": "PRODUCES", - "from": 3707755, - "to": 3677628, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373607, - "label": "REGULATES", - "from": 3710270, - "to": 3723822, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340838, - "label": "REGULATES", - "from": 3677460, - "to": 3719593, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242533, - "label": "CONSUMED_BY", - "from": 3671380, - "to": 3707756, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340835, - "label": "REGULATES", - "from": 3711317, - "to": 3719592, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340834, - "label": "REGULATES", - "from": 3719592, - "to": 3695002, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373615, - "label": "REGULATES", - "from": 3711259, - "to": 3723824, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373614, - "label": "REGULATES", - "from": 3723824, - "to": 3694696, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242543, - "label": "PRODUCES", - "from": 3707757, - "to": 3666925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373621, - "label": "REGULATES", - "from": 3723826, - "to": 3689696, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242545, - "label": "CONSUMED_BY", - "from": 3670604, - "to": 3707758, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373622, - "label": "REGULATES", - "from": 3679095, - "to": 3723826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373617, - "label": "BINDS", - "from": 3723825, - "to": 3685172, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242549, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3707759, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373619, - "label": "REGULATES", - "from": 3712313, - "to": 3723825, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373618, - "label": "REGULATES", - "from": 3723825, - "to": 3726491, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242554, - "label": "CONSUMED_BY", - "from": 3681755, - "to": 3707760, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242552, - "label": "PRODUCES", - "from": 3707759, - "to": 3710268, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373636, - "label": "BINDS", - "from": 3723830, - "to": 3687167, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373638, - "label": "REGULATES", - "from": 3711189, - "to": 3723830, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242567, - "label": "CONSUMED_BY", - "from": 3677444, - "to": 3707763, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373645, - "label": "REGULATES", - "from": 3711237, - "to": 3723832, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373644, - "label": "REGULATES", - "from": 3723832, - "to": 3700119, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242574, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3707765, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373643, - "label": "BINDS", - "from": 3723832, - "to": 3678506, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242577, - "label": "PRODUCES", - "from": 3707765, - "to": 3675336, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242582, - "label": "CONSUMED_BY", - "from": 3682077, - "to": 3707766, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242587, - "label": "PRODUCES", - "from": 3707767, - "to": 3677238, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340893, - "label": "REGULATES", - "from": 3710208, - "to": 3719608, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340892, - "label": "REGULATES", - "from": 3719608, - "to": 3699533, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242585, - "label": "CONSUMED_BY", - "from": 3670533, - "to": 3707767, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242590, - "label": "CONSUMED_BY", - "from": 3671495, - "to": 3707768, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373656, - "label": "REGULATES", - "from": 3677560, - "to": 3723835, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340891, - "label": "BINDS", - "from": 3719608, - "to": 3685409, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373669, - "label": "BINDS", - "from": 3723839, - "to": 3679611, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340901, - "label": "REGULATES", - "from": 3710208, - "to": 3719610, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340900, - "label": "REGULATES", - "from": 3719610, - "to": 3697788, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373671, - "label": "REGULATES", - "from": 3712313, - "to": 3723839, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373670, - "label": "REGULATES", - "from": 3723839, - "to": 3726676, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373665, - "label": "BINDS", - "from": 3723838, - "to": 3678689, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373667, - "label": "REGULATES", - "from": 3707928, - "to": 3723838, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340899, - "label": "BINDS", - "from": 3719610, - "to": 3679745, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242597, - "label": "PRODUCES", - "from": 3707769, - "to": 3674659, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373666, - "label": "REGULATES", - "from": 3723838, - "to": 3695929, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340908, - "label": "REGULATES", - "from": 3711285, - "to": 3719612, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340911, - "label": "REGULATES", - "from": 3677454, - "to": 3719613, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340906, - "label": "BINDS", - "from": 3719612, - "to": 3679971, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242614, - "label": "CONSUMED_BY", - "from": 3681429, - "to": 3707773, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242618, - "label": "PRODUCES", - "from": 3707773, - "to": 3679292, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242623, - "label": "PRODUCES", - "from": 3707774, - "to": 3711559, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242621, - "label": "CONSUMED_BY", - "from": 3715467, - "to": 3707774, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242627, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3707776, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242625, - "label": "CONSUMED_BY", - "from": 3677513, - "to": 3707775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242629, - "label": "PRODUCES", - "from": 3707776, - "to": 3672527, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242633, - "label": "CONSUMED_BY", - "from": 3671495, - "to": 3707777, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340937, - "label": "REGULATES", - "from": 3708153, - "to": 3719620, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340951, - "label": "REGULATES", - "from": 3719624, - "to": 3694668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340950, - "label": "BINDS", - "from": 3719624, - "to": 3686128, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340952, - "label": "REGULATES", - "from": 3705945, - "to": 3719624, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340965, - "label": "BINDS", - "from": 3719628, - "to": 3687322, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340967, - "label": "REGULATES", - "from": 3711285, - "to": 3719628, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177126, - "label": "CATALYZES", - "from": 3689736, - "to": 3708743, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177125, - "label": "CATALYZES", - "from": 3714977, - "to": 3689736, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177138, - "label": "CATALYZES", - "from": 3689742, - "to": 3705347, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177136, - "label": "CATALYZES", - "from": 3689741, - "to": 3709369, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177147, - "label": "CATALYZES", - "from": 3713930, - "to": 3689747, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177148, - "label": "CATALYZES", - "from": 3689747, - "to": 3705223, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340999, - "label": "REGULATES", - "from": 3677438, - "to": 3719637, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177168, - "label": "CATALYZES", - "from": 3689757, - "to": 3709442, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 341014, - "label": "REGULATES", - "from": 3677289, - "to": 3719641, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 341009, - "label": "BINDS", - "from": 3719640, - "to": 3679741, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 341011, - "label": "REGULATES", - "from": 3715027, - "to": 3719640, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177178, - "label": "CATALYZES", - "from": 3689762, - "to": 3705508, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 341016, - "label": "BINDS", - "from": 3719642, - "to": 3685035, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 341018, - "label": "REGULATES", - "from": 3714706, - "to": 3719642, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 341029, - "label": "REGULATES", - "from": 3705945, - "to": 3719645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177210, - "label": "CATALYZES", - "from": 3689778, - "to": 3706477, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177213, - "label": "CATALYZES", - "from": 3710433, - "to": 3689780, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177219, - "label": "CATALYZES", - "from": 3712599, - "to": 3689783, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177223, - "label": "CATALYZES", - "from": 3708387, - "to": 3689785, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177226, - "label": "CATALYZES", - "from": 3689786, - "to": 3709473, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177231, - "label": "CATALYZES", - "from": 3708270, - "to": 3689789, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210002, - "label": "COMPONENT_OF", - "from": 3702144, - "to": 3714477, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177233, - "label": "CATALYZES", - "from": 3715437, - "to": 3689790, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210006, - "label": "ENCODES", - "from": 3702791, - "to": 3714481, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177241, - "label": "CATALYZES", - "from": 3718460, - "to": 3689794, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210015, - "label": "COMPONENT_OF", - "from": 3714880, - "to": 3714491, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210013, - "label": "ENCODES", - "from": 3698690, - "to": 3714488, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210019, - "label": "COMPONENT_OF", - "from": 3706229, - "to": 3714495, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177250, - "label": "CATALYZES", - "from": 3689798, - "to": 3707715, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177251, - "label": "CATALYZES", - "from": 3711517, - "to": 3689799, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177249, - "label": "CATALYZES", - "from": 3714255, - "to": 3689798, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210023, - "label": "COMPONENT_OF", - "from": 3714412, - "to": 3714498, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210021, - "label": "COMPONENT_OF", - "from": 3710223, - "to": 3714496, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210027, - "label": "ENCODES", - "from": 3690893, - "to": 3714502, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210034, - "label": "MODIFIED_TO", - "from": 3714507, - "to": 3710244, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177265, - "label": "CATALYZES", - "from": 3712788, - "to": 3689806, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177268, - "label": "CATALYZES", - "from": 3689807, - "to": 3705321, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210036, - "label": "COMPONENT_OF", - "from": 3712452, - "to": 3714509, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210040, - "label": "COMPONENT_OF", - "from": 3704565, - "to": 3714513, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210046, - "label": "COMPONENT_OF", - "from": 3712453, - "to": 3714517, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177281, - "label": "CATALYZES", - "from": 3714850, - "to": 3689814, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177286, - "label": "CATALYZES", - "from": 3689816, - "to": 3709331, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177290, - "label": "CATALYZES", - "from": 3689818, - "to": 3709014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177289, - "label": "CATALYZES", - "from": 3711631, - "to": 3689818, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210072, - "label": "COMPONENT_OF", - "from": 3718577, - "to": 3714533, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177305, - "label": "CATALYZES", - "from": 3710433, - "to": 3689826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210082, - "label": "COMPONENT_OF", - "from": 3714717, - "to": 3714541, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210080, - "label": "ENCODES", - "from": 3707263, - "to": 3714539, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177318, - "label": "CATALYZES", - "from": 3689832, - "to": 3708868, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177317, - "label": "CATALYZES", - "from": 3714265, - "to": 3689832, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210090, - "label": "ENCODES", - "from": 3701377, - "to": 3714546, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177326, - "label": "CATALYZES", - "from": 3689836, - "to": 3706467, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210092, - "label": "ENCODES", - "from": 3693834, - "to": 3714548, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177325, - "label": "CATALYZES", - "from": 3718460, - "to": 3689836, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308404, - "label": "REGULATES", - "from": 3716312, - "to": 3700219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308405, - "label": "REGULATES", - "from": 3711269, - "to": 3716312, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210098, - "label": "COMPONENT_OF", - "from": 3714421, - "to": 3714554, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210097, - "label": "ENCODES", - "from": 3701608, - "to": 3714553, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210096, - "label": "COMPONENT_OF", - "from": 3702194, - "to": 3714552, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308407, - "label": "REGULATES", - "from": 3716313, - "to": 3697284, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308401, - "label": "REGULATES", - "from": 3716311, - "to": 3689726, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308402, - "label": "REGULATES", - "from": 3677788, - "to": 3716311, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308413, - "label": "REGULATES", - "from": 3716315, - "to": 3688872, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210106, - "label": "COMPONENT_OF", - "from": 3711632, - "to": 3714560, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308414, - "label": "REGULATES", - "from": 3677478, - "to": 3716315, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177342, - "label": "CATALYZES", - "from": 3689844, - "to": 3709239, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308408, - "label": "REGULATES", - "from": 3679440, - "to": 3716313, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177341, - "label": "CATALYZES", - "from": 3708076, - "to": 3689844, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177347, - "label": "CATALYZES", - "from": 3711633, - "to": 3689847, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308422, - "label": "REGULATES", - "from": 3716318, - "to": 3730457, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242880, - "label": "CONSUMED_BY", - "from": 3677696, - "to": 3707778, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308423, - "label": "REGULATES", - "from": 3679440, - "to": 3716318, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177350, - "label": "CATALYZES", - "from": 3689848, - "to": 3709033, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177351, - "label": "CATALYZES", - "from": 3710433, - "to": 3689849, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308417, - "label": "REGULATES", - "from": 3711269, - "to": 3716316, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242884, - "label": "CONSUMED_BY", - "from": 3682077, - "to": 3707779, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242891, - "label": "CONSUMED_BY", - "from": 3679401, - "to": 3707780, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308428, - "label": "REGULATES", - "from": 3716320, - "to": 3726307, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308429, - "label": "REGULATES", - "from": 3679440, - "to": 3716320, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177352, - "label": "CATALYZES", - "from": 3689849, - "to": 3705599, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177353, - "label": "CATALYZES", - "from": 3704358, - "to": 3689850, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242895, - "label": "CONSUMED_BY", - "from": 3679336, - "to": 3707781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308425, - "label": "REGULATES", - "from": 3716319, - "to": 3727635, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308426, - "label": "REGULATES", - "from": 3679440, - "to": 3716319, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242892, - "label": "PRODUCES", - "from": 3707780, - "to": 3704441, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177357, - "label": "CATALYZES", - "from": 3712698, - "to": 3689852, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242898, - "label": "PRODUCES", - "from": 3707782, - "to": 3684267, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242897, - "label": "CONSUMED_BY", - "from": 3679115, - "to": 3707782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308438, - "label": "REGULATES", - "from": 3677368, - "to": 3716323, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210129, - "label": "COMPONENT_OF", - "from": 3702339, - "to": 3714582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308432, - "label": "REGULATES", - "from": 3681375, - "to": 3716321, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210134, - "label": "ENCODES", - "from": 3706834, - "to": 3714587, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210133, - "label": "COMPONENT_OF", - "from": 3710447, - "to": 3714586, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308435, - "label": "REGULATES", - "from": 3679440, - "to": 3716322, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242907, - "label": "CONSUMED_BY", - "from": 3677435, - "to": 3707784, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308444, - "label": "REGULATES", - "from": 3679440, - "to": 3716325, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210138, - "label": "COMPONENT_OF", - "from": 3708238, - "to": 3714590, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308446, - "label": "REGULATES", - "from": 3716326, - "to": 3694486, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308447, - "label": "REGULATES", - "from": 3679440, - "to": 3716326, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210143, - "label": "ENCODES", - "from": 3690417, - "to": 3714595, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308441, - "label": "REGULATES", - "from": 3679440, - "to": 3716324, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242909, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3707785, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242912, - "label": "PRODUCES", - "from": 3707785, - "to": 3670756, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308455, - "label": "REGULATES", - "from": 3716329, - "to": 3694573, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210144, - "label": "COMPONENT_OF", - "from": 3715380, - "to": 3714596, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242919, - "label": "CONSUMED_BY", - "from": 3677710, - "to": 3707787, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308450, - "label": "REGULATES", - "from": 3679440, - "to": 3716327, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242927, - "label": "PRODUCES", - "from": 3707788, - "to": 3682112, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308456, - "label": "REGULATES", - "from": 3679440, - "to": 3716329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210158, - "label": "COMPONENT_OF", - "from": 3713945, - "to": 3714608, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242925, - "label": "CONSUMED_BY", - "from": 3682153, - "to": 3707788, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308458, - "label": "REGULATES", - "from": 3716330, - "to": 3702005, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308459, - "label": "REGULATES", - "from": 3679440, - "to": 3716330, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308468, - "label": "REGULATES", - "from": 3711269, - "to": 3716333, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242930, - "label": "CONSUMED_BY", - "from": 3671356, - "to": 3707789, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210167, - "label": "COMPONENT_OF", - "from": 3702234, - "to": 3714614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242932, - "label": "PRODUCES", - "from": 3707789, - "to": 3675351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308477, - "label": "REGULATES", - "from": 3679440, - "to": 3716336, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242937, - "label": "PRODUCES", - "from": 3707790, - "to": 3674607, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210169, - "label": "COMPONENT_OF", - "from": 3704408, - "to": 3714616, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308473, - "label": "REGULATES", - "from": 3716335, - "to": 3696410, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308474, - "label": "REGULATES", - "from": 3711269, - "to": 3716335, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242946, - "label": "CONSUMED_BY", - "from": 3684271, - "to": 3707793, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308485, - "label": "REGULATES", - "from": 3716339, - "to": 3726430, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210177, - "label": "ENCODES", - "from": 3702901, - "to": 3714621, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308486, - "label": "REGULATES", - "from": 3679440, - "to": 3716339, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210176, - "label": "COMPONENT_OF", - "from": 3711331, - "to": 3714620, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242951, - "label": "CONSUMED_BY", - "from": 3677464, - "to": 3707794, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210183, - "label": "ENCODES", - "from": 3702754, - "to": 3714627, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210181, - "label": "ENCODES", - "from": 3719999, - "to": 3714625, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308492, - "label": "REGULATES", - "from": 3679440, - "to": 3716341, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308495, - "label": "REGULATES", - "from": 3679440, - "to": 3716342, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210184, - "label": "COMPONENT_OF", - "from": 3705830, - "to": 3714628, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210191, - "label": "ENCODES", - "from": 3701354, - "to": 3714635, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210190, - "label": "COMPONENT_OF", - "from": 3708226, - "to": 3714634, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242958, - "label": "CONSUMED_BY", - "from": 3684155, - "to": 3707795, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406806, - "label": "ELEMENT_OF", - "from": 3696088, - "to": 3729222, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308500, - "label": "REGULATES", - "from": 3716344, - "to": 3726799, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242963, - "label": "PRODUCES", - "from": 3707796, - "to": 3666882, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210194, - "label": "ENCODES", - "from": 3716709, - "to": 3714637, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308501, - "label": "REGULATES", - "from": 3679440, - "to": 3716344, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242960, - "label": "PRODUCES", - "from": 3707795, - "to": 3675803, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242966, - "label": "PRODUCES", - "from": 3707797, - "to": 3682046, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406803, - "label": "ELEMENT_OF", - "from": 3712087, - "to": 3729221, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210198, - "label": "ENCODES", - "from": 3699132, - "to": 3714639, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242965, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3707797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406800, - "label": "ELEMENT_OF", - "from": 3698604, - "to": 3729220, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308498, - "label": "REGULATES", - "from": 3679440, - "to": 3716343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210203, - "label": "COMPONENT_OF", - "from": 3715113, - "to": 3714640, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242969, - "label": "CONSUMED_BY", - "from": 3677711, - "to": 3707798, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308506, - "label": "REGULATES", - "from": 3716346, - "to": 3728826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242972, - "label": "PRODUCES", - "from": 3707798, - "to": 3676014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308507, - "label": "REGULATES", - "from": 3679440, - "to": 3716346, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242978, - "label": "PRODUCES", - "from": 3707800, - "to": 3682121, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210210, - "label": "COMPONENT_OF", - "from": 3711388, - "to": 3714646, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242976, - "label": "CONSUMED_BY", - "from": 3677501, - "to": 3707800, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406821, - "label": "ELEMENT_OF", - "from": 3685170, - "to": 3729226, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210208, - "label": "COMPONENT_OF", - "from": 3714110, - "to": 3714644, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308519, - "label": "REGULATES", - "from": 3711269, - "to": 3716350, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308512, - "label": "REGULATES", - "from": 3716348, - "to": 3697262, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308513, - "label": "REGULATES", - "from": 3679440, - "to": 3716348, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242981, - "label": "CONSUMED_BY", - "from": 3682009, - "to": 3707801, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406816, - "label": "ELEMENT_OF", - "from": 3719951, - "to": 3729224, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406830, - "label": "ELEMENT_OF", - "from": 3701493, - "to": 3729227, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308524, - "label": "REGULATES", - "from": 3716352, - "to": 3694961, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242987, - "label": "CONSUMED_BY", - "from": 3681206, - "to": 3707802, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210218, - "label": "COMPONENT_OF", - "from": 3715518, - "to": 3714650, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308525, - "label": "REGULATES", - "from": 3679440, - "to": 3716352, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308527, - "label": "REGULATES", - "from": 3716353, - "to": 3697195, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308522, - "label": "REGULATES", - "from": 3681204, - "to": 3716351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406838, - "label": "ELEMENT_OF", - "from": 3701845, - "to": 3729231, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242993, - "label": "PRODUCES", - "from": 3707803, - "to": 3682021, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 242992, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3707803, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406834, - "label": "ELEMENT_OF", - "from": 3702581, - "to": 3729228, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308528, - "label": "REGULATES", - "from": 3711269, - "to": 3716353, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275762, - "label": "REGULATES", - "from": 3709956, - "to": 3702961, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275763, - "label": "REGULATES", - "from": 3720094, - "to": 3709956, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308531, - "label": "REGULATES", - "from": 3711269, - "to": 3716354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243003, - "label": "PRODUCES", - "from": 3707805, - "to": 3669171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308540, - "label": "REGULATES", - "from": 3682150, - "to": 3716357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308542, - "label": "REGULATES", - "from": 3716358, - "to": 3697072, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308543, - "label": "REGULATES", - "from": 3679440, - "to": 3716358, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243007, - "label": "PRODUCES", - "from": 3707806, - "to": 3672762, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275768, - "label": "REGULATES", - "from": 3709958, - "to": 3698965, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308536, - "label": "REGULATES", - "from": 3716356, - "to": 3699509, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275769, - "label": "REGULATES", - "from": 3720094, - "to": 3709958, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308537, - "label": "REGULATES", - "from": 3711269, - "to": 3716356, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243005, - "label": "CONSUMED_BY", - "from": 3677460, - "to": 3707806, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210237, - "label": "ENCODES", - "from": 3701724, - "to": 3714661, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 210236, - "label": "COMPONENT_OF", - "from": 3702192, - "to": 3714660, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275780, - "label": "REGULATES", - "from": 3709962, - "to": 3729650, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308548, - "label": "REGULATES", - "from": 3716360, - "to": 3700240, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275781, - "label": "REGULATES", - "from": 3720077, - "to": 3709962, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308549, - "label": "REGULATES", - "from": 3679440, - "to": 3716360, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308545, - "label": "REGULATES", - "from": 3716359, - "to": 3699854, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406848, - "label": "ELEMENT_OF", - "from": 3694668, - "to": 3729235, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308546, - "label": "REGULATES", - "from": 3679440, - "to": 3716359, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243022, - "label": "CONSUMED_BY", - "from": 3684001, - "to": 3707809, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308555, - "label": "REGULATES", - "from": 3679440, - "to": 3716362, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308564, - "label": "REGULATES", - "from": 3679440, - "to": 3716365, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406871, - "label": "ELEMENT_OF", - "from": 3702613, - "to": 3729243, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243025, - "label": "PRODUCES", - "from": 3707809, - "to": 3677804, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308567, - "label": "REGULATES", - "from": 3679440, - "to": 3716366, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308560, - "label": "REGULATES", - "from": 3716364, - "to": 3727309, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308561, - "label": "REGULATES", - "from": 3679440, - "to": 3716364, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243028, - "label": "CONSUMED_BY", - "from": 3712661, - "to": 3707810, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308572, - "label": "REGULATES", - "from": 3716368, - "to": 3728727, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275805, - "label": "REGULATES", - "from": 3681755, - "to": 3709970, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308573, - "label": "REGULATES", - "from": 3679440, - "to": 3716368, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243033, - "label": "CONSUMED_BY", - "from": 3677582, - "to": 3707811, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275807, - "label": "REGULATES", - "from": 3709971, - "to": 3691376, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308575, - "label": "REGULATES", - "from": 3716369, - "to": 3687968, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275802, - "label": "REGULATES", - "from": 3677421, - "to": 3709969, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275813, - "label": "REGULATES", - "from": 3709973, - "to": 3729184, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308581, - "label": "REGULATES", - "from": 3716371, - "to": 3725989, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275814, - "label": "REGULATES", - "from": 3684130, - "to": 3709973, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243041, - "label": "CONSUMED_BY", - "from": 3671356, - "to": 3707813, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308582, - "label": "REGULATES", - "from": 3679440, - "to": 3716371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275808, - "label": "REGULATES", - "from": 3684128, - "to": 3709971, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308576, - "label": "REGULATES", - "from": 3681923, - "to": 3716369, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406882, - "label": "ELEMENT_OF", - "from": 3694571, - "to": 3729250, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308578, - "label": "REGULATES", - "from": 3716370, - "to": 3730404, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308579, - "label": "REGULATES", - "from": 3679440, - "to": 3716370, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243051, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3707815, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275821, - "label": "REGULATES", - "from": 3709976, - "to": 3701509, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275822, - "label": "REGULATES", - "from": 3684130, - "to": 3709976, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308590, - "label": "REGULATES", - "from": 3716374, - "to": 3699835, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406893, - "label": "ELEMENT_OF", - "from": 3702797, - "to": 3729251, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308591, - "label": "REGULATES", - "from": 3679440, - "to": 3716374, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308584, - "label": "REGULATES", - "from": 3716372, - "to": 3729037, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308585, - "label": "REGULATES", - "from": 3679440, - "to": 3716372, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243053, - "label": "PRODUCES", - "from": 3707815, - "to": 3670251, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275828, - "label": "REGULATES", - "from": 3677161, - "to": 3709978, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308596, - "label": "REGULATES", - "from": 3716376, - "to": 3696344, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308597, - "label": "REGULATES", - "from": 3679440, - "to": 3716376, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406901, - "label": "ELEMENT_OF", - "from": 3707143, - "to": 3729253, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308599, - "label": "REGULATES", - "from": 3716377, - "to": 3729208, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406910, - "label": "ELEMENT_OF", - "from": 3719993, - "to": 3729257, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243066, - "label": "CONSUMED_BY", - "from": 3677478, - "to": 3707817, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275832, - "label": "REGULATES", - "from": 3709980, - "to": 3729319, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308600, - "label": "REGULATES", - "from": 3679440, - "to": 3716377, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275833, - "label": "REGULATES", - "from": 3684130, - "to": 3709980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243070, - "label": "PRODUCES", - "from": 3707818, - "to": 3668186, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308602, - "label": "REGULATES", - "from": 3716378, - "to": 3700125, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308603, - "label": "REGULATES", - "from": 3711269, - "to": 3716378, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308612, - "label": "REGULATES", - "from": 3679284, - "to": 3716381, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275845, - "label": "REGULATES", - "from": 3681868, - "to": 3709984, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243074, - "label": "PRODUCES", - "from": 3707819, - "to": 3676979, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243072, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3707819, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406917, - "label": "ELEMENT_OF", - "from": 3693979, - "to": 3729260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275847, - "label": "REGULATES", - "from": 3709985, - "to": 3692728, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308608, - "label": "REGULATES", - "from": 3716380, - "to": 3696120, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243079, - "label": "PRODUCES", - "from": 3707820, - "to": 3679290, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308609, - "label": "REGULATES", - "from": 3711269, - "to": 3716380, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308611, - "label": "REGULATES", - "from": 3716381, - "to": 3689617, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308621, - "label": "REGULATES", - "from": 3679440, - "to": 3716384, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243081, - "label": "CONSUMED_BY", - "from": 3679018, - "to": 3707821, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275848, - "label": "REGULATES", - "from": 3677368, - "to": 3709985, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308618, - "label": "REGULATES", - "from": 3711269, - "to": 3716383, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275851, - "label": "REGULATES", - "from": 3677368, - "to": 3709986, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275860, - "label": "REGULATES", - "from": 3681362, - "to": 3709989, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243089, - "label": "PRODUCES", - "from": 3707822, - "to": 3671472, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406932, - "label": "ELEMENT_OF", - "from": 3699223, - "to": 3729265, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406933, - "label": "ELEMENT_OF", - "from": 3695191, - "to": 3729266, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275856, - "label": "REGULATES", - "from": 3709988, - "to": 3691382, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275857, - "label": "REGULATES", - "from": 3710272, - "to": 3709988, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308627, - "label": "REGULATES", - "from": 3679440, - "to": 3716386, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243099, - "label": "CONSUMED_BY", - "from": 3676180, - "to": 3707824, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275868, - "label": "REGULATES", - "from": 3709992, - "to": 3687854, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308636, - "label": "REGULATES", - "from": 3679440, - "to": 3716389, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275869, - "label": "REGULATES", - "from": 3677549, - "to": 3709992, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406943, - "label": "ELEMENT_OF", - "from": 3697123, - "to": 3729269, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308639, - "label": "REGULATES", - "from": 3679440, - "to": 3716390, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243096, - "label": "PRODUCES", - "from": 3707823, - "to": 3682150, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308632, - "label": "REGULATES", - "from": 3716388, - "to": 3729553, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243102, - "label": "PRODUCES", - "from": 3707824, - "to": 3670311, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 308633, - "label": "REGULATES", - "from": 3679440, - "to": 3716388, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275866, - "label": "REGULATES", - "from": 3681375, - "to": 3709991, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406950, - "label": "ELEMENT_OF", - "from": 3699406, - "to": 3729271, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275877, - "label": "REGULATES", - "from": 3709995, - "to": 3689757, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275878, - "label": "REGULATES", - "from": 3681355, - "to": 3709995, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243111, - "label": "PRODUCES", - "from": 3707826, - "to": 3679208, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243108, - "label": "CONSUMED_BY", - "from": 3677625, - "to": 3707826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243119, - "label": "PRODUCES", - "from": 3707827, - "to": 3676845, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243118, - "label": "CONSUMED_BY", - "from": 3673162, - "to": 3707827, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406952, - "label": "ELEMENT_OF", - "from": 3701415, - "to": 3729272, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243123, - "label": "PRODUCES", - "from": 3707827, - "to": 3677420, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243122, - "label": "PRODUCES", - "from": 3707827, - "to": 3667364, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275895, - "label": "REGULATES", - "from": 3710001, - "to": 3687825, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275890, - "label": "REGULATES", - "from": 3677336, - "to": 3709999, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243124, - "label": "PRODUCES", - "from": 3707827, - "to": 3677401, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406973, - "label": "ELEMENT_OF", - "from": 3701931, - "to": 3729280, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275896, - "label": "REGULATES", - "from": 3677625, - "to": 3710001, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243134, - "label": "PRODUCES", - "from": 3707829, - "to": 3666922, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275899, - "label": "REGULATES", - "from": 3684009, - "to": 3710002, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243132, - "label": "CONSUMED_BY", - "from": 3684317, - "to": 3707829, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243139, - "label": "PRODUCES", - "from": 3707830, - "to": 3681911, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406983, - "label": "ELEMENT_OF", - "from": 3697906, - "to": 3729284, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275910, - "label": "REGULATES", - "from": 3710006, - "to": 3689051, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406980, - "label": "ELEMENT_OF", - "from": 3706935, - "to": 3729283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243136, - "label": "CONSUMED_BY", - "from": 3685555, - "to": 3707830, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275911, - "label": "REGULATES", - "from": 3677394, - "to": 3710006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406976, - "label": "ELEMENT_OF", - "from": 3707293, - "to": 3729281, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406990, - "label": "ELEMENT_OF", - "from": 3699919, - "to": 3729288, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243146, - "label": "PRODUCES", - "from": 3707831, - "to": 3681272, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406988, - "label": "ELEMENT_OF", - "from": 3716777, - "to": 3729286, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275919, - "label": "REGULATES", - "from": 3710009, - "to": 3688893, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406984, - "label": "ELEMENT_OF", - "from": 3687579, - "to": 3729285, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406999, - "label": "ELEMENT_OF", - "from": 3698690, - "to": 3729291, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406996, - "label": "ELEMENT_OF", - "from": 3701354, - "to": 3729290, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275920, - "label": "REGULATES", - "from": 3681398, - "to": 3710009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243156, - "label": "CONSUMED_BY", - "from": 3715467, - "to": 3707834, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407007, - "label": "ELEMENT_OF", - "from": 3694101, - "to": 3729294, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275928, - "label": "REGULATES", - "from": 3710012, - "to": 3689231, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275929, - "label": "REGULATES", - "from": 3679467, - "to": 3710012, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243171, - "label": "CONSUMED_BY", - "from": 3677168, - "to": 3707837, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407013, - "label": "ELEMENT_OF", - "from": 3712091, - "to": 3729298, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275937, - "label": "REGULATES", - "from": 3710015, - "to": 3689272, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275938, - "label": "REGULATES", - "from": 3677464, - "to": 3710015, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243173, - "label": "CONSUMED_BY", - "from": 3679378, - "to": 3707838, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275950, - "label": "REGULATES", - "from": 3677368, - "to": 3710019, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243176, - "label": "PRODUCES", - "from": 3707838, - "to": 3682155, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275944, - "label": "REGULATES", - "from": 3677438, - "to": 3710017, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407018, - "label": "ELEMENT_OF", - "from": 3697704, - "to": 3729300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275959, - "label": "REGULATES", - "from": 3677711, - "to": 3710022, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275952, - "label": "REGULATES", - "from": 3710020, - "to": 3689642, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275953, - "label": "REGULATES", - "from": 3677788, - "to": 3710020, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407024, - "label": "ELEMENT_OF", - "from": 3694060, - "to": 3729302, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243188, - "label": "CONSUMED_BY", - "from": 3682018, - "to": 3707841, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275964, - "label": "REGULATES", - "from": 3710024, - "to": 3692664, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407039, - "label": "ELEMENT_OF", - "from": 3698659, - "to": 3729308, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275965, - "label": "REGULATES", - "from": 3666642, - "to": 3710024, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243198, - "label": "CONSUMED_BY", - "from": 3677707, - "to": 3707843, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243210, - "label": "PRODUCES", - "from": 3707845, - "to": 3668526, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243209, - "label": "PRODUCES", - "from": 3707845, - "to": 3671835, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275982, - "label": "REGULATES", - "from": 3710030, - "to": 3687841, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243208, - "label": "CONSUMED_BY", - "from": 3669745, - "to": 3707845, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275983, - "label": "REGULATES", - "from": 3681836, - "to": 3710030, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275976, - "label": "REGULATES", - "from": 3710028, - "to": 3688174, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243214, - "label": "CONSUMED_BY", - "from": 3681645, - "to": 3707847, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275977, - "label": "REGULATES", - "from": 3677560, - "to": 3710028, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243213, - "label": "PRODUCES", - "from": 3707846, - "to": 3669080, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243219, - "label": "CONSUMED_BY", - "from": 3670738, - "to": 3707848, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243222, - "label": "PRODUCES", - "from": 3707848, - "to": 3675215, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275985, - "label": "REGULATES", - "from": 3710031, - "to": 3692791, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275986, - "label": "REGULATES", - "from": 3681147, - "to": 3710031, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275998, - "label": "REGULATES", - "from": 3677711, - "to": 3710035, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243225, - "label": "CONSUMED_BY", - "from": 3681708, - "to": 3707849, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 275992, - "label": "REGULATES", - "from": 3677504, - "to": 3710033, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243232, - "label": "CONSUMED_BY", - "from": 3681528, - "to": 3707851, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243255, - "label": "CONSUMED_BY", - "from": 3683882, - "to": 3707856, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243259, - "label": "CONSUMED_BY", - "from": 3710267, - "to": 3707857, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243264, - "label": "CONSUMED_BY", - "from": 3678954, - "to": 3707858, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243271, - "label": "CONSUMED_BY", - "from": 3675216, - "to": 3707860, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243274, - "label": "PRODUCES", - "from": 3707860, - "to": 3675420, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243278, - "label": "CONSUMED_BY", - "from": 3677401, - "to": 3707861, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243283, - "label": "CONSUMED_BY", - "from": 3684274, - "to": 3707862, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243292, - "label": "PRODUCES", - "from": 3707863, - "to": 3667449, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243296, - "label": "CONSUMED_BY", - "from": 3684334, - "to": 3707864, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243302, - "label": "PRODUCES", - "from": 3707865, - "to": 3666457, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243301, - "label": "CONSUMED_BY", - "from": 3679307, - "to": 3707865, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243305, - "label": "CONSUMED_BY", - "from": 3671355, - "to": 3707866, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243314, - "label": "CONSUMED_BY", - "from": 3708377, - "to": 3707868, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243320, - "label": "CONSUMED_BY", - "from": 3710177, - "to": 3707869, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243326, - "label": "PRODUCES", - "from": 3707870, - "to": 3684248, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374407, - "label": "BINDS", - "from": 3723844, - "to": 3683241, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243328, - "label": "CONSUMED_BY", - "from": 3677707, - "to": 3707871, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243335, - "label": "CONSUMED_BY", - "from": 3671355, - "to": 3707872, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374401, - "label": "REGULATES", - "from": 3677368, - "to": 3723842, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374400, - "label": "REGULATES", - "from": 3723842, - "to": 3689786, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243338, - "label": "PRODUCES", - "from": 3707872, - "to": 3671335, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374415, - "label": "BINDS", - "from": 3723846, - "to": 3685117, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374409, - "label": "REGULATES", - "from": 3714331, - "to": 3723844, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374408, - "label": "REGULATES", - "from": 3723844, - "to": 3697718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243342, - "label": "PRODUCES", - "from": 3707873, - "to": 3669216, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243346, - "label": "PRODUCES", - "from": 3707874, - "to": 3677109, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243344, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3707874, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243351, - "label": "CONSUMED_BY", - "from": 3667467, - "to": 3707875, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374417, - "label": "REGULATES", - "from": 3710228, - "to": 3723846, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243353, - "label": "PRODUCES", - "from": 3707875, - "to": 3682045, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243356, - "label": "CONSUMED_BY", - "from": 3683881, - "to": 3707876, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374437, - "label": "BINDS", - "from": 3723852, - "to": 3679620, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374439, - "label": "REGULATES", - "from": 3712313, - "to": 3723852, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374438, - "label": "REGULATES", - "from": 3723852, - "to": 3729416, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374445, - "label": "REGULATES", - "from": 3723854, - "to": 3694585, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374444, - "label": "BINDS", - "from": 3723854, - "to": 3682992, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374446, - "label": "REGULATES", - "from": 3711285, - "to": 3723854, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177843, - "label": "CATALYZES", - "from": 3711457, - "to": 3689855, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177846, - "label": "CATALYZES", - "from": 3689856, - "to": 3708671, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177845, - "label": "CATALYZES", - "from": 3712680, - "to": 3689856, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177855, - "label": "CATALYZES", - "from": 3712674, - "to": 3689861, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177859, - "label": "CATALYZES", - "from": 3710433, - "to": 3689863, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374468, - "label": "REGULATES", - "from": 3718263, - "to": 3723860, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177862, - "label": "CATALYZES", - "from": 3689864, - "to": 3708641, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374466, - "label": "BINDS", - "from": 3723860, - "to": 3687219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177861, - "label": "CATALYZES", - "from": 3713972, - "to": 3689864, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177865, - "label": "CATALYZES", - "from": 3712733, - "to": 3689866, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177875, - "label": "CATALYZES", - "from": 3712559, - "to": 3690963, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374489, - "label": "REGULATES", - "from": 3723866, - "to": 3729455, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177887, - "label": "CATALYZES", - "from": 3718460, - "to": 3690969, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374490, - "label": "REGULATES", - "from": 3712313, - "to": 3723866, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374500, - "label": "BINDS", - "from": 3723869, - "to": 3686090, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177888, - "label": "CATALYZES", - "from": 3690969, - "to": 3709591, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374502, - "label": "REGULATES", - "from": 3707928, - "to": 3723869, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374497, - "label": "REGULATES", - "from": 3723868, - "to": 3695285, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177895, - "label": "CATALYZES", - "from": 3714255, - "to": 3690973, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374496, - "label": "BINDS", - "from": 3723868, - "to": 3679667, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374498, - "label": "REGULATES", - "from": 3710167, - "to": 3723868, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177899, - "label": "CATALYZES", - "from": 3715334, - "to": 3690975, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177896, - "label": "CATALYZES", - "from": 3690973, - "to": 3707366, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177902, - "label": "CATALYZES", - "from": 3690976, - "to": 3705339, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177901, - "label": "CATALYZES", - "from": 3707919, - "to": 3690976, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374517, - "label": "REGULATES", - "from": 3677788, - "to": 3723873, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177906, - "label": "CATALYZES", - "from": 3690978, - "to": 3705515, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374516, - "label": "REGULATES", - "from": 3723873, - "to": 3688805, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177905, - "label": "CATALYZES", - "from": 3714112, - "to": 3690978, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177912, - "label": "CATALYZES", - "from": 3690981, - "to": 3705210, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177927, - "label": "CATALYZES", - "from": 3710365, - "to": 3690989, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374540, - "label": "REGULATES", - "from": 3712313, - "to": 3723879, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177928, - "label": "CATALYZES", - "from": 3690989, - "to": 3707818, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177934, - "label": "CATALYZES", - "from": 3690992, - "to": 3707825, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374536, - "label": "REGULATES", - "from": 3711179, - "to": 3723878, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374539, - "label": "REGULATES", - "from": 3723879, - "to": 3728822, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177933, - "label": "CATALYZES", - "from": 3714007, - "to": 3690992, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177959, - "label": "CATALYZES", - "from": 3711601, - "to": 3691005, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177963, - "label": "CATALYZES", - "from": 3718562, - "to": 3691007, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374569, - "label": "BINDS", - "from": 3723887, - "to": 3678825, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374571, - "label": "REGULATES", - "from": 3711247, - "to": 3723887, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177964, - "label": "CATALYZES", - "from": 3691007, - "to": 3706774, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374570, - "label": "REGULATES", - "from": 3723887, - "to": 3726261, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177971, - "label": "CATALYZES", - "from": 3718460, - "to": 3691011, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177969, - "label": "CATALYZES", - "from": 3710183, - "to": 3691010, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374577, - "label": "REGULATES", - "from": 3723889, - "to": 3695998, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177974, - "label": "CATALYZES", - "from": 3691012, - "to": 3706316, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374576, - "label": "BINDS", - "from": 3723889, - "to": 3682949, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177975, - "label": "CATALYZES", - "from": 3714972, - "to": 3691013, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177972, - "label": "CATALYZES", - "from": 3691011, - "to": 3709347, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374578, - "label": "REGULATES", - "from": 3710594, - "to": 3723889, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374591, - "label": "BINDS", - "from": 3723893, - "to": 3687309, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374593, - "label": "REGULATES", - "from": 3714706, - "to": 3723893, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177989, - "label": "CATALYZES", - "from": 3712636, - "to": 3691020, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177996, - "label": "CATALYZES", - "from": 3691023, - "to": 3707531, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178002, - "label": "CATALYZES", - "from": 3691026, - "to": 3708678, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374609, - "label": "REGULATES", - "from": 3707928, - "to": 3723897, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374637, - "label": "BINDS", - "from": 3723905, - "to": 3679655, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374639, - "label": "REGULATES", - "from": 3711317, - "to": 3723905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374638, - "label": "REGULATES", - "from": 3723905, - "to": 3695143, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374635, - "label": "REGULATES", - "from": 3710270, - "to": 3723904, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 374634, - "label": "REGULATES", - "from": 3723904, - "to": 3696186, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178029, - "label": "CATALYZES", - "from": 3710432, - "to": 3691040, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178034, - "label": "CATALYZES", - "from": 3691042, - "to": 3708693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178032, - "label": "CATALYZES", - "from": 3691041, - "to": 3706344, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178033, - "label": "CATALYZES", - "from": 3712312, - "to": 3691042, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178037, - "label": "CATALYZES", - "from": 3710144, - "to": 3691044, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178058, - "label": "CATALYZES", - "from": 3691054, - "to": 3708789, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178057, - "label": "CATALYZES", - "from": 3712765, - "to": 3691054, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243602, - "label": "PRODUCES", - "from": 3707877, - "to": 3681284, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243600, - "label": "CONSUMED_BY", - "from": 3679221, - "to": 3707877, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243607, - "label": "PRODUCES", - "from": 3707878, - "to": 3710375, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178070, - "label": "CATALYZES", - "from": 3691060, - "to": 3708586, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243605, - "label": "CONSUMED_BY", - "from": 3681287, - "to": 3707878, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178069, - "label": "CATALYZES", - "from": 3718664, - "to": 3691060, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243611, - "label": "CONSUMED_BY", - "from": 3668188, - "to": 3707880, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243609, - "label": "CONSUMED_BY", - "from": 3683863, - "to": 3707879, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243614, - "label": "PRODUCES", - "from": 3707880, - "to": 3670244, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243613, - "label": "PRODUCES", - "from": 3707880, - "to": 3670335, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243616, - "label": "CONSUMED_BY", - "from": 3708254, - "to": 3707881, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243626, - "label": "CONSUMED_BY", - "from": 3670738, - "to": 3707883, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243629, - "label": "PRODUCES", - "from": 3707883, - "to": 3684260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243635, - "label": "PRODUCES", - "from": 3707884, - "to": 3681524, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243633, - "label": "CONSUMED_BY", - "from": 3673162, - "to": 3707884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243637, - "label": "PRODUCES", - "from": 3707884, - "to": 3669843, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243636, - "label": "PRODUCES", - "from": 3707884, - "to": 3669981, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243644, - "label": "CONSUMED_BY", - "from": 3674873, - "to": 3708432, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243649, - "label": "CONSUMED_BY", - "from": 3671495, - "to": 3708433, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243652, - "label": "PRODUCES", - "from": 3708433, - "to": 3671833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243657, - "label": "PRODUCES", - "from": 3708434, - "to": 3684021, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243669, - "label": "CONSUMED_BY", - "from": 3681190, - "to": 3708437, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243679, - "label": "CONSUMED_BY", - "from": 3668522, - "to": 3708439, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243682, - "label": "PRODUCES", - "from": 3708439, - "to": 3668123, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243686, - "label": "CONSUMED_BY", - "from": 3677560, - "to": 3708440, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243691, - "label": "CONSUMED_BY", - "from": 3667424, - "to": 3708441, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407530, - "label": "ELEMENT_OF", - "from": 3719965, - "to": 3729312, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407541, - "label": "ELEMENT_OF", - "from": 3699666, - "to": 3729314, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342003, - "label": "REGULATES", - "from": 3677337, - "to": 3719649, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407536, - "label": "ELEMENT_OF", - "from": 3690792, - "to": 3729313, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243707, - "label": "CONSUMED_BY", - "from": 3670744, - "to": 3708443, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407550, - "label": "ELEMENT_OF", - "from": 3711727, - "to": 3729318, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342015, - "label": "REGULATES", - "from": 3711285, - "to": 3719652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342014, - "label": "REGULATES", - "from": 3719652, - "to": 3700006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342009, - "label": "BINDS", - "from": 3719651, - "to": 3682952, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243710, - "label": "CONSUMED_BY", - "from": 3682143, - "to": 3708444, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342011, - "label": "REGULATES", - "from": 3710270, - "to": 3719651, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407544, - "label": "ELEMENT_OF", - "from": 3707180, - "to": 3729315, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342010, - "label": "REGULATES", - "from": 3719651, - "to": 3700065, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342021, - "label": "REGULATES", - "from": 3719654, - "to": 3699170, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342020, - "label": "BINDS", - "from": 3719654, - "to": 3687412, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243712, - "label": "PRODUCES", - "from": 3708444, - "to": 3670406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342022, - "label": "REGULATES", - "from": 3711285, - "to": 3719654, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342018, - "label": "REGULATES", - "from": 3684133, - "to": 3719653, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243723, - "label": "PRODUCES", - "from": 3708446, - "to": 3666734, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407565, - "label": "ELEMENT_OF", - "from": 3707222, - "to": 3729322, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342025, - "label": "REGULATES", - "from": 3684013, - "to": 3719655, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342024, - "label": "REGULATES", - "from": 3719655, - "to": 3689608, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243725, - "label": "CONSUMED_BY", - "from": 3677445, - "to": 3708447, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342037, - "label": "REGULATES", - "from": 3710228, - "to": 3719658, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243730, - "label": "CONSUMED_BY", - "from": 3672873, - "to": 3708448, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342039, - "label": "REGULATES", - "from": 3719659, - "to": 3688099, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407570, - "label": "ELEMENT_OF", - "from": 3701535, - "to": 3729324, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243732, - "label": "PRODUCES", - "from": 3708448, - "to": 3676130, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243738, - "label": "PRODUCES", - "from": 3708449, - "to": 3684154, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342044, - "label": "REGULATES", - "from": 3715127, - "to": 3719660, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342047, - "label": "REGULATES", - "from": 3677266, - "to": 3719661, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243743, - "label": "CONSUMED_BY", - "from": 3669944, - "to": 3708451, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342040, - "label": "REGULATES", - "from": 3677711, - "to": 3719659, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342043, - "label": "REGULATES", - "from": 3719660, - "to": 3699199, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342042, - "label": "BINDS", - "from": 3719660, - "to": 3686584, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407591, - "label": "ELEMENT_OF", - "from": 3695898, - "to": 3729331, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243745, - "label": "PRODUCES", - "from": 3708451, - "to": 3668533, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243750, - "label": "CONSUMED_BY", - "from": 3679067, - "to": 3708452, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407585, - "label": "ELEMENT_OF", - "from": 3712185, - "to": 3729329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243755, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3708453, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407598, - "label": "ELEMENT_OF", - "from": 3701415, - "to": 3729333, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407595, - "label": "ELEMENT_OF", - "from": 3701809, - "to": 3729332, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342059, - "label": "REGULATES", - "from": 3710208, - "to": 3719664, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243763, - "label": "CONSUMED_BY", - "from": 3681533, - "to": 3708454, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342065, - "label": "REGULATES", - "from": 3719666, - "to": 3697959, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407603, - "label": "ELEMENT_OF", - "from": 3699956, - "to": 3729334, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342064, - "label": "BINDS", - "from": 3719666, - "to": 3682961, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342066, - "label": "REGULATES", - "from": 3712283, - "to": 3719666, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243773, - "label": "PRODUCES", - "from": 3708456, - "to": 3681437, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243779, - "label": "PRODUCES", - "from": 3708457, - "to": 3677688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342084, - "label": "REGULATES", - "from": 3677613, - "to": 3719671, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407620, - "label": "ELEMENT_OF", - "from": 3697988, - "to": 3729338, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243777, - "label": "CONSUMED_BY", - "from": 3681876, - "to": 3708457, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243782, - "label": "CONSUMED_BY", - "from": 3677460, - "to": 3708458, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342083, - "label": "REGULATES", - "from": 3719671, - "to": 3691418, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407630, - "label": "ELEMENT_OF", - "from": 3699777, - "to": 3729341, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243786, - "label": "PRODUCES", - "from": 3708459, - "to": 3684058, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243795, - "label": "PRODUCES", - "from": 3708461, - "to": 3677067, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243799, - "label": "PRODUCES", - "from": 3708462, - "to": 3681220, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243797, - "label": "CONSUMED_BY", - "from": 3670482, - "to": 3708462, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407646, - "label": "ELEMENT_OF", - "from": 3696199, - "to": 3729344, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243803, - "label": "CONSUMED_BY", - "from": 3681919, - "to": 3708463, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342105, - "label": "REGULATES", - "from": 3719677, - "to": 3687769, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243807, - "label": "PRODUCES", - "from": 3708463, - "to": 3673206, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342106, - "label": "REGULATES", - "from": 3677452, - "to": 3719677, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243811, - "label": "PRODUCES", - "from": 3708464, - "to": 3682140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342117, - "label": "REGULATES", - "from": 3714495, - "to": 3719680, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407655, - "label": "ELEMENT_OF", - "from": 3697999, - "to": 3729348, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243809, - "label": "CONSUMED_BY", - "from": 3715467, - "to": 3708464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342119, - "label": "BINDS", - "from": 3719681, - "to": 3682970, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243815, - "label": "PRODUCES", - "from": 3708465, - "to": 3681375, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243814, - "label": "CONSUMED_BY", - "from": 3681316, - "to": 3708465, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342115, - "label": "BINDS", - "from": 3719680, - "to": 3686106, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243818, - "label": "CONSUMED_BY", - "from": 3712525, - "to": 3708466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342121, - "label": "REGULATES", - "from": 3710594, - "to": 3719681, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243820, - "label": "PRODUCES", - "from": 3708466, - "to": 3710228, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309365, - "label": "REGULATES", - "from": 3681638, - "to": 3716392, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407671, - "label": "ELEMENT_OF", - "from": 3699742, - "to": 3729351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342135, - "label": "REGULATES", - "from": 3677464, - "to": 3719685, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309367, - "label": "REGULATES", - "from": 3716393, - "to": 3728069, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243830, - "label": "PRODUCES", - "from": 3708468, - "to": 3679474, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309361, - "label": "REGULATES", - "from": 3716391, - "to": 3727995, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243829, - "label": "CONSUMED_BY", - "from": 3684064, - "to": 3708468, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309362, - "label": "REGULATES", - "from": 3679440, - "to": 3716391, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243835, - "label": "PRODUCES", - "from": 3708469, - "to": 3672526, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342141, - "label": "BINDS", - "from": 3719687, - "to": 3680016, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243833, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3708469, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342143, - "label": "REGULATES", - "from": 3710578, - "to": 3719687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 243839, - "label": "CONSUMED_BY", - "from": 3668128, - "to": 3708470, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309368, - "label": "REGULATES", - "from": 3679440, - "to": 3716393, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309370, - "label": "REGULATES", - "from": 3716394, - "to": 3730467, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309371, - "label": "REGULATES", - "from": 3679440, - "to": 3716394, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309380, - "label": "REGULATES", - "from": 3684290, - "to": 3716397, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309383, - "label": "REGULATES", - "from": 3711269, - "to": 3716398, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407683, - "label": "ELEMENT_OF", - "from": 3698010, - "to": 3729357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309377, - "label": "REGULATES", - "from": 3679440, - "to": 3716396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309379, - "label": "REGULATES", - "from": 3716397, - "to": 3685810, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342157, - "label": "REGULATES", - "from": 3684068, - "to": 3719691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309388, - "label": "REGULATES", - "from": 3716400, - "to": 3720410, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309389, - "label": "REGULATES", - "from": 3679440, - "to": 3716400, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342159, - "label": "BINDS", - "from": 3719692, - "to": 3686184, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342152, - "label": "BINDS", - "from": 3719690, - "to": 3685252, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342154, - "label": "REGULATES", - "from": 3708423, - "to": 3719690, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342165, - "label": "REGULATES", - "from": 3715127, - "to": 3719693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309397, - "label": "REGULATES", - "from": 3716403, - "to": 3699160, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407700, - "label": "ELEMENT_OF", - "from": 3707326, - "to": 3729362, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309398, - "label": "REGULATES", - "from": 3711269, - "to": 3716403, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342161, - "label": "REGULATES", - "from": 3710578, - "to": 3719692, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309394, - "label": "REGULATES", - "from": 3716402, - "to": 3699919, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407696, - "label": "ELEMENT_OF", - "from": 3697934, - "to": 3729360, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342163, - "label": "BINDS", - "from": 3719693, - "to": 3678758, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309395, - "label": "REGULATES", - "from": 3711269, - "to": 3716402, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407710, - "label": "ELEMENT_OF", - "from": 3707258, - "to": 3729365, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309404, - "label": "REGULATES", - "from": 3679440, - "to": 3716405, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407708, - "label": "ELEMENT_OF", - "from": 3697766, - "to": 3729364, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309406, - "label": "REGULATES", - "from": 3716406, - "to": 3694835, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309407, - "label": "REGULATES", - "from": 3711269, - "to": 3716406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407705, - "label": "ELEMENT_OF", - "from": 3693919, - "to": 3729363, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309403, - "label": "REGULATES", - "from": 3716405, - "to": 3696992, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309414, - "label": "REGULATES", - "from": 3677458, - "to": 3716408, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342179, - "label": "REGULATES", - "from": 3677447, - "to": 3719697, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407712, - "label": "ELEMENT_OF", - "from": 3707295, - "to": 3729367, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342189, - "label": "BINDS", - "from": 3719700, - "to": 3679897, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342191, - "label": "REGULATES", - "from": 3711237, - "to": 3719700, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309423, - "label": "BINDS", - "from": 3716411, - "to": 3679838, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407720, - "label": "ELEMENT_OF", - "from": 3697689, - "to": 3729368, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342198, - "label": "REGULATES", - "from": 3711179, - "to": 3719702, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342193, - "label": "REGULATES", - "from": 3719701, - "to": 3691324, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309424, - "label": "REGULATES", - "from": 3716411, - "to": 3694670, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309425, - "label": "REGULATES", - "from": 3710208, - "to": 3716411, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342194, - "label": "REGULATES", - "from": 3677464, - "to": 3719701, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309438, - "label": "BINDS", - "from": 3716415, - "to": 3687437, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309439, - "label": "REGULATES", - "from": 3716415, - "to": 3699288, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342215, - "label": "REGULATES", - "from": 3719707, - "to": 3692782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309440, - "label": "REGULATES", - "from": 3711285, - "to": 3716415, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407747, - "label": "ELEMENT_OF", - "from": 3698970, - "to": 3729374, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407745, - "label": "ELEMENT_OF", - "from": 3696094, - "to": 3729372, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407758, - "label": "ELEMENT_OF", - "from": 3697016, - "to": 3729380, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342220, - "label": "REGULATES", - "from": 3714706, - "to": 3719708, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407756, - "label": "ELEMENT_OF", - "from": 3701841, - "to": 3729379, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407754, - "label": "ELEMENT_OF", - "from": 3698704, - "to": 3729378, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342216, - "label": "REGULATES", - "from": 3681872, - "to": 3719707, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342219, - "label": "REGULATES", - "from": 3719708, - "to": 3729444, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342218, - "label": "BINDS", - "from": 3719708, - "to": 3686227, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342229, - "label": "BINDS", - "from": 3719711, - "to": 3679661, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342231, - "label": "REGULATES", - "from": 3704560, - "to": 3719711, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309462, - "label": "REGULATES", - "from": 3710274, - "to": 3716421, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309458, - "label": "REGULATES", - "from": 3681365, - "to": 3716420, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309469, - "label": "REGULATES", - "from": 3708153, - "to": 3716423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309476, - "label": "REGULATES", - "from": 3677368, - "to": 3716425, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309478, - "label": "BINDS", - "from": 3716426, - "to": 3684987, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309475, - "label": "REGULATES", - "from": 3716425, - "to": 3691498, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309486, - "label": "REGULATES", - "from": 3716428, - "to": 3686013, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309487, - "label": "REGULATES", - "from": 3677168, - "to": 3716428, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309480, - "label": "REGULATES", - "from": 3707928, - "to": 3716426, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309495, - "label": "REGULATES", - "from": 3708153, - "to": 3716430, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309497, - "label": "BINDS", - "from": 3716431, - "to": 3685026, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309499, - "label": "REGULATES", - "from": 3711285, - "to": 3716431, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309517, - "label": "REGULATES", - "from": 3710208, - "to": 3716436, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309515, - "label": "BINDS", - "from": 3716436, - "to": 3682829, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309533, - "label": "BINDS", - "from": 3716441, - "to": 3687520, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309534, - "label": "REGULATES", - "from": 3716441, - "to": 3696989, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309535, - "label": "REGULATES", - "from": 3710270, - "to": 3716441, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309530, - "label": "REGULATES", - "from": 3716440, - "to": 3689862, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309531, - "label": "REGULATES", - "from": 3682064, - "to": 3716440, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309541, - "label": "BINDS", - "from": 3716443, - "to": 3687202, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309543, - "label": "REGULATES", - "from": 3715027, - "to": 3716443, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309557, - "label": "REGULATES", - "from": 3711285, - "to": 3716447, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309555, - "label": "BINDS", - "from": 3716447, - "to": 3678667, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309572, - "label": "REGULATES", - "from": 3705945, - "to": 3716451, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309570, - "label": "BINDS", - "from": 3716451, - "to": 3678912, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309571, - "label": "REGULATES", - "from": 3716451, - "to": 3699492, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309577, - "label": "BINDS", - "from": 3716453, - "to": 3683247, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309579, - "label": "REGULATES", - "from": 3712586, - "to": 3716453, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309589, - "label": "REGULATES", - "from": 3716456, - "to": 3687705, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309590, - "label": "REGULATES", - "from": 3685566, - "to": 3716456, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309596, - "label": "REGULATES", - "from": 3716458, - "to": 3691412, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309597, - "label": "REGULATES", - "from": 3679067, - "to": 3716458, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309592, - "label": "BINDS", - "from": 3716457, - "to": 3685494, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309594, - "label": "REGULATES", - "from": 3711285, - "to": 3716457, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342487, - "label": "BINDS", - "from": 3719716, - "to": 3686397, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342481, - "label": "REGULATES", - "from": 3719714, - "to": 3730310, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342480, - "label": "BINDS", - "from": 3719714, - "to": 3686498, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342482, - "label": "REGULATES", - "from": 3712313, - "to": 3719714, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342495, - "label": "BINDS", - "from": 3719718, - "to": 3682977, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342489, - "label": "REGULATES", - "from": 3712586, - "to": 3719716, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342497, - "label": "REGULATES", - "from": 3708153, - "to": 3719718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342504, - "label": "REGULATES", - "from": 3708153, - "to": 3719720, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342517, - "label": "BINDS", - "from": 3719724, - "to": 3685210, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342519, - "label": "REGULATES", - "from": 3710270, - "to": 3719724, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342518, - "label": "REGULATES", - "from": 3719724, - "to": 3697302, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211444, - "label": "ENCODES", - "from": 3716673, - "to": 3714665, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211450, - "label": "ENCODES", - "from": 3701613, - "to": 3714671, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211454, - "label": "ENCODES", - "from": 3690789, - "to": 3714675, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342522, - "label": "REGULATES", - "from": 3681755, - "to": 3719725, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342535, - "label": "BINDS", - "from": 3719729, - "to": 3686507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211456, - "label": "ENCODES", - "from": 3717118, - "to": 3714677, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342529, - "label": "REGULATES", - "from": 3677560, - "to": 3719727, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342537, - "label": "REGULATES", - "from": 3712313, - "to": 3719729, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342536, - "label": "REGULATES", - "from": 3719729, - "to": 3726149, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211469, - "label": "COMPONENT_OF", - "from": 3706211, - "to": 3714685, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211474, - "label": "COMPONENT_OF", - "from": 3704140, - "to": 3714689, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342557, - "label": "BINDS", - "from": 3719735, - "to": 3679698, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342559, - "label": "REGULATES", - "from": 3718384, - "to": 3719735, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211480, - "label": "COMPONENT_OF", - "from": 3711182, - "to": 3714695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342558, - "label": "REGULATES", - "from": 3719735, - "to": 3697679, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211488, - "label": "COMPONENT_OF", - "from": 3718294, - "to": 3714701, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211493, - "label": "ENCODES", - "from": 3701363, - "to": 3714706, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342575, - "label": "BINDS", - "from": 3719740, - "to": 3682976, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342583, - "label": "BINDS", - "from": 3719742, - "to": 3687301, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211504, - "label": "COMPONENT_OF", - "from": 3718651, - "to": 3714715, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342577, - "label": "REGULATES", - "from": 3710270, - "to": 3719740, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211508, - "label": "COMPONENT_OF", - "from": 3705893, - "to": 3714717, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211514, - "label": "COMPONENT_OF", - "from": 3706189, - "to": 3714723, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342591, - "label": "REGULATES", - "from": 3719744, - "to": 3729645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342590, - "label": "BINDS", - "from": 3719744, - "to": 3683129, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342585, - "label": "REGULATES", - "from": 3710582, - "to": 3719742, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342584, - "label": "REGULATES", - "from": 3719742, - "to": 3699325, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342592, - "label": "REGULATES", - "from": 3712313, - "to": 3719744, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342595, - "label": "REGULATES", - "from": 3684188, - "to": 3719745, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375374, - "label": "REGULATES", - "from": 3711265, - "to": 3723909, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375381, - "label": "REGULATES", - "from": 3723911, - "to": 3699989, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375380, - "label": "BINDS", - "from": 3723911, - "to": 3687208, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342612, - "label": "BINDS", - "from": 3719750, - "to": 3683032, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211538, - "label": "COMPONENT_OF", - "from": 3718435, - "to": 3714739, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375382, - "label": "REGULATES", - "from": 3711285, - "to": 3723911, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342614, - "label": "REGULATES", - "from": 3710270, - "to": 3719750, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211536, - "label": "ENCODES", - "from": 3690769, - "to": 3714738, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375378, - "label": "REGULATES", - "from": 3707928, - "to": 3723910, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342621, - "label": "REGULATES", - "from": 3708153, - "to": 3719752, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342620, - "label": "REGULATES", - "from": 3719752, - "to": 3695000, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211550, - "label": "COMPONENT_OF", - "from": 3718621, - "to": 3714751, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342619, - "label": "BINDS", - "from": 3719752, - "to": 3683169, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211549, - "label": "ENCODES", - "from": 3716624, - "to": 3714750, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211548, - "label": "COMPONENT_OF", - "from": 3715071, - "to": 3714749, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342629, - "label": "REGULATES", - "from": 3710609, - "to": 3719754, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342628, - "label": "REGULATES", - "from": 3719754, - "to": 3697282, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342631, - "label": "REGULATES", - "from": 3719755, - "to": 3687740, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211558, - "label": "ENCODES", - "from": 3707180, - "to": 3714758, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342627, - "label": "BINDS", - "from": 3719754, - "to": 3685396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211556, - "label": "COMPONENT_OF", - "from": 3715382, - "to": 3714757, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342632, - "label": "REGULATES", - "from": 3677368, - "to": 3719755, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342645, - "label": "BINDS", - "from": 3719759, - "to": 3682937, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342647, - "label": "REGULATES", - "from": 3712313, - "to": 3719759, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342646, - "label": "REGULATES", - "from": 3719759, - "to": 3727656, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375422, - "label": "REGULATES", - "from": 3681872, - "to": 3723922, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211586, - "label": "COMPONENT_OF", - "from": 3714595, - "to": 3714773, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211584, - "label": "COMPONENT_OF", - "from": 3711191, - "to": 3714771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211589, - "label": "COMPONENT_OF", - "from": 3715364, - "to": 3714775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342671, - "label": "BINDS", - "from": 3719766, - "to": 3678907, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211596, - "label": "COMPONENT_OF", - "from": 3714133, - "to": 3714779, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375441, - "label": "REGULATES", - "from": 3684290, - "to": 3723927, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342673, - "label": "REGULATES", - "from": 3708153, - "to": 3719766, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375440, - "label": "REGULATES", - "from": 3723927, - "to": 3692711, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342672, - "label": "REGULATES", - "from": 3719766, - "to": 3702003, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211606, - "label": "COMPONENT_OF", - "from": 3714023, - "to": 3714783, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211604, - "label": "ENCODES", - "from": 3712068, - "to": 3714782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375453, - "label": "REGULATES", - "from": 3705945, - "to": 3723930, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375452, - "label": "REGULATES", - "from": 3723930, - "to": 3699406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375455, - "label": "BINDS", - "from": 3723931, - "to": 3687380, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211615, - "label": "COMPONENT_OF", - "from": 3715009, - "to": 3714789, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375451, - "label": "BINDS", - "from": 3723930, - "to": 3685105, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342693, - "label": "BINDS", - "from": 3719772, - "to": 3682852, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342695, - "label": "REGULATES", - "from": 3711207, - "to": 3719772, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342694, - "label": "REGULATES", - "from": 3719772, - "to": 3694752, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375457, - "label": "REGULATES", - "from": 3711249, - "to": 3723931, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375456, - "label": "REGULATES", - "from": 3723931, - "to": 3697200, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342700, - "label": "BINDS", - "from": 3719774, - "to": 3686130, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342702, - "label": "REGULATES", - "from": 3712313, - "to": 3719774, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375467, - "label": "REGULATES", - "from": 3679065, - "to": 3723934, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211635, - "label": "ENCODES", - "from": 3690670, - "to": 3714797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408247, - "label": "ELEMENT_OF", - "from": 3711710, - "to": 3729381, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211639, - "label": "ENCODES", - "from": 3707067, - "to": 3714801, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342705, - "label": "REGULATES", - "from": 3677368, - "to": 3719775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408253, - "label": "ELEMENT_OF", - "from": 3698833, - "to": 3729382, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211646, - "label": "COMPONENT_OF", - "from": 3704597, - "to": 3714806, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211648, - "label": "COMPONENT_OF", - "from": 3718455, - "to": 3714808, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211655, - "label": "COMPONENT_OF", - "from": 3714717, - "to": 3714814, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408269, - "label": "ELEMENT_OF", - "from": 3716975, - "to": 3729387, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375509, - "label": "REGULATES", - "from": 3723945, - "to": 3697758, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375508, - "label": "BINDS", - "from": 3723945, - "to": 3685465, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375510, - "label": "REGULATES", - "from": 3711285, - "to": 3723945, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375505, - "label": "REGULATES", - "from": 3723944, - "to": 3700221, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408275, - "label": "ELEMENT_OF", - "from": 3712101, - "to": 3729388, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375504, - "label": "BINDS", - "from": 3723944, - "to": 3679544, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211669, - "label": "COMPONENT_OF", - "from": 3714290, - "to": 3714826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375506, - "label": "REGULATES", - "from": 3710246, - "to": 3723944, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375517, - "label": "REGULATES", - "from": 3682211, - "to": 3723947, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375516, - "label": "REGULATES", - "from": 3723947, - "to": 3691392, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211679, - "label": "COMPONENT_OF", - "from": 3718478, - "to": 3714832, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211678, - "label": "ENCODES", - "from": 3690754, - "to": 3714831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408281, - "label": "ELEMENT_OF", - "from": 3702705, - "to": 3729390, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375514, - "label": "REGULATES", - "from": 3707928, - "to": 3723946, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408295, - "label": "ELEMENT_OF", - "from": 3701336, - "to": 3729394, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375533, - "label": "REGULATES", - "from": 3705945, - "to": 3723951, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408301, - "label": "ELEMENT_OF", - "from": 3700119, - "to": 3729398, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375529, - "label": "REGULATES", - "from": 3711265, - "to": 3723950, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375528, - "label": "REGULATES", - "from": 3723950, - "to": 3697682, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375531, - "label": "BINDS", - "from": 3723951, - "to": 3678457, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408311, - "label": "ELEMENT_OF", - "from": 3701430, - "to": 3729400, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375542, - "label": "BINDS", - "from": 3723954, - "to": 3684999, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408306, - "label": "ELEMENT_OF", - "from": 3693818, - "to": 3729399, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408317, - "label": "ELEMENT_OF", - "from": 3685165, - "to": 3729403, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375544, - "label": "REGULATES", - "from": 3708153, - "to": 3723954, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375557, - "label": "BINDS", - "from": 3723958, - "to": 3679553, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375559, - "label": "REGULATES", - "from": 3708326, - "to": 3723958, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408330, - "label": "ELEMENT_OF", - "from": 3690651, - "to": 3729406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408337, - "label": "ELEMENT_OF", - "from": 3711844, - "to": 3729409, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375581, - "label": "REGULATES", - "from": 3723964, - "to": 3696177, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375580, - "label": "BINDS", - "from": 3723964, - "to": 3678418, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375582, - "label": "REGULATES", - "from": 3710270, - "to": 3723964, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408347, - "label": "ELEMENT_OF", - "from": 3697282, - "to": 3729411, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408357, - "label": "ELEMENT_OF", - "from": 3690955, - "to": 3729414, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375586, - "label": "REGULATES", - "from": 3707928, - "to": 3723965, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375597, - "label": "REGULATES", - "from": 3711265, - "to": 3723968, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408367, - "label": "ELEMENT_OF", - "from": 3696059, - "to": 3729418, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375596, - "label": "REGULATES", - "from": 3723968, - "to": 3702049, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375593, - "label": "REGULATES", - "from": 3682200, - "to": 3723967, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375592, - "label": "REGULATES", - "from": 3723967, - "to": 3688178, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375595, - "label": "BINDS", - "from": 3723968, - "to": 3686138, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408383, - "label": "ELEMENT_OF", - "from": 3686149, - "to": 3729424, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408379, - "label": "ELEMENT_OF", - "from": 3697128, - "to": 3729422, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408390, - "label": "ELEMENT_OF", - "from": 3700065, - "to": 3729426, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408397, - "label": "ELEMENT_OF", - "from": 3696068, - "to": 3729428, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408406, - "label": "ELEMENT_OF", - "from": 3711889, - "to": 3729430, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244560, - "label": "PRODUCES", - "from": 3708470, - "to": 3671440, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408412, - "label": "ELEMENT_OF", - "from": 3699288, - "to": 3729432, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244569, - "label": "CONSUMED_BY", - "from": 3681316, - "to": 3708472, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408417, - "label": "ELEMENT_OF", - "from": 3706796, - "to": 3729434, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408430, - "label": "ELEMENT_OF", - "from": 3687482, - "to": 3729438, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244591, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3708476, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244594, - "label": "PRODUCES", - "from": 3708476, - "to": 3681526, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244603, - "label": "PRODUCES", - "from": 3708478, - "to": 3675910, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408444, - "label": "ELEMENT_OF", - "from": 3702438, - "to": 3729441, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408443, - "label": "ELEMENT_OF", - "from": 3706973, - "to": 3729440, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408450, - "label": "ELEMENT_OF", - "from": 3695946, - "to": 3729442, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408462, - "label": "ELEMENT_OF", - "from": 3716868, - "to": 3729445, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244620, - "label": "CONSUMED_BY", - "from": 3676845, - "to": 3708483, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244631, - "label": "PRODUCES", - "from": 3708485, - "to": 3677598, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244628, - "label": "CONSUMED_BY", - "from": 3677589, - "to": 3708485, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408465, - "label": "ELEMENT_OF", - "from": 3696332, - "to": 3729447, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244635, - "label": "CONSUMED_BY", - "from": 3682143, - "to": 3708486, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408474, - "label": "ELEMENT_OF", - "from": 3697098, - "to": 3729449, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244636, - "label": "PRODUCES", - "from": 3708486, - "to": 3679116, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244641, - "label": "CONSUMED_BY", - "from": 3681653, - "to": 3708488, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244647, - "label": "CONSUMED_BY", - "from": 3685555, - "to": 3708489, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244644, - "label": "PRODUCES", - "from": 3708488, - "to": 3682165, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244650, - "label": "PRODUCES", - "from": 3708489, - "to": 3682104, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244654, - "label": "CONSUMED_BY", - "from": 3679104, - "to": 3708490, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342967, - "label": "REGULATES", - "from": 3677818, - "to": 3719781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342966, - "label": "REGULATES", - "from": 3719781, - "to": 3689384, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244665, - "label": "CONSUMED_BY", - "from": 3669741, - "to": 3708492, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244671, - "label": "CONSUMED_BY", - "from": 3684202, - "to": 3708493, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244674, - "label": "CONSUMED_BY", - "from": 3677714, - "to": 3708494, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342977, - "label": "BINDS", - "from": 3719784, - "to": 3678873, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342979, - "label": "REGULATES", - "from": 3710228, - "to": 3719784, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244676, - "label": "PRODUCES", - "from": 3708494, - "to": 3677497, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244681, - "label": "PRODUCES", - "from": 3708495, - "to": 3710167, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244680, - "label": "CONSUMED_BY", - "from": 3712661, - "to": 3708495, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244687, - "label": "CONSUMED_BY", - "from": 3677504, - "to": 3708497, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244684, - "label": "CONSUMED_BY", - "from": 3677336, - "to": 3708496, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342997, - "label": "REGULATES", - "from": 3712313, - "to": 3719789, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342996, - "label": "REGULATES", - "from": 3719789, - "to": 3729690, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244689, - "label": "PRODUCES", - "from": 3708497, - "to": 3676191, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244688, - "label": "PRODUCES", - "from": 3708497, - "to": 3677184, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 342995, - "label": "BINDS", - "from": 3719789, - "to": 3686139, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211928, - "label": "COMPONENT_OF", - "from": 3715259, - "to": 3714838, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244702, - "label": "PRODUCES", - "from": 3708500, - "to": 3682023, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244700, - "label": "CONSUMED_BY", - "from": 3685555, - "to": 3708500, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244707, - "label": "PRODUCES", - "from": 3708501, - "to": 3673067, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244705, - "label": "CONSUMED_BY", - "from": 3671356, - "to": 3708501, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343015, - "label": "REGULATES", - "from": 3707928, - "to": 3719794, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211942, - "label": "COMPONENT_OF", - "from": 3707893, - "to": 3714848, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343011, - "label": "REGULATES", - "from": 3677560, - "to": 3719793, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211947, - "label": "ENCODES", - "from": 3702933, - "to": 3714851, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244713, - "label": "PRODUCES", - "from": 3708502, - "to": 3684256, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211944, - "label": "COMPONENT_OF", - "from": 3706057, - "to": 3714850, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244719, - "label": "CONSUMED_BY", - "from": 3673162, - "to": 3708503, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211951, - "label": "ENCODES", - "from": 3693706, - "to": 3714853, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244722, - "label": "PRODUCES", - "from": 3708503, - "to": 3669537, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244721, - "label": "PRODUCES", - "from": 3708503, - "to": 3675686, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244735, - "label": "CONSUMED_BY", - "from": 3681189, - "to": 3708506, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343033, - "label": "REGULATES", - "from": 3677368, - "to": 3719799, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211966, - "label": "ENCODES", - "from": 3719925, - "to": 3714869, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343032, - "label": "REGULATES", - "from": 3719799, - "to": 3688855, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244734, - "label": "PRODUCES", - "from": 3708505, - "to": 3674794, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211964, - "label": "ENCODES", - "from": 3716951, - "to": 3714867, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244736, - "label": "PRODUCES", - "from": 3708506, - "to": 3681415, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244747, - "label": "CONSUMED_BY", - "from": 3669086, - "to": 3708509, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343052, - "label": "REGULATES", - "from": 3710143, - "to": 3719804, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211977, - "label": "COMPONENT_OF", - "from": 3710549, - "to": 3714876, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244749, - "label": "PRODUCES", - "from": 3708509, - "to": 3677002, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211981, - "label": "ENCODES", - "from": 3707142, - "to": 3714880, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343050, - "label": "BINDS", - "from": 3719804, - "to": 3683313, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211987, - "label": "COMPONENT_OF", - "from": 3718283, - "to": 3714885, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343061, - "label": "BINDS", - "from": 3719807, - "to": 3678539, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244753, - "label": "CONSUMED_BY", - "from": 3681214, - "to": 3708510, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343063, - "label": "REGULATES", - "from": 3711404, - "to": 3719807, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244758, - "label": "CONSUMED_BY", - "from": 3684342, - "to": 3708512, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343059, - "label": "REGULATES", - "from": 3712313, - "to": 3719806, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 211989, - "label": "COMPONENT_OF", - "from": 3715389, - "to": 3714887, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343058, - "label": "REGULATES", - "from": 3719806, - "to": 3730419, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244762, - "label": "PRODUCES", - "from": 3708512, - "to": 3675211, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244766, - "label": "CONSUMED_BY", - "from": 3681809, - "to": 3708513, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343079, - "label": "BINDS", - "from": 3719812, - "to": 3687536, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244775, - "label": "PRODUCES", - "from": 3708515, - "to": 3681533, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343073, - "label": "REGULATES", - "from": 3719810, - "to": 3699918, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244774, - "label": "CONSUMED_BY", - "from": 3684390, - "to": 3708515, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212005, - "label": "COMPONENT_OF", - "from": 3710313, - "to": 3714900, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343074, - "label": "REGULATES", - "from": 3705945, - "to": 3719810, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244779, - "label": "CONSUMED_BY", - "from": 3677788, - "to": 3708516, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212009, - "label": "ENCODES", - "from": 3717142, - "to": 3714903, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212015, - "label": "ENCODES", - "from": 3706984, - "to": 3714909, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343081, - "label": "REGULATES", - "from": 3708157, - "to": 3719812, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212014, - "label": "COMPONENT_OF", - "from": 3711245, - "to": 3714908, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244781, - "label": "PRODUCES", - "from": 3708516, - "to": 3684064, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244785, - "label": "PRODUCES", - "from": 3708517, - "to": 3684318, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244784, - "label": "CONSUMED_BY", - "from": 3715467, - "to": 3708517, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212016, - "label": "COMPONENT_OF", - "from": 3705925, - "to": 3714910, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244790, - "label": "PRODUCES", - "from": 3708518, - "to": 3668246, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244788, - "label": "CONSUMED_BY", - "from": 3669965, - "to": 3708518, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 244795, - "label": "PRODUCES", - "from": 3708519, - "to": 3677454, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343101, - "label": "BINDS", - "from": 3719818, - "to": 3685406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343103, - "label": "REGULATES", - "from": 3710228, - "to": 3719818, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212033, - "label": "ENCODES", - "from": 3694173, - "to": 3714923, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343117, - "label": "REGULATES", - "from": 3719822, - "to": 3727389, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343118, - "label": "REGULATES", - "from": 3712313, - "to": 3719822, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343114, - "label": "REGULATES", - "from": 3682077, - "to": 3719821, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343121, - "label": "REGULATES", - "from": 3681919, - "to": 3719823, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212055, - "label": "COMPONENT_OF", - "from": 3718471, - "to": 3714942, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212059, - "label": "COMPONENT_OF", - "from": 3714066, - "to": 3714946, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343129, - "label": "REGULATES", - "from": 3710228, - "to": 3719825, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343140, - "label": "REGULATES", - "from": 3710594, - "to": 3719828, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343143, - "label": "REGULATES", - "from": 3677428, - "to": 3719829, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343142, - "label": "REGULATES", - "from": 3719829, - "to": 3688859, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212070, - "label": "COMPONENT_OF", - "from": 3712563, - "to": 3714956, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343139, - "label": "REGULATES", - "from": 3719828, - "to": 3695898, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343138, - "label": "BINDS", - "from": 3719828, - "to": 3687488, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343157, - "label": "REGULATES", - "from": 3719833, - "to": 3689765, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343158, - "label": "REGULATES", - "from": 3679440, - "to": 3719833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343153, - "label": "BINDS", - "from": 3719832, - "to": 3685347, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343155, - "label": "REGULATES", - "from": 3704409, - "to": 3719832, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212091, - "label": "COMPONENT_OF", - "from": 3708326, - "to": 3714968, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343165, - "label": "REGULATES", - "from": 3681204, - "to": 3719835, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212088, - "label": "COMPONENT_OF", - "from": 3718528, - "to": 3714966, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212095, - "label": "COMPONENT_OF", - "from": 3706148, - "to": 3714972, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343173, - "label": "REGULATES", - "from": 3710270, - "to": 3719837, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212097, - "label": "ENCODES", - "from": 3716968, - "to": 3714975, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343175, - "label": "BINDS", - "from": 3719838, - "to": 3686166, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212102, - "label": "COMPONENT_OF", - "from": 3711486, - "to": 3714978, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212101, - "label": "ENCODES", - "from": 3707096, - "to": 3714977, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343180, - "label": "REGULATES", - "from": 3677504, - "to": 3719839, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212104, - "label": "COMPONENT_OF", - "from": 3706191, - "to": 3714980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343177, - "label": "REGULATES", - "from": 3711393, - "to": 3719838, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343176, - "label": "REGULATES", - "from": 3719838, - "to": 3725996, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212109, - "label": "COMPONENT_OF", - "from": 3704245, - "to": 3714984, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408726, - "label": "ELEMENT_OF", - "from": 3702901, - "to": 3729452, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343199, - "label": "REGULATES", - "from": 3708153, - "to": 3719844, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343193, - "label": "BINDS", - "from": 3719843, - "to": 3679993, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343195, - "label": "REGULATES", - "from": 3714533, - "to": 3719843, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 343194, - "label": "REGULATES", - "from": 3719843, - "to": 3699969, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408741, - "label": "ELEMENT_OF", - "from": 3711867, - "to": 3729456, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212134, - "label": "COMPONENT_OF", - "from": 3702370, - "to": 3715002, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408750, - "label": "ELEMENT_OF", - "from": 3712232, - "to": 3729458, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212146, - "label": "ENCODES", - "from": 3712091, - "to": 3715009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212145, - "label": "COMPONENT_OF", - "from": 3718547, - "to": 3715008, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408766, - "label": "ELEMENT_OF", - "from": 3694392, - "to": 3729466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408761, - "label": "ELEMENT_OF", - "from": 3719915, - "to": 3729461, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408780, - "label": "ELEMENT_OF", - "from": 3698970, - "to": 3729469, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408806, - "label": "ELEMENT_OF", - "from": 3700013, - "to": 3729482, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408812, - "label": "ELEMENT_OF", - "from": 3700028, - "to": 3729485, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408811, - "label": "ELEMENT_OF", - "from": 3694099, - "to": 3729484, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408809, - "label": "ELEMENT_OF", - "from": 3699170, - "to": 3729483, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408816, - "label": "ELEMENT_OF", - "from": 3712239, - "to": 3729486, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408828, - "label": "ELEMENT_OF", - "from": 3690726, - "to": 3729489, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408839, - "label": "ELEMENT_OF", - "from": 3717006, - "to": 3729493, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408837, - "label": "ELEMENT_OF", - "from": 3707067, - "to": 3729492, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376092, - "label": "REGULATES", - "from": 3677337, - "to": 3723972, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376100, - "label": "REGULATES", - "from": 3710228, - "to": 3723974, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376099, - "label": "REGULATES", - "from": 3723974, - "to": 3697342, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376098, - "label": "BINDS", - "from": 3723974, - "to": 3686204, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376108, - "label": "REGULATES", - "from": 3718538, - "to": 3723976, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408879, - "label": "ELEMENT_OF", - "from": 3701809, - "to": 3729506, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376111, - "label": "REGULATES", - "from": 3677368, - "to": 3723977, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376117, - "label": "BINDS", - "from": 3723979, - "to": 3683225, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408887, - "label": "ELEMENT_OF", - "from": 3717054, - "to": 3729507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376119, - "label": "REGULATES", - "from": 3708153, - "to": 3723979, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376118, - "label": "REGULATES", - "from": 3723979, - "to": 3697334, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376121, - "label": "BINDS", - "from": 3723980, - "to": 3687492, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408890, - "label": "ELEMENT_OF", - "from": 3702772, - "to": 3729508, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376123, - "label": "REGULATES", - "from": 3711317, - "to": 3723980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408898, - "label": "ELEMENT_OF", - "from": 3699245, - "to": 3729510, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408906, - "label": "ELEMENT_OF", - "from": 3701526, - "to": 3729514, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376136, - "label": "BINDS", - "from": 3723984, - "to": 3682887, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376138, - "label": "REGULATES", - "from": 3710228, - "to": 3723984, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408918, - "label": "ELEMENT_OF", - "from": 3698677, - "to": 3729518, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408915, - "label": "ELEMENT_OF", - "from": 3687618, - "to": 3729517, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376144, - "label": "BINDS", - "from": 3723986, - "to": 3686187, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376146, - "label": "REGULATES", - "from": 3710228, - "to": 3723986, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376157, - "label": "REGULATES", - "from": 3707928, - "to": 3723989, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408927, - "label": "ELEMENT_OF", - "from": 3695903, - "to": 3729520, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376159, - "label": "BINDS", - "from": 3723990, - "to": 3680034, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408930, - "label": "ELEMENT_OF", - "from": 3716696, - "to": 3729522, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376161, - "label": "REGULATES", - "from": 3707928, - "to": 3723990, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376172, - "label": "REGULATES", - "from": 3710208, - "to": 3723993, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408940, - "label": "ELEMENT_OF", - "from": 3699412, - "to": 3729524, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376174, - "label": "BINDS", - "from": 3723994, - "to": 3679875, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376168, - "label": "REGULATES", - "from": 3681887, - "to": 3723992, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376170, - "label": "BINDS", - "from": 3723993, - "to": 3685003, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376180, - "label": "REGULATES", - "from": 3710167, - "to": 3723995, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376183, - "label": "REGULATES", - "from": 3723996, - "to": 3696204, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376176, - "label": "REGULATES", - "from": 3711207, - "to": 3723994, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376178, - "label": "BINDS", - "from": 3723995, - "to": 3679723, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376189, - "label": "BINDS", - "from": 3723998, - "to": 3685264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408958, - "label": "ELEMENT_OF", - "from": 3693706, - "to": 3729528, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376191, - "label": "REGULATES", - "from": 3714081, - "to": 3723998, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376190, - "label": "REGULATES", - "from": 3723998, - "to": 3700148, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376184, - "label": "REGULATES", - "from": 3714081, - "to": 3723996, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408955, - "label": "ELEMENT_OF", - "from": 3698970, - "to": 3729527, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376187, - "label": "REGULATES", - "from": 3677196, - "to": 3723997, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376201, - "label": "BINDS", - "from": 3724001, - "to": 3686567, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376203, - "label": "REGULATES", - "from": 3710228, - "to": 3724001, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376221, - "label": "REGULATES", - "from": 3724006, - "to": 3695931, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376220, - "label": "BINDS", - "from": 3724006, - "to": 3686279, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376222, - "label": "REGULATES", - "from": 3710270, - "to": 3724006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376216, - "label": "BINDS", - "from": 3724005, - "to": 3679806, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376218, - "label": "REGULATES", - "from": 3710270, - "to": 3724005, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376231, - "label": "BINDS", - "from": 3724009, - "to": 3685226, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376225, - "label": "REGULATES", - "from": 3681287, - "to": 3724007, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376237, - "label": "REGULATES", - "from": 3711285, - "to": 3724010, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376236, - "label": "REGULATES", - "from": 3724010, - "to": 3696231, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376233, - "label": "REGULATES", - "from": 3708153, - "to": 3724009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376232, - "label": "REGULATES", - "from": 3724009, - "to": 3694518, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376235, - "label": "BINDS", - "from": 3724010, - "to": 3683187, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376268, - "label": "REGULATES", - "from": 3707928, - "to": 3724018, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376271, - "label": "REGULATES", - "from": 3724019, - "to": 3697077, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376270, - "label": "BINDS", - "from": 3724019, - "to": 3686174, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376266, - "label": "BINDS", - "from": 3724018, - "to": 3678487, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376279, - "label": "REGULATES", - "from": 3677415, - "to": 3724021, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376272, - "label": "REGULATES", - "from": 3710270, - "to": 3724019, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376287, - "label": "REGULATES", - "from": 3711179, - "to": 3724023, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376291, - "label": "REGULATES", - "from": 3708153, - "to": 3724024, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376290, - "label": "REGULATES", - "from": 3724024, - "to": 3697744, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376301, - "label": "REGULATES", - "from": 3724027, - "to": 3700089, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376300, - "label": "BINDS", - "from": 3724027, - "to": 3686490, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376302, - "label": "REGULATES", - "from": 3711183, - "to": 3724027, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376297, - "label": "REGULATES", - "from": 3724026, - "to": 3695111, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376296, - "label": "BINDS", - "from": 3724026, - "to": 3678713, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376298, - "label": "REGULATES", - "from": 3710238, - "to": 3724026, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376305, - "label": "REGULATES", - "from": 3724028, - "to": 3694498, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376304, - "label": "BINDS", - "from": 3724028, - "to": 3686550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376306, - "label": "REGULATES", - "from": 3712313, - "to": 3724028, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376317, - "label": "REGULATES", - "from": 3711285, - "to": 3724031, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376316, - "label": "REGULATES", - "from": 3724031, - "to": 3694414, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376315, - "label": "BINDS", - "from": 3724031, - "to": 3685143, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212643, - "label": "COMPONENT_OF", - "from": 3718667, - "to": 3715024, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212673, - "label": "COMPONENT_OF", - "from": 3714637, - "to": 3715048, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212686, - "label": "COMPONENT_OF", - "from": 3711632, - "to": 3715054, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212704, - "label": "ENCODES", - "from": 3698722, - "to": 3715065, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212710, - "label": "ENCODES", - "from": 3699029, - "to": 3715071, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212716, - "label": "COMPONENT_OF", - "from": 3702118, - "to": 3715076, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212721, - "label": "ENCODES", - "from": 3702784, - "to": 3715081, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212732, - "label": "COMPONENT_OF", - "from": 3718619, - "to": 3715090, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212746, - "label": "COMPONENT_OF", - "from": 3710175, - "to": 3715104, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212745, - "label": "COMPONENT_OF", - "from": 3713931, - "to": 3715102, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212754, - "label": "ENCODES", - "from": 3698999, - "to": 3715111, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212756, - "label": "ENCODES", - "from": 3707150, - "to": 3715113, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212760, - "label": "COMPONENT_OF", - "from": 3706200, - "to": 3715116, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212767, - "label": "COMPONENT_OF", - "from": 3711453, - "to": 3715122, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212764, - "label": "COMPONENT_OF", - "from": 3715191, - "to": 3715120, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212777, - "label": "COMPONENT_OF", - "from": 3705794, - "to": 3715128, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212776, - "label": "ENCODES", - "from": 3699034, - "to": 3715127, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212789, - "label": "ENCODES", - "from": 3702772, - "to": 3715140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212788, - "label": "ENCODES", - "from": 3706848, - "to": 3715139, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212798, - "label": "ENCODES", - "from": 3698926, - "to": 3715148, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212801, - "label": "ENCODES", - "from": 3712071, - "to": 3715151, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212800, - "label": "ENCODES", - "from": 3690667, - "to": 3715150, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212808, - "label": "ENCODES", - "from": 3707054, - "to": 3715158, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212815, - "label": "ENCODES", - "from": 3690558, - "to": 3715163, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212823, - "label": "ENCODES", - "from": 3711928, - "to": 3715170, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212821, - "label": "ENCODES", - "from": 3698918, - "to": 3715169, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212835, - "label": "ENCODES", - "from": 3694170, - "to": 3715180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212838, - "label": "MODIFIED_TO", - "from": 3715181, - "to": 3710246, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212837, - "label": "ENCODES", - "from": 3701506, - "to": 3715181, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212846, - "label": "ENCODES", - "from": 3690517, - "to": 3715188, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212850, - "label": "ENCODES", - "from": 3690644, - "to": 3715191, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212849, - "label": "ENCODES", - "from": 3707305, - "to": 3715190, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212863, - "label": "ENCODES", - "from": 3720008, - "to": 3715201, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212867, - "label": "ENCODES", - "from": 3711955, - "to": 3715204, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212866, - "label": "ENCODES", - "from": 3707112, - "to": 3715203, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212873, - "label": "ENCODES", - "from": 3719932, - "to": 3715208, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 212879, - "label": "ENCODES", - "from": 3701535, - "to": 3715212, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147353, - "label": "CATALYZES", - "from": 3685626, - "to": 3706607, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147356, - "label": "CATALYZES", - "from": 3714255, - "to": 3685628, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147357, - "label": "CATALYZES", - "from": 3685628, - "to": 3706690, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376804, - "label": "REGULATES", - "from": 3712308, - "to": 3724033, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376807, - "label": "REGULATES", - "from": 3724034, - "to": 3695980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376806, - "label": "BINDS", - "from": 3724034, - "to": 3678727, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376803, - "label": "REGULATES", - "from": 3724033, - "to": 3694970, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376802, - "label": "BINDS", - "from": 3724033, - "to": 3683276, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376815, - "label": "REGULATES", - "from": 3724036, - "to": 3694644, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376814, - "label": "BINDS", - "from": 3724036, - "to": 3687504, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376808, - "label": "REGULATES", - "from": 3710228, - "to": 3724034, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376816, - "label": "REGULATES", - "from": 3710228, - "to": 3724036, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376819, - "label": "REGULATES", - "from": 3677613, - "to": 3724037, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376818, - "label": "REGULATES", - "from": 3724037, - "to": 3685977, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376829, - "label": "BINDS", - "from": 3724040, - "to": 3687278, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376831, - "label": "REGULATES", - "from": 3711317, - "to": 3724040, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245762, - "label": "CONSUMED_BY", - "from": 3669700, - "to": 3708521, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376833, - "label": "BINDS", - "from": 3724041, - "to": 3687490, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245765, - "label": "PRODUCES", - "from": 3708521, - "to": 3669975, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376835, - "label": "REGULATES", - "from": 3710270, - "to": 3724041, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376834, - "label": "REGULATES", - "from": 3724041, - "to": 3694392, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245771, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3708523, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245775, - "label": "CONSUMED_BY", - "from": 3677501, - "to": 3708524, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245772, - "label": "PRODUCES", - "from": 3708523, - "to": 3682025, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376853, - "label": "BINDS", - "from": 3724046, - "to": 3682774, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376855, - "label": "REGULATES", - "from": 3710228, - "to": 3724046, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180241, - "label": "CATALYZES", - "from": 3704548, - "to": 3691066, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180246, - "label": "CATALYZES", - "from": 3691068, - "to": 3706645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245780, - "label": "PRODUCES", - "from": 3708524, - "to": 3673162, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376861, - "label": "BINDS", - "from": 3724048, - "to": 3682991, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376863, - "label": "REGULATES", - "from": 3711247, - "to": 3724048, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245785, - "label": "PRODUCES", - "from": 3708525, - "to": 3684219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376862, - "label": "REGULATES", - "from": 3724048, - "to": 3694762, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180253, - "label": "CATALYZES", - "from": 3704577, - "to": 3691072, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245795, - "label": "PRODUCES", - "from": 3708527, - "to": 3677796, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245794, - "label": "CONSUMED_BY", - "from": 3677843, - "to": 3708527, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376865, - "label": "BINDS", - "from": 3724049, - "to": 3683026, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180262, - "label": "CATALYZES", - "from": 3691076, - "to": 3708787, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376867, - "label": "REGULATES", - "from": 3711179, - "to": 3724049, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376866, - "label": "REGULATES", - "from": 3724049, - "to": 3727326, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180261, - "label": "CATALYZES", - "from": 3712364, - "to": 3691076, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180270, - "label": "CATALYZES", - "from": 3691080, - "to": 3709437, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376873, - "label": "REGULATES", - "from": 3724051, - "to": 3695951, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376872, - "label": "BINDS", - "from": 3724051, - "to": 3682895, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245804, - "label": "CONSUMED_BY", - "from": 3669639, - "to": 3708529, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376874, - "label": "REGULATES", - "from": 3710167, - "to": 3724051, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180274, - "label": "CATALYZES", - "from": 3691082, - "to": 3708622, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245811, - "label": "PRODUCES", - "from": 3708530, - "to": 3669076, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245808, - "label": "CONSUMED_BY", - "from": 3677196, - "to": 3708530, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245814, - "label": "CONSUMED_BY", - "from": 3684064, - "to": 3708531, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180279, - "label": "CATALYZES", - "from": 3714255, - "to": 3691085, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376893, - "label": "REGULATES", - "from": 3707928, - "to": 3724056, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180280, - "label": "CATALYZES", - "from": 3691085, - "to": 3707846, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245821, - "label": "PRODUCES", - "from": 3708532, - "to": 3679229, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376891, - "label": "BINDS", - "from": 3724056, - "to": 3679687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180290, - "label": "CATALYZES", - "from": 3691090, - "to": 3707589, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376900, - "label": "REGULATES", - "from": 3711179, - "to": 3724058, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245824, - "label": "CONSUMED_BY", - "from": 3668083, - "to": 3708533, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180289, - "label": "CATALYZES", - "from": 3711696, - "to": 3691090, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245831, - "label": "CONSUMED_BY", - "from": 3679360, - "to": 3708535, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180295, - "label": "CATALYZES", - "from": 3714315, - "to": 3691093, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376898, - "label": "BINDS", - "from": 3724058, - "to": 3678775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245839, - "label": "CONSUMED_BY", - "from": 3677567, - "to": 3708536, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180303, - "label": "CATALYZES", - "from": 3715523, - "to": 3691097, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180300, - "label": "CATALYZES", - "from": 3691095, - "to": 3708703, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245843, - "label": "PRODUCES", - "from": 3708536, - "to": 3677116, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180304, - "label": "CATALYZES", - "from": 3691097, - "to": 3706606, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376913, - "label": "BINDS", - "from": 3724062, - "to": 3686491, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409682, - "label": "ELEMENT_OF", - "from": 3699267, - "to": 3729530, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409683, - "label": "ELEMENT_OF", - "from": 3716946, - "to": 3729531, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376915, - "label": "REGULATES", - "from": 3710270, - "to": 3724062, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376914, - "label": "REGULATES", - "from": 3724062, - "to": 3696049, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376925, - "label": "BINDS", - "from": 3724065, - "to": 3685213, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180314, - "label": "CATALYZES", - "from": 3691102, - "to": 3706439, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180315, - "label": "CATALYZES", - "from": 3718550, - "to": 3691103, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376927, - "label": "REGULATES", - "from": 3711285, - "to": 3724065, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376926, - "label": "REGULATES", - "from": 3724065, - "to": 3696197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409693, - "label": "ELEMENT_OF", - "from": 3707143, - "to": 3729535, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180313, - "label": "CATALYZES", - "from": 3713930, - "to": 3691102, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245848, - "label": "PRODUCES", - "from": 3708537, - "to": 3682219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180316, - "label": "CATALYZES", - "from": 3691103, - "to": 3709313, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245852, - "label": "CONSUMED_BY", - "from": 3666922, - "to": 3708538, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245858, - "label": "PRODUCES", - "from": 3708539, - "to": 3681631, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409703, - "label": "ELEMENT_OF", - "from": 3712185, - "to": 3729538, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245856, - "label": "CONSUMED_BY", - "from": 3715467, - "to": 3708539, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180321, - "label": "CATALYZES", - "from": 3712698, - "to": 3691106, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376929, - "label": "BINDS", - "from": 3724066, - "to": 3686218, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245862, - "label": "CONSUMED_BY", - "from": 3677711, - "to": 3708540, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376931, - "label": "REGULATES", - "from": 3714081, - "to": 3724066, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376930, - "label": "REGULATES", - "from": 3724066, - "to": 3697362, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409697, - "label": "ELEMENT_OF", - "from": 3696368, - "to": 3729536, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180330, - "label": "CATALYZES", - "from": 3691110, - "to": 3709215, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376941, - "label": "BINDS", - "from": 3724069, - "to": 3686244, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245865, - "label": "PRODUCES", - "from": 3708540, - "to": 3676032, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376943, - "label": "REGULATES", - "from": 3711179, - "to": 3724069, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409709, - "label": "ELEMENT_OF", - "from": 3696292, - "to": 3729540, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376937, - "label": "BINDS", - "from": 3724068, - "to": 3687156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180335, - "label": "CATALYZES", - "from": 3714255, - "to": 3691113, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245869, - "label": "CONSUMED_BY", - "from": 3684215, - "to": 3708542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376939, - "label": "REGULATES", - "from": 3711281, - "to": 3724068, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180333, - "label": "CATALYZES", - "from": 3714806, - "to": 3691112, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180338, - "label": "CATALYZES", - "from": 3691114, - "to": 3708931, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409719, - "label": "ELEMENT_OF", - "from": 3699307, - "to": 3729546, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245872, - "label": "PRODUCES", - "from": 3708542, - "to": 3684297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409717, - "label": "ELEMENT_OF", - "from": 3693885, - "to": 3729545, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180337, - "label": "CATALYZES", - "from": 3714252, - "to": 3691114, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409713, - "label": "ELEMENT_OF", - "from": 3694890, - "to": 3729542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245882, - "label": "CONSUMED_BY", - "from": 3677474, - "to": 3708544, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180345, - "label": "CATALYZES", - "from": 3711368, - "to": 3691118, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245887, - "label": "CONSUMED_BY", - "from": 3681676, - "to": 3708545, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376953, - "label": "REGULATES", - "from": 3724072, - "to": 3699692, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376952, - "label": "BINDS", - "from": 3724072, - "to": 3683016, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180351, - "label": "CATALYZES", - "from": 3715523, - "to": 3691121, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376954, - "label": "REGULATES", - "from": 3712602, - "to": 3724072, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180349, - "label": "CATALYZES", - "from": 3714650, - "to": 3691120, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409732, - "label": "ELEMENT_OF", - "from": 3719974, - "to": 3729551, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180352, - "label": "CATALYZES", - "from": 3691121, - "to": 3708595, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376961, - "label": "REGULATES", - "from": 3724074, - "to": 3726033, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409730, - "label": "ELEMENT_OF", - "from": 3699199, - "to": 3729550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245894, - "label": "CONSUMED_BY", - "from": 3715467, - "to": 3708546, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213126, - "label": "ENCODES", - "from": 3719965, - "to": 3715216, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376960, - "label": "BINDS", - "from": 3724074, - "to": 3679910, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376962, - "label": "REGULATES", - "from": 3714706, - "to": 3724074, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213124, - "label": "ENCODES", - "from": 3698694, - "to": 3715215, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376973, - "label": "REGULATES", - "from": 3705945, - "to": 3724077, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376975, - "label": "BINDS", - "from": 3724078, - "to": 3679621, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245896, - "label": "PRODUCES", - "from": 3708546, - "to": 3677732, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180367, - "label": "CATALYZES", - "from": 3715104, - "to": 3691129, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376971, - "label": "BINDS", - "from": 3724077, - "to": 3686374, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213132, - "label": "ENCODES", - "from": 3690488, - "to": 3715220, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376981, - "label": "REGULATES", - "from": 3712313, - "to": 3724079, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376980, - "label": "REGULATES", - "from": 3724079, - "to": 3727914, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180368, - "label": "CATALYZES", - "from": 3691129, - "to": 3709181, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213136, - "label": "ENCODES", - "from": 3687633, - "to": 3715223, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376977, - "label": "REGULATES", - "from": 3710143, - "to": 3724078, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245910, - "label": "PRODUCES", - "from": 3708549, - "to": 3708290, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213142, - "label": "MODIFIED_TO", - "from": 3715226, - "to": 3710187, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376976, - "label": "REGULATES", - "from": 3724078, - "to": 3697648, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376979, - "label": "BINDS", - "from": 3724079, - "to": 3678634, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213141, - "label": "ENCODES", - "from": 3701573, - "to": 3715226, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245908, - "label": "CONSUMED_BY", - "from": 3710238, - "to": 3708549, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409745, - "label": "ELEMENT_OF", - "from": 3690738, - "to": 3729556, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180373, - "label": "CATALYZES", - "from": 3712754, - "to": 3691132, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245915, - "label": "CONSUMED_BY", - "from": 3681247, - "to": 3708550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180378, - "label": "CATALYZES", - "from": 3691134, - "to": 3708882, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180377, - "label": "CATALYZES", - "from": 3710150, - "to": 3691134, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409755, - "label": "ELEMENT_OF", - "from": 3701809, - "to": 3729559, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376996, - "label": "REGULATES", - "from": 3708153, - "to": 3724083, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245922, - "label": "CONSUMED_BY", - "from": 3714300, - "to": 3708552, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376995, - "label": "REGULATES", - "from": 3724083, - "to": 3699284, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245925, - "label": "PRODUCES", - "from": 3708552, - "to": 3714193, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376994, - "label": "BINDS", - "from": 3724083, - "to": 3685017, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409761, - "label": "ELEMENT_OF", - "from": 3716709, - "to": 3729560, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245924, - "label": "PRODUCES", - "from": 3708552, - "to": 3714753, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180394, - "label": "CATALYZES", - "from": 3691142, - "to": 3706572, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213167, - "label": "ENCODES", - "from": 3711867, - "to": 3715248, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245935, - "label": "CONSUMED_BY", - "from": 3715527, - "to": 3708555, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213166, - "label": "ENCODES", - "from": 3690651, - "to": 3715247, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180399, - "label": "CATALYZES", - "from": 3708057, - "to": 3691145, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245938, - "label": "PRODUCES", - "from": 3708555, - "to": 3708377, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213169, - "label": "ENCODES", - "from": 3706971, - "to": 3715250, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180400, - "label": "CATALYZES", - "from": 3691145, - "to": 3707799, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180401, - "label": "CATALYZES", - "from": 3708270, - "to": 3691146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180406, - "label": "CATALYZES", - "from": 3691148, - "to": 3708629, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245940, - "label": "CONSUMED_BY", - "from": 3683882, - "to": 3708556, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377021, - "label": "REGULATES", - "from": 3724090, - "to": 3689029, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245947, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3708558, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377022, - "label": "REGULATES", - "from": 3677460, - "to": 3724090, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409786, - "label": "ELEMENT_OF", - "from": 3690473, - "to": 3729566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245949, - "label": "PRODUCES", - "from": 3708558, - "to": 3712703, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409784, - "label": "ELEMENT_OF", - "from": 3720014, - "to": 3729565, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213181, - "label": "ENCODES", - "from": 3694206, - "to": 3715260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213180, - "label": "MODIFIED_TO", - "from": 3715259, - "to": 3702241, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180419, - "label": "CATALYZES", - "from": 3711606, - "to": 3691155, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377028, - "label": "BINDS", - "from": 3724092, - "to": 3682919, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213185, - "label": "ENCODES", - "from": 3712000, - "to": 3715263, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245952, - "label": "CONSUMED_BY", - "from": 3681190, - "to": 3708559, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377030, - "label": "REGULATES", - "from": 3712313, - "to": 3724092, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180417, - "label": "CATALYZES", - "from": 3715215, - "to": 3691154, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409795, - "label": "ELEMENT_OF", - "from": 3702949, - "to": 3729569, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409793, - "label": "ELEMENT_OF", - "from": 3701391, - "to": 3729568, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213195, - "label": "ENCODES", - "from": 3701688, - "to": 3715273, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213193, - "label": "ENCODES", - "from": 3690933, - "to": 3715271, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245967, - "label": "CONSUMED_BY", - "from": 3679464, - "to": 3708562, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213197, - "label": "ENCODES", - "from": 3701387, - "to": 3715275, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409811, - "label": "ELEMENT_OF", - "from": 3683185, - "to": 3729575, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180437, - "label": "CATALYZES", - "from": 3718393, - "to": 3691164, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213204, - "label": "ENCODES", - "from": 3698916, - "to": 3715283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180442, - "label": "CATALYZES", - "from": 3691166, - "to": 3708813, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245978, - "label": "CONSUMED_BY", - "from": 3677428, - "to": 3708566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409821, - "label": "ELEMENT_OF", - "from": 3701422, - "to": 3729578, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180441, - "label": "CATALYZES", - "from": 3708315, - "to": 3691166, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213208, - "label": "ENCODES", - "from": 3694101, - "to": 3715287, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213213, - "label": "ENCODES", - "from": 3693706, - "to": 3715290, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245980, - "label": "PRODUCES", - "from": 3708566, - "to": 3681573, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180445, - "label": "CATALYZES", - "from": 3712698, - "to": 3691168, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213219, - "label": "ENCODES", - "from": 3693795, - "to": 3715296, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245986, - "label": "PRODUCES", - "from": 3708567, - "to": 3673110, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213217, - "label": "ENCODES", - "from": 3701530, - "to": 3715294, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245984, - "label": "CONSUMED_BY", - "from": 3667461, - "to": 3708567, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180454, - "label": "CATALYZES", - "from": 3691172, - "to": 3708799, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180453, - "label": "CATALYZES", - "from": 3712754, - "to": 3691172, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213220, - "label": "ENCODES", - "from": 3687596, - "to": 3715297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180458, - "label": "CATALYZES", - "from": 3691174, - "to": 3708577, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245994, - "label": "PRODUCES", - "from": 3708569, - "to": 3677809, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180459, - "label": "CATALYZES", - "from": 3705922, - "to": 3691175, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245993, - "label": "CONSUMED_BY", - "from": 3677280, - "to": 3708569, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213225, - "label": "ENCODES", - "from": 3707178, - "to": 3715300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180456, - "label": "CATALYZES", - "from": 3691173, - "to": 3709600, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180457, - "label": "CATALYZES", - "from": 3718562, - "to": 3691174, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245999, - "label": "PRODUCES", - "from": 3708570, - "to": 3669639, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 245998, - "label": "CONSUMED_BY", - "from": 3676180, - "to": 3708570, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213230, - "label": "ENCODES", - "from": 3693706, - "to": 3715304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180460, - "label": "CATALYZES", - "from": 3691175, - "to": 3706732, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180461, - "label": "CATALYZES", - "from": 3704575, - "to": 3691176, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409844, - "label": "ELEMENT_OF", - "from": 3693841, - "to": 3729586, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213232, - "label": "ENCODES", - "from": 3716770, - "to": 3715306, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 180468, - "label": "CATALYZES", - "from": 3691179, - "to": 3700753, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409840, - "label": "ELEMENT_OF", - "from": 3698694, - "to": 3729585, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409850, - "label": "ELEMENT_OF", - "from": 3711835, - "to": 3729588, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409863, - "label": "ELEMENT_OF", - "from": 3711749, - "to": 3729593, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213252, - "label": "ENCODES", - "from": 3702948, - "to": 3715323, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213266, - "label": "ENCODES", - "from": 3698903, - "to": 3715335, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409879, - "label": "ELEMENT_OF", - "from": 3706794, - "to": 3729596, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213265, - "label": "ENCODES", - "from": 3701679, - "to": 3715334, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409894, - "label": "ELEMENT_OF", - "from": 3716786, - "to": 3729601, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409895, - "label": "ELEMENT_OF", - "from": 3698632, - "to": 3729602, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213282, - "label": "COMPONENT_OF", - "from": 3704434, - "to": 3715350, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213286, - "label": "ENCODES", - "from": 3707274, - "to": 3715354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213285, - "label": "ENCODES", - "from": 3702573, - "to": 3715353, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409901, - "label": "ELEMENT_OF", - "from": 3697634, - "to": 3729606, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213298, - "label": "ENCODES", - "from": 3707264, - "to": 3715364, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409908, - "label": "ELEMENT_OF", - "from": 3690502, - "to": 3729607, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213319, - "label": "ENCODES", - "from": 3687579, - "to": 3715382, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213317, - "label": "ENCODES", - "from": 3698965, - "to": 3715380, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213316, - "label": "ENCODES", - "from": 3707230, - "to": 3715379, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409934, - "label": "ELEMENT_OF", - "from": 3698667, - "to": 3729614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213327, - "label": "ENCODES", - "from": 3687597, - "to": 3715389, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213325, - "label": "ENCODES", - "from": 3693706, - "to": 3715387, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213333, - "label": "ENCODES", - "from": 3707294, - "to": 3715395, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213343, - "label": "ENCODES", - "from": 3702766, - "to": 3715403, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409947, - "label": "ELEMENT_OF", - "from": 3717046, - "to": 3729616, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409952, - "label": "ELEMENT_OF", - "from": 3690488, - "to": 3729618, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213348, - "label": "ENCODES", - "from": 3701367, - "to": 3715407, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213353, - "label": "ENCODES", - "from": 3712239, - "to": 3715411, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409965, - "label": "ELEMENT_OF", - "from": 3712063, - "to": 3729622, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 213352, - "label": "ENCODES", - "from": 3720018, - "to": 3715410, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409962, - "label": "ELEMENT_OF", - "from": 3695982, - "to": 3729621, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409960, - "label": "ELEMENT_OF", - "from": 3700240, - "to": 3729620, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409971, - "label": "ELEMENT_OF", - "from": 3698051, - "to": 3729626, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147841, - "label": "CATALYZES", - "from": 3685630, - "to": 3705643, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147850, - "label": "CATALYZES", - "from": 3711631, - "to": 3685635, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147851, - "label": "CATALYZES", - "from": 3685635, - "to": 3709005, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 409993, - "label": "ELEMENT_OF", - "from": 3702858, - "to": 3729628, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147857, - "label": "CATALYZES", - "from": 3685638, - "to": 3709384, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410000, - "label": "ELEMENT_OF", - "from": 3694988, - "to": 3729629, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410014, - "label": "ELEMENT_OF", - "from": 3694041, - "to": 3729635, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147866, - "label": "CATALYZES", - "from": 3711576, - "to": 3685643, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410010, - "label": "ELEMENT_OF", - "from": 3701343, - "to": 3729632, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147868, - "label": "CATALYZES", - "from": 3704224, - "to": 3685644, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147869, - "label": "CATALYZES", - "from": 3685644, - "to": 3707416, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147878, - "label": "CATALYZES", - "from": 3718550, - "to": 3685649, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410019, - "label": "ELEMENT_OF", - "from": 3701511, - "to": 3729636, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147888, - "label": "CATALYZES", - "from": 3712494, - "to": 3685654, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147889, - "label": "CATALYZES", - "from": 3685654, - "to": 3707365, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410035, - "label": "ELEMENT_OF", - "from": 3700234, - "to": 3729640, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147896, - "label": "CATALYZES", - "from": 3710183, - "to": 3685658, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410040, - "label": "ELEMENT_OF", - "from": 3698903, - "to": 3729641, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410053, - "label": "ELEMENT_OF", - "from": 3690933, - "to": 3729647, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410051, - "label": "ELEMENT_OF", - "from": 3698827, - "to": 3729646, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147909, - "label": "CATALYZES", - "from": 3685664, - "to": 3706628, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147912, - "label": "CATALYZES", - "from": 3714660, - "to": 3685666, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147913, - "label": "CATALYZES", - "from": 3685666, - "to": 3700710, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410056, - "label": "ELEMENT_OF", - "from": 3707230, - "to": 3729648, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147922, - "label": "CATALYZES", - "from": 3712364, - "to": 3685671, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147923, - "label": "CATALYZES", - "from": 3685671, - "to": 3708901, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147930, - "label": "CATALYZES", - "from": 3704361, - "to": 3685675, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410077, - "label": "ELEMENT_OF", - "from": 3698615, - "to": 3729655, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246243, - "label": "CONSUMED_BY", - "from": 3679223, - "to": 3708571, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246247, - "label": "PRODUCES", - "from": 3708572, - "to": 3677509, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147942, - "label": "CATALYZES", - "from": 3705880, - "to": 3685681, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246246, - "label": "CONSUMED_BY", - "from": 3681701, - "to": 3708572, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246251, - "label": "CONSUMED_BY", - "from": 3681528, - "to": 3708573, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246248, - "label": "PRODUCES", - "from": 3708572, - "to": 3681700, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147950, - "label": "CATALYZES", - "from": 3710524, - "to": 3685685, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147951, - "label": "CATALYZES", - "from": 3685685, - "to": 3707739, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410103, - "label": "ELEMENT_OF", - "from": 3698992, - "to": 3729660, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246256, - "label": "PRODUCES", - "from": 3708574, - "to": 3679334, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147959, - "label": "CATALYZES", - "from": 3685689, - "to": 3707662, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410097, - "label": "ELEMENT_OF", - "from": 3712105, - "to": 3729658, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147962, - "label": "CATALYZES", - "from": 3704366, - "to": 3685691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410109, - "label": "ELEMENT_OF", - "from": 3702942, - "to": 3729662, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246271, - "label": "PRODUCES", - "from": 3708577, - "to": 3677097, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246274, - "label": "CONSUMED_BY", - "from": 3677711, - "to": 3708578, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410116, - "label": "ELEMENT_OF", - "from": 3694556, - "to": 3729666, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147978, - "label": "CATALYZES", - "from": 3712261, - "to": 3685699, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246280, - "label": "PRODUCES", - "from": 3708579, - "to": 3666425, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410122, - "label": "ELEMENT_OF", - "from": 3719900, - "to": 3729667, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147982, - "label": "CATALYZES", - "from": 3712747, - "to": 3685701, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246286, - "label": "CONSUMED_BY", - "from": 3674692, - "to": 3708581, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147980, - "label": "CATALYZES", - "from": 3715489, - "to": 3685700, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246285, - "label": "PRODUCES", - "from": 3708580, - "to": 3677131, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 147987, - "label": "CATALYZES", - "from": 3685703, - "to": 3707764, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246288, - "label": "PRODUCES", - "from": 3708581, - "to": 3674732, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246294, - "label": "PRODUCES", - "from": 3708582, - "to": 3710226, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410128, - "label": "ELEMENT_OF", - "from": 3716672, - "to": 3729670, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246292, - "label": "CONSUMED_BY", - "from": 3710272, - "to": 3708582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246299, - "label": "PRODUCES", - "from": 3708584, - "to": 3681649, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246296, - "label": "CONSUMED_BY", - "from": 3677472, - "to": 3708583, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148002, - "label": "CATALYZES", - "from": 3714255, - "to": 3685711, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148003, - "label": "CATALYZES", - "from": 3685711, - "to": 3707613, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246310, - "label": "PRODUCES", - "from": 3708586, - "to": 3677458, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410144, - "label": "ELEMENT_OF", - "from": 3686446, - "to": 3729675, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148010, - "label": "CATALYZES", - "from": 3708228, - "to": 3685715, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246314, - "label": "PRODUCES", - "from": 3708587, - "to": 3677632, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410159, - "label": "ELEMENT_OF", - "from": 3700040, - "to": 3729679, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246312, - "label": "CONSUMED_BY", - "from": 3667436, - "to": 3708587, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246317, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3708588, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246323, - "label": "PRODUCES", - "from": 3708589, - "to": 3677353, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246320, - "label": "PRODUCES", - "from": 3708588, - "to": 3710256, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246326, - "label": "PRODUCES", - "from": 3708590, - "to": 3677591, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246324, - "label": "CONSUMED_BY", - "from": 3677588, - "to": 3708590, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148034, - "label": "CATALYZES", - "from": 3704224, - "to": 3685727, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148035, - "label": "CATALYZES", - "from": 3685727, - "to": 3708695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246336, - "label": "PRODUCES", - "from": 3708592, - "to": 3675749, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246343, - "label": "PRODUCES", - "from": 3708593, - "to": 3677705, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148036, - "label": "CATALYZES", - "from": 3702274, - "to": 3685728, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246340, - "label": "CONSUMED_BY", - "from": 3679367, - "to": 3708593, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246346, - "label": "CONSUMED_BY", - "from": 3671356, - "to": 3708594, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148045, - "label": "CATALYZES", - "from": 3685732, - "to": 3708751, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246348, - "label": "PRODUCES", - "from": 3708594, - "to": 3673033, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279124, - "label": "REGULATES", - "from": 3677560, - "to": 3710037, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246354, - "label": "PRODUCES", - "from": 3708595, - "to": 3683877, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148048, - "label": "CATALYZES", - "from": 3714739, - "to": 3685734, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148055, - "label": "CATALYZES", - "from": 3685737, - "to": 3706787, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246362, - "label": "CONSUMED_BY", - "from": 3667467, - "to": 3708597, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148062, - "label": "CATALYZES", - "from": 3710183, - "to": 3685741, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246368, - "label": "CONSUMED_BY", - "from": 3677710, - "to": 3708598, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246374, - "label": "PRODUCES", - "from": 3708599, - "to": 3670309, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246378, - "label": "CONSUMED_BY", - "from": 3684322, - "to": 3708600, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279150, - "label": "REGULATES", - "from": 3677458, - "to": 3710046, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246382, - "label": "PRODUCES", - "from": 3708600, - "to": 3669944, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246387, - "label": "CONSUMED_BY", - "from": 3670120, - "to": 3708601, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279152, - "label": "REGULATES", - "from": 3710047, - "to": 3689226, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279153, - "label": "REGULATES", - "from": 3666563, - "to": 3710047, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246388, - "label": "PRODUCES", - "from": 3708601, - "to": 3671836, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246397, - "label": "PRODUCES", - "from": 3708603, - "to": 3677443, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246405, - "label": "CONSUMED_BY", - "from": 3681145, - "to": 3708605, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279171, - "label": "REGULATES", - "from": 3679247, - "to": 3710053, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246411, - "label": "CONSUMED_BY", - "from": 3684021, - "to": 3708606, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246408, - "label": "PRODUCES", - "from": 3708605, - "to": 3715307, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279183, - "label": "REGULATES", - "from": 3677368, - "to": 3710057, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279189, - "label": "REGULATES", - "from": 3677472, - "to": 3710059, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279191, - "label": "REGULATES", - "from": 3710060, - "to": 3689762, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246426, - "label": "CONSUMED_BY", - "from": 3715467, - "to": 3708609, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279192, - "label": "REGULATES", - "from": 3677446, - "to": 3710060, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246431, - "label": "PRODUCES", - "from": 3708610, - "to": 3681275, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246430, - "label": "CONSUMED_BY", - "from": 3681276, - "to": 3708610, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246428, - "label": "PRODUCES", - "from": 3708609, - "to": 3670725, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279206, - "label": "REGULATES", - "from": 3710065, - "to": 3688213, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279207, - "label": "REGULATES", - "from": 3682122, - "to": 3710065, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279213, - "label": "REGULATES", - "from": 3677711, - "to": 3710067, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246440, - "label": "CONSUMED_BY", - "from": 3684352, - "to": 3708612, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246447, - "label": "PRODUCES", - "from": 3708613, - "to": 3675459, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377525, - "label": "REGULATES", - "from": 3711213, - "to": 3724096, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377524, - "label": "REGULATES", - "from": 3724096, - "to": 3696980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377527, - "label": "BINDS", - "from": 3724097, - "to": 3687521, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377523, - "label": "BINDS", - "from": 3724096, - "to": 3683183, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246457, - "label": "CONSUMED_BY", - "from": 3677460, - "to": 3708615, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377529, - "label": "REGULATES", - "from": 3708153, - "to": 3724097, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377528, - "label": "REGULATES", - "from": 3724097, - "to": 3699293, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246466, - "label": "PRODUCES", - "from": 3708617, - "to": 3684164, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246465, - "label": "CONSUMED_BY", - "from": 3667349, - "to": 3708617, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279246, - "label": "REGULATES", - "from": 3684076, - "to": 3712808, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279240, - "label": "REGULATES", - "from": 3677368, - "to": 3712806, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246477, - "label": "PRODUCES", - "from": 3708619, - "to": 3684115, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377556, - "label": "REGULATES", - "from": 3712313, - "to": 3724104, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377555, - "label": "REGULATES", - "from": 3724104, - "to": 3729605, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377554, - "label": "BINDS", - "from": 3724104, - "to": 3682928, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377561, - "label": "BINDS", - "from": 3724106, - "to": 3683230, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377563, - "label": "REGULATES", - "from": 3710270, - "to": 3724106, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377573, - "label": "BINDS", - "from": 3724109, - "to": 3678555, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377575, - "label": "REGULATES", - "from": 3712357, - "to": 3724109, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377574, - "label": "REGULATES", - "from": 3724109, - "to": 3699965, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279264, - "label": "REGULATES", - "from": 3677504, - "to": 3712814, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377580, - "label": "BINDS", - "from": 3724111, - "to": 3683067, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279278, - "label": "REGULATES", - "from": 3712819, - "to": 3689015, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377582, - "label": "REGULATES", - "from": 3711237, - "to": 3724111, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279279, - "label": "REGULATES", - "from": 3683877, - "to": 3712819, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279272, - "label": "REGULATES", - "from": 3712817, - "to": 3685982, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279273, - "label": "REGULATES", - "from": 3677368, - "to": 3712817, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279284, - "label": "REGULATES", - "from": 3712821, - "to": 3685689, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279285, - "label": "REGULATES", - "from": 3668943, - "to": 3712821, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279294, - "label": "REGULATES", - "from": 3684202, - "to": 3712824, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377599, - "label": "BINDS", - "from": 3724116, - "to": 3679857, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377605, - "label": "REGULATES", - "from": 3712313, - "to": 3724117, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279300, - "label": "REGULATES", - "from": 3683877, - "to": 3712826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377607, - "label": "BINDS", - "from": 3724118, - "to": 3685147, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377601, - "label": "REGULATES", - "from": 3711259, - "to": 3724116, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279297, - "label": "REGULATES", - "from": 3677159, - "to": 3712825, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377600, - "label": "REGULATES", - "from": 3724116, - "to": 3694944, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377603, - "label": "BINDS", - "from": 3724117, - "to": 3686552, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279299, - "label": "REGULATES", - "from": 3712826, - "to": 3685985, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279308, - "label": "REGULATES", - "from": 3712829, - "to": 3691055, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279309, - "label": "REGULATES", - "from": 3684297, - "to": 3712829, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377609, - "label": "REGULATES", - "from": 3712586, - "to": 3724118, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377608, - "label": "REGULATES", - "from": 3724118, - "to": 3697104, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377623, - "label": "REGULATES", - "from": 3724122, - "to": 3699874, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377622, - "label": "BINDS", - "from": 3724122, - "to": 3685074, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279315, - "label": "REGULATES", - "from": 3681316, - "to": 3712831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279324, - "label": "REGULATES", - "from": 3677237, - "to": 3712834, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377628, - "label": "REGULATES", - "from": 3710208, - "to": 3724123, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377624, - "label": "REGULATES", - "from": 3711231, - "to": 3724122, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377627, - "label": "REGULATES", - "from": 3724123, - "to": 3697749, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377626, - "label": "BINDS", - "from": 3724123, - "to": 3678708, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 279333, - "label": "REGULATES", - "from": 3677447, - "to": 3712837, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377635, - "label": "REGULATES", - "from": 3677560, - "to": 3724125, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377641, - "label": "BINDS", - "from": 3724127, - "to": 3687150, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377643, - "label": "REGULATES", - "from": 3711285, - "to": 3724127, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377642, - "label": "REGULATES", - "from": 3724127, - "to": 3696024, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377651, - "label": "REGULATES", - "from": 3712313, - "to": 3724129, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377663, - "label": "BINDS", - "from": 3724133, - "to": 3687245, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377665, - "label": "REGULATES", - "from": 3710228, - "to": 3724133, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377672, - "label": "REGULATES", - "from": 3677466, - "to": 3724135, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377695, - "label": "REGULATES", - "from": 3724141, - "to": 3729457, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377696, - "label": "REGULATES", - "from": 3712313, - "to": 3724141, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377725, - "label": "REGULATES", - "from": 3677788, - "to": 3724149, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377720, - "label": "BINDS", - "from": 3724148, - "to": 3687420, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377722, - "label": "REGULATES", - "from": 3711179, - "to": 3724148, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377735, - "label": "REGULATES", - "from": 3724152, - "to": 3728016, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377736, - "label": "REGULATES", - "from": 3681398, - "to": 3724152, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377749, - "label": "REGULATES", - "from": 3724156, - "to": 3728733, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377750, - "label": "REGULATES", - "from": 3681524, - "to": 3724156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377747, - "label": "REGULATES", - "from": 3712313, - "to": 3724155, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377746, - "label": "REGULATES", - "from": 3724155, - "to": 3727571, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312245, - "label": "REGULATES", - "from": 3710274, - "to": 3716460, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312243, - "label": "BINDS", - "from": 3716460, - "to": 3678927, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246723, - "label": "CONSUMED_BY", - "from": 3682153, - "to": 3708620, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312261, - "label": "BINDS", - "from": 3716465, - "to": 3683198, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312263, - "label": "REGULATES", - "from": 3711285, - "to": 3716465, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312256, - "label": "REGULATES", - "from": 3710228, - "to": 3716463, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246734, - "label": "PRODUCES", - "from": 3708622, - "to": 3669880, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312276, - "label": "BINDS", - "from": 3716469, - "to": 3678637, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312277, - "label": "REGULATES", - "from": 3716469, - "to": 3695171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312278, - "label": "REGULATES", - "from": 3711207, - "to": 3716469, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246737, - "label": "CONSUMED_BY", - "from": 3684188, - "to": 3708623, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246742, - "label": "PRODUCES", - "from": 3708624, - "to": 3677535, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246741, - "label": "CONSUMED_BY", - "from": 3677464, - "to": 3708624, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312285, - "label": "REGULATES", - "from": 3711285, - "to": 3716471, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312281, - "label": "REGULATES", - "from": 3681365, - "to": 3716470, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312283, - "label": "BINDS", - "from": 3716471, - "to": 3678483, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246759, - "label": "CONSUMED_BY", - "from": 3677818, - "to": 3708628, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246760, - "label": "PRODUCES", - "from": 3708628, - "to": 3677793, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246765, - "label": "PRODUCES", - "from": 3708629, - "to": 3673467, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246764, - "label": "PRODUCES", - "from": 3708629, - "to": 3673465, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246771, - "label": "PRODUCES", - "from": 3708631, - "to": 3671356, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246774, - "label": "CONSUMED_BY", - "from": 3666774, - "to": 3708632, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246778, - "label": "CONSUMED_BY", - "from": 3679360, - "to": 3708633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246780, - "label": "PRODUCES", - "from": 3708633, - "to": 3679337, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246795, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3708637, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246798, - "label": "PRODUCES", - "from": 3708637, - "to": 3710278, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312340, - "label": "REGULATES", - "from": 3710594, - "to": 3716486, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246800, - "label": "CONSUMED_BY", - "from": 3677504, - "to": 3708638, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312336, - "label": "REGULATES", - "from": 3711189, - "to": 3716485, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312338, - "label": "BINDS", - "from": 3716486, - "to": 3678492, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246805, - "label": "PRODUCES", - "from": 3708639, - "to": 3652193, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246811, - "label": "CONSUMED_BY", - "from": 3652193, - "to": 3708640, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312356, - "label": "REGULATES", - "from": 3716491, - "to": 3694364, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246819, - "label": "PRODUCES", - "from": 3708642, - "to": 3681239, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312357, - "label": "REGULATES", - "from": 3711285, - "to": 3716491, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246818, - "label": "CONSUMED_BY", - "from": 3666563, - "to": 3708642, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312359, - "label": "BINDS", - "from": 3716492, - "to": 3687186, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246816, - "label": "PRODUCES", - "from": 3708641, - "to": 3670237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246822, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3708643, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312355, - "label": "BINDS", - "from": 3716491, - "to": 3685258, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246820, - "label": "PRODUCES", - "from": 3708642, - "to": 3666774, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345122, - "label": "REGULATES", - "from": 3677368, - "to": 3719845, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345133, - "label": "REGULATES", - "from": 3710270, - "to": 3719848, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246824, - "label": "PRODUCES", - "from": 3708643, - "to": 3675108, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345129, - "label": "REGULATES", - "from": 3684067, - "to": 3719847, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246830, - "label": "PRODUCES", - "from": 3708644, - "to": 3677731, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345128, - "label": "REGULATES", - "from": 3719847, - "to": 3689278, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312361, - "label": "REGULATES", - "from": 3711237, - "to": 3716492, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246829, - "label": "CONSUMED_BY", - "from": 3715467, - "to": 3708644, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345131, - "label": "BINDS", - "from": 3719848, - "to": 3678914, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345141, - "label": "REGULATES", - "from": 3710167, - "to": 3719850, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345143, - "label": "REGULATES", - "from": 3719851, - "to": 3689045, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312374, - "label": "BINDS", - "from": 3716496, - "to": 3686252, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345139, - "label": "BINDS", - "from": 3719850, - "to": 3687268, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246842, - "label": "PRODUCES", - "from": 3708646, - "to": 3710242, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246840, - "label": "CONSUMED_BY", - "from": 3671380, - "to": 3708646, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312376, - "label": "REGULATES", - "from": 3711384, - "to": 3716496, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345144, - "label": "REGULATES", - "from": 3677478, - "to": 3719851, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246845, - "label": "CONSUMED_BY", - "from": 3674721, - "to": 3708647, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345157, - "label": "BINDS", - "from": 3719855, - "to": 3686378, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312389, - "label": "REGULATES", - "from": 3716500, - "to": 3688842, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312390, - "label": "REGULATES", - "from": 3677696, - "to": 3716500, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345159, - "label": "REGULATES", - "from": 3711317, - "to": 3719855, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312385, - "label": "BINDS", - "from": 3716499, - "to": 3687340, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312387, - "label": "REGULATES", - "from": 3710270, - "to": 3716499, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246859, - "label": "PRODUCES", - "from": 3708649, - "to": 3668128, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246858, - "label": "PRODUCES", - "from": 3708649, - "to": 3669745, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246863, - "label": "CONSUMED_BY", - "from": 3684322, - "to": 3708651, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345161, - "label": "BINDS", - "from": 3719856, - "to": 3682930, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246861, - "label": "CONSUMED_BY", - "from": 3683992, - "to": 3708650, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345163, - "label": "REGULATES", - "from": 3711313, - "to": 3719856, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345162, - "label": "REGULATES", - "from": 3719856, - "to": 3697657, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246867, - "label": "PRODUCES", - "from": 3708651, - "to": 3682009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312400, - "label": "REGULATES", - "from": 3716503, - "to": 3685865, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246870, - "label": "CONSUMED_BY", - "from": 3677711, - "to": 3708652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312401, - "label": "REGULATES", - "from": 3677495, - "to": 3716503, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246873, - "label": "PRODUCES", - "from": 3708652, - "to": 3714490, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312414, - "label": "BINDS", - "from": 3716507, - "to": 3686446, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312415, - "label": "REGULATES", - "from": 3716507, - "to": 3697126, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345177, - "label": "REGULATES", - "from": 3708153, - "to": 3719860, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312420, - "label": "REGULATES", - "from": 3705945, - "to": 3716508, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312416, - "label": "REGULATES", - "from": 3711179, - "to": 3716507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312419, - "label": "REGULATES", - "from": 3716508, - "to": 3699520, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312429, - "label": "BINDS", - "from": 3716511, - "to": 3686388, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246889, - "label": "PRODUCES", - "from": 3708656, - "to": 3674749, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312431, - "label": "REGULATES", - "from": 3711285, - "to": 3716511, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312436, - "label": "BINDS", - "from": 3716513, - "to": 3682841, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246897, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3708658, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312438, - "label": "REGULATES", - "from": 3714706, - "to": 3716513, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345207, - "label": "REGULATES", - "from": 3710228, - "to": 3719868, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246902, - "label": "CONSUMED_BY", - "from": 3682163, - "to": 3708659, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246900, - "label": "PRODUCES", - "from": 3708658, - "to": 3666811, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345213, - "label": "REGULATES", - "from": 3719870, - "to": 3697149, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312444, - "label": "BINDS", - "from": 3716515, - "to": 3686574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246906, - "label": "PRODUCES", - "from": 3708660, - "to": 3677500, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345212, - "label": "BINDS", - "from": 3719870, - "to": 3679613, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312446, - "label": "REGULATES", - "from": 3705945, - "to": 3716515, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246904, - "label": "CONSUMED_BY", - "from": 3677396, - "to": 3708660, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345214, - "label": "REGULATES", - "from": 3710270, - "to": 3719870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312452, - "label": "REGULATES", - "from": 3716517, - "to": 3697995, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312453, - "label": "REGULATES", - "from": 3708157, - "to": 3716517, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345223, - "label": "BINDS", - "from": 3719873, - "to": 3685310, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312455, - "label": "REGULATES", - "from": 3716518, - "to": 3690962, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312448, - "label": "REGULATES", - "from": 3716516, - "to": 3687880, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246918, - "label": "CONSUMED_BY", - "from": 3670742, - "to": 3708662, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312449, - "label": "REGULATES", - "from": 3682118, - "to": 3716516, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312451, - "label": "BINDS", - "from": 3716517, - "to": 3685445, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312460, - "label": "REGULATES", - "from": 3712313, - "to": 3716519, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345231, - "label": "REGULATES", - "from": 3719875, - "to": 3689432, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345225, - "label": "REGULATES", - "from": 3711179, - "to": 3719873, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312456, - "label": "REGULATES", - "from": 3677336, - "to": 3716518, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246926, - "label": "PRODUCES", - "from": 3708663, - "to": 3685566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312458, - "label": "BINDS", - "from": 3716519, - "to": 3683111, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246924, - "label": "CONSUMED_BY", - "from": 3671495, - "to": 3708663, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312459, - "label": "REGULATES", - "from": 3716519, - "to": 3727185, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246930, - "label": "CONSUMED_BY", - "from": 3671356, - "to": 3708664, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345236, - "label": "REGULATES", - "from": 3710228, - "to": 3719876, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345239, - "label": "REGULATES", - "from": 3677368, - "to": 3719877, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345232, - "label": "REGULATES", - "from": 3684009, - "to": 3719875, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246932, - "label": "PRODUCES", - "from": 3708664, - "to": 3675356, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345234, - "label": "BINDS", - "from": 3719876, - "to": 3679809, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345245, - "label": "BINDS", - "from": 3719879, - "to": 3685327, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345247, - "label": "REGULATES", - "from": 3711285, - "to": 3719879, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246937, - "label": "PRODUCES", - "from": 3708665, - "to": 3670236, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345246, - "label": "REGULATES", - "from": 3719879, - "to": 3695896, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312473, - "label": "BINDS", - "from": 3716523, - "to": 3686363, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 312475, - "label": "REGULATES", - "from": 3708153, - "to": 3716523, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246951, - "label": "CONSUMED_BY", - "from": 3669906, - "to": 3708669, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345261, - "label": "REGULATES", - "from": 3677495, - "to": 3719883, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246954, - "label": "PRODUCES", - "from": 3708669, - "to": 3669700, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 246959, - "label": "CONSUMED_BY", - "from": 3677427, - "to": 3708670, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345278, - "label": "BINDS", - "from": 3719888, - "to": 3678733, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345287, - "label": "REGULATES", - "from": 3711265, - "to": 3719890, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181441, - "label": "CATALYZES", - "from": 3710242, - "to": 3691186, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345286, - "label": "REGULATES", - "from": 3719890, - "to": 3697020, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345280, - "label": "REGULATES", - "from": 3707928, - "to": 3719888, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181450, - "label": "CATALYZES", - "from": 3691190, - "to": 3706260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181451, - "label": "CATALYZES", - "from": 3712698, - "to": 3691191, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181448, - "label": "CATALYZES", - "from": 3691189, - "to": 3708755, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181449, - "label": "CATALYZES", - "from": 3712585, - "to": 3691190, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345291, - "label": "REGULATES", - "from": 3708153, - "to": 3719891, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345301, - "label": "REGULATES", - "from": 3719894, - "to": 3699935, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345300, - "label": "BINDS", - "from": 3719894, - "to": 3687269, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345302, - "label": "REGULATES", - "from": 3708153, - "to": 3719894, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181460, - "label": "CATALYZES", - "from": 3691195, - "to": 3706677, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345305, - "label": "REGULATES", - "from": 3677650, - "to": 3719895, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345313, - "label": "REGULATES", - "from": 3710274, - "to": 3719897, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181482, - "label": "CATALYZES", - "from": 3691206, - "to": 3706609, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345324, - "label": "REGULATES", - "from": 3711406, - "to": 3720992, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181481, - "label": "CATALYZES", - "from": 3710433, - "to": 3691206, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345323, - "label": "REGULATES", - "from": 3720992, - "to": 3694980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345322, - "label": "BINDS", - "from": 3720992, - "to": 3682904, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345329, - "label": "BINDS", - "from": 3720994, - "to": 3686063, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345331, - "label": "REGULATES", - "from": 3711317, - "to": 3720994, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345330, - "label": "REGULATES", - "from": 3720994, - "to": 3702028, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181496, - "label": "CATALYZES", - "from": 3691213, - "to": 3707472, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345349, - "label": "REGULATES", - "from": 3677368, - "to": 3720999, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345348, - "label": "REGULATES", - "from": 3720999, - "to": 3691111, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181507, - "label": "CATALYZES", - "from": 3712653, - "to": 3691219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181508, - "label": "CATALYZES", - "from": 3691219, - "to": 3706555, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181514, - "label": "CATALYZES", - "from": 3691222, - "to": 3706280, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410894, - "label": "ELEMENT_OF", - "from": 3693944, - "to": 3729682, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345359, - "label": "BINDS", - "from": 3721002, - "to": 3679561, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410892, - "label": "ELEMENT_OF", - "from": 3699581, - "to": 3729680, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410893, - "label": "ELEMENT_OF", - "from": 3687566, - "to": 3729681, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181513, - "label": "CATALYZES", - "from": 3710433, - "to": 3691222, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181516, - "label": "CATALYZES", - "from": 3691223, - "to": 3706294, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181517, - "label": "CATALYZES", - "from": 3713900, - "to": 3691224, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181522, - "label": "CATALYZES", - "from": 3691226, - "to": 3707721, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181521, - "label": "CATALYZES", - "from": 3714255, - "to": 3691226, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181526, - "label": "CATALYZES", - "from": 3691228, - "to": 3709067, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410896, - "label": "ELEMENT_OF", - "from": 3697711, - "to": 3729683, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181525, - "label": "CATALYZES", - "from": 3704358, - "to": 3691228, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410910, - "label": "ELEMENT_OF", - "from": 3690670, - "to": 3729687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181531, - "label": "CATALYZES", - "from": 3708270, - "to": 3691231, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410907, - "label": "ELEMENT_OF", - "from": 3702613, - "to": 3729686, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410919, - "label": "ELEMENT_OF", - "from": 3701382, - "to": 3729691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181541, - "label": "CATALYZES", - "from": 3712585, - "to": 3691236, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181547, - "label": "CATALYZES", - "from": 3715215, - "to": 3691239, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410927, - "label": "ELEMENT_OF", - "from": 3699509, - "to": 3729695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181544, - "label": "CATALYZES", - "from": 3691237, - "to": 3708749, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181550, - "label": "CATALYZES", - "from": 3691240, - "to": 3707796, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181551, - "label": "CATALYZES", - "from": 3711383, - "to": 3691241, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410921, - "label": "ELEMENT_OF", - "from": 3696024, - "to": 3729692, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181549, - "label": "CATALYZES", - "from": 3714255, - "to": 3691240, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410933, - "label": "ELEMENT_OF", - "from": 3712239, - "to": 3729696, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410941, - "label": "ELEMENT_OF", - "from": 3716684, - "to": 3729699, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181567, - "label": "CATALYZES", - "from": 3718550, - "to": 3691249, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181565, - "label": "CATALYZES", - "from": 3715102, - "to": 3691248, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148803, - "label": "CATALYZES", - "from": 3685751, - "to": 3707475, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148800, - "label": "CATALYZES", - "from": 3714226, - "to": 3685750, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410944, - "label": "ELEMENT_OF", - "from": 3696351, - "to": 3729700, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148805, - "label": "CATALYZES", - "from": 3685752, - "to": 3707471, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410945, - "label": "ELEMENT_OF", - "from": 3698986, - "to": 3729701, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410954, - "label": "ELEMENT_OF", - "from": 3690734, - "to": 3729704, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181580, - "label": "CATALYZES", - "from": 3691255, - "to": 3706336, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181586, - "label": "CATALYZES", - "from": 3691258, - "to": 3705452, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410964, - "label": "ELEMENT_OF", - "from": 3690644, - "to": 3729710, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148816, - "label": "CATALYZES", - "from": 3702303, - "to": 3685758, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181585, - "label": "CATALYZES", - "from": 3714582, - "to": 3691258, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410960, - "label": "ELEMENT_OF", - "from": 3690881, - "to": 3729708, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410974, - "label": "ELEMENT_OF", - "from": 3702735, - "to": 3729715, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181597, - "label": "CATALYZES", - "from": 3713972, - "to": 3691264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148838, - "label": "CATALYZES", - "from": 3702067, - "to": 3685769, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410979, - "label": "ELEMENT_OF", - "from": 3720012, - "to": 3729716, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181604, - "label": "CATALYZES", - "from": 3691267, - "to": 3708831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181611, - "label": "CATALYZES", - "from": 3714259, - "to": 3691271, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148846, - "label": "CATALYZES", - "from": 3712579, - "to": 3685773, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410984, - "label": "ELEMENT_OF", - "from": 3707125, - "to": 3729720, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181612, - "label": "CATALYZES", - "from": 3691271, - "to": 3709160, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181613, - "label": "CATALYZES", - "from": 3711707, - "to": 3691272, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181619, - "label": "CATALYZES", - "from": 3712585, - "to": 3691275, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 410999, - "label": "ELEMENT_OF", - "from": 3699168, - "to": 3729725, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181620, - "label": "CATALYZES", - "from": 3691275, - "to": 3705162, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148853, - "label": "CATALYZES", - "from": 3685776, - "to": 3706323, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411007, - "label": "ELEMENT_OF", - "from": 3720041, - "to": 3730275, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181624, - "label": "CATALYZES", - "from": 3691277, - "to": 3708618, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181629, - "label": "CATALYZES", - "from": 3714838, - "to": 3691280, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411014, - "label": "ELEMENT_OF", - "from": 3701679, - "to": 3730278, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148866, - "label": "CATALYZES", - "from": 3713902, - "to": 3685783, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181634, - "label": "CATALYZES", - "from": 3691282, - "to": 3709414, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148864, - "label": "CATALYZES", - "from": 3705938, - "to": 3685782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181632, - "label": "CATALYZES", - "from": 3691281, - "to": 3707523, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181633, - "label": "CATALYZES", - "from": 3711388, - "to": 3691282, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148870, - "label": "CATALYZES", - "from": 3712648, - "to": 3685785, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181639, - "label": "CATALYZES", - "from": 3710504, - "to": 3691285, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378240, - "label": "REGULATES", - "from": 3710208, - "to": 3724216, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148871, - "label": "CATALYZES", - "from": 3685785, - "to": 3706674, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181646, - "label": "CATALYZES", - "from": 3691288, - "to": 3708455, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378249, - "label": "REGULATES", - "from": 3724219, - "to": 3701415, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148878, - "label": "CATALYZES", - "from": 3714628, - "to": 3685789, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148879, - "label": "CATALYZES", - "from": 3685789, - "to": 3700748, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378250, - "label": "REGULATES", - "from": 3713939, - "to": 3724219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411030, - "label": "ELEMENT_OF", - "from": 3697945, - "to": 3730280, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181651, - "label": "CATALYZES", - "from": 3710433, - "to": 3691291, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378257, - "label": "REGULATES", - "from": 3724221, - "to": 3694678, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378256, - "label": "BINDS", - "from": 3724221, - "to": 3687409, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181652, - "label": "CATALYZES", - "from": 3691291, - "to": 3709486, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378258, - "label": "REGULATES", - "from": 3711285, - "to": 3724221, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148888, - "label": "CATALYZES", - "from": 3714620, - "to": 3685794, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411036, - "label": "ELEMENT_OF", - "from": 3700158, - "to": 3730282, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148894, - "label": "CATALYZES", - "from": 3704451, - "to": 3685797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247203, - "label": "PRODUCES", - "from": 3708670, - "to": 3675417, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378276, - "label": "REGULATES", - "from": 3724159, - "to": 3729015, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148897, - "label": "CATALYZES", - "from": 3685798, - "to": 3705432, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411045, - "label": "ELEMENT_OF", - "from": 3699385, - "to": 3730287, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181665, - "label": "CATALYZES", - "from": 3714723, - "to": 3691298, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378278, - "label": "REGULATES", - "from": 3677336, - "to": 3724159, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411042, - "label": "ELEMENT_OF", - "from": 3699492, - "to": 3730284, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247207, - "label": "PRODUCES", - "from": 3708671, - "to": 3684156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247211, - "label": "PRODUCES", - "from": 3708672, - "to": 3684083, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 181673, - "label": "CATALYZES", - "from": 3718584, - "to": 3691302, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411050, - "label": "ELEMENT_OF", - "from": 3698784, - "to": 3730289, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247214, - "label": "CONSUMED_BY", - "from": 3681528, - "to": 3708673, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148912, - "label": "CATALYZES", - "from": 3714801, - "to": 3685806, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247216, - "label": "PRODUCES", - "from": 3708673, - "to": 3677672, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148916, - "label": "CATALYZES", - "from": 3712354, - "to": 3685808, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247221, - "label": "PRODUCES", - "from": 3708674, - "to": 3684161, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411057, - "label": "ELEMENT_OF", - "from": 3706808, - "to": 3730291, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247227, - "label": "PRODUCES", - "from": 3708675, - "to": 3710264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247226, - "label": "PRODUCES", - "from": 3708675, - "to": 3684202, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247225, - "label": "CONSUMED_BY", - "from": 3677464, - "to": 3708675, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378303, - "label": "REGULATES", - "from": 3724163, - "to": 3726528, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411067, - "label": "ELEMENT_OF", - "from": 3712020, - "to": 3730294, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247229, - "label": "CONSUMED_BY", - "from": 3669994, - "to": 3708676, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411079, - "label": "ELEMENT_OF", - "from": 3717020, - "to": 3730297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378305, - "label": "REGULATES", - "from": 3684130, - "to": 3724163, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247236, - "label": "CONSUMED_BY", - "from": 3684133, - "to": 3708677, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148933, - "label": "CATALYZES", - "from": 3685816, - "to": 3706303, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411086, - "label": "ELEMENT_OF", - "from": 3702528, - "to": 3730300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148936, - "label": "CATALYZES", - "from": 3712585, - "to": 3685818, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148937, - "label": "CATALYZES", - "from": 3685818, - "to": 3700751, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378326, - "label": "REGULATES", - "from": 3724166, - "to": 3726365, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247252, - "label": "CONSUMED_BY", - "from": 3670011, - "to": 3708681, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247256, - "label": "CONSUMED_BY", - "from": 3684390, - "to": 3708682, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411098, - "label": "ELEMENT_OF", - "from": 3699025, - "to": 3730307, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378328, - "label": "REGULATES", - "from": 3681514, - "to": 3724166, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148963, - "label": "CATALYZES", - "from": 3685831, - "to": 3706507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247265, - "label": "CONSUMED_BY", - "from": 3685535, - "to": 3708684, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148960, - "label": "CATALYZES", - "from": 3708280, - "to": 3685830, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378342, - "label": "REGULATES", - "from": 3681194, - "to": 3724168, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148961, - "label": "CATALYZES", - "from": 3685830, - "to": 3709571, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148966, - "label": "CATALYZES", - "from": 3714336, - "to": 3685833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148964, - "label": "CATALYZES", - "from": 3710433, - "to": 3685832, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411105, - "label": "ELEMENT_OF", - "from": 3700033, - "to": 3730308, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148965, - "label": "CATALYZES", - "from": 3685832, - "to": 3705623, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378348, - "label": "REGULATES", - "from": 3724169, - "to": 3699833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247273, - "label": "PRODUCES", - "from": 3708685, - "to": 3712748, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378350, - "label": "REGULATES", - "from": 3710228, - "to": 3724169, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247279, - "label": "CONSUMED_BY", - "from": 3666888, - "to": 3708687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411112, - "label": "ELEMENT_OF", - "from": 3699124, - "to": 3730311, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247276, - "label": "CONSUMED_BY", - "from": 3677196, - "to": 3708686, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378346, - "label": "BINDS", - "from": 3724169, - "to": 3679587, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247282, - "label": "PRODUCES", - "from": 3708687, - "to": 3676091, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247287, - "label": "CONSUMED_BY", - "from": 3677818, - "to": 3708688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148980, - "label": "CATALYZES", - "from": 3707987, - "to": 3685840, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148986, - "label": "CATALYZES", - "from": 3710433, - "to": 3685843, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247288, - "label": "PRODUCES", - "from": 3708688, - "to": 3677843, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247295, - "label": "CONSUMED_BY", - "from": 3681623, - "to": 3708690, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247293, - "label": "PRODUCES", - "from": 3708689, - "to": 3685573, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247297, - "label": "PRODUCES", - "from": 3708690, - "to": 3681646, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345607, - "label": "REGULATES", - "from": 3721004, - "to": 3699536, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 148992, - "label": "CATALYZES", - "from": 3708377, - "to": 3685846, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345606, - "label": "BINDS", - "from": 3721004, - "to": 3687235, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345601, - "label": "REGULATES", - "from": 3710270, - "to": 3721002, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247301, - "label": "CONSUMED_BY", - "from": 3671355, - "to": 3708691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345613, - "label": "BINDS", - "from": 3721006, - "to": 3685499, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378380, - "label": "REGULATES", - "from": 3712313, - "to": 3724174, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345615, - "label": "REGULATES", - "from": 3711207, - "to": 3721006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247304, - "label": "PRODUCES", - "from": 3708691, - "to": 3673070, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345614, - "label": "REGULATES", - "from": 3721006, - "to": 3696244, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149006, - "label": "CATALYZES", - "from": 3714640, - "to": 3685853, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345608, - "label": "REGULATES", - "from": 3718538, - "to": 3721004, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149007, - "label": "CATALYZES", - "from": 3685853, - "to": 3708990, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149004, - "label": "CATALYZES", - "from": 3710433, - "to": 3685852, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378378, - "label": "REGULATES", - "from": 3724174, - "to": 3726099, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149005, - "label": "CATALYZES", - "from": 3685852, - "to": 3705361, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280080, - "label": "REGULATES", - "from": 3677476, - "to": 3712846, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149014, - "label": "CATALYZES", - "from": 3714208, - "to": 3685857, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247319, - "label": "CONSUMED_BY", - "from": 3710165, - "to": 3708694, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149012, - "label": "CATALYZES", - "from": 3714255, - "to": 3685856, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149013, - "label": "CATALYZES", - "from": 3685856, - "to": 3706654, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378397, - "label": "REGULATES", - "from": 3711179, - "to": 3724176, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345628, - "label": "BINDS", - "from": 3721010, - "to": 3686072, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378399, - "label": "REGULATES", - "from": 3724177, - "to": 3729211, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149016, - "label": "CATALYZES", - "from": 3712798, - "to": 3685858, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345630, - "label": "REGULATES", - "from": 3711265, - "to": 3721010, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149017, - "label": "CATALYZES", - "from": 3685858, - "to": 3708750, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378395, - "label": "BINDS", - "from": 3724176, - "to": 3687267, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247325, - "label": "PRODUCES", - "from": 3708695, - "to": 3685505, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149021, - "label": "CATALYZES", - "from": 3685860, - "to": 3705333, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280100, - "label": "REGULATES", - "from": 3712853, - "to": 3688834, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345637, - "label": "REGULATES", - "from": 3714081, - "to": 3721012, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149027, - "label": "CATALYZES", - "from": 3685863, - "to": 3709377, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280101, - "label": "REGULATES", - "from": 3685537, - "to": 3712853, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345636, - "label": "REGULATES", - "from": 3721012, - "to": 3694596, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247329, - "label": "PRODUCES", - "from": 3708696, - "to": 3677457, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149024, - "label": "CATALYZES", - "from": 3711174, - "to": 3685862, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247328, - "label": "CONSUMED_BY", - "from": 3666563, - "to": 3708696, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345633, - "label": "REGULATES", - "from": 3668965, - "to": 3721011, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378400, - "label": "REGULATES", - "from": 3681398, - "to": 3724177, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247334, - "label": "PRODUCES", - "from": 3708697, - "to": 3676116, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345635, - "label": "BINDS", - "from": 3721012, - "to": 3678533, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149028, - "label": "CATALYZES", - "from": 3714968, - "to": 3685864, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214564, - "label": "ENCODES", - "from": 3693838, - "to": 3715422, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247332, - "label": "CONSUMED_BY", - "from": 3666425, - "to": 3708697, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247339, - "label": "CONSUMED_BY", - "from": 3670738, - "to": 3708698, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149034, - "label": "CATALYZES", - "from": 3702303, - "to": 3685867, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149038, - "label": "CATALYZES", - "from": 3714123, - "to": 3685869, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345641, - "label": "REGULATES", - "from": 3712313, - "to": 3721013, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247342, - "label": "PRODUCES", - "from": 3708698, - "to": 3684342, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247344, - "label": "CONSUMED_BY", - "from": 3670256, - "to": 3708699, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280119, - "label": "REGULATES", - "from": 3681701, - "to": 3712859, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378422, - "label": "BINDS", - "from": 3724181, - "to": 3678674, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378416, - "label": "REGULATES", - "from": 3724180, - "to": 3720386, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345648, - "label": "REGULATES", - "from": 3677707, - "to": 3721015, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247349, - "label": "CONSUMED_BY", - "from": 3677421, - "to": 3708700, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214581, - "label": "ENCODES", - "from": 3712119, - "to": 3715437, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378418, - "label": "REGULATES", - "from": 3684133, - "to": 3724180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247355, - "label": "CONSUMED_BY", - "from": 3676032, - "to": 3708701, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247353, - "label": "PRODUCES", - "from": 3708700, - "to": 3671495, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345663, - "label": "REGULATES", - "from": 3708153, - "to": 3721019, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247352, - "label": "PRODUCES", - "from": 3708700, - "to": 3677773, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378424, - "label": "REGULATES", - "from": 3724181, - "to": 3699980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214590, - "label": "ENCODES", - "from": 3693706, - "to": 3715445, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247357, - "label": "PRODUCES", - "from": 3708701, - "to": 3681633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280122, - "label": "REGULATES", - "from": 3677707, - "to": 3712860, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345659, - "label": "REGULATES", - "from": 3718538, - "to": 3721018, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378426, - "label": "REGULATES", - "from": 3708153, - "to": 3724181, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247361, - "label": "PRODUCES", - "from": 3708702, - "to": 3677572, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280134, - "label": "REGULATES", - "from": 3670533, - "to": 3712864, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247360, - "label": "CONSUMED_BY", - "from": 3677501, - "to": 3708702, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280128, - "label": "REGULATES", - "from": 3670725, - "to": 3712862, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247366, - "label": "PRODUCES", - "from": 3708703, - "to": 3668140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378432, - "label": "REGULATES", - "from": 3681638, - "to": 3724182, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214598, - "label": "ENCODES", - "from": 3698630, - "to": 3715452, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247371, - "label": "CONSUMED_BY", - "from": 3677478, - "to": 3708705, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345679, - "label": "BINDS", - "from": 3721024, - "to": 3687426, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247373, - "label": "PRODUCES", - "from": 3708705, - "to": 3672795, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247376, - "label": "CONSUMED_BY", - "from": 3710294, - "to": 3708706, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345681, - "label": "REGULATES", - "from": 3711681, - "to": 3721024, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345680, - "label": "REGULATES", - "from": 3721024, - "to": 3697604, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247381, - "label": "CONSUMED_BY", - "from": 3684064, - "to": 3708707, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280146, - "label": "REGULATES", - "from": 3677438, - "to": 3712868, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214613, - "label": "ENCODES", - "from": 3687619, - "to": 3715466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378461, - "label": "BINDS", - "from": 3724186, - "to": 3679574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247386, - "label": "PRODUCES", - "from": 3708708, - "to": 3681567, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378463, - "label": "REGULATES", - "from": 3724186, - "to": 3695008, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214617, - "label": "ENCODES", - "from": 3693721, - "to": 3715471, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345694, - "label": "BINDS", - "from": 3721028, - "to": 3679868, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214623, - "label": "ENCODES", - "from": 3701414, - "to": 3715477, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214620, - "label": "ENCODES", - "from": 3693738, - "to": 3715474, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247395, - "label": "CONSUMED_BY", - "from": 3672867, - "to": 3708710, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378471, - "label": "REGULATES", - "from": 3677336, - "to": 3724187, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378465, - "label": "REGULATES", - "from": 3711247, - "to": 3724186, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247398, - "label": "CONSUMED_BY", - "from": 3684210, - "to": 3708711, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345696, - "label": "REGULATES", - "from": 3710228, - "to": 3721028, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378477, - "label": "REGULATES", - "from": 3724188, - "to": 3701962, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378479, - "label": "REGULATES", - "from": 3711285, - "to": 3724188, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214639, - "label": "ENCODES", - "from": 3690602, - "to": 3715490, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247406, - "label": "CONSUMED_BY", - "from": 3711204, - "to": 3708712, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214638, - "label": "ENCODES", - "from": 3690436, - "to": 3715489, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280170, - "label": "REGULATES", - "from": 3677547, - "to": 3712876, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378475, - "label": "BINDS", - "from": 3724188, - "to": 3678664, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214637, - "label": "ENCODES", - "from": 3716669, - "to": 3715488, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345707, - "label": "REGULATES", - "from": 3707928, - "to": 3721031, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378485, - "label": "REGULATES", - "from": 3677394, - "to": 3724189, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247411, - "label": "PRODUCES", - "from": 3708713, - "to": 3669207, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247408, - "label": "PRODUCES", - "from": 3708712, - "to": 3704474, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214647, - "label": "ENCODES", - "from": 3711889, - "to": 3715498, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378483, - "label": "REGULATES", - "from": 3724189, - "to": 3685777, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247412, - "label": "CONSUMED_BY", - "from": 3670431, - "to": 3708714, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247419, - "label": "CONSUMED_BY", - "from": 3666888, - "to": 3708715, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280191, - "label": "REGULATES", - "from": 3677699, - "to": 3712883, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247422, - "label": "PRODUCES", - "from": 3708715, - "to": 3671355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280185, - "label": "REGULATES", - "from": 3679247, - "to": 3712881, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378503, - "label": "BINDS", - "from": 3724192, - "to": 3678828, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280199, - "label": "REGULATES", - "from": 3712886, - "to": 3691080, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247424, - "label": "CONSUMED_BY", - "from": 3677516, - "to": 3708716, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214663, - "label": "ENCODES", - "from": 3711710, - "to": 3715512, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280193, - "label": "REGULATES", - "from": 3712884, - "to": 3689208, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247429, - "label": "CONSUMED_BY", - "from": 3671495, - "to": 3708718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280194, - "label": "REGULATES", - "from": 3677176, - "to": 3712884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345740, - "label": "REGULATES", - "from": 3705945, - "to": 3721040, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280200, - "label": "REGULATES", - "from": 3677432, - "to": 3712886, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214671, - "label": "ENCODES", - "from": 3706970, - "to": 3715518, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378505, - "label": "REGULATES", - "from": 3724192, - "to": 3696079, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280202, - "label": "REGULATES", - "from": 3712887, - "to": 3689723, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378507, - "label": "REGULATES", - "from": 3710270, - "to": 3724192, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345739, - "label": "REGULATES", - "from": 3721040, - "to": 3697480, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280203, - "label": "REGULATES", - "from": 3677501, - "to": 3712887, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345738, - "label": "BINDS", - "from": 3721040, - "to": 3678659, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280212, - "label": "REGULATES", - "from": 3679386, - "to": 3712890, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214675, - "label": "ENCODES", - "from": 3706981, - "to": 3715522, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345748, - "label": "REGULATES", - "from": 3714081, - "to": 3721042, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214679, - "label": "ENCODES", - "from": 3690955, - "to": 3715525, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214677, - "label": "ENCODES", - "from": 3711790, - "to": 3715523, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345746, - "label": "BINDS", - "from": 3721042, - "to": 3687154, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214682, - "label": "MODIFIED_TO", - "from": 3715527, - "to": 3711404, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214681, - "label": "ENCODES", - "from": 3701668, - "to": 3715527, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214680, - "label": "ENCODES", - "from": 3698751, - "to": 3715526, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345755, - "label": "REGULATES", - "from": 3677368, - "to": 3721044, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345754, - "label": "REGULATES", - "from": 3721044, - "to": 3689534, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214690, - "label": "ENCODES", - "from": 3707332, - "to": 3718266, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345761, - "label": "REGULATES", - "from": 3721046, - "to": 3688153, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280224, - "label": "REGULATES", - "from": 3679073, - "to": 3712894, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214693, - "label": "ENCODES", - "from": 3712012, - "to": 3718268, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345762, - "label": "REGULATES", - "from": 3677773, - "to": 3721046, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280227, - "label": "REGULATES", - "from": 3677435, - "to": 3712895, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280238, - "label": "REGULATES", - "from": 3712899, - "to": 3689741, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280239, - "label": "REGULATES", - "from": 3684290, - "to": 3712899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214701, - "label": "ENCODES", - "from": 3694225, - "to": 3718275, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214704, - "label": "ENCODES", - "from": 3706991, - "to": 3718277, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280242, - "label": "REGULATES", - "from": 3677796, - "to": 3712900, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214713, - "label": "ENCODES", - "from": 3717094, - "to": 3718283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345790, - "label": "BINDS", - "from": 3721054, - "to": 3686294, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214712, - "label": "ENCODES", - "from": 3701856, - "to": 3718282, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345796, - "label": "REGULATES", - "from": 3711183, - "to": 3721055, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280262, - "label": "REGULATES", - "from": 3712907, - "to": 3689121, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280263, - "label": "REGULATES", - "from": 3682118, - "to": 3712907, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345792, - "label": "REGULATES", - "from": 3711285, - "to": 3721054, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345794, - "label": "BINDS", - "from": 3721055, - "to": 3679895, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214729, - "label": "ENCODES", - "from": 3690600, - "to": 3718294, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345806, - "label": "REGULATES", - "from": 3677337, - "to": 3721058, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345803, - "label": "REGULATES", - "from": 3711285, - "to": 3721057, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214738, - "label": "ENCODES", - "from": 3701656, - "to": 3718301, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280274, - "label": "REGULATES", - "from": 3712911, - "to": 3689076, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280275, - "label": "REGULATES", - "from": 3677368, - "to": 3712911, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280284, - "label": "REGULATES", - "from": 3684067, - "to": 3712914, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214747, - "label": "ENCODES", - "from": 3717079, - "to": 3718309, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378591, - "label": "REGULATES", - "from": 3707928, - "to": 3724200, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214751, - "label": "ENCODES", - "from": 3711806, - "to": 3718314, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280281, - "label": "REGULATES", - "from": 3677345, - "to": 3712913, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280292, - "label": "REGULATES", - "from": 3712917, - "to": 3685798, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280293, - "label": "REGULATES", - "from": 3677501, - "to": 3712917, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345831, - "label": "REGULATES", - "from": 3677476, - "to": 3721065, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214753, - "label": "ENCODES", - "from": 3698667, - "to": 3718316, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280290, - "label": "REGULATES", - "from": 3679065, - "to": 3712916, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214763, - "label": "ENCODES", - "from": 3701796, - "to": 3718325, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345837, - "label": "BINDS", - "from": 3721067, - "to": 3679578, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280302, - "label": "REGULATES", - "from": 3677447, - "to": 3712920, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345839, - "label": "REGULATES", - "from": 3715127, - "to": 3721067, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411370, - "label": "ELEMENT_OF", - "from": 3699233, - "to": 3730317, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411368, - "label": "ELEMENT_OF", - "from": 3694404, - "to": 3730315, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214771, - "label": "ENCODES", - "from": 3717076, - "to": 3718333, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280308, - "label": "REGULATES", - "from": 3681210, - "to": 3712922, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214770, - "label": "ENCODES", - "from": 3716942, - "to": 3718332, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411383, - "label": "ELEMENT_OF", - "from": 3697075, - "to": 3730320, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280310, - "label": "REGULATES", - "from": 3712923, - "to": 3689032, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378615, - "label": "BINDS", - "from": 3724204, - "to": 3678601, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280311, - "label": "REGULATES", - "from": 3668938, - "to": 3712923, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411378, - "label": "ELEMENT_OF", - "from": 3699552, - "to": 3730319, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378609, - "label": "REGULATES", - "from": 3724203, - "to": 3688107, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280305, - "label": "REGULATES", - "from": 3681418, - "to": 3712921, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378611, - "label": "REGULATES", - "from": 3710552, - "to": 3724203, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280307, - "label": "REGULATES", - "from": 3712922, - "to": 3692609, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214782, - "label": "ENCODES", - "from": 3690668, - "to": 3718343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 280314, - "label": "REGULATES", - "from": 3681511, - "to": 3712924, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378619, - "label": "REGULATES", - "from": 3708153, - "to": 3724204, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411393, - "label": "ELEMENT_OF", - "from": 3694450, - "to": 3730322, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378637, - "label": "BINDS", - "from": 3724207, - "to": 3683038, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411407, - "label": "ELEMENT_OF", - "from": 3712119, - "to": 3730327, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378639, - "label": "REGULATES", - "from": 3724207, - "to": 3697507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411402, - "label": "ELEMENT_OF", - "from": 3702438, - "to": 3730324, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 214797, - "label": "ENCODES", - "from": 3701752, - "to": 3718356, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411410, - "label": "ELEMENT_OF", - "from": 3699563, - "to": 3730329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378641, - "label": "REGULATES", - "from": 3710167, - "to": 3724207, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378669, - "label": "BINDS", - "from": 3724213, - "to": 3679856, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411439, - "label": "ELEMENT_OF", - "from": 3694153, - "to": 3730338, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378671, - "label": "REGULATES", - "from": 3711317, - "to": 3724213, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378670, - "label": "REGULATES", - "from": 3724213, - "to": 3697769, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411435, - "label": "ELEMENT_OF", - "from": 3712251, - "to": 3730337, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378667, - "label": "REGULATES", - "from": 3710544, - "to": 3724212, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378666, - "label": "REGULATES", - "from": 3724212, - "to": 3727573, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378673, - "label": "BINDS", - "from": 3724214, - "to": 3679805, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411443, - "label": "ELEMENT_OF", - "from": 3701391, - "to": 3730341, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378675, - "label": "REGULATES", - "from": 3710270, - "to": 3724214, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378674, - "label": "REGULATES", - "from": 3724214, - "to": 3700073, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378692, - "label": "BINDS", - "from": 3724216, - "to": 3678734, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411461, - "label": "ELEMENT_OF", - "from": 3693984, - "to": 3730345, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 378694, - "label": "REGULATES", - "from": 3724216, - "to": 3699163, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411457, - "label": "ELEMENT_OF", - "from": 3706909, - "to": 3730343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411466, - "label": "ELEMENT_OF", - "from": 3699585, - "to": 3730347, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411479, - "label": "ELEMENT_OF", - "from": 3693788, - "to": 3730352, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411475, - "label": "ELEMENT_OF", - "from": 3716672, - "to": 3730351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411487, - "label": "ELEMENT_OF", - "from": 3685396, - "to": 3730357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411495, - "label": "ELEMENT_OF", - "from": 3711835, - "to": 3730360, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411492, - "label": "ELEMENT_OF", - "from": 3707218, - "to": 3730359, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411510, - "label": "ELEMENT_OF", - "from": 3694008, - "to": 3730366, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411507, - "label": "ELEMENT_OF", - "from": 3698033, - "to": 3730364, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313202, - "label": "REGULATES", - "from": 3708153, - "to": 3716525, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411513, - "label": "ELEMENT_OF", - "from": 3699362, - "to": 3730368, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247683, - "label": "CONSUMED_BY", - "from": 3669741, - "to": 3708721, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313221, - "label": "REGULATES", - "from": 3711243, - "to": 3716530, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247687, - "label": "CONSUMED_BY", - "from": 3684068, - "to": 3708722, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313217, - "label": "REGULATES", - "from": 3677689, - "to": 3716529, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247684, - "label": "PRODUCES", - "from": 3708721, - "to": 3668063, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313219, - "label": "BINDS", - "from": 3716530, - "to": 3678920, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411521, - "label": "ELEMENT_OF", - "from": 3706848, - "to": 3730371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313228, - "label": "REGULATES", - "from": 3716532, - "to": 3729685, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313229, - "label": "REGULATES", - "from": 3712313, - "to": 3716532, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411528, - "label": "ELEMENT_OF", - "from": 3707332, - "to": 3730372, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313227, - "label": "BINDS", - "from": 3716532, - "to": 3683120, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411538, - "label": "ELEMENT_OF", - "from": 3707313, - "to": 3730375, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313232, - "label": "REGULATES", - "from": 3681640, - "to": 3716533, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247702, - "label": "CONSUMED_BY", - "from": 3684327, - "to": 3708725, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247707, - "label": "PRODUCES", - "from": 3708726, - "to": 3677495, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247711, - "label": "CONSUMED_BY", - "from": 3671356, - "to": 3708727, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313243, - "label": "REGULATES", - "from": 3711183, - "to": 3716536, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411545, - "label": "ELEMENT_OF", - "from": 3696263, - "to": 3730378, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247713, - "label": "PRODUCES", - "from": 3708727, - "to": 3675357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313254, - "label": "REGULATES", - "from": 3679467, - "to": 3716539, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411555, - "label": "ELEMENT_OF", - "from": 3702445, - "to": 3730380, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247717, - "label": "CONSUMED_BY", - "from": 3684188, - "to": 3708728, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313251, - "label": "REGULATES", - "from": 3708153, - "to": 3716538, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411567, - "label": "ELEMENT_OF", - "from": 3698918, - "to": 3730384, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313263, - "label": "BINDS", - "from": 3716542, - "to": 3686243, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247725, - "label": "PRODUCES", - "from": 3708730, - "to": 3671806, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247724, - "label": "CONSUMED_BY", - "from": 3667467, - "to": 3708730, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247728, - "label": "CONSUMED_BY", - "from": 3677337, - "to": 3708731, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411573, - "label": "ELEMENT_OF", - "from": 3680031, - "to": 3730388, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313265, - "label": "REGULATES", - "from": 3704409, - "to": 3716542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247733, - "label": "CONSUMED_BY", - "from": 3677579, - "to": 3708732, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247739, - "label": "PRODUCES", - "from": 3708733, - "to": 3675112, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313276, - "label": "REGULATES", - "from": 3670483, - "to": 3716545, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247738, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3708733, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313275, - "label": "REGULATES", - "from": 3716545, - "to": 3692648, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411591, - "label": "ELEMENT_OF", - "from": 3697537, - "to": 3730391, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411598, - "label": "ELEMENT_OF", - "from": 3702891, - "to": 3730394, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247753, - "label": "PRODUCES", - "from": 3708736, - "to": 3677671, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247752, - "label": "CONSUMED_BY", - "from": 3681533, - "to": 3708736, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313295, - "label": "REGULATES", - "from": 3711183, - "to": 3716550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247757, - "label": "PRODUCES", - "from": 3708737, - "to": 3666834, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411593, - "label": "ELEMENT_OF", - "from": 3690781, - "to": 3730392, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247762, - "label": "CONSUMED_BY", - "from": 3676136, - "to": 3708739, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247764, - "label": "PRODUCES", - "from": 3708739, - "to": 3676028, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313309, - "label": "REGULATES", - "from": 3710228, - "to": 3716554, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247769, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3708741, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247783, - "label": "PRODUCES", - "from": 3708743, - "to": 3666872, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313324, - "label": "REGULATES", - "from": 3710428, - "to": 3716558, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247789, - "label": "CONSUMED_BY", - "from": 3685555, - "to": 3708745, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313322, - "label": "BINDS", - "from": 3716558, - "to": 3687487, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247792, - "label": "PRODUCES", - "from": 3708745, - "to": 3670314, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247799, - "label": "PRODUCES", - "from": 3708747, - "to": 3677652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247798, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3708747, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247797, - "label": "PRODUCES", - "from": 3708746, - "to": 3674784, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247801, - "label": "CONSUMED_BY", - "from": 3715108, - "to": 3708748, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313337, - "label": "BINDS", - "from": 3716562, - "to": 3678459, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313338, - "label": "REGULATES", - "from": 3716562, - "to": 3729633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313339, - "label": "REGULATES", - "from": 3712313, - "to": 3716562, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247808, - "label": "PRODUCES", - "from": 3708749, - "to": 3681160, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313359, - "label": "REGULATES", - "from": 3716568, - "to": 3691398, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247816, - "label": "PRODUCES", - "from": 3708751, - "to": 3676896, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313367, - "label": "REGULATES", - "from": 3681905, - "to": 3716570, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313360, - "label": "REGULATES", - "from": 3677432, - "to": 3716568, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247829, - "label": "PRODUCES", - "from": 3708754, - "to": 3668245, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247835, - "label": "PRODUCES", - "from": 3708755, - "to": 3681520, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247838, - "label": "CONSUMED_BY", - "from": 3681648, - "to": 3708756, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247842, - "label": "CONSUMED_BY", - "from": 3710183, - "to": 3708757, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247846, - "label": "CONSUMED_BY", - "from": 3684009, - "to": 3708758, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247845, - "label": "PRODUCES", - "from": 3708757, - "to": 3704398, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313389, - "label": "REGULATES", - "from": 3681147, - "to": 3716576, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313384, - "label": "BINDS", - "from": 3716575, - "to": 3687351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313386, - "label": "REGULATES", - "from": 3711285, - "to": 3716575, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247852, - "label": "CONSUMED_BY", - "from": 3677714, - "to": 3708759, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313398, - "label": "BINDS", - "from": 3716579, - "to": 3680015, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313399, - "label": "REGULATES", - "from": 3716579, - "to": 3726714, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247863, - "label": "PRODUCES", - "from": 3708761, - "to": 3684274, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247862, - "label": "CONSUMED_BY", - "from": 3677345, - "to": 3708761, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313400, - "label": "REGULATES", - "from": 3712313, - "to": 3716579, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247874, - "label": "PRODUCES", - "from": 3708763, - "to": 3669293, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313413, - "label": "BINDS", - "from": 3716583, - "to": 3686156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247872, - "label": "CONSUMED_BY", - "from": 3667467, - "to": 3708763, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313415, - "label": "REGULATES", - "from": 3712313, - "to": 3716583, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247882, - "label": "CONSUMED_BY", - "from": 3677447, - "to": 3708765, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247887, - "label": "CONSUMED_BY", - "from": 3667467, - "to": 3708766, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313418, - "label": "REGULATES", - "from": 3679440, - "to": 3716584, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247891, - "label": "CONSUMED_BY", - "from": 3677209, - "to": 3708767, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247892, - "label": "PRODUCES", - "from": 3708767, - "to": 3677025, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247896, - "label": "PRODUCES", - "from": 3708768, - "to": 3677199, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247908, - "label": "CONSUMED_BY", - "from": 3677434, - "to": 3708771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 247916, - "label": "CONSUMED_BY", - "from": 3677192, - "to": 3708772, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411852, - "label": "ELEMENT_OF", - "from": 3707338, - "to": 3730399, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411850, - "label": "ELEMENT_OF", - "from": 3719974, - "to": 3730398, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346326, - "label": "REGULATES", - "from": 3679018, - "to": 3721069, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346321, - "label": "BINDS", - "from": 3721068, - "to": 3687254, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346323, - "label": "REGULATES", - "from": 3714081, - "to": 3721068, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346322, - "label": "REGULATES", - "from": 3721068, - "to": 3695946, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346328, - "label": "BINDS", - "from": 3721070, - "to": 3678408, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346330, - "label": "REGULATES", - "from": 3712586, - "to": 3721070, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411879, - "label": "ELEMENT_OF", - "from": 3700073, - "to": 3730403, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346337, - "label": "REGULATES", - "from": 3711285, - "to": 3721072, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346348, - "label": "REGULATES", - "from": 3677678, - "to": 3721075, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411887, - "label": "ELEMENT_OF", - "from": 3699007, - "to": 3730406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346357, - "label": "BINDS", - "from": 3721078, - "to": 3685222, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346359, - "label": "REGULATES", - "from": 3710238, - "to": 3721078, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346358, - "label": "REGULATES", - "from": 3721078, - "to": 3694651, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411890, - "label": "ELEMENT_OF", - "from": 3678828, - "to": 3730408, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411889, - "label": "ELEMENT_OF", - "from": 3712159, - "to": 3730407, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346372, - "label": "BINDS", - "from": 3721082, - "to": 3683144, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346374, - "label": "REGULATES", - "from": 3711285, - "to": 3721082, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411906, - "label": "ELEMENT_OF", - "from": 3696170, - "to": 3730412, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149767, - "label": "CATALYZES", - "from": 3685873, - "to": 3709210, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346381, - "label": "REGULATES", - "from": 3711285, - "to": 3721084, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346380, - "label": "REGULATES", - "from": 3721084, - "to": 3699924, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346379, - "label": "BINDS", - "from": 3721084, - "to": 3685431, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346389, - "label": "REGULATES", - "from": 3714706, - "to": 3721086, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149778, - "label": "CATALYZES", - "from": 3718379, - "to": 3685879, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346385, - "label": "REGULATES", - "from": 3715027, - "to": 3721085, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346387, - "label": "BINDS", - "from": 3721086, - "to": 3685238, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411933, - "label": "ELEMENT_OF", - "from": 3687209, - "to": 3730418, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149791, - "label": "CATALYZES", - "from": 3685885, - "to": 3705378, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346401, - "label": "BINDS", - "from": 3721090, - "to": 3687146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346403, - "label": "REGULATES", - "from": 3712586, - "to": 3721090, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149802, - "label": "CATALYZES", - "from": 3714801, - "to": 3685891, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149810, - "label": "CATALYZES", - "from": 3704148, - "to": 3685895, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149811, - "label": "CATALYZES", - "from": 3685895, - "to": 3709128, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346429, - "label": "REGULATES", - "from": 3710167, - "to": 3721097, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346431, - "label": "REGULATES", - "from": 3721098, - "to": 3691445, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149816, - "label": "CATALYZES", - "from": 3715081, - "to": 3685898, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149817, - "label": "CATALYZES", - "from": 3685898, - "to": 3709527, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149822, - "label": "CATALYZES", - "from": 3718460, - "to": 3685901, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411963, - "label": "ELEMENT_OF", - "from": 3701363, - "to": 3730426, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149826, - "label": "CATALYZES", - "from": 3712585, - "to": 3685903, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346436, - "label": "REGULATES", - "from": 3708423, - "to": 3721099, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149827, - "label": "CATALYZES", - "from": 3685903, - "to": 3706426, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411972, - "label": "ELEMENT_OF", - "from": 3697745, - "to": 3730429, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346432, - "label": "REGULATES", - "from": 3677401, - "to": 3721098, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149831, - "label": "CATALYZES", - "from": 3685905, - "to": 3706368, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346435, - "label": "REGULATES", - "from": 3721099, - "to": 3726689, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411969, - "label": "ELEMENT_OF", - "from": 3687513, - "to": 3730428, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346434, - "label": "BINDS", - "from": 3721099, - "to": 3678405, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346441, - "label": "BINDS", - "from": 3721101, - "to": 3685246, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346443, - "label": "REGULATES", - "from": 3711179, - "to": 3721101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149836, - "label": "CATALYZES", - "from": 3708225, - "to": 3685908, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346442, - "label": "REGULATES", - "from": 3721101, - "to": 3695089, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346454, - "label": "REGULATES", - "from": 3710228, - "to": 3721104, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346448, - "label": "BINDS", - "from": 3721103, - "to": 3686430, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346450, - "label": "REGULATES", - "from": 3710228, - "to": 3721103, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149850, - "label": "CATALYZES", - "from": 3704431, - "to": 3685915, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411999, - "label": "ELEMENT_OF", - "from": 3698992, - "to": 3730432, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149851, - "label": "CATALYZES", - "from": 3685915, - "to": 3707656, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149848, - "label": "CATALYZES", - "from": 3715104, - "to": 3685914, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149854, - "label": "CATALYZES", - "from": 3710433, - "to": 3685917, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149858, - "label": "CATALYZES", - "from": 3705953, - "to": 3685919, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149859, - "label": "CATALYZES", - "from": 3685919, - "to": 3706756, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248171, - "label": "PRODUCES", - "from": 3708774, - "to": 3710183, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 412015, - "label": "ELEMENT_OF", - "from": 3702545, - "to": 3730437, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346476, - "label": "REGULATES", - "from": 3710208, - "to": 3721110, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248170, - "label": "CONSUMED_BY", - "from": 3710312, - "to": 3708774, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 412012, - "label": "ELEMENT_OF", - "from": 3700105, - "to": 3730436, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248175, - "label": "CONSUMED_BY", - "from": 3677721, - "to": 3708775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346475, - "label": "REGULATES", - "from": 3721110, - "to": 3697601, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346474, - "label": "BINDS", - "from": 3721110, - "to": 3683114, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346485, - "label": "BINDS", - "from": 3721113, - "to": 3678773, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 412023, - "label": "ELEMENT_OF", - "from": 3698712, - "to": 3730438, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346487, - "label": "REGULATES", - "from": 3710167, - "to": 3721113, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248183, - "label": "CONSUMED_BY", - "from": 3677478, - "to": 3708776, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346483, - "label": "REGULATES", - "from": 3677501, - "to": 3721112, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346482, - "label": "REGULATES", - "from": 3721112, - "to": 3688045, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149880, - "label": "CATALYZES", - "from": 3714255, - "to": 3685930, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 412029, - "label": "ELEMENT_OF", - "from": 3698617, - "to": 3730441, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149881, - "label": "CATALYZES", - "from": 3685930, - "to": 3707664, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248191, - "label": "PRODUCES", - "from": 3708777, - "to": 3714122, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248190, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3708777, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 412027, - "label": "ELEMENT_OF", - "from": 3698756, - "to": 3730440, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346490, - "label": "REGULATES", - "from": 3677458, - "to": 3721114, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 412038, - "label": "ELEMENT_OF", - "from": 3702473, - "to": 3730444, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346500, - "label": "BINDS", - "from": 3721117, - "to": 3686236, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248194, - "label": "CONSUMED_BY", - "from": 3677689, - "to": 3708778, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346502, - "label": "REGULATES", - "from": 3711285, - "to": 3721117, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248199, - "label": "CONSUMED_BY", - "from": 3677432, - "to": 3708779, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149894, - "label": "CATALYZES", - "from": 3710433, - "to": 3685937, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149895, - "label": "CATALYZES", - "from": 3685937, - "to": 3705372, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149902, - "label": "CATALYZES", - "from": 3714255, - "to": 3685941, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 412040, - "label": "ELEMENT_OF", - "from": 3702611, - "to": 3730445, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 412052, - "label": "ELEMENT_OF", - "from": 3699933, - "to": 3730447, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248215, - "label": "PRODUCES", - "from": 3708781, - "to": 3674920, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346512, - "label": "REGULATES", - "from": 3677337, - "to": 3721120, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248212, - "label": "CONSUMED_BY", - "from": 3668925, - "to": 3708781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346524, - "label": "REGULATES", - "from": 3718648, - "to": 3721123, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 412059, - "label": "ELEMENT_OF", - "from": 3702743, - "to": 3730448, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248222, - "label": "PRODUCES", - "from": 3708782, - "to": 3677412, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346523, - "label": "REGULATES", - "from": 3721123, - "to": 3697555, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149916, - "label": "CATALYZES", - "from": 3710489, - "to": 3685948, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248227, - "label": "CONSUMED_BY", - "from": 3677464, - "to": 3708783, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346529, - "label": "BINDS", - "from": 3721125, - "to": 3685185, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346531, - "label": "REGULATES", - "from": 3705945, - "to": 3721125, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 412064, - "label": "ELEMENT_OF", - "from": 3717060, - "to": 3730450, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248228, - "label": "PRODUCES", - "from": 3708783, - "to": 3669984, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346530, - "label": "REGULATES", - "from": 3721125, - "to": 3694937, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149928, - "label": "CATALYZES", - "from": 3714782, - "to": 3685954, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 412076, - "label": "ELEMENT_OF", - "from": 3690614, - "to": 3730454, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346542, - "label": "REGULATES", - "from": 3711285, - "to": 3721128, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149929, - "label": "CATALYZES", - "from": 3685954, - "to": 3706730, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149934, - "label": "CATALYZES", - "from": 3714295, - "to": 3685957, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149935, - "label": "CATALYZES", - "from": 3685957, - "to": 3705336, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248242, - "label": "PRODUCES", - "from": 3708785, - "to": 3675339, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346551, - "label": "BINDS", - "from": 3721131, - "to": 3678544, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149936, - "label": "CATALYZES", - "from": 3710524, - "to": 3685958, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248240, - "label": "CONSUMED_BY", - "from": 3671356, - "to": 3708785, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248246, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3708786, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346559, - "label": "REGULATES", - "from": 3721133, - "to": 3702053, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248248, - "label": "PRODUCES", - "from": 3708786, - "to": 3670347, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346558, - "label": "BINDS", - "from": 3721133, - "to": 3687387, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346553, - "label": "REGULATES", - "from": 3710194, - "to": 3721131, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248255, - "label": "PRODUCES", - "from": 3708787, - "to": 3676881, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346552, - "label": "REGULATES", - "from": 3721131, - "to": 3695030, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149948, - "label": "CATALYZES", - "from": 3706084, - "to": 3685964, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149952, - "label": "CATALYZES", - "from": 3715350, - "to": 3685966, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149953, - "label": "CATALYZES", - "from": 3685966, - "to": 3707668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149958, - "label": "CATALYZES", - "from": 3710433, - "to": 3685969, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248261, - "label": "CONSUMED_BY", - "from": 3670388, - "to": 3708788, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248267, - "label": "PRODUCES", - "from": 3708789, - "to": 3683896, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149960, - "label": "CATALYZES", - "from": 3702159, - "to": 3685970, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149961, - "label": "CATALYZES", - "from": 3685970, - "to": 3708863, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149966, - "label": "CATALYZES", - "from": 3704477, - "to": 3685973, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248270, - "label": "CONSUMED_BY", - "from": 3684161, - "to": 3708790, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149975, - "label": "CATALYZES", - "from": 3685977, - "to": 3709543, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248278, - "label": "CONSUMED_BY", - "from": 3684342, - "to": 3708791, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248282, - "label": "PRODUCES", - "from": 3708791, - "to": 3675214, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149976, - "label": "CATALYZES", - "from": 3711609, - "to": 3685978, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149977, - "label": "CATALYZES", - "from": 3685978, - "to": 3705411, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149986, - "label": "CATALYZES", - "from": 3715081, - "to": 3685983, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248290, - "label": "CONSUMED_BY", - "from": 3684009, - "to": 3708793, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149987, - "label": "CATALYZES", - "from": 3685983, - "to": 3709541, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149994, - "label": "CATALYZES", - "from": 3710522, - "to": 3685987, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248299, - "label": "CONSUMED_BY", - "from": 3684390, - "to": 3708794, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149995, - "label": "CATALYZES", - "from": 3685987, - "to": 3706523, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 149992, - "label": "CATALYZES", - "from": 3712302, - "to": 3685986, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248300, - "label": "PRODUCES", - "from": 3708794, - "to": 3681528, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248308, - "label": "CONSUMED_BY", - "from": 3684390, - "to": 3708796, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248321, - "label": "PRODUCES", - "from": 3708798, - "to": 3666725, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248334, - "label": "PRODUCES", - "from": 3708800, - "to": 3675335, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248332, - "label": "CONSUMED_BY", - "from": 3671356, - "to": 3708800, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248344, - "label": "PRODUCES", - "from": 3708802, - "to": 3685582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248353, - "label": "CONSUMED_BY", - "from": 3669455, - "to": 3708804, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248357, - "label": "PRODUCES", - "from": 3708804, - "to": 3672655, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248369, - "label": "PRODUCES", - "from": 3708805, - "to": 3679070, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248374, - "label": "PRODUCES", - "from": 3708806, - "to": 3677839, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248373, - "label": "CONSUMED_BY", - "from": 3677793, - "to": 3708806, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248379, - "label": "PRODUCES", - "from": 3708807, - "to": 3681291, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248377, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3708807, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248382, - "label": "CONSUMED_BY", - "from": 3677710, - "to": 3708808, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248391, - "label": "CONSUMED_BY", - "from": 3670256, - "to": 3708809, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313932, - "label": "REGULATES", - "from": 3712313, - "to": 3716593, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248393, - "label": "PRODUCES", - "from": 3708809, - "to": 3669455, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248392, - "label": "PRODUCES", - "from": 3708809, - "to": 3669086, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 248399, - "label": "CONSUMED_BY", - "from": 3684256, - "to": 3708811, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313930, - "label": "BINDS", - "from": 3716593, - "to": 3680024, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313931, - "label": "REGULATES", - "from": 3716593, - "to": 3727556, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313937, - "label": "BINDS", - "from": 3716595, - "to": 3686536, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313939, - "label": "REGULATES", - "from": 3710228, - "to": 3716595, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313948, - "label": "BINDS", - "from": 3716598, - "to": 3679571, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313950, - "label": "REGULATES", - "from": 3707928, - "to": 3716598, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313957, - "label": "REGULATES", - "from": 3677368, - "to": 3716600, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313968, - "label": "REGULATES", - "from": 3708153, - "to": 3716603, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313992, - "label": "BINDS", - "from": 3716610, - "to": 3680033, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313993, - "label": "REGULATES", - "from": 3716610, - "to": 3726898, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313994, - "label": "REGULATES", - "from": 3712313, - "to": 3716610, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314030, - "label": "REGULATES", - "from": 3682200, - "to": 3716620, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314025, - "label": "BINDS", - "from": 3716619, - "to": 3679913, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314027, - "label": "REGULATES", - "from": 3711285, - "to": 3716619, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314036, - "label": "BINDS", - "from": 3717168, - "to": 3685176, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 412340, - "label": "ELEMENT_OF", - "from": 3702549, - "to": 3730465, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314038, - "label": "REGULATES", - "from": 3710228, - "to": 3717168, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314032, - "label": "BINDS", - "from": 3716621, - "to": 3687429, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346800, - "label": "REGULATES", - "from": 3711303, - "to": 3721133, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314033, - "label": "REGULATES", - "from": 3716621, - "to": 3697711, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314034, - "label": "REGULATES", - "from": 3718263, - "to": 3716621, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314047, - "label": "BINDS", - "from": 3717171, - "to": 3678460, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346808, - "label": "REGULATES", - "from": 3708423, - "to": 3721135, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346811, - "label": "REGULATES", - "from": 3677477, - "to": 3721136, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346821, - "label": "REGULATES", - "from": 3721139, - "to": 3700210, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346820, - "label": "BINDS", - "from": 3721139, - "to": 3679506, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314054, - "label": "BINDS", - "from": 3717173, - "to": 3682772, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 412357, - "label": "ELEMENT_OF", - "from": 3694585, - "to": 3730472, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346822, - "label": "REGULATES", - "from": 3714706, - "to": 3721139, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314055, - "label": "REGULATES", - "from": 3717173, - "to": 3729502, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346817, - "label": "REGULATES", - "from": 3721138, - "to": 3691141, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314049, - "label": "REGULATES", - "from": 3711183, - "to": 3717171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 412353, - "label": "ELEMENT_OF", - "from": 3711888, - "to": 3730471, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346818, - "label": "REGULATES", - "from": 3677368, - "to": 3721138, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346828, - "label": "BINDS", - "from": 3721141, - "to": 3678501, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346830, - "label": "REGULATES", - "from": 3710586, - "to": 3721141, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314056, - "label": "REGULATES", - "from": 3712313, - "to": 3717173, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 412363, - "label": "ELEMENT_OF", - "from": 3712239, - "to": 3730477, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215762, - "label": "ENCODES", - "from": 3693893, - "to": 3718361, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 412373, - "label": "ELEMENT_OF", - "from": 3711812, - "to": 3730481, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346833, - "label": "REGULATES", - "from": 3684067, - "to": 3721142, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346847, - "label": "REGULATES", - "from": 3721146, - "to": 3696142, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346846, - "label": "BINDS", - "from": 3721146, - "to": 3682828, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215774, - "label": "ENCODES", - "from": 3719964, - "to": 3718369, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314073, - "label": "REGULATES", - "from": 3717178, - "to": 3692647, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314074, - "label": "REGULATES", - "from": 3677560, - "to": 3717178, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215772, - "label": "ENCODES", - "from": 3716993, - "to": 3718368, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 412390, - "label": "ELEMENT_OF", - "from": 3701395, - "to": 3730488, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314084, - "label": "BINDS", - "from": 3717181, - "to": 3682780, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314085, - "label": "REGULATES", - "from": 3717181, - "to": 3697518, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314086, - "label": "REGULATES", - "from": 3711313, - "to": 3717181, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215776, - "label": "ENCODES", - "from": 3701489, - "to": 3718371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346848, - "label": "REGULATES", - "from": 3710208, - "to": 3721146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215780, - "label": "ENCODES", - "from": 3717119, - "to": 3718375, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 412385, - "label": "ELEMENT_OF", - "from": 3720026, - "to": 3730487, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314092, - "label": "REGULATES", - "from": 3717183, - "to": 3697093, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314093, - "label": "REGULATES", - "from": 3711247, - "to": 3717183, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215784, - "label": "ENCODES", - "from": 3690462, - "to": 3718379, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314089, - "label": "REGULATES", - "from": 3682200, - "to": 3717182, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215790, - "label": "ENCODES", - "from": 3712041, - "to": 3718384, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314091, - "label": "BINDS", - "from": 3717183, - "to": 3679776, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 412393, - "label": "ELEMENT_OF", - "from": 3690664, - "to": 3730489, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346868, - "label": "BINDS", - "from": 3721152, - "to": 3683105, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346870, - "label": "REGULATES", - "from": 3705945, - "to": 3721152, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314108, - "label": "REGULATES", - "from": 3710270, - "to": 3717187, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215803, - "label": "ENCODES", - "from": 3706886, - "to": 3718395, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215801, - "label": "ENCODES", - "from": 3694198, - "to": 3718393, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215800, - "label": "ENCODES", - "from": 3693753, - "to": 3718392, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314117, - "label": "REGULATES", - "from": 3717190, - "to": 3685863, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314118, - "label": "REGULATES", - "from": 3669565, - "to": 3717190, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346880, - "label": "REGULATES", - "from": 3682163, - "to": 3721155, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215816, - "label": "ENCODES", - "from": 3706794, - "to": 3718407, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346901, - "label": "REGULATES", - "from": 3721161, - "to": 3727659, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346900, - "label": "BINDS", - "from": 3721161, - "to": 3687247, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215824, - "label": "ENCODES", - "from": 3711727, - "to": 3718413, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346902, - "label": "REGULATES", - "from": 3712313, - "to": 3721161, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215829, - "label": "ENCODES", - "from": 3701702, - "to": 3718418, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314140, - "label": "REGULATES", - "from": 3682086, - "to": 3717196, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346911, - "label": "REGULATES", - "from": 3721164, - "to": 3687794, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346905, - "label": "REGULATES", - "from": 3681868, - "to": 3721162, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314137, - "label": "REGULATES", - "from": 3708153, - "to": 3717195, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215837, - "label": "ENCODES", - "from": 3699071, - "to": 3718425, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314148, - "label": "REGULATES", - "from": 3710270, - "to": 3717198, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215843, - "label": "ENCODES", - "from": 3702818, - "to": 3718431, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379684, - "label": "REGULATES", - "from": 3711285, - "to": 3724227, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215842, - "label": "ENCODES", - "from": 3702705, - "to": 3718430, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346918, - "label": "BINDS", - "from": 3721166, - "to": 3682790, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346912, - "label": "REGULATES", - "from": 3681323, - "to": 3721164, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379683, - "label": "REGULATES", - "from": 3724227, - "to": 3701951, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314146, - "label": "BINDS", - "from": 3717198, - "to": 3685030, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379682, - "label": "BINDS", - "from": 3724227, - "to": 3679502, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215851, - "label": "ENCODES", - "from": 3717006, - "to": 3718435, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346924, - "label": "REGULATES", - "from": 3708153, - "to": 3721167, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346927, - "label": "REGULATES", - "from": 3681272, - "to": 3721168, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346920, - "label": "REGULATES", - "from": 3710270, - "to": 3721166, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379701, - "label": "REGULATES", - "from": 3724232, - "to": 3697527, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379700, - "label": "BINDS", - "from": 3724232, - "to": 3682799, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379702, - "label": "REGULATES", - "from": 3705945, - "to": 3724232, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346929, - "label": "BINDS", - "from": 3721169, - "to": 3686327, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346931, - "label": "REGULATES", - "from": 3710270, - "to": 3721169, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379709, - "label": "REGULATES", - "from": 3710167, - "to": 3724234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379707, - "label": "BINDS", - "from": 3724234, - "to": 3678596, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215872, - "label": "ENCODES", - "from": 3698680, - "to": 3718455, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215878, - "label": "ENCODES", - "from": 3698704, - "to": 3718460, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346959, - "label": "REGULATES", - "from": 3721177, - "to": 3730484, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215880, - "label": "ENCODES", - "from": 3694011, - "to": 3718462, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346958, - "label": "BINDS", - "from": 3721177, - "to": 3687256, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379733, - "label": "REGULATES", - "from": 3724241, - "to": 3697294, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379732, - "label": "BINDS", - "from": 3724241, - "to": 3679554, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346967, - "label": "REGULATES", - "from": 3721179, - "to": 3702033, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215889, - "label": "ENCODES", - "from": 3694008, - "to": 3718471, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379734, - "label": "REGULATES", - "from": 3711285, - "to": 3724241, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346966, - "label": "BINDS", - "from": 3721179, - "to": 3686472, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346960, - "label": "REGULATES", - "from": 3712313, - "to": 3721177, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346973, - "label": "BINDS", - "from": 3721181, - "to": 3685424, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346975, - "label": "REGULATES", - "from": 3711247, - "to": 3721181, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379743, - "label": "BINDS", - "from": 3724244, - "to": 3683128, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215903, - "label": "ENCODES", - "from": 3707238, - "to": 3718485, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346968, - "label": "REGULATES", - "from": 3711183, - "to": 3721179, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379736, - "label": "BINDS", - "from": 3724242, - "to": 3687353, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379738, - "label": "REGULATES", - "from": 3710228, - "to": 3724242, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346982, - "label": "REGULATES", - "from": 3712357, - "to": 3721183, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379745, - "label": "REGULATES", - "from": 3706006, - "to": 3724244, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379744, - "label": "REGULATES", - "from": 3724244, - "to": 3699427, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346988, - "label": "BINDS", - "from": 3721185, - "to": 3679530, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 346990, - "label": "REGULATES", - "from": 3710270, - "to": 3721185, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215912, - "label": "ENCODES", - "from": 3701396, - "to": 3718494, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215919, - "label": "ENCODES", - "from": 3712139, - "to": 3718500, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379761, - "label": "BINDS", - "from": 3724249, - "to": 3685086, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379763, - "label": "REGULATES", - "from": 3702419, - "to": 3724249, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379762, - "label": "REGULATES", - "from": 3724249, - "to": 3699760, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215932, - "label": "ENCODES", - "from": 3706812, - "to": 3718509, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215938, - "label": "ENCODES", - "from": 3698747, - "to": 3718514, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347015, - "label": "REGULATES", - "from": 3712313, - "to": 3721192, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347014, - "label": "REGULATES", - "from": 3721192, - "to": 3727552, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215951, - "label": "ENCODES", - "from": 3707020, - "to": 3718524, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215957, - "label": "ENCODES", - "from": 3717122, - "to": 3718528, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215967, - "label": "ENCODES", - "from": 3693706, - "to": 3718536, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215971, - "label": "ENCODES", - "from": 3698764, - "to": 3718540, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215969, - "label": "ENCODES", - "from": 3701623, - "to": 3718538, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215968, - "label": "ENCODES", - "from": 3712033, - "to": 3718537, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215978, - "label": "ENCODES", - "from": 3701352, - "to": 3718547, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379823, - "label": "REGULATES", - "from": 3679336, - "to": 3725358, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379822, - "label": "REGULATES", - "from": 3725358, - "to": 3685883, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215982, - "label": "ENCODES", - "from": 3716868, - "to": 3718551, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215981, - "label": "ENCODES", - "from": 3702544, - "to": 3718550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379825, - "label": "BINDS", - "from": 3725359, - "to": 3679746, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379827, - "label": "REGULATES", - "from": 3710228, - "to": 3725359, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379826, - "label": "REGULATES", - "from": 3725359, - "to": 3697797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379837, - "label": "REGULATES", - "from": 3725362, - "to": 3694381, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379836, - "label": "BINDS", - "from": 3725362, - "to": 3685255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379838, - "label": "REGULATES", - "from": 3710143, - "to": 3725362, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379833, - "label": "REGULATES", - "from": 3725361, - "to": 3700230, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215999, - "label": "ENCODES", - "from": 3698775, - "to": 3718563, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379832, - "label": "BINDS", - "from": 3725361, - "to": 3683028, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 215998, - "label": "ENCODES", - "from": 3711745, - "to": 3718562, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379834, - "label": "REGULATES", - "from": 3711285, - "to": 3725361, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379845, - "label": "REGULATES", - "from": 3711265, - "to": 3725364, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379844, - "label": "REGULATES", - "from": 3725364, - "to": 3697266, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379855, - "label": "REGULATES", - "from": 3713939, - "to": 3725367, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379854, - "label": "REGULATES", - "from": 3725367, - "to": 3701608, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379857, - "label": "BINDS", - "from": 3725368, - "to": 3683152, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379859, - "label": "REGULATES", - "from": 3712357, - "to": 3725368, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379858, - "label": "REGULATES", - "from": 3725368, - "to": 3696319, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379877, - "label": "REGULATES", - "from": 3708153, - "to": 3725373, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379876, - "label": "REGULATES", - "from": 3725373, - "to": 3698012, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379875, - "label": "BINDS", - "from": 3725373, - "to": 3683160, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379887, - "label": "REGULATES", - "from": 3725376, - "to": 3696242, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379886, - "label": "BINDS", - "from": 3725376, - "to": 3678874, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379888, - "label": "REGULATES", - "from": 3711163, - "to": 3725376, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379891, - "label": "REGULATES", - "from": 3714459, - "to": 3725377, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379890, - "label": "REGULATES", - "from": 3725377, - "to": 3717069, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379901, - "label": "REGULATES", - "from": 3725380, - "to": 3699223, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379900, - "label": "BINDS", - "from": 3725380, - "to": 3682810, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 379902, - "label": "REGULATES", - "from": 3714081, - "to": 3725380, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314644, - "label": "BINDS", - "from": 3717203, - "to": 3683055, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314646, - "label": "REGULATES", - "from": 3711243, - "to": 3717203, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314641, - "label": "REGULATES", - "from": 3717202, - "to": 3689234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314642, - "label": "REGULATES", - "from": 3677464, - "to": 3717202, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314653, - "label": "REGULATES", - "from": 3677495, - "to": 3717205, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249127, - "label": "CONSUMED_BY", - "from": 3668230, - "to": 3708812, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249129, - "label": "PRODUCES", - "from": 3708812, - "to": 3668083, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249134, - "label": "PRODUCES", - "from": 3708813, - "to": 3679440, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249137, - "label": "CONSUMED_BY", - "from": 3677447, - "to": 3708814, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314675, - "label": "REGULATES", - "from": 3708153, - "to": 3717211, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249146, - "label": "CONSUMED_BY", - "from": 3667436, - "to": 3708815, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249151, - "label": "CONSUMED_BY", - "from": 3684265, - "to": 3708816, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249148, - "label": "PRODUCES", - "from": 3708815, - "to": 3684099, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249153, - "label": "PRODUCES", - "from": 3708816, - "to": 3682158, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314690, - "label": "REGULATES", - "from": 3711237, - "to": 3717215, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249156, - "label": "CONSUMED_BY", - "from": 3677445, - "to": 3708817, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314700, - "label": "REGULATES", - "from": 3717218, - "to": 3696209, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249163, - "label": "CONSUMED_BY", - "from": 3677822, - "to": 3708818, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314701, - "label": "REGULATES", - "from": 3711207, - "to": 3717218, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314699, - "label": "BINDS", - "from": 3717218, - "to": 3686097, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249170, - "label": "PRODUCES", - "from": 3708819, - "to": 3669326, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249168, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3708819, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314717, - "label": "BINDS", - "from": 3717223, - "to": 3682999, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314718, - "label": "REGULATES", - "from": 3717223, - "to": 3699198, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314719, - "label": "REGULATES", - "from": 3705945, - "to": 3717223, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314713, - "label": "BINDS", - "from": 3717222, - "to": 3683194, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314715, - "label": "REGULATES", - "from": 3710228, - "to": 3717222, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249185, - "label": "CONSUMED_BY", - "from": 3677427, - "to": 3708821, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314721, - "label": "BINDS", - "from": 3717224, - "to": 3675664, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314722, - "label": "REGULATES", - "from": 3717224, - "to": 3699591, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249188, - "label": "PRODUCES", - "from": 3708821, - "to": 3672997, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314723, - "label": "REGULATES", - "from": 3711179, - "to": 3717224, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314733, - "label": "REGULATES", - "from": 3717227, - "to": 3699542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314734, - "label": "REGULATES", - "from": 3705945, - "to": 3717227, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249197, - "label": "PRODUCES", - "from": 3708823, - "to": 3677129, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249203, - "label": "CONSUMED_BY", - "from": 3710323, - "to": 3708824, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249206, - "label": "PRODUCES", - "from": 3708824, - "to": 3670479, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314744, - "label": "REGULATES", - "from": 3717230, - "to": 3689605, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314745, - "label": "REGULATES", - "from": 3677472, - "to": 3717230, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249213, - "label": "CONSUMED_BY", - "from": 3672797, - "to": 3708826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314756, - "label": "REGULATES", - "from": 3710238, - "to": 3717233, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347524, - "label": "REGULATES", - "from": 3711384, - "to": 3721200, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314754, - "label": "BINDS", - "from": 3717233, - "to": 3684967, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347523, - "label": "REGULATES", - "from": 3721200, - "to": 3695245, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249221, - "label": "CONSUMED_BY", - "from": 3712586, - "to": 3708827, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314755, - "label": "REGULATES", - "from": 3717233, - "to": 3698014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347522, - "label": "BINDS", - "from": 3721200, - "to": 3685422, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314764, - "label": "REGULATES", - "from": 3710270, - "to": 3717235, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249226, - "label": "CONSUMED_BY", - "from": 3681648, - "to": 3708828, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347535, - "label": "REGULATES", - "from": 3711285, - "to": 3721203, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314762, - "label": "BINDS", - "from": 3717235, - "to": 3675662, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249229, - "label": "PRODUCES", - "from": 3708828, - "to": 3681708, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249228, - "label": "PRODUCES", - "from": 3708828, - "to": 3683918, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314773, - "label": "REGULATES", - "from": 3717238, - "to": 3687993, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314774, - "label": "REGULATES", - "from": 3683877, - "to": 3717238, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249239, - "label": "CONSUMED_BY", - "from": 3676032, - "to": 3708830, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347537, - "label": "BINDS", - "from": 3721204, - "to": 3683013, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347539, - "label": "REGULATES", - "from": 3711265, - "to": 3721204, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314770, - "label": "REGULATES", - "from": 3717237, - "to": 3694875, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314771, - "label": "REGULATES", - "from": 3710246, - "to": 3717237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347549, - "label": "REGULATES", - "from": 3677495, - "to": 3721207, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347551, - "label": "BINDS", - "from": 3721208, - "to": 3683138, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314776, - "label": "BINDS", - "from": 3717239, - "to": 3686192, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314778, - "label": "REGULATES", - "from": 3707928, - "to": 3717239, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314789, - "label": "REGULATES", - "from": 3682077, - "to": 3717242, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249248, - "label": "CONSUMED_BY", - "from": 3677444, - "to": 3708832, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216480, - "label": "MODIFIED_TO", - "from": 3718563, - "to": 3702082, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314791, - "label": "BINDS", - "from": 3717243, - "to": 3684982, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249255, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3708833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314784, - "label": "BINDS", - "from": 3717241, - "to": 3687296, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347553, - "label": "REGULATES", - "from": 3712313, - "to": 3721208, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216487, - "label": "ENCODES", - "from": 3716842, - "to": 3718568, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347552, - "label": "REGULATES", - "from": 3721208, - "to": 3727442, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314786, - "label": "REGULATES", - "from": 3711265, - "to": 3717241, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249259, - "label": "PRODUCES", - "from": 3708834, - "to": 3679097, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249258, - "label": "CONSUMED_BY", - "from": 3682143, - "to": 3708834, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249257, - "label": "PRODUCES", - "from": 3708833, - "to": 3666948, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314792, - "label": "REGULATES", - "from": 3717243, - "to": 3696019, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314793, - "label": "REGULATES", - "from": 3708423, - "to": 3717243, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216499, - "label": "ENCODES", - "from": 3701509, - "to": 3718577, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347573, - "label": "REGULATES", - "from": 3721214, - "to": 3695091, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347572, - "label": "BINDS", - "from": 3721214, - "to": 3678563, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347574, - "label": "REGULATES", - "from": 3710576, - "to": 3721214, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216496, - "label": "ENCODES", - "from": 3711989, - "to": 3718575, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347569, - "label": "REGULATES", - "from": 3721213, - "to": 3685686, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347570, - "label": "REGULATES", - "from": 3677438, - "to": 3721213, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347581, - "label": "REGULATES", - "from": 3721216, - "to": 3697565, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347580, - "label": "BINDS", - "from": 3721216, - "to": 3678798, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249273, - "label": "PRODUCES", - "from": 3708837, - "to": 3666781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347582, - "label": "REGULATES", - "from": 3714677, - "to": 3721216, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216510, - "label": "ENCODES", - "from": 3698913, - "to": 3718584, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249276, - "label": "CONSUMED_BY", - "from": 3681239, - "to": 3708838, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314811, - "label": "REGULATES", - "from": 3710228, - "to": 3717248, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347589, - "label": "REGULATES", - "from": 3711207, - "to": 3721218, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347588, - "label": "REGULATES", - "from": 3721218, - "to": 3695265, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216514, - "label": "ENCODES", - "from": 3690621, - "to": 3718587, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347585, - "label": "REGULATES", - "from": 3677368, - "to": 3721217, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347584, - "label": "REGULATES", - "from": 3721217, - "to": 3689006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347587, - "label": "BINDS", - "from": 3721218, - "to": 3687538, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216516, - "label": "ENCODES", - "from": 3693906, - "to": 3718588, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249290, - "label": "CONSUMED_BY", - "from": 3675930, - "to": 3708840, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314829, - "label": "REGULATES", - "from": 3717253, - "to": 3699256, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314830, - "label": "REGULATES", - "from": 3710572, - "to": 3717253, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314824, - "label": "BINDS", - "from": 3717252, - "to": 3679948, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314826, - "label": "REGULATES", - "from": 3710228, - "to": 3717252, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347604, - "label": "REGULATES", - "from": 3712313, - "to": 3721222, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216534, - "label": "ENCODES", - "from": 3711916, - "to": 3718599, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347603, - "label": "REGULATES", - "from": 3721222, - "to": 3729581, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249306, - "label": "PRODUCES", - "from": 3708842, - "to": 3675346, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216538, - "label": "ENCODES", - "from": 3707074, - "to": 3718603, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314846, - "label": "BINDS", - "from": 3717258, - "to": 3679887, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249304, - "label": "CONSUMED_BY", - "from": 3671356, - "to": 3708842, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249310, - "label": "PRODUCES", - "from": 3708843, - "to": 3681241, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249309, - "label": "CONSUMED_BY", - "from": 3677447, - "to": 3708843, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347620, - "label": "BINDS", - "from": 3721227, - "to": 3682974, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249312, - "label": "CONSUMED_BY", - "from": 3682041, - "to": 3708844, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314855, - "label": "REGULATES", - "from": 3708423, - "to": 3717260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347622, - "label": "REGULATES", - "from": 3710228, - "to": 3721227, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347617, - "label": "REGULATES", - "from": 3721226, - "to": 3695039, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314848, - "label": "REGULATES", - "from": 3711317, - "to": 3717258, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347616, - "label": "BINDS", - "from": 3721226, - "to": 3683177, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347618, - "label": "REGULATES", - "from": 3710270, - "to": 3721226, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314862, - "label": "REGULATES", - "from": 3681281, - "to": 3717262, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249320, - "label": "CONSUMED_BY", - "from": 3677116, - "to": 3708845, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216558, - "label": "ENCODES", - "from": 3702579, - "to": 3718621, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314857, - "label": "BINDS", - "from": 3717261, - "to": 3685131, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314859, - "label": "REGULATES", - "from": 3710270, - "to": 3717261, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216556, - "label": "ENCODES", - "from": 3712097, - "to": 3718619, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314869, - "label": "REGULATES", - "from": 3677472, - "to": 3717264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314864, - "label": "BINDS", - "from": 3717263, - "to": 3683300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314865, - "label": "REGULATES", - "from": 3717263, - "to": 3701885, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249334, - "label": "CONSUMED_BY", - "from": 3679392, - "to": 3708848, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314866, - "label": "REGULATES", - "from": 3708153, - "to": 3717263, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249339, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3708849, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216575, - "label": "ENCODES", - "from": 3702729, - "to": 3718636, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 314873, - "label": "REGULATES", - "from": 3708153, - "to": 3717265, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249341, - "label": "PRODUCES", - "from": 3708849, - "to": 3677033, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216582, - "label": "ENCODES", - "from": 3717167, - "to": 3718642, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249355, - "label": "PRODUCES", - "from": 3708851, - "to": 3677054, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347661, - "label": "REGULATES", - "from": 3721238, - "to": 3729714, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249354, - "label": "PRODUCES", - "from": 3708851, - "to": 3672618, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347660, - "label": "BINDS", - "from": 3721238, - "to": 3686341, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249353, - "label": "CONSUMED_BY", - "from": 3676180, - "to": 3708851, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347662, - "label": "REGULATES", - "from": 3712313, - "to": 3721238, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249358, - "label": "PRODUCES", - "from": 3708852, - "to": 3681787, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216589, - "label": "ENCODES", - "from": 3701490, - "to": 3718648, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249356, - "label": "CONSUMED_BY", - "from": 3681304, - "to": 3708852, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216588, - "label": "ENCODES", - "from": 3716975, - "to": 3718647, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216595, - "label": "ENCODES", - "from": 3690415, - "to": 3718653, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347669, - "label": "REGULATES", - "from": 3721240, - "to": 3697614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347668, - "label": "BINDS", - "from": 3721240, - "to": 3678759, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216593, - "label": "ENCODES", - "from": 3719931, - "to": 3718651, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347670, - "label": "REGULATES", - "from": 3710167, - "to": 3721240, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347665, - "label": "REGULATES", - "from": 3721239, - "to": 3696351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347664, - "label": "BINDS", - "from": 3721239, - "to": 3683167, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216597, - "label": "ENCODES", - "from": 3702748, - "to": 3718655, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347666, - "label": "REGULATES", - "from": 3715127, - "to": 3721239, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347677, - "label": "REGULATES", - "from": 3714081, - "to": 3721242, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347679, - "label": "REGULATES", - "from": 3721243, - "to": 3692722, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347673, - "label": "REGULATES", - "from": 3677678, - "to": 3721241, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347672, - "label": "REGULATES", - "from": 3721241, - "to": 3692669, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347675, - "label": "BINDS", - "from": 3721242, - "to": 3679773, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216610, - "label": "ENCODES", - "from": 3690508, - "to": 3718667, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216609, - "label": "ENCODES", - "from": 3687576, - "to": 3718666, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216608, - "label": "ENCODES", - "from": 3717115, - "to": 3718664, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347686, - "label": "BINDS", - "from": 3721245, - "to": 3678579, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347680, - "label": "REGULATES", - "from": 3677487, - "to": 3721243, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347692, - "label": "REGULATES", - "from": 3710208, - "to": 3721246, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347688, - "label": "REGULATES", - "from": 3714908, - "to": 3721245, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347690, - "label": "BINDS", - "from": 3721246, - "to": 3686514, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347697, - "label": "BINDS", - "from": 3721248, - "to": 3682891, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347699, - "label": "REGULATES", - "from": 3711259, - "to": 3721248, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347698, - "label": "REGULATES", - "from": 3721248, - "to": 3729327, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216639, - "label": "CONSUMED_BY", - "from": 3668939, - "to": 3700673, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347704, - "label": "BINDS", - "from": 3721250, - "to": 3678521, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347706, - "label": "REGULATES", - "from": 3710270, - "to": 3721250, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216643, - "label": "CONSUMED_BY", - "from": 3669639, - "to": 3700674, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216642, - "label": "PRODUCES", - "from": 3700673, - "to": 3672789, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216646, - "label": "PRODUCES", - "from": 3700674, - "to": 3670312, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216650, - "label": "PRODUCES", - "from": 3700675, - "to": 3679477, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347724, - "label": "REGULATES", - "from": 3704499, - "to": 3721255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216649, - "label": "CONSUMED_BY", - "from": 3681868, - "to": 3700675, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347721, - "label": "REGULATES", - "from": 3712313, - "to": 3721254, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347720, - "label": "REGULATES", - "from": 3721254, - "to": 3729340, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216653, - "label": "CONSUMED_BY", - "from": 3684390, - "to": 3700676, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347723, - "label": "REGULATES", - "from": 3721255, - "to": 3688022, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216658, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3700677, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216663, - "label": "CONSUMED_BY", - "from": 3666922, - "to": 3700678, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216660, - "label": "PRODUCES", - "from": 3700677, - "to": 3672694, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347741, - "label": "BINDS", - "from": 3721260, - "to": 3686336, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347743, - "label": "REGULATES", - "from": 3708153, - "to": 3721260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216670, - "label": "PRODUCES", - "from": 3700679, - "to": 3677822, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216668, - "label": "CONSUMED_BY", - "from": 3677600, - "to": 3700679, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216674, - "label": "PRODUCES", - "from": 3700680, - "to": 3683863, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216672, - "label": "CONSUMED_BY", - "from": 3677809, - "to": 3700680, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216678, - "label": "CONSUMED_BY", - "from": 3677460, - "to": 3700681, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216680, - "label": "PRODUCES", - "from": 3700681, - "to": 3675610, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347752, - "label": "BINDS", - "from": 3721263, - "to": 3686326, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 347754, - "label": "REGULATES", - "from": 3711285, - "to": 3721263, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216691, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3700683, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216702, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3700685, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216707, - "label": "CONSUMED_BY", - "from": 3677691, - "to": 3700686, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216704, - "label": "PRODUCES", - "from": 3700685, - "to": 3669329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216711, - "label": "CONSUMED_BY", - "from": 3679115, - "to": 3700687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216709, - "label": "PRODUCES", - "from": 3700686, - "to": 3681876, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216715, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3700688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216713, - "label": "PRODUCES", - "from": 3700687, - "to": 3684265, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216718, - "label": "PRODUCES", - "from": 3700688, - "to": 3672531, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249609, - "label": "CONSUMED_BY", - "from": 3681531, - "to": 3708854, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249614, - "label": "PRODUCES", - "from": 3708855, - "to": 3682027, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249612, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3708855, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249617, - "label": "CONSUMED_BY", - "from": 3666563, - "to": 3708856, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249625, - "label": "CONSUMED_BY", - "from": 3681577, - "to": 3708857, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249630, - "label": "CONSUMED_BY", - "from": 3679114, - "to": 3708858, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249633, - "label": "PRODUCES", - "from": 3708858, - "to": 3684325, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249636, - "label": "CONSUMED_BY", - "from": 3677368, - "to": 3708859, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249654, - "label": "CONSUMED_BY", - "from": 3677435, - "to": 3708862, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249665, - "label": "CONSUMED_BY", - "from": 3681249, - "to": 3708864, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249664, - "label": "PRODUCES", - "from": 3708863, - "to": 3676111, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249668, - "label": "PRODUCES", - "from": 3708864, - "to": 3681547, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249679, - "label": "CONSUMED_BY", - "from": 3710268, - "to": 3708866, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249682, - "label": "CONSUMED_BY", - "from": 3670533, - "to": 3708867, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249681, - "label": "PRODUCES", - "from": 3708866, - "to": 3710216, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249688, - "label": "PRODUCES", - "from": 3708868, - "to": 3684298, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348005, - "label": "REGULATES", - "from": 3710594, - "to": 3721266, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348001, - "label": "REGULATES", - "from": 3677560, - "to": 3721265, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348003, - "label": "BINDS", - "from": 3721266, - "to": 3678471, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249704, - "label": "CONSUMED_BY", - "from": 3684248, - "to": 3708871, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348020, - "label": "REGULATES", - "from": 3714706, - "to": 3721270, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249713, - "label": "CONSUMED_BY", - "from": 3667467, - "to": 3708872, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348018, - "label": "BINDS", - "from": 3721270, - "to": 3686359, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249720, - "label": "PRODUCES", - "from": 3708873, - "to": 3682159, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348025, - "label": "BINDS", - "from": 3721272, - "to": 3687373, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348027, - "label": "REGULATES", - "from": 3711285, - "to": 3721272, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216963, - "label": "CONSUMED_BY", - "from": 3681364, - "to": 3700690, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216961, - "label": "PRODUCES", - "from": 3700689, - "to": 3684047, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216960, - "label": "CONSUMED_BY", - "from": 3684013, - "to": 3700689, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216966, - "label": "CONSUMED_BY", - "from": 3685574, - "to": 3700691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216964, - "label": "PRODUCES", - "from": 3700690, - "to": 3670533, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348034, - "label": "REGULATES", - "from": 3710228, - "to": 3721274, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216971, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3700692, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348045, - "label": "REGULATES", - "from": 3681638, - "to": 3721277, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249739, - "label": "CONSUMED_BY", - "from": 3679360, - "to": 3708876, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348044, - "label": "REGULATES", - "from": 3721277, - "to": 3688179, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348047, - "label": "BINDS", - "from": 3721278, - "to": 3687400, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249743, - "label": "PRODUCES", - "from": 3708876, - "to": 3681930, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216974, - "label": "CONSUMED_BY", - "from": 3679114, - "to": 3700693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216972, - "label": "PRODUCES", - "from": 3700692, - "to": 3674830, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216979, - "label": "PRODUCES", - "from": 3700694, - "to": 3682018, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249745, - "label": "CONSUMED_BY", - "from": 3666774, - "to": 3708877, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216976, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3700694, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348049, - "label": "REGULATES", - "from": 3711285, - "to": 3721278, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348048, - "label": "REGULATES", - "from": 3721278, - "to": 3697954, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216980, - "label": "PRODUCES", - "from": 3700694, - "to": 3683992, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216987, - "label": "PRODUCES", - "from": 3700695, - "to": 3676866, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348060, - "label": "REGULATES", - "from": 3710167, - "to": 3721281, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216986, - "label": "CONSUMED_BY", - "from": 3670385, - "to": 3700695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249753, - "label": "CONSUMED_BY", - "from": 3668270, - "to": 3708878, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249759, - "label": "CONSUMED_BY", - "from": 3677624, - "to": 3708879, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216990, - "label": "CONSUMED_BY", - "from": 3677498, - "to": 3700696, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348059, - "label": "REGULATES", - "from": 3721281, - "to": 3701889, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249756, - "label": "PRODUCES", - "from": 3708878, - "to": 3681197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249760, - "label": "PRODUCES", - "from": 3708879, - "to": 3677775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 216992, - "label": "PRODUCES", - "from": 3700696, - "to": 3679353, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249771, - "label": "CONSUMED_BY", - "from": 3684343, - "to": 3708881, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348079, - "label": "BINDS", - "from": 3721287, - "to": 3686368, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249773, - "label": "PRODUCES", - "from": 3708881, - "to": 3710266, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217011, - "label": "PRODUCES", - "from": 3700700, - "to": 3681207, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217009, - "label": "CONSUMED_BY", - "from": 3678963, - "to": 3700700, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249776, - "label": "PRODUCES", - "from": 3708882, - "to": 3679028, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348081, - "label": "REGULATES", - "from": 3714706, - "to": 3721287, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217019, - "label": "PRODUCES", - "from": 3700702, - "to": 3684317, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217018, - "label": "CONSUMED_BY", - "from": 3681583, - "to": 3700702, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348095, - "label": "REGULATES", - "from": 3681418, - "to": 3721291, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348094, - "label": "REGULATES", - "from": 3721291, - "to": 3689656, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249791, - "label": "CONSUMED_BY", - "from": 3676929, - "to": 3708885, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217022, - "label": "CONSUMED_BY", - "from": 3677501, - "to": 3700703, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348088, - "label": "REGULATES", - "from": 3679440, - "to": 3721289, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217026, - "label": "PRODUCES", - "from": 3700703, - "to": 3681370, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348103, - "label": "REGULATES", - "from": 3708153, - "to": 3721293, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217030, - "label": "PRODUCES", - "from": 3700704, - "to": 3681249, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249797, - "label": "CONSUMED_BY", - "from": 3684188, - "to": 3708886, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217028, - "label": "CONSUMED_BY", - "from": 3681929, - "to": 3700704, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217035, - "label": "CONSUMED_BY", - "from": 3682001, - "to": 3700706, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217034, - "label": "PRODUCES", - "from": 3700705, - "to": 3677571, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217033, - "label": "PRODUCES", - "from": 3700705, - "to": 3681839, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217032, - "label": "CONSUMED_BY", - "from": 3681500, - "to": 3700705, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217036, - "label": "PRODUCES", - "from": 3700706, - "to": 3684090, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348106, - "label": "REGULATES", - "from": 3682200, - "to": 3721294, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249809, - "label": "CONSUMED_BY", - "from": 3681708, - "to": 3708888, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217046, - "label": "PRODUCES", - "from": 3700708, - "to": 3681328, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217044, - "label": "CONSUMED_BY", - "from": 3681501, - "to": 3700708, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217049, - "label": "CONSUMED_BY", - "from": 3677237, - "to": 3700709, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 380894, - "label": "REGULATES", - "from": 3718538, - "to": 3725389, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249823, - "label": "CONSUMED_BY", - "from": 3681462, - "to": 3708890, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217052, - "label": "PRODUCES", - "from": 3700709, - "to": 3684329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217059, - "label": "CONSUMED_BY", - "from": 3676959, - "to": 3700711, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217062, - "label": "CONSUMED_BY", - "from": 3681226, - "to": 3700712, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 249830, - "label": "PRODUCES", - "from": 3708891, - "to": 3677447, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217060, - "label": "PRODUCES", - "from": 3700711, - "to": 3677104, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217071, - "label": "CONSUMED_BY", - "from": 3684105, - "to": 3700715, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348137, - "label": "BINDS", - "from": 3721303, - "to": 3679516, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348139, - "label": "REGULATES", - "from": 3710208, - "to": 3721303, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217068, - "label": "CONSUMED_BY", - "from": 3669639, - "to": 3700714, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348138, - "label": "REGULATES", - "from": 3721303, - "to": 3699742, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348149, - "label": "REGULATES", - "from": 3721306, - "to": 3701957, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348148, - "label": "BINDS", - "from": 3721306, - "to": 3678705, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348150, - "label": "REGULATES", - "from": 3711313, - "to": 3721306, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217079, - "label": "CONSUMED_BY", - "from": 3681458, - "to": 3700717, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348144, - "label": "BINDS", - "from": 3721305, - "to": 3686578, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348146, - "label": "REGULATES", - "from": 3711317, - "to": 3721305, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217083, - "label": "CONSUMED_BY", - "from": 3682194, - "to": 3700718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348157, - "label": "REGULATES", - "from": 3677466, - "to": 3721308, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348159, - "label": "BINDS", - "from": 3721309, - "to": 3682933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217087, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3700719, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217086, - "label": "PRODUCES", - "from": 3700718, - "to": 3681310, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217085, - "label": "PRODUCES", - "from": 3700718, - "to": 3683882, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217090, - "label": "PRODUCES", - "from": 3700719, - "to": 3681996, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348161, - "label": "REGULATES", - "from": 3711285, - "to": 3721309, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348160, - "label": "REGULATES", - "from": 3721309, - "to": 3697766, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217092, - "label": "CONSUMED_BY", - "from": 3679096, - "to": 3700720, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348172, - "label": "REGULATES", - "from": 3711285, - "to": 3721312, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217098, - "label": "PRODUCES", - "from": 3700721, - "to": 3681426, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217096, - "label": "CONSUMED_BY", - "from": 3681930, - "to": 3700721, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348171, - "label": "REGULATES", - "from": 3721312, - "to": 3695876, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348170, - "label": "BINDS", - "from": 3721312, - "to": 3678604, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217107, - "label": "CONSUMED_BY", - "from": 3677711, - "to": 3700723, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217110, - "label": "PRODUCES", - "from": 3700723, - "to": 3679303, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 380947, - "label": "ENCODES", - "from": 3701754, - "to": 3720073, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217115, - "label": "PRODUCES", - "from": 3700724, - "to": 3683902, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217112, - "label": "CONSUMED_BY", - "from": 3681190, - "to": 3700724, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348185, - "label": "REGULATES", - "from": 3721316, - "to": 3685885, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217118, - "label": "CONSUMED_BY", - "from": 3672880, - "to": 3700725, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 380955, - "label": "ENCODES", - "from": 3702559, - "to": 3720077, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348186, - "label": "REGULATES", - "from": 3677368, - "to": 3721316, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348196, - "label": "BINDS", - "from": 3721319, - "to": 3679508, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217121, - "label": "PRODUCES", - "from": 3700725, - "to": 3668938, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348198, - "label": "REGULATES", - "from": 3714908, - "to": 3721319, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348193, - "label": "REGULATES", - "from": 3721318, - "to": 3694532, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217126, - "label": "PRODUCES", - "from": 3700726, - "to": 3679487, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348192, - "label": "BINDS", - "from": 3721318, - "to": 3686450, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217124, - "label": "CONSUMED_BY", - "from": 3681524, - "to": 3700726, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348194, - "label": "REGULATES", - "from": 3712357, - "to": 3721318, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348213, - "label": "REGULATES", - "from": 3712586, - "to": 3721323, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348215, - "label": "BINDS", - "from": 3721324, - "to": 3680011, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348209, - "label": "REGULATES", - "from": 3711265, - "to": 3721322, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217142, - "label": "PRODUCES", - "from": 3700729, - "to": 3710210, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348208, - "label": "REGULATES", - "from": 3721322, - "to": 3697994, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348211, - "label": "BINDS", - "from": 3721323, - "to": 3683211, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217146, - "label": "PRODUCES", - "from": 3700730, - "to": 3676810, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217144, - "label": "CONSUMED_BY", - "from": 3674625, - "to": 3700730, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348217, - "label": "REGULATES", - "from": 3710228, - "to": 3721324, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217154, - "label": "CONSUMED_BY", - "from": 3681885, - "to": 3700733, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 380996, - "label": "ENCODES", - "from": 3702543, - "to": 3720094, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217159, - "label": "PRODUCES", - "from": 3700734, - "to": 3684196, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217158, - "label": "CONSUMED_BY", - "from": 3684200, - "to": 3700734, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348224, - "label": "REGULATES", - "from": 3677560, - "to": 3721326, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217162, - "label": "PRODUCES", - "from": 3700735, - "to": 3677811, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348236, - "label": "REGULATES", - "from": 3705945, - "to": 3721329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217160, - "label": "CONSUMED_BY", - "from": 3677445, - "to": 3700735, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217165, - "label": "PRODUCES", - "from": 3700736, - "to": 3683920, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348234, - "label": "BINDS", - "from": 3721329, - "to": 3687465, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217168, - "label": "CONSUMED_BY", - "from": 3684009, - "to": 3700737, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217181, - "label": "CONSUMED_BY", - "from": 3684327, - "to": 3700739, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 381018, - "label": "ENCODES", - "from": 3702535, - "to": 3720103, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217186, - "label": "CONSUMED_BY", - "from": 3677458, - "to": 3700741, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 381037, - "label": "ENCODES", - "from": 3702553, - "to": 3720111, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217199, - "label": "PRODUCES", - "from": 3700744, - "to": 3669695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217197, - "label": "CONSUMED_BY", - "from": 3669869, - "to": 3700744, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 381051, - "label": "ENCODES", - "from": 3702549, - "to": 3720117, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 381076, - "label": "ENCODES", - "from": 3702533, - "to": 3720127, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 381103, - "label": "MODIFIED_TO", - "from": 3720140, - "to": 3720229, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 381102, - "label": "ENCODES", - "from": 3701841, - "to": 3720140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 381104, - "label": "MODIFIED_TO", - "from": 3720140, - "to": 3720287, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348487, - "label": "REGULATES", - "from": 3710270, - "to": 3721332, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348486, - "label": "REGULATES", - "from": 3721332, - "to": 3697587, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348493, - "label": "BINDS", - "from": 3721334, - "to": 3678933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348495, - "label": "REGULATES", - "from": 3707928, - "to": 3721334, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348494, - "label": "REGULATES", - "from": 3721334, - "to": 3697359, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478062, - "label": "CATALYZES", - "from": 3714386, - "to": 91442367, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348501, - "label": "REGULATES", - "from": 3721336, - "to": 3689215, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478065, - "label": "CATALYZES", - "from": 91442368, - "to": 3705304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478064, - "label": "CATALYZES", - "from": 91442429, - "to": 91442368, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348502, - "label": "REGULATES", - "from": 3679440, - "to": 3721336, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348506, - "label": "REGULATES", - "from": 3708153, - "to": 3721337, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217442, - "label": "CONSUMED_BY", - "from": 3712684, - "to": 3700745, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217455, - "label": "PRODUCES", - "from": 3700749, - "to": 3677604, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217453, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3700749, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217458, - "label": "CONSUMED_BY", - "from": 3684186, - "to": 3700750, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348535, - "label": "BINDS", - "from": 3721345, - "to": 3686265, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348540, - "label": "REGULATES", - "from": 3677454, - "to": 3721346, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217465, - "label": "CONSUMED_BY", - "from": 3677535, - "to": 3700752, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348543, - "label": "REGULATES", - "from": 3721347, - "to": 3697412, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348542, - "label": "BINDS", - "from": 3721347, - "to": 3687348, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348537, - "label": "REGULATES", - "from": 3710270, - "to": 3721345, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217470, - "label": "PRODUCES", - "from": 3700753, - "to": 3677220, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348536, - "label": "REGULATES", - "from": 3721345, - "to": 3696307, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217475, - "label": "CONSUMED_BY", - "from": 3681635, - "to": 3700755, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217473, - "label": "PRODUCES", - "from": 3700754, - "to": 3677821, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217472, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3700754, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348544, - "label": "REGULATES", - "from": 3711600, - "to": 3721347, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217483, - "label": "PRODUCES", - "from": 3700756, - "to": 3679073, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217481, - "label": "CONSUMED_BY", - "from": 3684009, - "to": 3700756, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217487, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3700758, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217486, - "label": "PRODUCES", - "from": 3700757, - "to": 3677440, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217485, - "label": "CONSUMED_BY", - "from": 3677421, - "to": 3700757, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348565, - "label": "BINDS", - "from": 3721353, - "to": 3679774, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348567, - "label": "REGULATES", - "from": 3707928, - "to": 3721353, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217502, - "label": "CONSUMED_BY", - "from": 3684315, - "to": 3700761, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217506, - "label": "CONSUMED_BY", - "from": 3675780, - "to": 3700762, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217505, - "label": "PRODUCES", - "from": 3700761, - "to": 3677810, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217508, - "label": "PRODUCES", - "from": 3700762, - "to": 3669458, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348578, - "label": "REGULATES", - "from": 3677560, - "to": 3721356, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217515, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3700764, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348588, - "label": "BINDS", - "from": 3721359, - "to": 3683037, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348590, - "label": "REGULATES", - "from": 3711179, - "to": 3721359, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348584, - "label": "BINDS", - "from": 3721358, - "to": 3686274, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217517, - "label": "PRODUCES", - "from": 3700764, - "to": 3669017, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348586, - "label": "REGULATES", - "from": 3711265, - "to": 3721358, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217521, - "label": "CONSUMED_BY", - "from": 3684176, - "to": 3700765, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348599, - "label": "BINDS", - "from": 3721362, - "to": 3685448, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348594, - "label": "REGULATES", - "from": 3710208, - "to": 3721360, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217535, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3700768, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348601, - "label": "REGULATES", - "from": 3710274, - "to": 3721362, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217539, - "label": "CONSUMED_BY", - "from": 3677711, - "to": 3700769, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348613, - "label": "REGULATES", - "from": 3710228, - "to": 3721365, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348615, - "label": "REGULATES", - "from": 3721366, - "to": 3689724, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348609, - "label": "REGULATES", - "from": 3718538, - "to": 3721364, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217542, - "label": "PRODUCES", - "from": 3700769, - "to": 3710323, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348611, - "label": "BINDS", - "from": 3721365, - "to": 3685352, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217547, - "label": "PRODUCES", - "from": 3700770, - "to": 3675472, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348620, - "label": "REGULATES", - "from": 3708153, - "to": 3721367, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217545, - "label": "CONSUMED_BY", - "from": 3677443, - "to": 3700770, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348616, - "label": "REGULATES", - "from": 3667461, - "to": 3721366, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250323, - "label": "PRODUCES", - "from": 3708893, - "to": 3677587, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250321, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3708893, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217552, - "label": "PRODUCES", - "from": 3700771, - "to": 3682188, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217559, - "label": "PRODUCES", - "from": 3700773, - "to": 3681583, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250324, - "label": "PRODUCES", - "from": 3708893, - "to": 3677140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250331, - "label": "CONSUMED_BY", - "from": 3677460, - "to": 3708895, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348637, - "label": "BINDS", - "from": 3721372, - "to": 3687485, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217562, - "label": "PRODUCES", - "from": 3700774, - "to": 3685616, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348639, - "label": "REGULATES", - "from": 3712283, - "to": 3721372, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217560, - "label": "CONSUMED_BY", - "from": 3679386, - "to": 3700774, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348645, - "label": "BINDS", - "from": 3721374, - "to": 3678743, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217570, - "label": "CONSUMED_BY", - "from": 3672661, - "to": 3700776, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348647, - "label": "REGULATES", - "from": 3710228, - "to": 3721374, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250343, - "label": "PRODUCES", - "from": 3708896, - "to": 3707988, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348641, - "label": "BINDS", - "from": 3721373, - "to": 3685005, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348643, - "label": "REGULATES", - "from": 3710143, - "to": 3721373, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250340, - "label": "CONSUMED_BY", - "from": 3681145, - "to": 3708896, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348642, - "label": "REGULATES", - "from": 3721373, - "to": 3697983, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250350, - "label": "CONSUMED_BY", - "from": 3672795, - "to": 3708898, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217585, - "label": "PRODUCES", - "from": 3700779, - "to": 3669850, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348656, - "label": "BINDS", - "from": 3721377, - "to": 3679783, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217589, - "label": "PRODUCES", - "from": 3700780, - "to": 3682087, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217588, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3700780, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348658, - "label": "REGULATES", - "from": 3707928, - "to": 3721377, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348669, - "label": "REGULATES", - "from": 3721380, - "to": 3697646, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217595, - "label": "PRODUCES", - "from": 3700781, - "to": 3681791, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348668, - "label": "BINDS", - "from": 3721380, - "to": 3678687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348670, - "label": "REGULATES", - "from": 3711267, - "to": 3721380, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217598, - "label": "CONSUMED_BY", - "from": 3683991, - "to": 3700782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348677, - "label": "REGULATES", - "from": 3710270, - "to": 3721382, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217607, - "label": "CONSUMED_BY", - "from": 3677093, - "to": 3700784, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348673, - "label": "REGULATES", - "from": 3683877, - "to": 3721381, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348675, - "label": "BINDS", - "from": 3721382, - "to": 3678923, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250372, - "label": "PRODUCES", - "from": 3708901, - "to": 3666453, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250378, - "label": "CONSUMED_BY", - "from": 3671356, - "to": 3708902, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217615, - "label": "CONSUMED_BY", - "from": 3684133, - "to": 3700786, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250383, - "label": "CONSUMED_BY", - "from": 3681309, - "to": 3708903, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250380, - "label": "PRODUCES", - "from": 3708902, - "to": 3675355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217619, - "label": "PRODUCES", - "from": 3700786, - "to": 3681832, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250386, - "label": "PRODUCES", - "from": 3708903, - "to": 3681458, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348694, - "label": "BINDS", - "from": 3721387, - "to": 3685470, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217623, - "label": "CONSUMED_BY", - "from": 3667422, - "to": 3700787, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217627, - "label": "CONSUMED_BY", - "from": 3710264, - "to": 3705156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250399, - "label": "CONSUMED_BY", - "from": 3671440, - "to": 3708905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217630, - "label": "PRODUCES", - "from": 3705156, - "to": 3681351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348696, - "label": "REGULATES", - "from": 3714081, - "to": 3721387, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250403, - "label": "CONSUMED_BY", - "from": 3677498, - "to": 3708906, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250400, - "label": "PRODUCES", - "from": 3708905, - "to": 3676975, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348717, - "label": "BINDS", - "from": 3721393, - "to": 3686357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250409, - "label": "CONSUMED_BY", - "from": 3677431, - "to": 3708907, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217641, - "label": "CONSUMED_BY", - "from": 3677495, - "to": 3705159, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348719, - "label": "REGULATES", - "from": 3715127, - "to": 3721393, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348713, - "label": "BINDS", - "from": 3721392, - "to": 3679596, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217645, - "label": "CONSUMED_BY", - "from": 3673214, - "to": 3705160, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348715, - "label": "REGULATES", - "from": 3714124, - "to": 3721392, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348714, - "label": "REGULATES", - "from": 3721392, - "to": 3697623, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217651, - "label": "PRODUCES", - "from": 3705161, - "to": 3681826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250419, - "label": "PRODUCES", - "from": 3708908, - "to": 3667349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217649, - "label": "CONSUMED_BY", - "from": 3684009, - "to": 3705161, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250417, - "label": "CONSUMED_BY", - "from": 3675816, - "to": 3708908, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217648, - "label": "PRODUCES", - "from": 3705160, - "to": 3673213, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250422, - "label": "CONSUMED_BY", - "from": 3677438, - "to": 3708909, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217652, - "label": "PRODUCES", - "from": 3705161, - "to": 3677337, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250426, - "label": "PRODUCES", - "from": 3708909, - "to": 3681777, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217656, - "label": "PRODUCES", - "from": 3705162, - "to": 3670690, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217661, - "label": "PRODUCES", - "from": 3705163, - "to": 3673301, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250435, - "label": "CONSUMED_BY", - "from": 3684353, - "to": 3708911, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217670, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3705165, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250438, - "label": "PRODUCES", - "from": 3708911, - "to": 3666504, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250437, - "label": "PRODUCES", - "from": 3708911, - "to": 3677114, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250443, - "label": "CONSUMED_BY", - "from": 3684274, - "to": 3708913, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217672, - "label": "PRODUCES", - "from": 3705165, - "to": 3672621, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 217677, - "label": "PRODUCES", - "from": 3705166, - "to": 3685544, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250451, - "label": "CONSUMED_BY", - "from": 3681528, - "to": 3708914, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250457, - "label": "CONSUMED_BY", - "from": 3677457, - "to": 3708916, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250475, - "label": "CONSUMED_BY", - "from": 3681750, - "to": 3708919, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250486, - "label": "PRODUCES", - "from": 3708920, - "to": 3668233, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250495, - "label": "PRODUCES", - "from": 3708922, - "to": 3677560, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250502, - "label": "PRODUCES", - "from": 3708923, - "to": 3672776, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250501, - "label": "CONSUMED_BY", - "from": 3676979, - "to": 3708923, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250506, - "label": "CONSUMED_BY", - "from": 3668044, - "to": 3708924, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250508, - "label": "PRODUCES", - "from": 3708924, - "to": 3679268, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250512, - "label": "CONSUMED_BY", - "from": 3677368, - "to": 3708925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250527, - "label": "PRODUCES", - "from": 3708927, - "to": 3668939, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250525, - "label": "CONSUMED_BY", - "from": 3668938, - "to": 3708927, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250531, - "label": "CONSUMED_BY", - "from": 3684133, - "to": 3708928, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250538, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3708929, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250542, - "label": "CONSUMED_BY", - "from": 3679487, - "to": 3708930, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250541, - "label": "PRODUCES", - "from": 3708929, - "to": 3710272, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250551, - "label": "PRODUCES", - "from": 3708931, - "to": 3666551, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 250559, - "label": "CONSUMED_BY", - "from": 3677691, - "to": 3708933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 381863, - "label": "MODIFIED_TO", - "from": 3720156, - "to": 3720321, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 381862, - "label": "ENCODES", - "from": 3701863, - "to": 3720156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 381877, - "label": "ENCODES", - "from": 3702483, - "to": 3720164, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 381878, - "label": "MODIFIED_TO", - "from": 3720164, - "to": 3720326, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 381901, - "label": "ENCODES", - "from": 3701503, - "to": 3720175, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 381923, - "label": "ENCODES", - "from": 3701501, - "to": 3720187, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 381949, - "label": "MODIFIED_TO", - "from": 3720198, - "to": 3720072, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 381948, - "label": "MODIFIED_TO", - "from": 3720198, - "to": 3720318, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 381947, - "label": "ENCODES", - "from": 3701875, - "to": 3720198, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 381993, - "label": "MODIFIED_TO", - "from": 3720215, - "to": 3720274, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 381992, - "label": "ENCODES", - "from": 3702490, - "to": 3720215, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 382005, - "label": "MODIFIED_TO", - "from": 3720219, - "to": 3720271, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 382004, - "label": "ENCODES", - "from": 3702445, - "to": 3720219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 382025, - "label": "ENCODES", - "from": 3701879, - "to": 3720226, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 382026, - "label": "MODIFIED_TO", - "from": 3720226, - "to": 3720338, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 382068, - "label": "MODIFIED_TO", - "from": 3720244, - "to": 3720197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 382067, - "label": "ENCODES", - "from": 3702480, - "to": 3720244, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 283925, - "label": "REGULATES", - "from": 3712928, - "to": 3689520, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 283926, - "label": "REGULATES", - "from": 3677698, - "to": 3712928, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 283922, - "label": "REGULATES", - "from": 3712927, - "to": 3689440, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 283923, - "label": "REGULATES", - "from": 3679474, - "to": 3712927, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 283935, - "label": "REGULATES", - "from": 3679446, - "to": 3712931, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478979, - "label": "COMPONENT_OF", - "from": 3711453, - "to": 91442749, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 283940, - "label": "REGULATES", - "from": 3712933, - "to": 3685718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 283941, - "label": "REGULATES", - "from": 3683877, - "to": 3712933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 283937, - "label": "REGULATES", - "from": 3712932, - "to": 3691414, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478982, - "label": "COMPONENT_OF", - "from": 3702417, - "to": 91442437, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218406, - "label": "CONSUMED_BY", - "from": 3711527, - "to": 3705168, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 283938, - "label": "REGULATES", - "from": 3677447, - "to": 3712932, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218411, - "label": "CONSUMED_BY", - "from": 3681287, - "to": 3705169, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478987, - "label": "COMPONENT_OF", - "from": 3711376, - "to": 91442433, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218408, - "label": "PRODUCES", - "from": 3705168, - "to": 3674730, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218415, - "label": "CONSUMED_BY", - "from": 3677497, - "to": 3705170, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478991, - "label": "COMPONENT_OF", - "from": 3706078, - "to": 91442751, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218413, - "label": "PRODUCES", - "from": 3705169, - "to": 3677209, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478988, - "label": "COMPONENT_OF", - "from": 3713939, - "to": 91442429, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 283956, - "label": "REGULATES", - "from": 3671824, - "to": 3712938, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218417, - "label": "PRODUCES", - "from": 3705170, - "to": 3677396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 283955, - "label": "REGULATES", - "from": 3712938, - "to": 3688901, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218427, - "label": "PRODUCES", - "from": 3705172, - "to": 3676151, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 283965, - "label": "REGULATES", - "from": 3677332, - "to": 3712941, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218426, - "label": "PRODUCES", - "from": 3705172, - "to": 3675698, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479001, - "label": "COMPONENT_OF", - "from": 3702417, - "to": 91442752, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218424, - "label": "CONSUMED_BY", - "from": 3676901, - "to": 3705172, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218430, - "label": "PRODUCES", - "from": 3705173, - "to": 3666841, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 283962, - "label": "REGULATES", - "from": 3677196, - "to": 3712940, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218428, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3705173, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218438, - "label": "CONSUMED_BY", - "from": 3681316, - "to": 3705176, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 283976, - "label": "REGULATES", - "from": 3712945, - "to": 3691487, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 283977, - "label": "REGULATES", - "from": 3677394, - "to": 3712945, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218446, - "label": "PRODUCES", - "from": 3705177, - "to": 3672558, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218444, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3705177, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218450, - "label": "PRODUCES", - "from": 3705178, - "to": 3681142, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218449, - "label": "CONSUMED_BY", - "from": 3677428, - "to": 3705178, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 283986, - "label": "REGULATES", - "from": 3677441, - "to": 3712948, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218457, - "label": "CONSUMED_BY", - "from": 3677428, - "to": 3705180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 283998, - "label": "REGULATES", - "from": 3677496, - "to": 3712952, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218462, - "label": "PRODUCES", - "from": 3705181, - "to": 3684068, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218461, - "label": "CONSUMED_BY", - "from": 3682077, - "to": 3705181, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284006, - "label": "REGULATES", - "from": 3712955, - "to": 3688020, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284007, - "label": "REGULATES", - "from": 3681355, - "to": 3712955, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218473, - "label": "PRODUCES", - "from": 3705183, - "to": 3677159, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218479, - "label": "PRODUCES", - "from": 3705184, - "to": 3677689, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218476, - "label": "CONSUMED_BY", - "from": 3677691, - "to": 3705184, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284022, - "label": "REGULATES", - "from": 3677368, - "to": 3712960, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284025, - "label": "REGULATES", - "from": 3677466, - "to": 3712961, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218501, - "label": "CONSUMED_BY", - "from": 3677266, - "to": 3705189, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218507, - "label": "PRODUCES", - "from": 3705191, - "to": 3684091, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218506, - "label": "CONSUMED_BY", - "from": 3682003, - "to": 3705191, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218505, - "label": "PRODUCES", - "from": 3705190, - "to": 3681304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218504, - "label": "CONSUMED_BY", - "from": 3682044, - "to": 3705190, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218509, - "label": "CONSUMED_BY", - "from": 3679103, - "to": 3705192, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284042, - "label": "REGULATES", - "from": 3712967, - "to": 3689801, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284043, - "label": "REGULATES", - "from": 3683882, - "to": 3712967, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251282, - "label": "PRODUCES", - "from": 3708933, - "to": 3679247, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218514, - "label": "CONSUMED_BY", - "from": 3681247, - "to": 3705193, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218512, - "label": "PRODUCES", - "from": 3705192, - "to": 3677825, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251294, - "label": "CONSUMED_BY", - "from": 3671356, - "to": 3708935, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251296, - "label": "PRODUCES", - "from": 3708935, - "to": 3675343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218539, - "label": "PRODUCES", - "from": 3705197, - "to": 3681737, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284076, - "label": "REGULATES", - "from": 3682150, - "to": 3712978, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218537, - "label": "CONSUMED_BY", - "from": 3667424, - "to": 3705197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218546, - "label": "CONSUMED_BY", - "from": 3681323, - "to": 3705198, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251313, - "label": "CONSUMED_BY", - "from": 3681370, - "to": 3708938, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284087, - "label": "REGULATES", - "from": 3712982, - "to": 3689377, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218551, - "label": "CONSUMED_BY", - "from": 3679474, - "to": 3705199, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218548, - "label": "PRODUCES", - "from": 3705198, - "to": 3679397, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218554, - "label": "PRODUCES", - "from": 3705199, - "to": 3681882, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251322, - "label": "PRODUCES", - "from": 3708939, - "to": 3710270, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251321, - "label": "CONSUMED_BY", - "from": 3710262, - "to": 3708939, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284088, - "label": "REGULATES", - "from": 3677487, - "to": 3712982, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218559, - "label": "CONSUMED_BY", - "from": 3666427, - "to": 3705201, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251325, - "label": "CONSUMED_BY", - "from": 3681398, - "to": 3708940, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218556, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3705200, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251328, - "label": "PRODUCES", - "from": 3708940, - "to": 3682111, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284103, - "label": "REGULATES", - "from": 3684327, - "to": 3712987, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251334, - "label": "PRODUCES", - "from": 3708941, - "to": 3704339, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218566, - "label": "PRODUCES", - "from": 3705202, - "to": 3683888, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251339, - "label": "PRODUCES", - "from": 3708942, - "to": 3674625, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284109, - "label": "REGULATES", - "from": 3681147, - "to": 3712989, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251338, - "label": "CONSUMED_BY", - "from": 3668943, - "to": 3708942, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218569, - "label": "CONSUMED_BY", - "from": 3674743, - "to": 3705203, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284111, - "label": "REGULATES", - "from": 3712990, - "to": 3689742, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218574, - "label": "CONSUMED_BY", - "from": 3681465, - "to": 3705204, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284117, - "label": "REGULATES", - "from": 3712992, - "to": 3689550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284118, - "label": "REGULATES", - "from": 3684067, - "to": 3712992, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218577, - "label": "PRODUCES", - "from": 3705204, - "to": 3682131, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284112, - "label": "REGULATES", - "from": 3677615, - "to": 3712990, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218583, - "label": "CONSUMED_BY", - "from": 3684115, - "to": 3705206, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478966, - "label": "ENCODES", - "from": 3701508, - "to": 91442862, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218581, - "label": "PRODUCES", - "from": 3705205, - "to": 3679018, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284115, - "label": "REGULATES", - "from": 3684064, - "to": 3712991, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218580, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3705205, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218587, - "label": "CONSUMED_BY", - "from": 3684130, - "to": 3705207, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218585, - "label": "PRODUCES", - "from": 3705206, - "to": 3677416, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478969, - "label": "ENCODES", - "from": 3712022, - "to": 91442865, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251352, - "label": "CONSUMED_BY", - "from": 3710262, - "to": 3708944, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218591, - "label": "PRODUCES", - "from": 3705207, - "to": 3681789, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478972, - "label": "COMPONENT_OF", - "from": 91442865, - "to": 3711511, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218598, - "label": "CONSUMED_BY", - "from": 3677478, - "to": 3705209, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284141, - "label": "REGULATES", - "from": 3713000, - "to": 3689022, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251370, - "label": "CONSUMED_BY", - "from": 3710262, - "to": 3708947, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284142, - "label": "REGULATES", - "from": 3682143, - "to": 3713000, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218600, - "label": "PRODUCES", - "from": 3705209, - "to": 3677650, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218607, - "label": "CONSUMED_BY", - "from": 3683914, - "to": 3705211, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251375, - "label": "CONSUMED_BY", - "from": 3679473, - "to": 3708948, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284139, - "label": "REGULATES", - "from": 3677464, - "to": 3712999, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251377, - "label": "PRODUCES", - "from": 3708948, - "to": 3679485, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218608, - "label": "PRODUCES", - "from": 3705211, - "to": 3682005, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218615, - "label": "CONSUMED_BY", - "from": 3682180, - "to": 3705213, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251380, - "label": "CONSUMED_BY", - "from": 3681787, - "to": 3708949, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218622, - "label": "PRODUCES", - "from": 3705214, - "to": 3681669, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251389, - "label": "CONSUMED_BY", - "from": 3677501, - "to": 3708950, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218620, - "label": "CONSUMED_BY", - "from": 3677428, - "to": 3705214, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218627, - "label": "PRODUCES", - "from": 3705215, - "to": 3681474, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251394, - "label": "CONSUMED_BY", - "from": 3681868, - "to": 3708951, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218625, - "label": "CONSUMED_BY", - "from": 3684055, - "to": 3705215, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251398, - "label": "PRODUCES", - "from": 3708951, - "to": 3672880, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218629, - "label": "CONSUMED_BY", - "from": 3682023, - "to": 3705216, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251400, - "label": "CONSUMED_BY", - "from": 3684251, - "to": 3708952, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218639, - "label": "PRODUCES", - "from": 3705218, - "to": 3684001, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 218638, - "label": "CONSUMED_BY", - "from": 3681868, - "to": 3705218, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251415, - "label": "PRODUCES", - "from": 3708954, - "to": 3712559, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251414, - "label": "CONSUMED_BY", - "from": 3714319, - "to": 3708954, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251418, - "label": "CONSUMED_BY", - "from": 3677464, - "to": 3708955, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478208, - "label": "IN_PATHWAY", - "from": 3707680, - "to": 91442458, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478212, - "label": "IN_PATHWAY", - "from": 3705209, - "to": 3692970, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251432, - "label": "CONSUMED_BY", - "from": 3677464, - "to": 3708957, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251437, - "label": "PRODUCES", - "from": 3708957, - "to": 3679478, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251436, - "label": "PRODUCES", - "from": 3708957, - "to": 3677446, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251449, - "label": "PRODUCES", - "from": 3708959, - "to": 3715112, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251458, - "label": "CONSUMED_BY", - "from": 3666570, - "to": 3708961, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251468, - "label": "CONSUMED_BY", - "from": 3685625, - "to": 3708963, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251482, - "label": "CONSUMED_BY", - "from": 3670388, - "to": 3708965, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251493, - "label": "PRODUCES", - "from": 3708966, - "to": 3718318, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251496, - "label": "CONSUMED_BY", - "from": 3677438, - "to": 3708967, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251503, - "label": "CONSUMED_BY", - "from": 3671322, - "to": 3708968, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251506, - "label": "PRODUCES", - "from": 3708968, - "to": 3669924, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251505, - "label": "PRODUCES", - "from": 3708968, - "to": 3671746, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 251510, - "label": "CONSUMED_BY", - "from": 3677707, - "to": 3708969, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478115, - "label": "CATALYZES", - "from": 3706078, - "to": 91442399, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478113, - "label": "CATALYZES", - "from": 3711352, - "to": 91442398, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478117, - "label": "CATALYZES", - "from": 91442400, - "to": 3708639, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478116, - "label": "CATALYZES", - "from": 3712632, - "to": 91442400, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478121, - "label": "CATALYZES", - "from": 3706197, - "to": 91442403, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478125, - "label": "CATALYZES", - "from": 91442437, - "to": 91442405, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478089, - "label": "CATALYZES", - "from": 3710267, - "to": 91442385, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478094, - "label": "CATALYZES", - "from": 3714457, - "to": 91442388, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478101, - "label": "CATALYZES", - "from": 3712684, - "to": 91442391, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478110, - "label": "CATALYZES", - "from": 3714193, - "to": 91442396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478109, - "label": "CATALYZES", - "from": 3711689, - "to": 91442395, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478177, - "label": "IN_PATHWAY", - "from": 3707425, - "to": 3692945, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478176, - "label": "IN_PATHWAY", - "from": 3708447, - "to": 3692960, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478183, - "label": "IN_PATHWAY", - "from": 91442477, - "to": 3693138, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478182, - "label": "IN_PATHWAY", - "from": 91442477, - "to": 3694240, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478186, - "label": "IN_PATHWAY", - "from": 91442477, - "to": 3694237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478185, - "label": "IN_PATHWAY", - "from": 91442477, - "to": 3693141, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478194, - "label": "IN_PATHWAY", - "from": 91442485, - "to": 91442454, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478198, - "label": "IN_PATHWAY", - "from": 3708663, - "to": 91442455, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478201, - "label": "IN_PATHWAY", - "from": 91442489, - "to": 91442456, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478200, - "label": "IN_PATHWAY", - "from": 91442456, - "to": 3692976, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178478207, - "label": "IN_PATHWAY", - "from": 3709577, - "to": 91442457, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284420, - "label": "REGULATES", - "from": 3713013, - "to": 3688894, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284421, - "label": "REGULATES", - "from": 3681242, - "to": 3713013, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284417, - "label": "REGULATES", - "from": 3713012, - "to": 3690972, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284418, - "label": "REGULATES", - "from": 3681676, - "to": 3713012, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284426, - "label": "REGULATES", - "from": 3713015, - "to": 3685814, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284427, - "label": "REGULATES", - "from": 3679336, - "to": 3713015, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284439, - "label": "REGULATES", - "from": 3677699, - "to": 3713019, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284454, - "label": "REGULATES", - "from": 3684068, - "to": 3713024, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284474, - "label": "REGULATES", - "from": 3713031, - "to": 3688809, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284475, - "label": "REGULATES", - "from": 3677650, - "to": 3713031, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284484, - "label": "REGULATES", - "from": 3679303, - "to": 3713034, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284486, - "label": "REGULATES", - "from": 3713035, - "to": 3689663, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284487, - "label": "REGULATES", - "from": 3677711, - "to": 3713035, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284480, - "label": "REGULATES", - "from": 3713033, - "to": 3691099, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284481, - "label": "REGULATES", - "from": 3684327, - "to": 3713033, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284483, - "label": "REGULATES", - "from": 3713034, - "to": 3691000, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284493, - "label": "REGULATES", - "from": 3682144, - "to": 3713037, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284496, - "label": "REGULATES", - "from": 3677689, - "to": 3713038, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284510, - "label": "REGULATES", - "from": 3713043, - "to": 3689529, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284511, - "label": "REGULATES", - "from": 3668946, - "to": 3713043, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284505, - "label": "REGULATES", - "from": 3681418, - "to": 3713041, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284525, - "label": "REGULATES", - "from": 3713048, - "to": 3691002, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284526, - "label": "REGULATES", - "from": 3682118, - "to": 3713048, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284523, - "label": "REGULATES", - "from": 3681355, - "to": 3713047, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 382849, - "label": "ENCODES", - "from": 3702545, - "to": 3720273, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284547, - "label": "REGULATES", - "from": 3677415, - "to": 3713055, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284556, - "label": "REGULATES", - "from": 3677368, - "to": 3713058, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284564, - "label": "REGULATES", - "from": 3713061, - "to": 3687700, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284565, - "label": "REGULATES", - "from": 3681418, - "to": 3713061, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284562, - "label": "REGULATES", - "from": 3677336, - "to": 3713060, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284574, - "label": "REGULATES", - "from": 3677209, - "to": 3713064, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284588, - "label": "REGULATES", - "from": 3713069, - "to": 3689101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284589, - "label": "REGULATES", - "from": 3681418, - "to": 3713069, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284604, - "label": "REGULATES", - "from": 3677368, - "to": 3713074, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284600, - "label": "REGULATES", - "from": 3713073, - "to": 3688882, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284601, - "label": "REGULATES", - "from": 3677464, - "to": 3713073, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284613, - "label": "REGULATES", - "from": 3677414, - "to": 3713077, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284615, - "label": "REGULATES", - "from": 3713078, - "to": 3688202, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284610, - "label": "REGULATES", - "from": 3683870, - "to": 3713076, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284616, - "label": "REGULATES", - "from": 3668965, - "to": 3713078, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284628, - "label": "REGULATES", - "from": 3677368, - "to": 3713082, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284630, - "label": "REGULATES", - "from": 3713083, - "to": 3689394, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284631, - "label": "REGULATES", - "from": 3677401, - "to": 3713083, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 382940, - "label": "ELEMENT_OF", - "from": 3699529, - "to": 3720345, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 284639, - "label": "REGULATES", - "from": 3713086, - "to": 3687896, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 382942, - "label": "ELEMENT_OF", - "from": 3701623, - "to": 3720346, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 382948, - "label": "ELEMENT_OF", - "from": 3720040, - "to": 3720349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 382958, - "label": "ELEMENT_OF", - "from": 3690904, - "to": 3720353, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 382973, - "label": "ELEMENT_OF", - "from": 3697827, - "to": 3720357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 382978, - "label": "ELEMENT_OF", - "from": 3701538, - "to": 3720359, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 382988, - "label": "ELEMENT_OF", - "from": 3699052, - "to": 3720363, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 382985, - "label": "ELEMENT_OF", - "from": 3717119, - "to": 3720362, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 382997, - "label": "ELEMENT_OF", - "from": 3696318, - "to": 3720367, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383013, - "label": "ELEMENT_OF", - "from": 3719945, - "to": 3720374, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383010, - "label": "ELEMENT_OF", - "from": 3702861, - "to": 3720373, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383033, - "label": "ELEMENT_OF", - "from": 3697287, - "to": 3720382, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383032, - "label": "ELEMENT_OF", - "from": 3690893, - "to": 3720381, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252014, - "label": "CONSUMED_BY", - "from": 3671356, - "to": 3708973, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252019, - "label": "CONSUMED_BY", - "from": 3677535, - "to": 3708974, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186483, - "label": "CATALYZES", - "from": 3710433, - "to": 3691307, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252016, - "label": "PRODUCES", - "from": 3708973, - "to": 3673066, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186486, - "label": "CATALYZES", - "from": 3691308, - "to": 3709593, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186484, - "label": "CATALYZES", - "from": 3691307, - "to": 3709465, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252020, - "label": "PRODUCES", - "from": 3708974, - "to": 3677534, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186485, - "label": "CATALYZES", - "from": 3714507, - "to": 3691308, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186491, - "label": "CATALYZES", - "from": 3714255, - "to": 3691311, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252024, - "label": "CONSUMED_BY", - "from": 3666747, - "to": 3708975, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252031, - "label": "CONSUMED_BY", - "from": 3711226, - "to": 3708976, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252035, - "label": "CONSUMED_BY", - "from": 3684271, - "to": 3708977, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186499, - "label": "CATALYZES", - "from": 3711387, - "to": 3691315, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186496, - "label": "CATALYZES", - "from": 3691313, - "to": 3707822, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252033, - "label": "PRODUCES", - "from": 3708976, - "to": 3712661, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186503, - "label": "CATALYZES", - "from": 3712765, - "to": 3691317, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252041, - "label": "CONSUMED_BY", - "from": 3677477, - "to": 3708978, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186511, - "label": "CATALYZES", - "from": 3712585, - "to": 3691321, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252049, - "label": "CONSUMED_BY", - "from": 3710303, - "to": 3708979, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186518, - "label": "CATALYZES", - "from": 3691324, - "to": 3706672, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252054, - "label": "CONSUMED_BY", - "from": 3677452, - "to": 3708980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186519, - "label": "CATALYZES", - "from": 3714255, - "to": 3691325, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186520, - "label": "CATALYZES", - "from": 3691325, - "to": 3707805, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252056, - "label": "PRODUCES", - "from": 3708980, - "to": 3675454, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186535, - "label": "CATALYZES", - "from": 3708056, - "to": 3691333, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252075, - "label": "PRODUCES", - "from": 3708983, - "to": 3677343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252073, - "label": "CONSUMED_BY", - "from": 3666922, - "to": 3708983, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186536, - "label": "CATALYZES", - "from": 3691333, - "to": 3709398, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252076, - "label": "PRODUCES", - "from": 3708983, - "to": 3668911, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252081, - "label": "PRODUCES", - "from": 3708984, - "to": 3684141, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252086, - "label": "CONSUMED_BY", - "from": 3714490, - "to": 3708985, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252091, - "label": "CONSUMED_BY", - "from": 3677850, - "to": 3708986, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186555, - "label": "CATALYZES", - "from": 3714927, - "to": 3691343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252089, - "label": "PRODUCES", - "from": 3708985, - "to": 3714275, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252088, - "label": "PRODUCES", - "from": 3708985, - "to": 3702190, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186553, - "label": "CATALYZES", - "from": 3712261, - "to": 3691342, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252092, - "label": "PRODUCES", - "from": 3708986, - "to": 3683870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186563, - "label": "CATALYZES", - "from": 3711567, - "to": 3691347, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186564, - "label": "CATALYZES", - "from": 3691347, - "to": 3705329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186574, - "label": "CATALYZES", - "from": 3691352, - "to": 3706636, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186575, - "label": "CATALYZES", - "from": 3710433, - "to": 3691353, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252109, - "label": "CONSUMED_BY", - "from": 3670550, - "to": 3708989, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186573, - "label": "CATALYZES", - "from": 3714255, - "to": 3691352, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186576, - "label": "CATALYZES", - "from": 3691353, - "to": 3707632, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186577, - "label": "CATALYZES", - "from": 3714302, - "to": 3691354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186583, - "label": "CATALYZES", - "from": 3711707, - "to": 3691357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186590, - "label": "CATALYZES", - "from": 3691360, - "to": 3706435, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252131, - "label": "CONSUMED_BY", - "from": 3666574, - "to": 3708993, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186602, - "label": "CATALYZES", - "from": 3691366, - "to": 3709187, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186601, - "label": "CATALYZES", - "from": 3714205, - "to": 3691366, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186607, - "label": "CATALYZES", - "from": 3706132, - "to": 3691369, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186608, - "label": "CATALYZES", - "from": 3691369, - "to": 3705597, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186618, - "label": "CATALYZES", - "from": 3691374, - "to": 3709511, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186617, - "label": "CATALYZES", - "from": 3714065, - "to": 3691374, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252159, - "label": "PRODUCES", - "from": 3708998, - "to": 3681147, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252157, - "label": "CONSUMED_BY", - "from": 3677547, - "to": 3708998, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252160, - "label": "PRODUCES", - "from": 3708998, - "to": 3676190, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186643, - "label": "CATALYZES", - "from": 3711649, - "to": 3691387, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252184, - "label": "CONSUMED_BY", - "from": 3681826, - "to": 3709002, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252195, - "label": "PRODUCES", - "from": 3709003, - "to": 3714837, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252194, - "label": "PRODUCES", - "from": 3709003, - "to": 3708064, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252192, - "label": "CONSUMED_BY", - "from": 3702190, - "to": 3709003, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186667, - "label": "CATALYZES", - "from": 3702303, - "to": 3691399, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252204, - "label": "PRODUCES", - "from": 3709005, - "to": 3669318, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252215, - "label": "PRODUCES", - "from": 3709007, - "to": 3681514, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186676, - "label": "CATALYZES", - "from": 3691403, - "to": 3705270, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252213, - "label": "CONSUMED_BY", - "from": 3681512, - "to": 3709007, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186677, - "label": "CATALYZES", - "from": 3712765, - "to": 3691404, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186681, - "label": "CATALYZES", - "from": 3718642, - "to": 3691406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186684, - "label": "CATALYZES", - "from": 3691407, - "to": 3708891, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252221, - "label": "PRODUCES", - "from": 3709008, - "to": 3685609, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252227, - "label": "CONSUMED_BY", - "from": 3710405, - "to": 3709009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186689, - "label": "CATALYZES", - "from": 3710432, - "to": 3691410, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252230, - "label": "CONSUMED_BY", - "from": 3677212, - "to": 3709010, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186695, - "label": "CATALYZES", - "from": 3713912, - "to": 3691413, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252234, - "label": "CONSUMED_BY", - "from": 3684130, - "to": 3709011, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186706, - "label": "CATALYZES", - "from": 3691418, - "to": 3707428, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186718, - "label": "CATALYZES", - "from": 3691424, - "to": 3706711, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 186719, - "label": "CATALYZES", - "from": 3712655, - "to": 3691425, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285120, - "label": "REGULATES", - "from": 3677196, - "to": 3713086, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285129, - "label": "REGULATES", - "from": 3677368, - "to": 3713089, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285149, - "label": "REGULATES", - "from": 3713096, - "to": 3685737, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285150, - "label": "REGULATES", - "from": 3682118, - "to": 3713096, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285147, - "label": "REGULATES", - "from": 3677368, - "to": 3713095, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285156, - "label": "REGULATES", - "from": 3677711, - "to": 3713098, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285164, - "label": "REGULATES", - "from": 3713101, - "to": 3691463, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285165, - "label": "REGULATES", - "from": 3679110, - "to": 3713101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285183, - "label": "REGULATES", - "from": 3684133, - "to": 3713107, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285189, - "label": "REGULATES", - "from": 3677794, - "to": 3713109, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285186, - "label": "REGULATES", - "from": 3677336, - "to": 3713108, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285195, - "label": "REGULATES", - "from": 3684064, - "to": 3713111, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285204, - "label": "REGULATES", - "from": 3679297, - "to": 3713114, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285203, - "label": "REGULATES", - "from": 3713114, - "to": 3692616, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285221, - "label": "REGULATES", - "from": 3713120, - "to": 3691477, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285222, - "label": "REGULATES", - "from": 3677496, - "to": 3713120, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285239, - "label": "REGULATES", - "from": 3713126, - "to": 3687831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285240, - "label": "REGULATES", - "from": 3677466, - "to": 3713126, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285242, - "label": "REGULATES", - "from": 3713127, - "to": 3689610, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285243, - "label": "REGULATES", - "from": 3670727, - "to": 3713127, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285252, - "label": "REGULATES", - "from": 3679378, - "to": 3713130, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285251, - "label": "REGULATES", - "from": 3713130, - "to": 3688131, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285266, - "label": "REGULATES", - "from": 3713135, - "to": 3689708, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285267, - "label": "REGULATES", - "from": 3677615, - "to": 3713135, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285276, - "label": "REGULATES", - "from": 3684262, - "to": 3713138, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285275, - "label": "REGULATES", - "from": 3713138, - "to": 3691068, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285284, - "label": "REGULATES", - "from": 3713141, - "to": 3691214, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285285, - "label": "REGULATES", - "from": 3681147, - "to": 3713141, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285282, - "label": "REGULATES", - "from": 3681638, - "to": 3713140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285291, - "label": "REGULATES", - "from": 3677336, - "to": 3713143, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285302, - "label": "REGULATES", - "from": 3713147, - "to": 3709485, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285303, - "label": "REGULATES", - "from": 3677788, - "to": 3713147, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285318, - "label": "REGULATES", - "from": 3677336, - "to": 3713152, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285312, - "label": "REGULATES", - "from": 3677161, - "to": 3713150, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285314, - "label": "REGULATES", - "from": 3713151, - "to": 3705327, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285315, - "label": "REGULATES", - "from": 3684064, - "to": 3713151, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285326, - "label": "REGULATES", - "from": 3670742, - "to": 3713155, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285320, - "label": "REGULATES", - "from": 3713153, - "to": 3708685, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285321, - "label": "REGULATES", - "from": 3711226, - "to": 3713153, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285332, - "label": "REGULATES", - "from": 3677501, - "to": 3713157, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285331, - "label": "REGULATES", - "from": 3713157, - "to": 3705219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285343, - "label": "REGULATES", - "from": 3713161, - "to": 3705390, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285350, - "label": "REGULATES", - "from": 3684068, - "to": 3713163, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285344, - "label": "REGULATES", - "from": 3684133, - "to": 3713161, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285359, - "label": "REGULATES", - "from": 3679440, - "to": 3713166, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383765, - "label": "ELEMENT_OF", - "from": 3707118, - "to": 3720383, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318252, - "label": "REGULATES", - "from": 3714081, - "to": 3717270, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318254, - "label": "BINDS", - "from": 3717271, - "to": 3685410, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383798, - "label": "ELEMENT_OF", - "from": 3712101, - "to": 3720390, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383793, - "label": "ELEMENT_OF", - "from": 3719965, - "to": 3720388, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318256, - "label": "REGULATES", - "from": 3712313, - "to": 3717271, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318258, - "label": "REGULATES", - "from": 3717272, - "to": 3689628, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318259, - "label": "REGULATES", - "from": 3679401, - "to": 3717272, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383801, - "label": "ELEMENT_OF", - "from": 3690600, - "to": 3720391, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383812, - "label": "ELEMENT_OF", - "from": 3699800, - "to": 3720396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318273, - "label": "REGULATES", - "from": 3717276, - "to": 3697429, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318274, - "label": "REGULATES", - "from": 3718538, - "to": 3717276, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318284, - "label": "REGULATES", - "from": 3717279, - "to": 3694628, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318285, - "label": "REGULATES", - "from": 3710208, - "to": 3717279, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318283, - "label": "BINDS", - "from": 3717279, - "to": 3686542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318292, - "label": "REGULATES", - "from": 3711179, - "to": 3717281, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383825, - "label": "ELEMENT_OF", - "from": 3720012, - "to": 3720400, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318290, - "label": "BINDS", - "from": 3717281, - "to": 3685174, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318291, - "label": "REGULATES", - "from": 3717281, - "to": 3697057, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383839, - "label": "ELEMENT_OF", - "from": 3699811, - "to": 3720406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318296, - "label": "REGULATES", - "from": 3707928, - "to": 3717282, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383835, - "label": "ELEMENT_OF", - "from": 3693751, - "to": 3720403, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318312, - "label": "BINDS", - "from": 3717287, - "to": 3685440, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318314, - "label": "REGULATES", - "from": 3710228, - "to": 3717287, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318325, - "label": "REGULATES", - "from": 3677336, - "to": 3717290, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318322, - "label": "REGULATES", - "from": 3707928, - "to": 3717289, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318332, - "label": "REGULATES", - "from": 3677613, - "to": 3717292, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318335, - "label": "REGULATES", - "from": 3717293, - "to": 3696069, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318331, - "label": "REGULATES", - "from": 3717292, - "to": 3692736, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318340, - "label": "REGULATES", - "from": 3711317, - "to": 3717294, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383878, - "label": "ELEMENT_OF", - "from": 3698742, - "to": 3720415, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318336, - "label": "REGULATES", - "from": 3710270, - "to": 3717293, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318356, - "label": "BINDS", - "from": 3717299, - "to": 3683136, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318358, - "label": "REGULATES", - "from": 3715127, - "to": 3717299, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383896, - "label": "ELEMENT_OF", - "from": 3699565, - "to": 3720418, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383898, - "label": "ELEMENT_OF", - "from": 3698813, - "to": 3720419, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318375, - "label": "REGULATES", - "from": 3717304, - "to": 3688004, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383904, - "label": "ELEMENT_OF", - "from": 3707187, - "to": 3720421, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318380, - "label": "REGULATES", - "from": 3711285, - "to": 3717305, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383917, - "label": "ELEMENT_OF", - "from": 3699833, - "to": 3720425, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318376, - "label": "REGULATES", - "from": 3677394, - "to": 3717304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318378, - "label": "BINDS", - "from": 3717305, - "to": 3687522, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318379, - "label": "REGULATES", - "from": 3717305, - "to": 3697594, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383927, - "label": "ELEMENT_OF", - "from": 3707178, - "to": 3720428, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220087, - "label": "PRODUCES", - "from": 3705220, - "to": 3681950, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220084, - "label": "PRODUCES", - "from": 3705219, - "to": 3711670, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220090, - "label": "CONSUMED_BY", - "from": 3668101, - "to": 3705221, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383934, - "label": "ELEMENT_OF", - "from": 3717106, - "to": 3720432, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220093, - "label": "PRODUCES", - "from": 3705221, - "to": 3681166, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383937, - "label": "ELEMENT_OF", - "from": 3694760, - "to": 3720433, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220103, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3705224, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383939, - "label": "ELEMENT_OF", - "from": 3701631, - "to": 3720434, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318415, - "label": "BINDS", - "from": 3717315, - "to": 3686385, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220110, - "label": "PRODUCES", - "from": 3705225, - "to": 3677119, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383947, - "label": "ELEMENT_OF", - "from": 3701530, - "to": 3720436, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220109, - "label": "CONSUMED_BY", - "from": 3685601, - "to": 3705225, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318420, - "label": "REGULATES", - "from": 3677501, - "to": 3717316, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220114, - "label": "PRODUCES", - "from": 3705226, - "to": 3677419, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318422, - "label": "BINDS", - "from": 3717317, - "to": 3678833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220112, - "label": "CONSUMED_BY", - "from": 3684115, - "to": 3705226, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318416, - "label": "REGULATES", - "from": 3717315, - "to": 3696199, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383953, - "label": "ELEMENT_OF", - "from": 3699231, - "to": 3720437, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318417, - "label": "REGULATES", - "from": 3711247, - "to": 3717315, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220117, - "label": "CONSUMED_BY", - "from": 3714126, - "to": 3705227, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318419, - "label": "REGULATES", - "from": 3717316, - "to": 3689459, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318424, - "label": "REGULATES", - "from": 3711285, - "to": 3717317, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383961, - "label": "ELEMENT_OF", - "from": 3707178, - "to": 3720440, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220126, - "label": "PRODUCES", - "from": 3705229, - "to": 3682008, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220125, - "label": "CONSUMED_BY", - "from": 3681180, - "to": 3705229, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318437, - "label": "BINDS", - "from": 3717321, - "to": 3679599, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220128, - "label": "CONSUMED_BY", - "from": 3677476, - "to": 3705230, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318439, - "label": "REGULATES", - "from": 3712283, - "to": 3717321, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383970, - "label": "ELEMENT_OF", - "from": 3698792, - "to": 3725904, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220137, - "label": "CONSUMED_BY", - "from": 3677438, - "to": 3705232, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220143, - "label": "PRODUCES", - "from": 3705233, - "to": 3672586, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383976, - "label": "ELEMENT_OF", - "from": 3702813, - "to": 3725906, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318442, - "label": "REGULATES", - "from": 3681868, - "to": 3717322, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220141, - "label": "CONSUMED_BY", - "from": 3669528, - "to": 3705233, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220146, - "label": "CONSUMED_BY", - "from": 3682030, - "to": 3705234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220151, - "label": "CONSUMED_BY", - "from": 3684068, - "to": 3705236, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318450, - "label": "REGULATES", - "from": 3710143, - "to": 3717324, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220153, - "label": "PRODUCES", - "from": 3705236, - "to": 3682211, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318456, - "label": "REGULATES", - "from": 3717326, - "to": 3685892, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318457, - "label": "REGULATES", - "from": 3681147, - "to": 3717326, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220163, - "label": "PRODUCES", - "from": 3705238, - "to": 3672656, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220162, - "label": "CONSUMED_BY", - "from": 3684208, - "to": 3705238, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318470, - "label": "BINDS", - "from": 3717330, - "to": 3684957, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318471, - "label": "REGULATES", - "from": 3717330, - "to": 3697844, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220166, - "label": "CONSUMED_BY", - "from": 3681411, - "to": 3705239, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220168, - "label": "PRODUCES", - "from": 3705239, - "to": 3681575, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318472, - "label": "REGULATES", - "from": 3711265, - "to": 3717330, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318474, - "label": "REGULATES", - "from": 3717331, - "to": 3689156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318475, - "label": "REGULATES", - "from": 3677711, - "to": 3717331, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220181, - "label": "PRODUCES", - "from": 3705242, - "to": 3670589, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220180, - "label": "CONSUMED_BY", - "from": 3674849, - "to": 3705242, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220186, - "label": "PRODUCES", - "from": 3705243, - "to": 3681330, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220185, - "label": "CONSUMED_BY", - "from": 3684009, - "to": 3705243, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220190, - "label": "PRODUCES", - "from": 3705244, - "to": 3677498, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220195, - "label": "PRODUCES", - "from": 3705245, - "to": 3681740, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252962, - "label": "CONSUMED_BY", - "from": 3707925, - "to": 3709012, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220193, - "label": "CONSUMED_BY", - "from": 3667424, - "to": 3705245, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252967, - "label": "PRODUCES", - "from": 3709013, - "to": 3677678, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252965, - "label": "CONSUMED_BY", - "from": 3683872, - "to": 3709013, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252974, - "label": "PRODUCES", - "from": 3709014, - "to": 3672797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220214, - "label": "CONSUMED_BY", - "from": 3682118, - "to": 3705250, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220218, - "label": "CONSUMED_BY", - "from": 3677572, - "to": 3705251, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220216, - "label": "PRODUCES", - "from": 3705250, - "to": 3681623, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 252984, - "label": "PRODUCES", - "from": 3709016, - "to": 3677683, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220221, - "label": "PRODUCES", - "from": 3705251, - "to": 3683945, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220224, - "label": "CONSUMED_BY", - "from": 3681956, - "to": 3705252, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220229, - "label": "CONSUMED_BY", - "from": 3677438, - "to": 3705253, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220235, - "label": "PRODUCES", - "from": 3705254, - "to": 3684322, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253003, - "label": "CONSUMED_BY", - "from": 3684130, - "to": 3709020, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220233, - "label": "CONSUMED_BY", - "from": 3684051, - "to": 3705254, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220244, - "label": "CONSUMED_BY", - "from": 3677615, - "to": 3705256, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220251, - "label": "PRODUCES", - "from": 3705257, - "to": 3677778, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253017, - "label": "CONSUMED_BY", - "from": 3681194, - "to": 3709022, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220248, - "label": "CONSUMED_BY", - "from": 3681689, - "to": 3705257, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220254, - "label": "CONSUMED_BY", - "from": 3682145, - "to": 3705258, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253020, - "label": "PRODUCES", - "from": 3709022, - "to": 3684069, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253024, - "label": "CONSUMED_BY", - "from": 3682045, - "to": 3709023, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220256, - "label": "PRODUCES", - "from": 3705258, - "to": 3681594, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220261, - "label": "CONSUMED_BY", - "from": 3675724, - "to": 3705260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220266, - "label": "CONSUMED_BY", - "from": 3669458, - "to": 3705261, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220264, - "label": "PRODUCES", - "from": 3705260, - "to": 3677118, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253043, - "label": "CONSUMED_BY", - "from": 3684156, - "to": 3709026, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220273, - "label": "CONSUMED_BY", - "from": 3710301, - "to": 3705262, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220283, - "label": "CONSUMED_BY", - "from": 3681547, - "to": 3705265, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253051, - "label": "CONSUMED_BY", - "from": 3707925, - "to": 3709027, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253055, - "label": "CONSUMED_BY", - "from": 3678962, - "to": 3709028, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253058, - "label": "PRODUCES", - "from": 3709028, - "to": 3677496, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220295, - "label": "CONSUMED_BY", - "from": 3681520, - "to": 3705268, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253067, - "label": "CONSUMED_BY", - "from": 3675720, - "to": 3709030, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220298, - "label": "PRODUCES", - "from": 3705269, - "to": 3679256, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220297, - "label": "CONSUMED_BY", - "from": 3679107, - "to": 3705269, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220296, - "label": "PRODUCES", - "from": 3705268, - "to": 3681530, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253071, - "label": "CONSUMED_BY", - "from": 3677460, - "to": 3709031, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253068, - "label": "PRODUCES", - "from": 3709030, - "to": 3671502, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351370, - "label": "REGULATES", - "from": 3679367, - "to": 3721396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285847, - "label": "REGULATES", - "from": 3713169, - "to": 3705477, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351382, - "label": "REGULATES", - "from": 3711285, - "to": 3721399, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285841, - "label": "REGULATES", - "from": 3713167, - "to": 3700729, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253078, - "label": "CONSUMED_BY", - "from": 3677447, - "to": 3709032, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351376, - "label": "BINDS", - "from": 3721398, - "to": 3678626, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285842, - "label": "REGULATES", - "from": 3670742, - "to": 3713167, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351378, - "label": "REGULATES", - "from": 3711183, - "to": 3721398, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253081, - "label": "PRODUCES", - "from": 3709032, - "to": 3675460, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285848, - "label": "REGULATES", - "from": 3677501, - "to": 3713169, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253086, - "label": "PRODUCES", - "from": 3709033, - "to": 3714261, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351397, - "label": "REGULATES", - "from": 3710143, - "to": 3721403, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253095, - "label": "PRODUCES", - "from": 3709035, - "to": 3677791, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253094, - "label": "CONSUMED_BY", - "from": 3677785, - "to": 3709035, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351395, - "label": "BINDS", - "from": 3721403, - "to": 3686553, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253099, - "label": "CONSUMED_BY", - "from": 3679378, - "to": 3709036, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351407, - "label": "REGULATES", - "from": 3721406, - "to": 3688827, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285865, - "label": "REGULATES", - "from": 3713175, - "to": 3705493, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253102, - "label": "PRODUCES", - "from": 3709036, - "to": 3677477, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285866, - "label": "REGULATES", - "from": 3704603, - "to": 3713175, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285877, - "label": "REGULATES", - "from": 3713179, - "to": 3708966, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253106, - "label": "PRODUCES", - "from": 3709037, - "to": 3684338, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285878, - "label": "REGULATES", - "from": 3677345, - "to": 3713179, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253105, - "label": "CONSUMED_BY", - "from": 3684334, - "to": 3709037, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351408, - "label": "REGULATES", - "from": 3681210, - "to": 3721406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253114, - "label": "CONSUMED_BY", - "from": 3677742, - "to": 3709039, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351422, - "label": "BINDS", - "from": 3721410, - "to": 3682794, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253117, - "label": "PRODUCES", - "from": 3709039, - "to": 3677464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253121, - "label": "CONSUMED_BY", - "from": 3677428, - "to": 3709040, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253127, - "label": "PRODUCES", - "from": 3709041, - "to": 3677739, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253126, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3709041, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351424, - "label": "REGULATES", - "from": 3711285, - "to": 3721410, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285898, - "label": "REGULATES", - "from": 3713186, - "to": 3687967, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285899, - "label": "REGULATES", - "from": 3684390, - "to": 3713186, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351445, - "label": "REGULATES", - "from": 3721416, - "to": 3688086, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253137, - "label": "CONSUMED_BY", - "from": 3677396, - "to": 3709043, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351446, - "label": "REGULATES", - "from": 3683877, - "to": 3721416, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285911, - "label": "REGULATES", - "from": 3677368, - "to": 3713190, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253143, - "label": "CONSUMED_BY", - "from": 3677401, - "to": 3709044, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351441, - "label": "BINDS", - "from": 3721415, - "to": 3685426, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351443, - "label": "REGULATES", - "from": 3710238, - "to": 3721415, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351442, - "label": "REGULATES", - "from": 3721415, - "to": 3699704, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351454, - "label": "REGULATES", - "from": 3704560, - "to": 3721418, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253149, - "label": "CONSUMED_BY", - "from": 3677476, - "to": 3709045, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253155, - "label": "CONSUMED_BY", - "from": 3677501, - "to": 3709046, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285920, - "label": "REGULATES", - "from": 3684009, - "to": 3713193, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285923, - "label": "REGULATES", - "from": 3677441, - "to": 3713194, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351469, - "label": "REGULATES", - "from": 3715027, - "to": 3721422, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351468, - "label": "REGULATES", - "from": 3721422, - "to": 3700140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351471, - "label": "BINDS", - "from": 3721423, - "to": 3685441, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285935, - "label": "REGULATES", - "from": 3684019, - "to": 3713198, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285928, - "label": "REGULATES", - "from": 3713196, - "to": 3689205, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253166, - "label": "CONSUMED_BY", - "from": 3684130, - "to": 3709048, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285929, - "label": "REGULATES", - "from": 3683877, - "to": 3713196, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253171, - "label": "CONSUMED_BY", - "from": 3677696, - "to": 3709049, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253169, - "label": "PRODUCES", - "from": 3709048, - "to": 3679342, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351473, - "label": "REGULATES", - "from": 3718384, - "to": 3721423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253173, - "label": "PRODUCES", - "from": 3709049, - "to": 3679401, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253179, - "label": "PRODUCES", - "from": 3709050, - "to": 3684167, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285950, - "label": "REGULATES", - "from": 3684327, - "to": 3713203, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351487, - "label": "REGULATES", - "from": 3721427, - "to": 3695312, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253176, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3709050, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351486, - "label": "BINDS", - "from": 3721427, - "to": 3685435, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285944, - "label": "REGULATES", - "from": 3672880, - "to": 3713201, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351481, - "label": "REGULATES", - "from": 3710228, - "to": 3721425, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253181, - "label": "CONSUMED_BY", - "from": 3681727, - "to": 3709051, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351492, - "label": "REGULATES", - "from": 3711404, - "to": 3721428, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253184, - "label": "PRODUCES", - "from": 3709051, - "to": 3681569, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351494, - "label": "BINDS", - "from": 3721429, - "to": 3687539, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351488, - "label": "REGULATES", - "from": 3710167, - "to": 3721427, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351490, - "label": "BINDS", - "from": 3721428, - "to": 3686508, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253195, - "label": "CONSUMED_BY", - "from": 3678962, - "to": 3709054, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253199, - "label": "PRODUCES", - "from": 3709055, - "to": 3681538, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253198, - "label": "CONSUMED_BY", - "from": 3679438, - "to": 3709055, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351496, - "label": "REGULATES", - "from": 3710274, - "to": 3721429, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285973, - "label": "REGULATES", - "from": 3713211, - "to": 3689598, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285974, - "label": "REGULATES", - "from": 3683877, - "to": 3713211, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285968, - "label": "REGULATES", - "from": 3677497, - "to": 3713209, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187682, - "label": "CATALYZES", - "from": 3691426, - "to": 3706604, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351524, - "label": "BINDS", - "from": 3721437, - "to": 3686361, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187680, - "label": "CATALYZES", - "from": 3691425, - "to": 3708584, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285991, - "label": "REGULATES", - "from": 3713217, - "to": 3691283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187681, - "label": "CATALYZES", - "from": 3714179, - "to": 3691426, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351526, - "label": "REGULATES", - "from": 3710228, - "to": 3721437, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187690, - "label": "CATALYZES", - "from": 3691430, - "to": 3705373, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351533, - "label": "REGULATES", - "from": 3721439, - "to": 3701916, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351532, - "label": "BINDS", - "from": 3721439, - "to": 3687232, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285998, - "label": "REGULATES", - "from": 3677412, - "to": 3713219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351534, - "label": "REGULATES", - "from": 3708153, - "to": 3721439, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285992, - "label": "REGULATES", - "from": 3679095, - "to": 3713217, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187692, - "label": "CATALYZES", - "from": 3691431, - "to": 3705420, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 285995, - "label": "REGULATES", - "from": 3677196, - "to": 3713218, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351541, - "label": "REGULATES", - "from": 3677196, - "to": 3721441, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 286004, - "label": "REGULATES", - "from": 3685599, - "to": 3713221, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187699, - "label": "CATALYZES", - "from": 3714644, - "to": 3691435, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187703, - "label": "CATALYZES", - "from": 3714255, - "to": 3691437, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187700, - "label": "CATALYZES", - "from": 3691435, - "to": 3707757, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187704, - "label": "CATALYZES", - "from": 3691437, - "to": 3708478, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351545, - "label": "REGULATES", - "from": 3710167, - "to": 3721442, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 286019, - "label": "REGULATES", - "from": 3681638, - "to": 3713226, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187720, - "label": "CATALYZES", - "from": 3691445, - "to": 3705244, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187721, - "label": "CATALYZES", - "from": 3714900, - "to": 3691446, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 286031, - "label": "REGULATES", - "from": 3666576, - "to": 3713230, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187731, - "label": "CATALYZES", - "from": 3714205, - "to": 3691451, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351568, - "label": "REGULATES", - "from": 3711285, - "to": 3721448, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187732, - "label": "CATALYZES", - "from": 3691451, - "to": 3706617, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 286045, - "label": "REGULATES", - "from": 3713235, - "to": 3688158, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 286046, - "label": "REGULATES", - "from": 3677478, - "to": 3713235, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 286040, - "label": "REGULATES", - "from": 3681210, - "to": 3713233, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187741, - "label": "CATALYZES", - "from": 3714608, - "to": 3691456, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187744, - "label": "CATALYZES", - "from": 3691457, - "to": 3708449, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 286054, - "label": "REGULATES", - "from": 3713238, - "to": 3689369, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 286055, - "label": "REGULATES", - "from": 3677560, - "to": 3713238, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351585, - "label": "BINDS", - "from": 3721453, - "to": 3679700, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351587, - "label": "REGULATES", - "from": 3705945, - "to": 3721453, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351593, - "label": "BINDS", - "from": 3721455, - "to": 3678895, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351595, - "label": "REGULATES", - "from": 3711285, - "to": 3721455, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 286070, - "label": "REGULATES", - "from": 3677689, - "to": 3713243, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187772, - "label": "CATALYZES", - "from": 3691471, - "to": 3705393, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187779, - "label": "CATALYZES", - "from": 3708178, - "to": 3691475, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187786, - "label": "CATALYZES", - "from": 3691478, - "to": 3706515, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187784, - "label": "CATALYZES", - "from": 3691477, - "to": 3709222, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187791, - "label": "CATALYZES", - "from": 3714723, - "to": 3691481, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220567, - "label": "PRODUCES", - "from": 3705276, - "to": 3681656, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220565, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3705276, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220574, - "label": "CONSUMED_BY", - "from": 3681530, - "to": 3705278, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187808, - "label": "CATALYZES", - "from": 3691489, - "to": 3705166, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220577, - "label": "PRODUCES", - "from": 3705278, - "to": 3681143, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220580, - "label": "CONSUMED_BY", - "from": 3677707, - "to": 3705279, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187813, - "label": "CATALYZES", - "from": 3718309, - "to": 3691492, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220587, - "label": "CONSUMED_BY", - "from": 3677458, - "to": 3705281, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220590, - "label": "PRODUCES", - "from": 3705281, - "to": 3667382, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187826, - "label": "CATALYZES", - "from": 3691498, - "to": 3709542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220599, - "label": "PRODUCES", - "from": 3705283, - "to": 3681918, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187828, - "label": "CATALYZES", - "from": 3691499, - "to": 3700743, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220601, - "label": "CONSUMED_BY", - "from": 3677460, - "to": 3705284, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187841, - "label": "CATALYZES", - "from": 3714030, - "to": 3692598, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220614, - "label": "CONSUMED_BY", - "from": 3676136, - "to": 3705287, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187845, - "label": "CATALYZES", - "from": 3715215, - "to": 3692600, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187851, - "label": "CATALYZES", - "from": 3710178, - "to": 3692603, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220616, - "label": "PRODUCES", - "from": 3705287, - "to": 3676031, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187849, - "label": "CATALYZES", - "from": 3711517, - "to": 3692602, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187852, - "label": "CATALYZES", - "from": 3692603, - "to": 3707565, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220630, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3705291, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220628, - "label": "PRODUCES", - "from": 3705290, - "to": 3677471, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220633, - "label": "PRODUCES", - "from": 3705291, - "to": 3669350, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220637, - "label": "PRODUCES", - "from": 3705292, - "to": 3675925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220636, - "label": "CONSUMED_BY", - "from": 3675775, - "to": 3705292, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220642, - "label": "PRODUCES", - "from": 3705293, - "to": 3674652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220640, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3705293, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187879, - "label": "CATALYZES", - "from": 3712565, - "to": 3692617, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220645, - "label": "CONSUMED_BY", - "from": 3684318, - "to": 3705294, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220651, - "label": "CONSUMED_BY", - "from": 3670256, - "to": 3705295, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187880, - "label": "CATALYZES", - "from": 3692617, - "to": 3700781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220648, - "label": "PRODUCES", - "from": 3705294, - "to": 3679221, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187881, - "label": "CATALYZES", - "from": 3713987, - "to": 3692618, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318964, - "label": "BINDS", - "from": 3717334, - "to": 3685229, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318966, - "label": "REGULATES", - "from": 3711285, - "to": 3717334, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220662, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3705297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187892, - "label": "CATALYZES", - "from": 3692623, - "to": 3705481, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220665, - "label": "PRODUCES", - "from": 3705297, - "to": 3669006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220669, - "label": "PRODUCES", - "from": 3705298, - "to": 3678966, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220668, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3705298, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318981, - "label": "REGULATES", - "from": 3710208, - "to": 3717338, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220673, - "label": "PRODUCES", - "from": 3705299, - "to": 3670537, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220679, - "label": "PRODUCES", - "from": 3705300, - "to": 3674849, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187911, - "label": "CATALYZES", - "from": 3714608, - "to": 3692633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220677, - "label": "PRODUCES", - "from": 3705300, - "to": 3667467, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187909, - "label": "CATALYZES", - "from": 3714042, - "to": 3692632, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318979, - "label": "BINDS", - "from": 3717338, - "to": 3686215, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220680, - "label": "CONSUMED_BY", - "from": 3677437, - "to": 3705301, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220685, - "label": "CONSUMED_BY", - "from": 3677474, - "to": 3705303, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 187917, - "label": "CATALYZES", - "from": 3712585, - "to": 3692636, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220684, - "label": "PRODUCES", - "from": 3705302, - "to": 3685579, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220689, - "label": "PRODUCES", - "from": 3705303, - "to": 3679089, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220695, - "label": "PRODUCES", - "from": 3705304, - "to": 3669647, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319005, - "label": "BINDS", - "from": 3717345, - "to": 3687403, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319007, - "label": "REGULATES", - "from": 3715027, - "to": 3717345, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319012, - "label": "BINDS", - "from": 3717347, - "to": 3679669, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220705, - "label": "CONSUMED_BY", - "from": 3683889, - "to": 3705306, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319014, - "label": "REGULATES", - "from": 3714706, - "to": 3717347, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220710, - "label": "CONSUMED_BY", - "from": 3715181, - "to": 3705307, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220715, - "label": "CONSUMED_BY", - "from": 3670482, - "to": 3705308, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220713, - "label": "PRODUCES", - "from": 3705307, - "to": 3711387, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220721, - "label": "CONSUMED_BY", - "from": 3682032, - "to": 3705310, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220726, - "label": "CONSUMED_BY", - "from": 3677808, - "to": 3705311, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319025, - "label": "REGULATES", - "from": 3712401, - "to": 3717350, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220724, - "label": "PRODUCES", - "from": 3705310, - "to": 3682007, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220731, - "label": "CONSUMED_BY", - "from": 3681905, - "to": 3705312, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319037, - "label": "BINDS", - "from": 3717354, - "to": 3684960, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220729, - "label": "PRODUCES", - "from": 3705311, - "to": 3677829, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319039, - "label": "REGULATES", - "from": 3711445, - "to": 3717354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220735, - "label": "CONSUMED_BY", - "from": 3677476, - "to": 3705313, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220733, - "label": "PRODUCES", - "from": 3705312, - "to": 3681872, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220750, - "label": "PRODUCES", - "from": 3705316, - "to": 3677800, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319051, - "label": "REGULATES", - "from": 3711285, - "to": 3717357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220748, - "label": "CONSUMED_BY", - "from": 3681583, - "to": 3705316, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319060, - "label": "BINDS", - "from": 3717360, - "to": 3679677, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319061, - "label": "REGULATES", - "from": 3717360, - "to": 3697537, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319062, - "label": "REGULATES", - "from": 3711179, - "to": 3717360, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319056, - "label": "BINDS", - "from": 3717359, - "to": 3685321, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319057, - "label": "REGULATES", - "from": 3717359, - "to": 3730396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319058, - "label": "REGULATES", - "from": 3708423, - "to": 3717359, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220756, - "label": "CONSUMED_BY", - "from": 3684290, - "to": 3705318, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319069, - "label": "REGULATES", - "from": 3681210, - "to": 3717362, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220760, - "label": "CONSUMED_BY", - "from": 3683884, - "to": 3705319, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319064, - "label": "BINDS", - "from": 3717361, - "to": 3683043, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220766, - "label": "CONSUMED_BY", - "from": 3684116, - "to": 3705320, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319066, - "label": "REGULATES", - "from": 3710228, - "to": 3717361, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220768, - "label": "PRODUCES", - "from": 3705320, - "to": 3676959, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220775, - "label": "CONSUMED_BY", - "from": 3681594, - "to": 3705322, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220772, - "label": "PRODUCES", - "from": 3705321, - "to": 3677803, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220779, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3705323, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220778, - "label": "PRODUCES", - "from": 3705322, - "to": 3677648, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351852, - "label": "BINDS", - "from": 3721460, - "to": 3679927, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351854, - "label": "REGULATES", - "from": 3711237, - "to": 3721460, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351849, - "label": "REGULATES", - "from": 3721459, - "to": 3699583, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220781, - "label": "PRODUCES", - "from": 3705323, - "to": 3684139, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351850, - "label": "REGULATES", - "from": 3710194, - "to": 3721459, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220787, - "label": "PRODUCES", - "from": 3705324, - "to": 3681860, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220786, - "label": "CONSUMED_BY", - "from": 3677460, - "to": 3705324, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351863, - "label": "BINDS", - "from": 3721463, - "to": 3685452, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220791, - "label": "CONSUMED_BY", - "from": 3669722, - "to": 3705325, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319090, - "label": "REGULATES", - "from": 3717368, - "to": 3689149, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319091, - "label": "REGULATES", - "from": 3679367, - "to": 3717368, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351869, - "label": "REGULATES", - "from": 3710270, - "to": 3721464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220794, - "label": "CONSUMED_BY", - "from": 3681868, - "to": 3705326, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 220793, - "label": "PRODUCES", - "from": 3705325, - "to": 3669989, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351865, - "label": "REGULATES", - "from": 3708423, - "to": 3721463, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351867, - "label": "BINDS", - "from": 3721464, - "to": 3683305, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351873, - "label": "REGULATES", - "from": 3711265, - "to": 3721465, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319104, - "label": "BINDS", - "from": 3717372, - "to": 3679555, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319105, - "label": "REGULATES", - "from": 3717372, - "to": 3696416, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319106, - "label": "REGULATES", - "from": 3710270, - "to": 3717372, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351884, - "label": "REGULATES", - "from": 3715127, - "to": 3721468, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319112, - "label": "REGULATES", - "from": 3717374, - "to": 3689212, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319113, - "label": "REGULATES", - "from": 3677368, - "to": 3717374, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351882, - "label": "BINDS", - "from": 3721468, - "to": 3682979, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351892, - "label": "REGULATES", - "from": 3712313, - "to": 3721470, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319126, - "label": "BINDS", - "from": 3717378, - "to": 3685130, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351891, - "label": "REGULATES", - "from": 3721470, - "to": 3729232, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351890, - "label": "BINDS", - "from": 3721470, - "to": 3679979, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319128, - "label": "REGULATES", - "from": 3710270, - "to": 3717378, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319137, - "label": "BINDS", - "from": 3717381, - "to": 3679505, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319139, - "label": "REGULATES", - "from": 3714081, - "to": 3717381, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319148, - "label": "BINDS", - "from": 3717384, - "to": 3687479, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319150, - "label": "REGULATES", - "from": 3714495, - "to": 3717384, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351925, - "label": "REGULATES", - "from": 3721479, - "to": 3695295, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319158, - "label": "BINDS", - "from": 3717387, - "to": 3683226, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351926, - "label": "REGULATES", - "from": 3711319, - "to": 3721479, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319159, - "label": "REGULATES", - "from": 3717387, - "to": 3696094, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319160, - "label": "REGULATES", - "from": 3711265, - "to": 3717387, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319163, - "label": "REGULATES", - "from": 3681950, - "to": 3717388, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351941, - "label": "REGULATES", - "from": 3712313, - "to": 3721483, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319173, - "label": "BINDS", - "from": 3717391, - "to": 3679725, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319175, - "label": "REGULATES", - "from": 3710578, - "to": 3717391, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351939, - "label": "BINDS", - "from": 3721483, - "to": 3687448, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351949, - "label": "REGULATES", - "from": 3711233, - "to": 3721485, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319182, - "label": "REGULATES", - "from": 3710586, - "to": 3717393, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351947, - "label": "BINDS", - "from": 3721485, - "to": 3678931, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319189, - "label": "REGULATES", - "from": 3708423, - "to": 3717395, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 384724, - "label": "ELEMENT_OF", - "from": 3690417, - "to": 3725912, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319191, - "label": "BINDS", - "from": 3717396, - "to": 3678671, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 384721, - "label": "ELEMENT_OF", - "from": 3697610, - "to": 3725911, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 384720, - "label": "ELEMENT_OF", - "from": 3697362, - "to": 3725910, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351964, - "label": "REGULATES", - "from": 3710270, - "to": 3721489, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 384734, - "label": "ELEMENT_OF", - "from": 3699831, - "to": 3725917, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 319193, - "label": "REGULATES", - "from": 3710578, - "to": 3717396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351960, - "label": "REGULATES", - "from": 3708153, - "to": 3721488, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 384731, - "label": "ELEMENT_OF", - "from": 3697057, - "to": 3725916, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351962, - "label": "BINDS", - "from": 3721489, - "to": 3678715, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 384741, - "label": "ELEMENT_OF", - "from": 3712239, - "to": 3725919, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351973, - "label": "BINDS", - "from": 3721492, - "to": 3686290, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351975, - "label": "REGULATES", - "from": 3705945, - "to": 3721492, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351990, - "label": "REGULATES", - "from": 3677711, - "to": 3721496, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351985, - "label": "BINDS", - "from": 3721495, - "to": 3687457, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351987, - "label": "REGULATES", - "from": 3712313, - "to": 3721495, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351986, - "label": "REGULATES", - "from": 3721495, - "to": 3726503, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351996, - "label": "BINDS", - "from": 3721498, - "to": 3682826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 384764, - "label": "ELEMENT_OF", - "from": 3699216, - "to": 3725922, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351998, - "label": "REGULATES", - "from": 3711183, - "to": 3721498, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351992, - "label": "BINDS", - "from": 3721497, - "to": 3678552, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351994, - "label": "REGULATES", - "from": 3711285, - "to": 3721497, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 384773, - "label": "ELEMENT_OF", - "from": 3694752, - "to": 3725926, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352001, - "label": "REGULATES", - "from": 3721499, - "to": 3697184, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352002, - "label": "REGULATES", - "from": 3710562, - "to": 3721499, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352013, - "label": "REGULATES", - "from": 3710578, - "to": 3721502, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 384781, - "label": "ELEMENT_OF", - "from": 3698970, - "to": 3725929, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352012, - "label": "REGULATES", - "from": 3721502, - "to": 3699626, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352011, - "label": "BINDS", - "from": 3721502, - "to": 3679649, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352021, - "label": "REGULATES", - "from": 3711285, - "to": 3721504, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352020, - "label": "REGULATES", - "from": 3721504, - "to": 3700109, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352019, - "label": "BINDS", - "from": 3721504, - "to": 3685219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 384786, - "label": "ELEMENT_OF", - "from": 3687258, - "to": 3725931, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352027, - "label": "REGULATES", - "from": 3677336, - "to": 3721506, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352037, - "label": "REGULATES", - "from": 3721509, - "to": 3730416, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352038, - "label": "REGULATES", - "from": 3677650, - "to": 3721509, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 384813, - "label": "ELEMENT_OF", - "from": 3699636, - "to": 3725936, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352041, - "label": "REGULATES", - "from": 3721510, - "to": 3729580, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352042, - "label": "REGULATES", - "from": 3712313, - "to": 3721510, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352069, - "label": "BINDS", - "from": 3721518, - "to": 3687213, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352071, - "label": "REGULATES", - "from": 3712401, - "to": 3721518, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352065, - "label": "BINDS", - "from": 3721517, - "to": 3685360, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 384832, - "label": "ELEMENT_OF", - "from": 3690954, - "to": 3725942, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352067, - "label": "REGULATES", - "from": 3711189, - "to": 3721517, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352077, - "label": "REGULATES", - "from": 3679413, - "to": 3721520, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352073, - "label": "REGULATES", - "from": 3721519, - "to": 3724919, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352074, - "label": "REGULATES", - "from": 3677441, - "to": 3721519, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352085, - "label": "REGULATES", - "from": 3711285, - "to": 3721522, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 384853, - "label": "ELEMENT_OF", - "from": 3698677, - "to": 3725945, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352087, - "label": "REGULATES", - "from": 3721523, - "to": 3724935, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352083, - "label": "BINDS", - "from": 3721522, - "to": 3685079, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 384863, - "label": "ELEMENT_OF", - "from": 3702930, - "to": 3725948, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352088, - "label": "REGULATES", - "from": 3714162, - "to": 3721523, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352101, - "label": "REGULATES", - "from": 3721527, - "to": 3687981, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352102, - "label": "REGULATES", - "from": 3684290, - "to": 3721527, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 384870, - "label": "ELEMENT_OF", - "from": 3717046, - "to": 3725950, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352105, - "label": "REGULATES", - "from": 3721528, - "to": 3726225, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352104, - "label": "BINDS", - "from": 3721528, - "to": 3686525, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 384872, - "label": "ELEMENT_OF", - "from": 3720005, - "to": 3725951, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352106, - "label": "REGULATES", - "from": 3712313, - "to": 3721528, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352113, - "label": "REGULATES", - "from": 3714162, - "to": 3721530, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352112, - "label": "REGULATES", - "from": 3721530, - "to": 3724945, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352123, - "label": "REGULATES", - "from": 3711559, - "to": 3721533, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352122, - "label": "REGULATES", - "from": 3721533, - "to": 3724820, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352132, - "label": "BINDS", - "from": 3721536, - "to": 3686570, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 384903, - "label": "ELEMENT_OF", - "from": 3716717, - "to": 3725957, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352134, - "label": "REGULATES", - "from": 3711317, - "to": 3721536, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 384896, - "label": "ELEMENT_OF", - "from": 3699656, - "to": 3725956, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352141, - "label": "REGULATES", - "from": 3710187, - "to": 3721538, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352140, - "label": "REGULATES", - "from": 3721538, - "to": 3694620, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352137, - "label": "REGULATES", - "from": 3711559, - "to": 3721537, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352136, - "label": "REGULATES", - "from": 3721537, - "to": 3724988, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352139, - "label": "BINDS", - "from": 3721538, - "to": 3679547, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 384906, - "label": "ELEMENT_OF", - "from": 3678593, - "to": 3725958, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352148, - "label": "REGULATES", - "from": 3675450, - "to": 3721540, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 384915, - "label": "ELEMENT_OF", - "from": 3695935, - "to": 3725960, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352147, - "label": "REGULATES", - "from": 3721540, - "to": 3724980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352159, - "label": "REGULATES", - "from": 3710143, - "to": 3721543, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352158, - "label": "REGULATES", - "from": 3721543, - "to": 3697245, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352161, - "label": "REGULATES", - "from": 3721544, - "to": 3724958, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352162, - "label": "REGULATES", - "from": 3675462, - "to": 3721544, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352173, - "label": "REGULATES", - "from": 3675472, - "to": 3721547, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 384939, - "label": "ELEMENT_OF", - "from": 3699913, - "to": 3725966, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352183, - "label": "REGULATES", - "from": 3721550, - "to": 3697770, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 384950, - "label": "ELEMENT_OF", - "from": 3707263, - "to": 3725967, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352182, - "label": "BINDS", - "from": 3721550, - "to": 3678496, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352184, - "label": "REGULATES", - "from": 3711313, - "to": 3721550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352187, - "label": "REGULATES", - "from": 3675463, - "to": 3721551, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352197, - "label": "REGULATES", - "from": 3721554, - "to": 3718696, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352198, - "label": "REGULATES", - "from": 3675465, - "to": 3721554, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352193, - "label": "BINDS", - "from": 3721553, - "to": 3679817, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352195, - "label": "REGULATES", - "from": 3710270, - "to": 3721553, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352194, - "label": "REGULATES", - "from": 3721553, - "to": 3701983, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352205, - "label": "REGULATES", - "from": 3718263, - "to": 3721556, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352204, - "label": "REGULATES", - "from": 3721556, - "to": 3700040, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352203, - "label": "BINDS", - "from": 3721556, - "to": 3679556, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352212, - "label": "REGULATES", - "from": 3675463, - "to": 3721558, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352223, - "label": "REGULATES", - "from": 3675475, - "to": 3721561, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352222, - "label": "REGULATES", - "from": 3721561, - "to": 3724832, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352229, - "label": "REGULATES", - "from": 3721563, - "to": 3729543, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253922, - "label": "CONSUMED_BY", - "from": 3677445, - "to": 3709056, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352230, - "label": "REGULATES", - "from": 3712313, - "to": 3721563, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352225, - "label": "REGULATES", - "from": 3721562, - "to": 3689072, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352226, - "label": "REGULATES", - "from": 3677501, - "to": 3721562, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352237, - "label": "REGULATES", - "from": 3675450, - "to": 3721565, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352236, - "label": "REGULATES", - "from": 3721565, - "to": 3724957, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253934, - "label": "CONSUMED_BY", - "from": 3684283, - "to": 3709058, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253932, - "label": "PRODUCES", - "from": 3709057, - "to": 3681878, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253939, - "label": "CONSUMED_BY", - "from": 3681538, - "to": 3709059, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253936, - "label": "PRODUCES", - "from": 3709058, - "to": 3679467, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188401, - "label": "CATALYZES", - "from": 3705938, - "to": 3692638, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352241, - "label": "REGULATES", - "from": 3710167, - "to": 3721566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253947, - "label": "CONSUMED_BY", - "from": 3677437, - "to": 3709060, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253951, - "label": "CONSUMED_BY", - "from": 3681547, - "to": 3709061, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188415, - "label": "CATALYZES", - "from": 3714251, - "to": 3692645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352248, - "label": "REGULATES", - "from": 3675472, - "to": 3721568, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253949, - "label": "PRODUCES", - "from": 3709060, - "to": 3679336, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253948, - "label": "PRODUCES", - "from": 3709060, - "to": 3675724, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481827, - "label": "BINDS", - "from": 91443450, - "to": 91441922, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253955, - "label": "PRODUCES", - "from": 3709061, - "to": 3683991, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352261, - "label": "REGULATES", - "from": 3721572, - "to": 3724854, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481826, - "label": "BINDS", - "from": 91443449, - "to": 3679786, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481824, - "label": "BINDS", - "from": 91443447, - "to": 91441918, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352262, - "label": "REGULATES", - "from": 3675450, - "to": 3721572, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352257, - "label": "BINDS", - "from": 3721571, - "to": 3678780, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481830, - "label": "BINDS", - "from": 91443453, - "to": 3678904, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481829, - "label": "BINDS", - "from": 91443452, - "to": 91441765, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352259, - "label": "REGULATES", - "from": 3714908, - "to": 3721571, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481835, - "label": "BINDS", - "from": 91443458, - "to": 91441925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481834, - "label": "BINDS", - "from": 91443457, - "to": 91442325, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253961, - "label": "CONSUMED_BY", - "from": 3683981, - "to": 3709062, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481833, - "label": "BINDS", - "from": 91443456, - "to": 91442359, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253967, - "label": "CONSUMED_BY", - "from": 3682183, - "to": 3709063, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481838, - "label": "BINDS", - "from": 91443461, - "to": 91441809, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188431, - "label": "CATALYZES", - "from": 3712504, - "to": 3692653, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481837, - "label": "BINDS", - "from": 91443460, - "to": 91441683, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188429, - "label": "CATALYZES", - "from": 3710433, - "to": 3692652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352277, - "label": "REGULATES", - "from": 3710270, - "to": 3721576, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481843, - "label": "BINDS", - "from": 91443466, - "to": 91442232, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481842, - "label": "BINDS", - "from": 91443465, - "to": 3680031, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481841, - "label": "BINDS", - "from": 91443464, - "to": 3686322, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481840, - "label": "BINDS", - "from": 91443463, - "to": 91442002, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481847, - "label": "BINDS", - "from": 91443470, - "to": 91442358, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253975, - "label": "CONSUMED_BY", - "from": 3676839, - "to": 3709064, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352273, - "label": "REGULATES", - "from": 3675448, - "to": 3721575, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481846, - "label": "BINDS", - "from": 91443469, - "to": 91441838, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352272, - "label": "REGULATES", - "from": 3721575, - "to": 3718698, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352275, - "label": "BINDS", - "from": 3721576, - "to": 3687528, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253979, - "label": "CONSUMED_BY", - "from": 3677445, - "to": 3709065, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481851, - "label": "BINDS", - "from": 91443474, - "to": 91441720, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481850, - "label": "BINDS", - "from": 91443473, - "to": 91441814, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253977, - "label": "PRODUCES", - "from": 3709064, - "to": 3670441, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481849, - "label": "BINDS", - "from": 91443472, - "to": 91442169, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352286, - "label": "BINDS", - "from": 3721579, - "to": 3687388, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481855, - "label": "BINDS", - "from": 91443478, - "to": 91442231, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481854, - "label": "BINDS", - "from": 91443477, - "to": 3686465, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481852, - "label": "BINDS", - "from": 91443475, - "to": 91441708, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188445, - "label": "CATALYZES", - "from": 3718395, - "to": 3692660, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352292, - "label": "REGULATES", - "from": 3712313, - "to": 3721580, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253985, - "label": "PRODUCES", - "from": 3709065, - "to": 3677452, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253991, - "label": "PRODUCES", - "from": 3709066, - "to": 3681824, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481799, - "label": "BINDS", - "from": 91443422, - "to": 91441767, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481798, - "label": "BINDS", - "from": 91443421, - "to": 91442040, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352288, - "label": "REGULATES", - "from": 3710228, - "to": 3721579, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253989, - "label": "CONSUMED_BY", - "from": 3684009, - "to": 3709066, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481797, - "label": "BINDS", - "from": 91443419, - "to": 91441582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352291, - "label": "REGULATES", - "from": 3721580, - "to": 3727647, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481796, - "label": "BINDS", - "from": 91443418, - "to": 91442295, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481803, - "label": "BINDS", - "from": 91443426, - "to": 91441513, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253992, - "label": "PRODUCES", - "from": 3709066, - "to": 3677332, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481800, - "label": "BINDS", - "from": 91443423, - "to": 91441578, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253998, - "label": "CONSUMED_BY", - "from": 3677464, - "to": 3709068, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481806, - "label": "BINDS", - "from": 91443429, - "to": 3678404, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352299, - "label": "REGULATES", - "from": 3677560, - "to": 3721582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188461, - "label": "CATALYZES", - "from": 3710433, - "to": 3692668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481804, - "label": "BINDS", - "from": 91443427, - "to": 3679638, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 253996, - "label": "PRODUCES", - "from": 3709067, - "to": 3652188, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352298, - "label": "REGULATES", - "from": 3721582, - "to": 3691223, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481811, - "label": "BINDS", - "from": 91443434, - "to": 91441772, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352309, - "label": "BINDS", - "from": 3721585, - "to": 3686134, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481810, - "label": "BINDS", - "from": 91443433, - "to": 91441883, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254001, - "label": "PRODUCES", - "from": 3709068, - "to": 3667424, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352311, - "label": "REGULATES", - "from": 3708153, - "to": 3721585, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481809, - "label": "BINDS", - "from": 91443432, - "to": 91441587, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481808, - "label": "BINDS", - "from": 91443431, - "to": 91442300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481815, - "label": "BINDS", - "from": 91443438, - "to": 91441915, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188470, - "label": "CATALYZES", - "from": 3692672, - "to": 3707433, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481814, - "label": "BINDS", - "from": 91443437, - "to": 91442224, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481812, - "label": "BINDS", - "from": 91443435, - "to": 91442189, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188469, - "label": "CATALYZES", - "from": 3714255, - "to": 3692672, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481819, - "label": "BINDS", - "from": 91443442, - "to": 3684961, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254011, - "label": "PRODUCES", - "from": 3709070, - "to": 3673338, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481818, - "label": "BINDS", - "from": 91443441, - "to": 3686309, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481817, - "label": "BINDS", - "from": 91443440, - "to": 3685116, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481816, - "label": "BINDS", - "from": 91443439, - "to": 91441604, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254008, - "label": "CONSUMED_BY", - "from": 3675154, - "to": 3709070, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254015, - "label": "PRODUCES", - "from": 3709071, - "to": 3681958, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188479, - "label": "CATALYZES", - "from": 3712560, - "to": 3692677, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481822, - "label": "BINDS", - "from": 91443445, - "to": 91441950, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254013, - "label": "CONSUMED_BY", - "from": 3679297, - "to": 3709071, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481821, - "label": "BINDS", - "from": 91443444, - "to": 91442354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188477, - "label": "CATALYZES", - "from": 3714160, - "to": 3692676, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481820, - "label": "BINDS", - "from": 91443443, - "to": 91442304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481890, - "label": "BINDS", - "from": 91443513, - "to": 91441527, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481889, - "label": "BINDS", - "from": 91443512, - "to": 3686248, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481888, - "label": "BINDS", - "from": 91443511, - "to": 91441813, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254022, - "label": "CONSUMED_BY", - "from": 3681832, - "to": 3709073, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481894, - "label": "BINDS", - "from": 91443517, - "to": 3682946, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481892, - "label": "BINDS", - "from": 91443515, - "to": 91442073, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254027, - "label": "CONSUMED_BY", - "from": 3677788, - "to": 3709074, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481899, - "label": "BINDS", - "from": 91443522, - "to": 3685375, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481898, - "label": "BINDS", - "from": 91443521, - "to": 91441983, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188491, - "label": "CATALYZES", - "from": 3715215, - "to": 3692683, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481897, - "label": "BINDS", - "from": 91443520, - "to": 91441832, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481896, - "label": "BINDS", - "from": 91443519, - "to": 3685052, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254031, - "label": "CONSUMED_BY", - "from": 3672650, - "to": 3709075, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481902, - "label": "BINDS", - "from": 91443525, - "to": 91441532, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254029, - "label": "PRODUCES", - "from": 3709074, - "to": 3684067, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254035, - "label": "CONSUMED_BY", - "from": 3677501, - "to": 3709076, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481906, - "label": "BINDS", - "from": 91443529, - "to": 91441999, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254032, - "label": "PRODUCES", - "from": 3709075, - "to": 3672661, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481904, - "label": "BINDS", - "from": 91443527, - "to": 91442074, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481911, - "label": "BINDS", - "from": 91443534, - "to": 91441835, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481910, - "label": "BINDS", - "from": 91443533, - "to": 3685181, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254037, - "label": "PRODUCES", - "from": 3709076, - "to": 3681169, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481909, - "label": "BINDS", - "from": 91443532, - "to": 91441991, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254042, - "label": "CONSUMED_BY", - "from": 3671833, - "to": 3709078, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481914, - "label": "BINDS", - "from": 91443537, - "to": 91441538, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254040, - "label": "CONSUMED_BY", - "from": 3666551, - "to": 3709077, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481918, - "label": "BINDS", - "from": 91443541, - "to": 91441579, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254044, - "label": "PRODUCES", - "from": 3709078, - "to": 3670120, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481916, - "label": "BINDS", - "from": 91443539, - "to": 91442345, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481859, - "label": "BINDS", - "from": 91443482, - "to": 91442363, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221282, - "label": "PRODUCES", - "from": 3705327, - "to": 3706167, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188515, - "label": "CATALYZES", - "from": 3711331, - "to": 3692695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481863, - "label": "BINDS", - "from": 91443486, - "to": 91442063, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221286, - "label": "PRODUCES", - "from": 3705328, - "to": 3666563, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481862, - "label": "BINDS", - "from": 91443485, - "to": 91441819, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481861, - "label": "BINDS", - "from": 91443484, - "to": 91442175, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221284, - "label": "CONSUMED_BY", - "from": 3670482, - "to": 3705328, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481867, - "label": "BINDS", - "from": 91443490, - "to": 91441626, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481864, - "label": "BINDS", - "from": 91443487, - "to": 91442211, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481871, - "label": "BINDS", - "from": 91443494, - "to": 91442214, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188526, - "label": "CATALYZES", - "from": 3692700, - "to": 3705689, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481870, - "label": "BINDS", - "from": 91443493, - "to": 91442170, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188524, - "label": "CATALYZES", - "from": 3692699, - "to": 3707353, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221293, - "label": "PRODUCES", - "from": 3705330, - "to": 3683922, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221292, - "label": "CONSUMED_BY", - "from": 3683899, - "to": 3705330, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481868, - "label": "BINDS", - "from": 91443491, - "to": 3684979, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188525, - "label": "CATALYZES", - "from": 3710433, - "to": 3692700, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481875, - "label": "BINDS", - "from": 91443498, - "to": 91441510, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481874, - "label": "BINDS", - "from": 91443497, - "to": 91441824, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481873, - "label": "BINDS", - "from": 91443496, - "to": 91442066, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221297, - "label": "CONSUMED_BY", - "from": 3715226, - "to": 3705331, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221303, - "label": "CONSUMED_BY", - "from": 3681312, - "to": 3705332, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481879, - "label": "BINDS", - "from": 91443502, - "to": 91441631, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481878, - "label": "BINDS", - "from": 91443501, - "to": 3682874, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481877, - "label": "BINDS", - "from": 91443500, - "to": 3686516, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481876, - "label": "BINDS", - "from": 91443499, - "to": 91442261, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221300, - "label": "PRODUCES", - "from": 3705331, - "to": 3714126, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481882, - "label": "BINDS", - "from": 91443505, - "to": 91442059, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188539, - "label": "CATALYZES", - "from": 3714801, - "to": 3692707, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221304, - "label": "PRODUCES", - "from": 3705332, - "to": 3681316, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221311, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3705334, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254079, - "label": "PRODUCES", - "from": 3709086, - "to": 3671513, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481887, - "label": "BINDS", - "from": 91443510, - "to": 91441742, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188542, - "label": "CATALYZES", - "from": 3692708, - "to": 3706601, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481886, - "label": "BINDS", - "from": 91443509, - "to": 91442273, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481885, - "label": "BINDS", - "from": 91443508, - "to": 91441829, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254076, - "label": "CONSUMED_BY", - "from": 3685555, - "to": 3709086, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481884, - "label": "BINDS", - "from": 91443507, - "to": 91442072, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188541, - "label": "CATALYZES", - "from": 3714701, - "to": 3692708, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221315, - "label": "CONSUMED_BY", - "from": 3677258, - "to": 3705335, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481699, - "label": "BINDS", - "from": 91443320, - "to": 91442323, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481698, - "label": "BINDS", - "from": 91443319, - "to": 91441859, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254081, - "label": "CONSUMED_BY", - "from": 3684343, - "to": 3709087, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481697, - "label": "BINDS", - "from": 91443318, - "to": 3687482, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481696, - "label": "BINDS", - "from": 91443317, - "to": 91441568, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481702, - "label": "BINDS", - "from": 91443323, - "to": 91442070, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481701, - "label": "BINDS", - "from": 91443322, - "to": 91442152, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221316, - "label": "PRODUCES", - "from": 3705335, - "to": 3677831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481707, - "label": "BINDS", - "from": 91443328, - "to": 91442007, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188554, - "label": "CATALYZES", - "from": 3692714, - "to": 3709405, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221322, - "label": "PRODUCES", - "from": 3705336, - "to": 3674606, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481705, - "label": "BINDS", - "from": 91443326, - "to": 3679956, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254088, - "label": "CONSUMED_BY", - "from": 3675420, - "to": 3709089, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188553, - "label": "CATALYZES", - "from": 3710433, - "to": 3692714, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481704, - "label": "BINDS", - "from": 91443325, - "to": 91441877, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221327, - "label": "PRODUCES", - "from": 3705337, - "to": 3681512, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254094, - "label": "CONSUMED_BY", - "from": 3670742, - "to": 3709091, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221326, - "label": "CONSUMED_BY", - "from": 3681930, - "to": 3705337, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481710, - "label": "BINDS", - "from": 91443331, - "to": 91442328, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481709, - "label": "BINDS", - "from": 91443330, - "to": 91441864, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481715, - "label": "BINDS", - "from": 91443336, - "to": 91442102, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221330, - "label": "CONSUMED_BY", - "from": 3681912, - "to": 3705338, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188563, - "label": "CATALYZES", - "from": 3712585, - "to": 3692719, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481714, - "label": "BINDS", - "from": 91443335, - "to": 91441894, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254097, - "label": "CONSUMED_BY", - "from": 3681520, - "to": 3709092, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481713, - "label": "BINDS", - "from": 91443334, - "to": 91441752, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481712, - "label": "BINDS", - "from": 91443333, - "to": 91442156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481719, - "label": "BINDS", - "from": 91443340, - "to": 91441788, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188567, - "label": "CATALYZES", - "from": 3702303, - "to": 3692721, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221333, - "label": "PRODUCES", - "from": 3705338, - "to": 3679139, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188564, - "label": "CATALYZES", - "from": 3692719, - "to": 3708557, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254100, - "label": "PRODUCES", - "from": 3709092, - "to": 3681133, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188570, - "label": "CATALYZES", - "from": 3692722, - "to": 3709514, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254107, - "label": "CONSUMED_BY", - "from": 3677460, - "to": 3709094, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481723, - "label": "BINDS", - "from": 91443344, - "to": 3687145, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481722, - "label": "BINDS", - "from": 91443343, - "to": 91441739, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481721, - "label": "BINDS", - "from": 91443342, - "to": 91441869, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221337, - "label": "PRODUCES", - "from": 3705339, - "to": 3672847, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481727, - "label": "BINDS", - "from": 91443348, - "to": 91441667, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254110, - "label": "CONSUMED_BY", - "from": 3677495, - "to": 3709095, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481726, - "label": "BINDS", - "from": 91443347, - "to": 91441959, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481725, - "label": "BINDS", - "from": 91443346, - "to": 91441539, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254108, - "label": "PRODUCES", - "from": 3709094, - "to": 3677204, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481724, - "label": "BINDS", - "from": 91443345, - "to": 91442159, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481667, - "label": "BINDS", - "from": 91443288, - "to": 91441927, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188579, - "label": "CATALYZES", - "from": 3712563, - "to": 3692727, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481665, - "label": "BINDS", - "from": 91443286, - "to": 91441627, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254112, - "label": "PRODUCES", - "from": 3709095, - "to": 3677707, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481664, - "label": "BINDS", - "from": 91443285, - "to": 91442138, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188580, - "label": "CATALYZES", - "from": 3692727, - "to": 3709321, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254116, - "label": "CONSUMED_BY", - "from": 3677427, - "to": 3709097, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481668, - "label": "BINDS", - "from": 91443289, - "to": 3679822, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481675, - "label": "BINDS", - "from": 91443296, - "to": 3679764, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481674, - "label": "BINDS", - "from": 91443295, - "to": 91442311, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221354, - "label": "CONSUMED_BY", - "from": 3710347, - "to": 3705343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481673, - "label": "BINDS", - "from": 91443294, - "to": 3679839, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481672, - "label": "BINDS", - "from": 91443293, - "to": 91441630, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221359, - "label": "CONSUMED_BY", - "from": 3684322, - "to": 3705344, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481678, - "label": "BINDS", - "from": 91443299, - "to": 91442025, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254125, - "label": "CONSUMED_BY", - "from": 3670744, - "to": 3709099, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481677, - "label": "BINDS", - "from": 91443298, - "to": 91442142, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221357, - "label": "PRODUCES", - "from": 3705343, - "to": 3704498, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188589, - "label": "CATALYZES", - "from": 3711368, - "to": 3692732, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481683, - "label": "BINDS", - "from": 91443304, - "to": 91442228, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221362, - "label": "CONSUMED_BY", - "from": 3677401, - "to": 3705345, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188595, - "label": "CATALYZES", - "from": 3710433, - "to": 3692735, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221361, - "label": "PRODUCES", - "from": 3705344, - "to": 3683978, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254129, - "label": "CONSUMED_BY", - "from": 3683891, - "to": 3709100, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188592, - "label": "CATALYZES", - "from": 3692733, - "to": 3708825, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481681, - "label": "BINDS", - "from": 91443302, - "to": 91441754, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188598, - "label": "CATALYZES", - "from": 3692736, - "to": 3709425, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481686, - "label": "BINDS", - "from": 91443307, - "to": 91442317, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221365, - "label": "PRODUCES", - "from": 3705345, - "to": 3684354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188596, - "label": "CATALYZES", - "from": 3692735, - "to": 3706685, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481684, - "label": "BINDS", - "from": 91443305, - "to": 91441779, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481690, - "label": "BINDS", - "from": 91443311, - "to": 91441851, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254137, - "label": "CONSUMED_BY", - "from": 3670487, - "to": 3709102, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481689, - "label": "BINDS", - "from": 91443310, - "to": 91442147, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221369, - "label": "PRODUCES", - "from": 3705346, - "to": 3677812, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221368, - "label": "CONSUMED_BY", - "from": 3683863, - "to": 3705346, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481688, - "label": "BINDS", - "from": 91443309, - "to": 91442015, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221375, - "label": "PRODUCES", - "from": 3705347, - "to": 3677710, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254142, - "label": "CONSUMED_BY", - "from": 3677698, - "to": 3709103, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481693, - "label": "BINDS", - "from": 91443314, - "to": 91442071, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254140, - "label": "PRODUCES", - "from": 3709102, - "to": 3681630, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481763, - "label": "BINDS", - "from": 91443384, - "to": 3685207, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254146, - "label": "CONSUMED_BY", - "from": 3681362, - "to": 3709104, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481762, - "label": "BINDS", - "from": 91443383, - "to": 91442171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188611, - "label": "CATALYZES", - "from": 3707987, - "to": 3692743, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221377, - "label": "CONSUMED_BY", - "from": 3679456, - "to": 3705348, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481761, - "label": "BINDS", - "from": 91443382, - "to": 91441938, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254144, - "label": "PRODUCES", - "from": 3709103, - "to": 3678993, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481760, - "label": "BINDS", - "from": 91443381, - "to": 91441586, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254150, - "label": "CONSUMED_BY", - "from": 3684068, - "to": 3709105, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481766, - "label": "BINDS", - "from": 91443387, - "to": 91441736, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481765, - "label": "BINDS", - "from": 91443386, - "to": 91442343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481764, - "label": "BINDS", - "from": 91443385, - "to": 3687555, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481771, - "label": "BINDS", - "from": 91443392, - "to": 3683046, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188616, - "label": "CATALYZES", - "from": 3692745, - "to": 3705283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254153, - "label": "CONSUMED_BY", - "from": 3681809, - "to": 3709106, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481768, - "label": "BINDS", - "from": 91443389, - "to": 91441882, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254159, - "label": "CONSUMED_BY", - "from": 3684262, - "to": 3709107, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481775, - "label": "BINDS", - "from": 91443396, - "to": 91441791, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481774, - "label": "BINDS", - "from": 91443395, - "to": 91442332, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 254156, - "label": "PRODUCES", - "from": 3709106, - "to": 3677817, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481772, - "label": "BINDS", - "from": 91443393, - "to": 91441590, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221395, - "label": "PRODUCES", - "from": 3705351, - "to": 3670487, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188627, - "label": "CATALYZES", - "from": 3710433, - "to": 3692751, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221392, - "label": "CONSUMED_BY", - "from": 3677678, - "to": 3705351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481776, - "label": "BINDS", - "from": 91443397, - "to": 3678688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221398, - "label": "CONSUMED_BY", - "from": 3684243, - "to": 3705352, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481781, - "label": "BINDS", - "from": 91443402, - "to": 91441992, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481780, - "label": "BINDS", - "from": 91443401, - "to": 91441946, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188629, - "label": "CATALYZES", - "from": 3710466, - "to": 3692752, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481786, - "label": "BINDS", - "from": 91443407, - "to": 91441836, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188635, - "label": "CATALYZES", - "from": 3714255, - "to": 3692755, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221401, - "label": "PRODUCES", - "from": 3705352, - "to": 3679109, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481785, - "label": "BINDS", - "from": 91443406, - "to": 91441854, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481784, - "label": "BINDS", - "from": 91443405, - "to": 3687185, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481791, - "label": "BINDS", - "from": 91443412, - "to": 91442154, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481790, - "label": "BINDS", - "from": 91443411, - "to": 91442286, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221406, - "label": "PRODUCES", - "from": 3705353, - "to": 3679153, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 188636, - "label": "CATALYZES", - "from": 3692755, - "to": 3707873, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481788, - "label": "BINDS", - "from": 91443409, - "to": 91442134, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221404, - "label": "CONSUMED_BY", - "from": 3681949, - "to": 3705353, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481728, - "label": "BINDS", - "from": 91443349, - "to": 91441696, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481734, - "label": "BINDS", - "from": 91443355, - "to": 91442068, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481733, - "label": "BINDS", - "from": 91443354, - "to": 91442131, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481739, - "label": "BINDS", - "from": 91443360, - "to": 91441826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221418, - "label": "PRODUCES", - "from": 3705356, - "to": 3681436, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481738, - "label": "BINDS", - "from": 91443359, - "to": 91442334, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481737, - "label": "BINDS", - "from": 91443358, - "to": 91441544, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221416, - "label": "CONSUMED_BY", - "from": 3681438, - "to": 3705356, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481736, - "label": "BINDS", - "from": 91443357, - "to": 91442162, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481741, - "label": "BINDS", - "from": 91443362, - "to": 91441575, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481747, - "label": "BINDS", - "from": 91443368, - "to": 3687302, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481745, - "label": "BINDS", - "from": 91443366, - "to": 91442008, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481744, - "label": "BINDS", - "from": 91443365, - "to": 91442000, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481751, - "label": "BINDS", - "from": 91443372, - "to": 3686332, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221431, - "label": "CONSUMED_BY", - "from": 3677603, - "to": 3705359, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481750, - "label": "BINDS", - "from": 91443371, - "to": 91441581, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481749, - "label": "BINDS", - "from": 91443370, - "to": 91442167, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481748, - "label": "BINDS", - "from": 91443369, - "to": 91441549, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221435, - "label": "PRODUCES", - "from": 3705359, - "to": 3679438, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481753, - "label": "BINDS", - "from": 91443374, - "to": 91441856, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481752, - "label": "BINDS", - "from": 91443373, - "to": 3683164, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481756, - "label": "BINDS", - "from": 91443377, - "to": 91441599, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221442, - "label": "PRODUCES", - "from": 3705361, - "to": 3684019, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482081, - "label": "BINDS", - "from": 91443734, - "to": 91441621, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482087, - "label": "BINDS", - "from": 91443740, - "to": 91441881, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482086, - "label": "BINDS", - "from": 91443739, - "to": 91441694, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482085, - "label": "BINDS", - "from": 91443738, - "to": 91441542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221444, - "label": "CONSUMED_BY", - "from": 3681902, - "to": 3705362, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482084, - "label": "BINDS", - "from": 91443737, - "to": 3685075, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482091, - "label": "BINDS", - "from": 91443745, - "to": 91442030, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482089, - "label": "BINDS", - "from": 91443743, - "to": 91442333, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221448, - "label": "CONSUMED_BY", - "from": 3677474, - "to": 3705363, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482088, - "label": "BINDS", - "from": 91443741, - "to": 91441605, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221455, - "label": "CONSUMED_BY", - "from": 3670604, - "to": 3705365, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482095, - "label": "BINDS", - "from": 91443750, - "to": 3682773, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221454, - "label": "PRODUCES", - "from": 3705364, - "to": 3714927, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482094, - "label": "BINDS", - "from": 91443749, - "to": 91441711, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221453, - "label": "PRODUCES", - "from": 3705364, - "to": 3715027, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482093, - "label": "BINDS", - "from": 91443747, - "to": 91442081, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221452, - "label": "CONSUMED_BY", - "from": 3711670, - "to": 3705364, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221459, - "label": "CONSUMED_BY", - "from": 3684271, - "to": 3705366, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482098, - "label": "BINDS", - "from": 91443753, - "to": 91441593, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482097, - "label": "BINDS", - "from": 91443752, - "to": 91441547, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482096, - "label": "BINDS", - "from": 91443751, - "to": 3685103, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482103, - "label": "BINDS", - "from": 91443758, - "to": 91442084, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482102, - "label": "BINDS", - "from": 91443757, - "to": 3686058, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221461, - "label": "PRODUCES", - "from": 3705366, - "to": 3681956, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482101, - "label": "BINDS", - "from": 91443756, - "to": 91441904, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221467, - "label": "CONSUMED_BY", - "from": 3681210, - "to": 3705368, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482107, - "label": "BINDS", - "from": 91443762, - "to": 3687244, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482106, - "label": "BINDS", - "from": 91443761, - "to": 91441888, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482105, - "label": "BINDS", - "from": 91443760, - "to": 91442089, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482104, - "label": "BINDS", - "from": 91443759, - "to": 91442356, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482110, - "label": "BINDS", - "from": 91443765, - "to": 91441598, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482108, - "label": "BINDS", - "from": 91443763, - "to": 3685371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482051, - "label": "BINDS", - "from": 91443702, - "to": 91442240, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482050, - "label": "BINDS", - "from": 91443701, - "to": 3685004, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482049, - "label": "BINDS", - "from": 91443700, - "to": 91441573, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482048, - "label": "BINDS", - "from": 91443699, - "to": 91441886, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221478, - "label": "CONSUMED_BY", - "from": 3684048, - "to": 3705371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482054, - "label": "BINDS", - "from": 91443705, - "to": 91442107, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482053, - "label": "BINDS", - "from": 91443704, - "to": 91442115, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482052, - "label": "BINDS", - "from": 91443703, - "to": 91442094, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482057, - "label": "BINDS", - "from": 91443708, - "to": 91442135, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482063, - "label": "BINDS", - "from": 91443714, - "to": 91442245, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482062, - "label": "BINDS", - "from": 91443713, - "to": 91441531, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482061, - "label": "BINDS", - "from": 91443712, - "to": 91441972, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482060, - "label": "BINDS", - "from": 91443711, - "to": 91442289, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482067, - "label": "BINDS", - "from": 91443719, - "to": 91441528, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221490, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3705374, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482064, - "label": "BINDS", - "from": 91443715, - "to": 91441552, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221494, - "label": "PRODUCES", - "from": 3705374, - "to": 3677171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482070, - "label": "BINDS", - "from": 91443723, - "to": 91441658, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482069, - "label": "BINDS", - "from": 91443721, - "to": 91441749, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482068, - "label": "BINDS", - "from": 91443720, - "to": 3678660, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482075, - "label": "BINDS", - "from": 91443728, - "to": 91441876, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482074, - "label": "BINDS", - "from": 91443727, - "to": 91441689, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482073, - "label": "BINDS", - "from": 91443726, - "to": 91441537, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221503, - "label": "CONSUMED_BY", - "from": 3682203, - "to": 3705376, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482079, - "label": "BINDS", - "from": 91443732, - "to": 91441684, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482078, - "label": "BINDS", - "from": 91443731, - "to": 3685038, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352568, - "label": "BINDS", - "from": 3721590, - "to": 3679552, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221501, - "label": "PRODUCES", - "from": 3705375, - "to": 3675953, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482077, - "label": "BINDS", - "from": 91443730, - "to": 91442031, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221500, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3705375, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482076, - "label": "BINDS", - "from": 91443729, - "to": 91442011, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352570, - "label": "REGULATES", - "from": 3711313, - "to": 3721590, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482147, - "label": "BINDS", - "from": 91443815, - "to": 91442277, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221505, - "label": "PRODUCES", - "from": 3705376, - "to": 3682153, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482145, - "label": "BINDS", - "from": 91443813, - "to": 3686110, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482144, - "label": "BINDS", - "from": 91443811, - "to": 3687209, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482150, - "label": "BINDS", - "from": 91443818, - "to": 91442322, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482148, - "label": "BINDS", - "from": 91443816, - "to": 91442181, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482155, - "label": "BINDS", - "from": 91443824, - "to": 91441632, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482152, - "label": "BINDS", - "from": 91443820, - "to": 91441951, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221519, - "label": "PRODUCES", - "from": 3705379, - "to": 3681835, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221518, - "label": "CONSUMED_BY", - "from": 3681133, - "to": 3705379, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482157, - "label": "BINDS", - "from": 91443827, - "to": 3685364, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482156, - "label": "BINDS", - "from": 91443826, - "to": 91441874, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221516, - "label": "PRODUCES", - "from": 3705378, - "to": 3677522, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482163, - "label": "BINDS", - "from": 91443836, - "to": 91441958, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482161, - "label": "BINDS", - "from": 91443834, - "to": 3682916, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482160, - "label": "BINDS", - "from": 91443833, - "to": 91442186, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352593, - "label": "REGULATES", - "from": 3712308, - "to": 3721596, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482167, - "label": "BINDS", - "from": 91443841, - "to": 91441935, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352592, - "label": "REGULATES", - "from": 3721596, - "to": 3702043, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482166, - "label": "BINDS", - "from": 91443839, - "to": 91441637, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482164, - "label": "BINDS", - "from": 91443837, - "to": 91441515, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482171, - "label": "BINDS", - "from": 91443847, - "to": 3678889, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482170, - "label": "BINDS", - "from": 91443846, - "to": 91442185, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482168, - "label": "BINDS", - "from": 91443844, - "to": 3687270, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482175, - "label": "BINDS", - "from": 91443853, - "to": 91441963, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482115, - "label": "BINDS", - "from": 91443773, - "to": 91442141, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482114, - "label": "BINDS", - "from": 91443772, - "to": 91442091, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482113, - "label": "BINDS", - "from": 91443771, - "to": 3678586, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482112, - "label": "BINDS", - "from": 91443770, - "to": 91441795, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482117, - "label": "BINDS", - "from": 91443775, - "to": 91442264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482116, - "label": "BINDS", - "from": 91443774, - "to": 91441930, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482123, - "label": "BINDS", - "from": 91443781, - "to": 91442165, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482127, - "label": "BINDS", - "from": 91443787, - "to": 91441557, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482126, - "label": "BINDS", - "from": 91443786, - "to": 91441597, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482125, - "label": "BINDS", - "from": 91443784, - "to": 3685132, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482124, - "label": "BINDS", - "from": 91443782, - "to": 91442278, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482131, - "label": "BINDS", - "from": 91443794, - "to": 91442340, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482129, - "label": "BINDS", - "from": 91443792, - "to": 91441830, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482128, - "label": "BINDS", - "from": 91443788, - "to": 91441936, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482135, - "label": "BINDS", - "from": 91443798, - "to": 3679813, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482133, - "label": "BINDS", - "from": 91443796, - "to": 3682996, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482139, - "label": "BINDS", - "from": 91443802, - "to": 91442319, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482138, - "label": "BINDS", - "from": 91443801, - "to": 91441602, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482136, - "label": "BINDS", - "from": 91443799, - "to": 91442176, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482143, - "label": "BINDS", - "from": 91443809, - "to": 91441734, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482141, - "label": "BINDS", - "from": 91443806, - "to": 91442037, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482140, - "label": "BINDS", - "from": 91443803, - "to": 91441943, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352645, - "label": "REGULATES", - "from": 3711207, - "to": 3721610, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352644, - "label": "REGULATES", - "from": 3721610, - "to": 3700139, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481954, - "label": "BINDS", - "from": 91443579, - "to": 91441939, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481953, - "label": "BINDS", - "from": 91443578, - "to": 91442006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481952, - "label": "BINDS", - "from": 91443577, - "to": 91442251, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481958, - "label": "BINDS", - "from": 91443583, - "to": 91442287, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352643, - "label": "BINDS", - "from": 3721610, - "to": 3685447, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481956, - "label": "BINDS", - "from": 91443581, - "to": 3678860, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481963, - "label": "BINDS", - "from": 91443591, - "to": 91442257, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481960, - "label": "BINDS", - "from": 91443585, - "to": 91442336, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481966, - "label": "BINDS", - "from": 91443594, - "to": 91441701, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481965, - "label": "BINDS", - "from": 91443593, - "to": 91441998, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481964, - "label": "BINDS", - "from": 91443592, - "to": 91441558, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481971, - "label": "BINDS", - "from": 91443602, - "to": 91441673, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352660, - "label": "REGULATES", - "from": 3711285, - "to": 3721614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481970, - "label": "BINDS", - "from": 91443601, - "to": 91442292, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481969, - "label": "BINDS", - "from": 91443598, - "to": 3686302, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481975, - "label": "BINDS", - "from": 91443606, - "to": 91442262, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352656, - "label": "REGULATES", - "from": 3708153, - "to": 3721613, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481974, - "label": "BINDS", - "from": 91443605, - "to": 3685209, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352659, - "label": "REGULATES", - "from": 3721614, - "to": 3699183, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352658, - "label": "BINDS", - "from": 3721614, - "to": 3679545, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481972, - "label": "BINDS", - "from": 91443603, - "to": 91442012, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481978, - "label": "BINDS", - "from": 91443612, - "to": 91442038, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481977, - "label": "BINDS", - "from": 91443608, - "to": 91442184, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352671, - "label": "REGULATES", - "from": 3677368, - "to": 3721617, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481976, - "label": "BINDS", - "from": 91443607, - "to": 91441564, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481983, - "label": "BINDS", - "from": 91443617, - "to": 91442020, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481982, - "label": "BINDS", - "from": 91443616, - "to": 91441847, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481923, - "label": "BINDS", - "from": 91443546, - "to": 91441839, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481921, - "label": "BINDS", - "from": 91443544, - "to": 91441982, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481920, - "label": "BINDS", - "from": 91443543, - "to": 91441853, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385441, - "label": "ELEMENT_OF", - "from": 3716871, - "to": 3725972, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481926, - "label": "BINDS", - "from": 91443549, - "to": 91441543, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481924, - "label": "BINDS", - "from": 91443547, - "to": 91442069, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481931, - "label": "BINDS", - "from": 91443554, - "to": 3679602, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481928, - "label": "BINDS", - "from": 91443551, - "to": 91442350, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481935, - "label": "BINDS", - "from": 91443558, - "to": 91441844, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481933, - "label": "BINDS", - "from": 91443556, - "to": 91442331, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385451, - "label": "ELEMENT_OF", - "from": 3693738, - "to": 3725975, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481932, - "label": "BINDS", - "from": 91443555, - "to": 91441858, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385461, - "label": "ELEMENT_OF", - "from": 3695049, - "to": 3725976, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481938, - "label": "BINDS", - "from": 91443561, - "to": 91441548, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481936, - "label": "BINDS", - "from": 91443559, - "to": 91442027, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481943, - "label": "BINDS", - "from": 91443567, - "to": 91441649, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481941, - "label": "BINDS", - "from": 91443564, - "to": 91442222, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481940, - "label": "BINDS", - "from": 91443563, - "to": 91442247, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481947, - "label": "BINDS", - "from": 91443572, - "to": 91441563, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481946, - "label": "BINDS", - "from": 91443571, - "to": 3686299, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481945, - "label": "BINDS", - "from": 91443570, - "to": 91442117, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481951, - "label": "BINDS", - "from": 91443576, - "to": 91441553, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352697, - "label": "REGULATES", - "from": 3721624, - "to": 3695017, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352696, - "label": "BINDS", - "from": 3721624, - "to": 3683069, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481949, - "label": "BINDS", - "from": 91443574, - "to": 3685016, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481948, - "label": "BINDS", - "from": 91443573, - "to": 91442061, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352698, - "label": "REGULATES", - "from": 3710208, - "to": 3721624, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482018, - "label": "BINDS", - "from": 91443666, - "to": 91441550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482023, - "label": "BINDS", - "from": 91443671, - "to": 91441688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385472, - "label": "ELEMENT_OF", - "from": 3701460, - "to": 3725978, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482022, - "label": "BINDS", - "from": 91443670, - "to": 3675634, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385474, - "label": "ELEMENT_OF", - "from": 3690558, - "to": 3725979, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482026, - "label": "BINDS", - "from": 91443677, - "to": 91442329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482025, - "label": "BINDS", - "from": 91443673, - "to": 91442096, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482024, - "label": "BINDS", - "from": 91443672, - "to": 91442274, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482031, - "label": "BINDS", - "from": 91443682, - "to": 3685368, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482030, - "label": "BINDS", - "from": 91443681, - "to": 91442313, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385483, - "label": "ELEMENT_OF", - "from": 3699956, - "to": 3725983, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482034, - "label": "BINDS", - "from": 91443685, - "to": 91441693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482033, - "label": "BINDS", - "from": 91443684, - "to": 91441584, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482039, - "label": "BINDS", - "from": 91443690, - "to": 91441583, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482038, - "label": "BINDS", - "from": 91443689, - "to": 91441616, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482037, - "label": "BINDS", - "from": 91443688, - "to": 91442101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385491, - "label": "ELEMENT_OF", - "from": 3690560, - "to": 3725986, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482036, - "label": "BINDS", - "from": 91443687, - "to": 91442279, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352732, - "label": "REGULATES", - "from": 3712357, - "to": 3721633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482042, - "label": "BINDS", - "from": 91443693, - "to": 91442044, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482040, - "label": "BINDS", - "from": 91443691, - "to": 3679748, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482046, - "label": "BINDS", - "from": 91443697, - "to": 91441698, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482045, - "label": "BINDS", - "from": 91443696, - "to": 91441759, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482044, - "label": "BINDS", - "from": 91443695, - "to": 3687260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481987, - "label": "BINDS", - "from": 91443624, - "to": 91441569, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481986, - "label": "BINDS", - "from": 91443623, - "to": 3686100, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481984, - "label": "BINDS", - "from": 91443618, - "to": 91441862, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481991, - "label": "BINDS", - "from": 91443628, - "to": 91442058, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481990, - "label": "BINDS", - "from": 91443627, - "to": 91442210, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481989, - "label": "BINDS", - "from": 91443626, - "to": 91441861, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481988, - "label": "BINDS", - "from": 91443625, - "to": 91442265, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481995, - "label": "BINDS", - "from": 91443634, - "to": 91441634, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481994, - "label": "BINDS", - "from": 91443633, - "to": 91442028, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481992, - "label": "BINDS", - "from": 91443629, - "to": 3687503, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481999, - "label": "BINDS", - "from": 91443638, - "to": 91442267, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385513, - "label": "ELEMENT_OF", - "from": 3702738, - "to": 3725987, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481996, - "label": "BINDS", - "from": 91443635, - "to": 91441920, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385525, - "label": "ELEMENT_OF", - "from": 3693807, - "to": 3725993, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482003, - "label": "BINDS", - "from": 91443645, - "to": 91441524, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482002, - "label": "BINDS", - "from": 91443644, - "to": 91442260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352756, - "label": "REGULATES", - "from": 3710228, - "to": 3721639, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482001, - "label": "BINDS", - "from": 91443640, - "to": 91441647, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482000, - "label": "BINDS", - "from": 91443639, - "to": 91441849, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482004, - "label": "BINDS", - "from": 91443646, - "to": 3678454, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482011, - "label": "BINDS", - "from": 91443656, - "to": 91442182, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482010, - "label": "BINDS", - "from": 91443655, - "to": 3686206, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482008, - "label": "BINDS", - "from": 91443650, - "to": 3678486, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385529, - "label": "ELEMENT_OF", - "from": 3717109, - "to": 3725995, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482015, - "label": "BINDS", - "from": 91443660, - "to": 91441680, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482014, - "label": "BINDS", - "from": 91443659, - "to": 3686350, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482013, - "label": "BINDS", - "from": 91443658, - "to": 91441653, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482012, - "label": "BINDS", - "from": 91443657, - "to": 91442270, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352769, - "label": "BINDS", - "from": 3721643, - "to": 3678458, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352771, - "label": "REGULATES", - "from": 3708153, - "to": 3721643, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385556, - "label": "ELEMENT_OF", - "from": 3711860, - "to": 3726004, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352788, - "label": "BINDS", - "from": 3721648, - "to": 3679683, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352790, - "label": "REGULATES", - "from": 3707928, - "to": 3721648, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352798, - "label": "REGULATES", - "from": 3712586, - "to": 3721650, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385561, - "label": "ELEMENT_OF", - "from": 3701395, - "to": 3726005, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385575, - "label": "ELEMENT_OF", - "from": 3699220, - "to": 3726015, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385577, - "label": "ELEMENT_OF", - "from": 3706973, - "to": 3726016, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385604, - "label": "ELEMENT_OF", - "from": 3702018, - "to": 3726025, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221761, - "label": "CONSUMED_BY", - "from": 3681206, - "to": 3705380, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221767, - "label": "PRODUCES", - "from": 3705381, - "to": 3681895, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221765, - "label": "CONSUMED_BY", - "from": 3677446, - "to": 3705381, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385613, - "label": "ELEMENT_OF", - "from": 3687666, - "to": 3726028, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221770, - "label": "CONSUMED_BY", - "from": 3669639, - "to": 3705382, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385609, - "label": "ELEMENT_OF", - "from": 3701395, - "to": 3726026, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221779, - "label": "CONSUMED_BY", - "from": 3681241, - "to": 3705384, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385622, - "label": "ELEMENT_OF", - "from": 3693906, - "to": 3726030, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221781, - "label": "PRODUCES", - "from": 3705384, - "to": 3714020, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221787, - "label": "PRODUCES", - "from": 3705385, - "to": 3684182, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221790, - "label": "CONSUMED_BY", - "from": 3667436, - "to": 3705386, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385637, - "label": "ELEMENT_OF", - "from": 3707054, - "to": 3726034, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221794, - "label": "CONSUMED_BY", - "from": 3671475, - "to": 3705387, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385639, - "label": "ELEMENT_OF", - "from": 3702533, - "to": 3726035, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221792, - "label": "PRODUCES", - "from": 3705386, - "to": 3684215, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221797, - "label": "PRODUCES", - "from": 3705387, - "to": 3671476, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385652, - "label": "ELEMENT_OF", - "from": 3701744, - "to": 3726039, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385655, - "label": "ELEMENT_OF", - "from": 3697104, - "to": 3726040, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385649, - "label": "ELEMENT_OF", - "from": 3702821, - "to": 3726038, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221814, - "label": "CONSUMED_BY", - "from": 3681298, - "to": 3705391, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221812, - "label": "PRODUCES", - "from": 3705390, - "to": 3713899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221818, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3705392, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385663, - "label": "ELEMENT_OF", - "from": 3701894, - "to": 3726042, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221816, - "label": "PRODUCES", - "from": 3705391, - "to": 3679107, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221820, - "label": "PRODUCES", - "from": 3705392, - "to": 3666463, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385669, - "label": "ELEMENT_OF", - "from": 3690520, - "to": 3726044, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221824, - "label": "PRODUCES", - "from": 3705393, - "to": 3674669, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221843, - "label": "PRODUCES", - "from": 3705396, - "to": 3677345, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221842, - "label": "PRODUCES", - "from": 3705396, - "to": 3677437, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221841, - "label": "PRODUCES", - "from": 3705396, - "to": 3684289, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385687, - "label": "ELEMENT_OF", - "from": 3700221, - "to": 3726048, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221840, - "label": "CONSUMED_BY", - "from": 3677401, - "to": 3705396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221846, - "label": "PRODUCES", - "from": 3705397, - "to": 3683871, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221844, - "label": "CONSUMED_BY", - "from": 3666419, - "to": 3705397, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221851, - "label": "CONSUMED_BY", - "from": 3667424, - "to": 3705399, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385692, - "label": "ELEMENT_OF", - "from": 3690771, - "to": 3726051, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221850, - "label": "PRODUCES", - "from": 3705398, - "to": 3672864, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221848, - "label": "CONSUMED_BY", - "from": 3668188, - "to": 3705398, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385691, - "label": "ELEMENT_OF", - "from": 3712147, - "to": 3726050, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221859, - "label": "PRODUCES", - "from": 3705400, - "to": 3670604, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385701, - "label": "ELEMENT_OF", - "from": 3711847, - "to": 3726053, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221857, - "label": "CONSUMED_BY", - "from": 3679284, - "to": 3705400, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385698, - "label": "ELEMENT_OF", - "from": 3716673, - "to": 3726052, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221860, - "label": "CONSUMED_BY", - "from": 3681835, - "to": 3705401, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385710, - "label": "ELEMENT_OF", - "from": 3694054, - "to": 3726058, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221864, - "label": "PRODUCES", - "from": 3705401, - "to": 3683983, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221870, - "label": "PRODUCES", - "from": 3705402, - "to": 3669301, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320169, - "label": "BINDS", - "from": 3717401, - "to": 3682778, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385707, - "label": "ELEMENT_OF", - "from": 3707222, - "to": 3726056, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221868, - "label": "CONSUMED_BY", - "from": 3682154, - "to": 3705402, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320171, - "label": "REGULATES", - "from": 3711317, - "to": 3717401, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221875, - "label": "PRODUCES", - "from": 3705403, - "to": 3681534, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385712, - "label": "ELEMENT_OF", - "from": 3716813, - "to": 3726059, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221876, - "label": "PRODUCES", - "from": 3705403, - "to": 3670256, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320188, - "label": "REGULATES", - "from": 3717406, - "to": 3687956, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320189, - "label": "REGULATES", - "from": 3683881, - "to": 3717406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385724, - "label": "ELEMENT_OF", - "from": 3695876, - "to": 3726064, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221881, - "label": "CONSUMED_BY", - "from": 3684308, - "to": 3705405, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320191, - "label": "BINDS", - "from": 3717407, - "to": 3683260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320184, - "label": "BINDS", - "from": 3717405, - "to": 3675620, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320186, - "label": "REGULATES", - "from": 3710208, - "to": 3717405, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221890, - "label": "PRODUCES", - "from": 3705407, - "to": 3685535, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221889, - "label": "CONSUMED_BY", - "from": 3684009, - "to": 3705407, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221895, - "label": "PRODUCES", - "from": 3705408, - "to": 3681852, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320192, - "label": "REGULATES", - "from": 3717407, - "to": 3694812, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189126, - "label": "CATALYZES", - "from": 3692760, - "to": 3708823, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221894, - "label": "CONSUMED_BY", - "from": 3677711, - "to": 3705408, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320193, - "label": "REGULATES", - "from": 3711179, - "to": 3717407, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189125, - "label": "CATALYZES", - "from": 3712364, - "to": 3692760, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320204, - "label": "REGULATES", - "from": 3681836, - "to": 3717410, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320206, - "label": "BINDS", - "from": 3717411, - "to": 3679543, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221903, - "label": "CONSUMED_BY", - "from": 3677714, - "to": 3705410, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385737, - "label": "ELEMENT_OF", - "from": 3702608, - "to": 3726068, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320203, - "label": "REGULATES", - "from": 3717410, - "to": 3687756, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320213, - "label": "BINDS", - "from": 3717413, - "to": 3683042, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320215, - "label": "REGULATES", - "from": 3714706, - "to": 3717413, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320208, - "label": "REGULATES", - "from": 3710270, - "to": 3717411, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385745, - "label": "ELEMENT_OF", - "from": 3699071, - "to": 3726071, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189143, - "label": "CATALYZES", - "from": 3705938, - "to": 3692769, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221914, - "label": "PRODUCES", - "from": 3705412, - "to": 3669030, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221912, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3705412, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385755, - "label": "ELEMENT_OF", - "from": 3698630, - "to": 3726074, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320228, - "label": "BINDS", - "from": 3717417, - "to": 3685242, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221922, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3705414, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320229, - "label": "REGULATES", - "from": 3717417, - "to": 3699336, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320230, - "label": "REGULATES", - "from": 3708157, - "to": 3717417, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385760, - "label": "ELEMENT_OF", - "from": 3695887, - "to": 3726075, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221925, - "label": "PRODUCES", - "from": 3705414, - "to": 3681616, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320236, - "label": "REGULATES", - "from": 3717419, - "to": 3726969, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385773, - "label": "ELEMENT_OF", - "from": 3702933, - "to": 3726080, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221930, - "label": "PRODUCES", - "from": 3705415, - "to": 3679445, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320237, - "label": "REGULATES", - "from": 3712313, - "to": 3717419, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221928, - "label": "CONSUMED_BY", - "from": 3681398, - "to": 3705415, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385774, - "label": "ELEMENT_OF", - "from": 3717068, - "to": 3726081, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189161, - "label": "CATALYZES", - "from": 3710516, - "to": 3692778, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320232, - "label": "REGULATES", - "from": 3717418, - "to": 3689021, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320233, - "label": "REGULATES", - "from": 3684128, - "to": 3717418, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221932, - "label": "CONSUMED_BY", - "from": 3681364, - "to": 3705416, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385770, - "label": "ELEMENT_OF", - "from": 3694651, - "to": 3726079, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320235, - "label": "BINDS", - "from": 3717419, - "to": 3683312, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221938, - "label": "CONSUMED_BY", - "from": 3679114, - "to": 3705417, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320245, - "label": "REGULATES", - "from": 3710270, - "to": 3717421, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189171, - "label": "CATALYZES", - "from": 3704366, - "to": 3692783, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320247, - "label": "REGULATES", - "from": 3717422, - "to": 3685965, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221936, - "label": "PRODUCES", - "from": 3705416, - "to": 3677687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221943, - "label": "PRODUCES", - "from": 3705417, - "to": 3679118, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320243, - "label": "BINDS", - "from": 3717421, - "to": 3687505, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221947, - "label": "PRODUCES", - "from": 3705418, - "to": 3681701, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189179, - "label": "CATALYZES", - "from": 3714249, - "to": 3692787, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385788, - "label": "ELEMENT_OF", - "from": 3698729, - "to": 3726084, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221945, - "label": "CONSUMED_BY", - "from": 3677474, - "to": 3705418, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189177, - "label": "CATALYZES", - "from": 3708304, - "to": 3692786, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320248, - "label": "REGULATES", - "from": 3666563, - "to": 3717422, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385785, - "label": "ELEMENT_OF", - "from": 3698834, - "to": 3726083, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221950, - "label": "CONSUMED_BY", - "from": 3681900, - "to": 3705419, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385797, - "label": "ELEMENT_OF", - "from": 3707214, - "to": 3726085, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189186, - "label": "CATALYZES", - "from": 3692790, - "to": 3708874, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221952, - "label": "PRODUCES", - "from": 3705419, - "to": 3679098, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189185, - "label": "CATALYZES", - "from": 3712754, - "to": 3692790, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481575, - "label": "BINDS", - "from": 91443194, - "to": 91441600, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481574, - "label": "BINDS", - "from": 91443193, - "to": 91441810, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481573, - "label": "BINDS", - "from": 91443192, - "to": 91442051, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320259, - "label": "REGULATES", - "from": 3708153, - "to": 3717425, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481572, - "label": "BINDS", - "from": 91443191, - "to": 91442046, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221962, - "label": "PRODUCES", - "from": 3705421, - "to": 3681273, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481578, - "label": "BINDS", - "from": 91443197, - "to": 91442057, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189195, - "label": "CATALYZES", - "from": 3704217, - "to": 3692795, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481577, - "label": "BINDS", - "from": 91443196, - "to": 91441704, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385807, - "label": "ELEMENT_OF", - "from": 3701573, - "to": 3726088, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221960, - "label": "CONSUMED_BY", - "from": 3681384, - "to": 3705421, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481576, - "label": "BINDS", - "from": 91443195, - "to": 3680020, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385801, - "label": "ELEMENT_OF", - "from": 3716976, - "to": 3726086, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385803, - "label": "ELEMENT_OF", - "from": 3690436, - "to": 3726087, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481580, - "label": "BINDS", - "from": 91443199, - "to": 91442126, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481587, - "label": "BINDS", - "from": 91443206, - "to": 91442366, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481586, - "label": "BINDS", - "from": 91443205, - "to": 91442253, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481585, - "label": "BINDS", - "from": 91443204, - "to": 91442060, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221968, - "label": "CONSUMED_BY", - "from": 3677691, - "to": 3705423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481584, - "label": "BINDS", - "from": 91443203, - "to": 91441949, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320272, - "label": "BINDS", - "from": 3717429, - "to": 3687452, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481590, - "label": "BINDS", - "from": 91443209, - "to": 91441898, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481589, - "label": "BINDS", - "from": 91443208, - "to": 91441709, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320274, - "label": "REGULATES", - "from": 3710270, - "to": 3717429, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385811, - "label": "ELEMENT_OF", - "from": 3701547, - "to": 3726089, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189205, - "label": "IN_PATHWAY", - "from": 3706300, - "to": 3692798, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221979, - "label": "CONSUMED_BY", - "from": 3675448, - "to": 3705425, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189208, - "label": "IN_PATHWAY", - "from": 3707638, - "to": 3692799, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320286, - "label": "BINDS", - "from": 3717433, - "to": 3684959, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481593, - "label": "BINDS", - "from": 91443212, - "to": 3685462, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481592, - "label": "BINDS", - "from": 91443211, - "to": 91441518, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320287, - "label": "REGULATES", - "from": 3717433, - "to": 3726456, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189214, - "label": "IN_PATHWAY", - "from": 3694325, - "to": 3692800, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481599, - "label": "BINDS", - "from": 91443218, - "to": 91441668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385817, - "label": "ELEMENT_OF", - "from": 3690423, - "to": 3726092, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481598, - "label": "BINDS", - "from": 91443217, - "to": 91442106, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481597, - "label": "BINDS", - "from": 91443216, - "to": 91441901, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221981, - "label": "PRODUCES", - "from": 3705425, - "to": 3675057, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385818, - "label": "ELEMENT_OF", - "from": 3687592, - "to": 3726093, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481596, - "label": "BINDS", - "from": 91443215, - "to": 91441842, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481539, - "label": "BINDS", - "from": 91443158, - "to": 91441507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385828, - "label": "ELEMENT_OF", - "from": 3698777, - "to": 3726096, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481538, - "label": "BINDS", - "from": 91443157, - "to": 91441775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481537, - "label": "BINDS", - "from": 91443156, - "to": 91442347, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221984, - "label": "CONSUMED_BY", - "from": 3677457, - "to": 3705426, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481536, - "label": "BINDS", - "from": 91443155, - "to": 91441662, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221991, - "label": "PRODUCES", - "from": 3705427, - "to": 3681857, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481543, - "label": "BINDS", - "from": 91443162, - "to": 91441798, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320288, - "label": "REGULATES", - "from": 3712313, - "to": 3717433, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221988, - "label": "CONSUMED_BY", - "from": 3681861, - "to": 3705427, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481540, - "label": "BINDS", - "from": 91443159, - "to": 91442078, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385826, - "label": "ELEMENT_OF", - "from": 3701809, - "to": 3726095, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481547, - "label": "BINDS", - "from": 91443166, - "to": 91442196, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221994, - "label": "CONSUMED_BY", - "from": 3676091, - "to": 3705428, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320302, - "label": "REGULATES", - "from": 3711183, - "to": 3717437, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189225, - "label": "IN_PATHWAY", - "from": 3707638, - "to": 3692801, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 221999, - "label": "CONSUMED_BY", - "from": 3677272, - "to": 3705429, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481551, - "label": "BINDS", - "from": 91443170, - "to": 91442269, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189231, - "label": "IN_PATHWAY", - "from": 3709179, - "to": 3692803, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481550, - "label": "BINDS", - "from": 91443169, - "to": 91442151, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189228, - "label": "IN_PATHWAY", - "from": 3692843, - "to": 3692802, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481549, - "label": "BINDS", - "from": 91443168, - "to": 91442244, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385835, - "label": "ELEMENT_OF", - "from": 3717010, - "to": 3726097, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481548, - "label": "BINDS", - "from": 91443167, - "to": 91441945, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481555, - "label": "BINDS", - "from": 91443174, - "to": 91441804, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320308, - "label": "BINDS", - "from": 3717439, - "to": 3687360, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481553, - "label": "BINDS", - "from": 91443172, - "to": 91441929, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320310, - "label": "REGULATES", - "from": 3718384, - "to": 3717439, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385846, - "label": "ELEMENT_OF", - "from": 3700067, - "to": 3726101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481552, - "label": "BINDS", - "from": 91443171, - "to": 91441800, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481556, - "label": "BINDS", - "from": 91443175, - "to": 3679831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481563, - "label": "BINDS", - "from": 91443182, - "to": 91441805, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481562, - "label": "BINDS", - "from": 91443181, - "to": 91441577, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481561, - "label": "BINDS", - "from": 91443180, - "to": 91442217, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320319, - "label": "REGULATES", - "from": 3717442, - "to": 3685816, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189241, - "label": "IN_PATHWAY", - "from": 3700718, - "to": 3692804, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481560, - "label": "BINDS", - "from": 91443179, - "to": 91442249, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189247, - "label": "IN_PATHWAY", - "from": 3709207, - "to": 3692806, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481566, - "label": "BINDS", - "from": 91443185, - "to": 91441699, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481565, - "label": "BINDS", - "from": 91443184, - "to": 3686250, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189245, - "label": "IN_PATHWAY", - "from": 3709102, - "to": 3692805, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481564, - "label": "BINDS", - "from": 91443183, - "to": 91441703, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189250, - "label": "IN_PATHWAY", - "from": 3692807, - "to": 3693027, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481635, - "label": "BINDS", - "from": 91443254, - "to": 91441848, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320324, - "label": "REGULATES", - "from": 3710228, - "to": 3717443, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189251, - "label": "IN_PATHWAY", - "from": 3700765, - "to": 3692807, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320326, - "label": "BINDS", - "from": 3717444, - "to": 3685432, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481633, - "label": "BINDS", - "from": 91443252, - "to": 91441516, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189249, - "label": "IN_PATHWAY", - "from": 3692807, - "to": 3692811, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481632, - "label": "BINDS", - "from": 91443251, - "to": 91442180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320320, - "label": "REGULATES", - "from": 3684061, - "to": 3717442, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481638, - "label": "BINDS", - "from": 91443257, - "to": 91442296, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189255, - "label": "IN_PATHWAY", - "from": 3709585, - "to": 3692808, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385859, - "label": "ELEMENT_OF", - "from": 3699498, - "to": 3726104, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481637, - "label": "BINDS", - "from": 91443256, - "to": 91441725, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320322, - "label": "BINDS", - "from": 3717443, - "to": 3686445, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481636, - "label": "BINDS", - "from": 91443255, - "to": 3679684, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189259, - "label": "IN_PATHWAY", - "from": 3707369, - "to": 3692809, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481641, - "label": "BINDS", - "from": 91443260, - "to": 91442237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189262, - "label": "IN_PATHWAY", - "from": 3706630, - "to": 3692810, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481647, - "label": "BINDS", - "from": 91443266, - "to": 91441743, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320328, - "label": "REGULATES", - "from": 3710270, - "to": 3717444, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481646, - "label": "BINDS", - "from": 91443265, - "to": 3687304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481645, - "label": "BINDS", - "from": 91443264, - "to": 3683147, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189261, - "label": "IN_PATHWAY", - "from": 3692810, - "to": 3692990, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481650, - "label": "BINDS", - "from": 91443269, - "to": 91442301, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481649, - "label": "BINDS", - "from": 91443268, - "to": 91441730, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481648, - "label": "BINDS", - "from": 91443267, - "to": 3683041, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385878, - "label": "ELEMENT_OF", - "from": 3694879, - "to": 3726106, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481653, - "label": "BINDS", - "from": 91443273, - "to": 91442242, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189274, - "label": "IN_PATHWAY", - "from": 3709243, - "to": 3692812, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481659, - "label": "BINDS", - "from": 91443280, - "to": 91441748, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481658, - "label": "BINDS", - "from": 91443279, - "to": 91441735, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481656, - "label": "BINDS", - "from": 91443277, - "to": 3687475, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385886, - "label": "ELEMENT_OF", - "from": 3693753, - "to": 3726110, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481662, - "label": "BINDS", - "from": 91443283, - "to": 91441718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320345, - "label": "REGULATES", - "from": 3717449, - "to": 3727975, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481661, - "label": "BINDS", - "from": 91443282, - "to": 91442306, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320346, - "label": "REGULATES", - "from": 3712313, - "to": 3717449, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481602, - "label": "BINDS", - "from": 91443221, - "to": 91442120, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481601, - "label": "BINDS", - "from": 91443220, - "to": 91441714, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385888, - "label": "ELEMENT_OF", - "from": 3700078, - "to": 3726111, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481605, - "label": "BINDS", - "from": 91443224, - "to": 91442248, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481604, - "label": "BINDS", - "from": 91443223, - "to": 91441523, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481610, - "label": "BINDS", - "from": 91443229, - "to": 91442054, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385903, - "label": "ELEMENT_OF", - "from": 3694657, - "to": 3726114, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481609, - "label": "BINDS", - "from": 91443228, - "to": 91441907, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481608, - "label": "BINDS", - "from": 91443227, - "to": 91441672, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481615, - "label": "BINDS", - "from": 91443234, - "to": 91442285, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481613, - "label": "BINDS", - "from": 91443232, - "to": 91442163, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481612, - "label": "BINDS", - "from": 91443231, - "to": 91441719, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320372, - "label": "REGULATES", - "from": 3711231, - "to": 3717456, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481619, - "label": "BINDS", - "from": 91443238, - "to": 91441961, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481616, - "label": "BINDS", - "from": 91443235, - "to": 3686094, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385910, - "label": "ELEMENT_OF", - "from": 3699044, - "to": 3726118, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481623, - "label": "BINDS", - "from": 91443242, - "to": 91441722, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320368, - "label": "REGULATES", - "from": 3710270, - "to": 3717455, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481622, - "label": "BINDS", - "from": 91443241, - "to": 3685345, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320370, - "label": "BINDS", - "from": 3717456, - "to": 3687513, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481621, - "label": "BINDS", - "from": 91443240, - "to": 91442321, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481627, - "label": "BINDS", - "from": 91443246, - "to": 91442314, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320381, - "label": "BINDS", - "from": 3717459, - "to": 3687381, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481626, - "label": "BINDS", - "from": 91443245, - "to": 91442290, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320383, - "label": "REGULATES", - "from": 3710609, - "to": 3717459, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385918, - "label": "ELEMENT_OF", - "from": 3697954, - "to": 3726123, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481624, - "label": "BINDS", - "from": 91443243, - "to": 91441843, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189311, - "label": "IN_PATHWAY", - "from": 3705375, - "to": 3692813, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320378, - "label": "REGULATES", - "from": 3717458, - "to": 3688779, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481629, - "label": "BINDS", - "from": 91443248, - "to": 91441908, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320379, - "label": "REGULATES", - "from": 3677788, - "to": 3717458, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189314, - "label": "IN_PATHWAY", - "from": 3692814, - "to": 3693014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320388, - "label": "BINDS", - "from": 3717461, - "to": 3678536, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320389, - "label": "REGULATES", - "from": 3717461, - "to": 3697719, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320390, - "label": "REGULATES", - "from": 3708423, - "to": 3717461, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320385, - "label": "REGULATES", - "from": 3717460, - "to": 3688904, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320386, - "label": "REGULATES", - "from": 3677495, - "to": 3717460, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189317, - "label": "IN_PATHWAY", - "from": 3706465, - "to": 3692814, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320396, - "label": "BINDS", - "from": 3717463, - "to": 3678661, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320397, - "label": "REGULATES", - "from": 3717463, - "to": 3726416, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189320, - "label": "IN_PATHWAY", - "from": 3692815, - "to": 3693012, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 320398, - "label": "REGULATES", - "from": 3712313, - "to": 3717463, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385935, - "label": "ELEMENT_OF", - "from": 3699542, - "to": 3726127, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189321, - "label": "IN_PATHWAY", - "from": 3706775, - "to": 3692815, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385931, - "label": "ELEMENT_OF", - "from": 3697648, - "to": 3726125, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189330, - "label": "IN_PATHWAY", - "from": 3707355, - "to": 3692817, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385940, - "label": "ELEMENT_OF", - "from": 3699854, - "to": 3726131, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385937, - "label": "ELEMENT_OF", - "from": 3716669, - "to": 3726128, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189339, - "label": "IN_PATHWAY", - "from": 3705451, - "to": 3692819, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189336, - "label": "IN_PATHWAY", - "from": 3706364, - "to": 3692818, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189343, - "label": "IN_PATHWAY", - "from": 3706741, - "to": 3692820, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189345, - "label": "IN_PATHWAY", - "from": 3706379, - "to": 3692821, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385953, - "label": "ELEMENT_OF", - "from": 3701863, - "to": 3726133, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189351, - "label": "IN_PATHWAY", - "from": 3708700, - "to": 3692822, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189358, - "label": "IN_PATHWAY", - "from": 3709400, - "to": 3692824, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 189356, - "label": "IN_PATHWAY", - "from": 3708755, - "to": 3692823, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385971, - "label": "ELEMENT_OF", - "from": 3694486, - "to": 3726136, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385970, - "label": "ELEMENT_OF", - "from": 3695066, - "to": 3726135, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385977, - "label": "ELEMENT_OF", - "from": 3699093, - "to": 3726137, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481506, - "label": "BINDS", - "from": 91443122, - "to": 3679958, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481511, - "label": "BINDS", - "from": 91443128, - "to": 91441745, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385986, - "label": "ELEMENT_OF", - "from": 3699616, - "to": 3726141, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481508, - "label": "BINDS", - "from": 91443124, - "to": 91442303, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385997, - "label": "ELEMENT_OF", - "from": 3717089, - "to": 3726146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481515, - "label": "BINDS", - "from": 91443133, - "to": 91442034, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481514, - "label": "BINDS", - "from": 91443132, - "to": 91442064, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481513, - "label": "BINDS", - "from": 91443131, - "to": 91441726, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481512, - "label": "BINDS", - "from": 91443130, - "to": 91441989, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 385992, - "label": "ELEMENT_OF", - "from": 3701879, - "to": 3726143, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481518, - "label": "BINDS", - "from": 91443137, - "to": 3679760, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481517, - "label": "BINDS", - "from": 91443136, - "to": 91442179, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481516, - "label": "BINDS", - "from": 91443135, - "to": 91441565, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481523, - "label": "BINDS", - "from": 91443142, - "to": 91442187, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386005, - "label": "ELEMENT_OF", - "from": 3720034, - "to": 3726147, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481520, - "label": "BINDS", - "from": 91443139, - "to": 91442308, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481527, - "label": "BINDS", - "from": 91443146, - "to": 91441613, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481526, - "label": "BINDS", - "from": 91443145, - "to": 91441879, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481525, - "label": "BINDS", - "from": 91443144, - "to": 91442342, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481524, - "label": "BINDS", - "from": 91443143, - "to": 91441997, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481531, - "label": "BINDS", - "from": 91443150, - "to": 91441535, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481530, - "label": "BINDS", - "from": 91443149, - "to": 3683274, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386015, - "label": "ELEMENT_OF", - "from": 3695000, - "to": 3726151, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481528, - "label": "BINDS", - "from": 91443147, - "to": 91442338, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481535, - "label": "BINDS", - "from": 91443154, - "to": 91442192, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178481532, - "label": "BINDS", - "from": 91443151, - "to": 91442205, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386020, - "label": "ELEMENT_OF", - "from": 3696244, - "to": 3726153, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386031, - "label": "ELEMENT_OF", - "from": 3712022, - "to": 3726155, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482850, - "label": "BINDS", - "from": 91444576, - "to": 91442198, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482849, - "label": "BINDS", - "from": 91444575, - "to": 91441610, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482855, - "label": "BINDS", - "from": 91444581, - "to": 91441984, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386051, - "label": "ELEMENT_OF", - "from": 3707187, - "to": 3726161, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482853, - "label": "BINDS", - "from": 91444579, - "to": 91441519, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482852, - "label": "BINDS", - "from": 91444578, - "to": 91441996, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482859, - "label": "BINDS", - "from": 91444585, - "to": 3686543, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386060, - "label": "ELEMENT_OF", - "from": 3698813, - "to": 3726164, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482857, - "label": "BINDS", - "from": 91444583, - "to": 3679943, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482863, - "label": "BINDS", - "from": 91444589, - "to": 91442004, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482862, - "label": "BINDS", - "from": 91444588, - "to": 3685389, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482861, - "label": "BINDS", - "from": 91444587, - "to": 91442203, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386058, - "label": "ELEMENT_OF", - "from": 3720004, - "to": 3726163, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482860, - "label": "BINDS", - "from": 91444586, - "to": 3679976, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482867, - "label": "BINDS", - "from": 91444593, - "to": 3685165, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482865, - "label": "BINDS", - "from": 91444591, - "to": 91442195, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482864, - "label": "BINDS", - "from": 91444590, - "to": 91441988, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386065, - "label": "ELEMENT_OF", - "from": 3706943, - "to": 3726166, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482870, - "label": "BINDS", - "from": 91444596, - "to": 91442118, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482868, - "label": "BINDS", - "from": 91444594, - "to": 91441777, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482875, - "label": "BINDS", - "from": 91444601, - "to": 91442013, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386079, - "label": "ELEMENT_OF", - "from": 3697579, - "to": 3726171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482873, - "label": "BINDS", - "from": 91444599, - "to": 91442209, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482879, - "label": "BINDS", - "from": 91444605, - "to": 91441872, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482877, - "label": "BINDS", - "from": 91444603, - "to": 91442093, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482876, - "label": "BINDS", - "from": 91444602, - "to": 91441741, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482818, - "label": "BINDS", - "from": 91444543, - "to": 91441852, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482816, - "label": "BINDS", - "from": 91444541, - "to": 91441797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222247, - "label": "PRODUCES", - "from": 3705430, - "to": 3682036, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482823, - "label": "BINDS", - "from": 91444548, - "to": 91441617, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482822, - "label": "BINDS", - "from": 91444547, - "to": 91441737, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222244, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3705430, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482820, - "label": "BINDS", - "from": 91444545, - "to": 91442032, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482826, - "label": "BINDS", - "from": 91444551, - "to": 91442188, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386095, - "label": "ELEMENT_OF", - "from": 3719903, - "to": 3726177, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482825, - "label": "BINDS", - "from": 91444550, - "to": 91442104, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482824, - "label": "BINDS", - "from": 91444549, - "to": 3687225, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222255, - "label": "PRODUCES", - "from": 3705432, - "to": 3677504, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482830, - "label": "BINDS", - "from": 91444556, - "to": 91442121, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482828, - "label": "BINDS", - "from": 91444553, - "to": 91442127, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482835, - "label": "BINDS", - "from": 91444561, - "to": 91441620, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482834, - "label": "BINDS", - "from": 91444560, - "to": 91441635, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482839, - "label": "BINDS", - "from": 91444565, - "to": 3682988, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386097, - "label": "ELEMENT_OF", - "from": 3697177, - "to": 3726178, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482838, - "label": "BINDS", - "from": 91444564, - "to": 91442193, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222266, - "label": "PRODUCES", - "from": 3705434, - "to": 3669565, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482842, - "label": "BINDS", - "from": 91444568, - "to": 91442236, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386110, - "label": "ELEMENT_OF", - "from": 3694066, - "to": 3726181, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222264, - "label": "CONSUMED_BY", - "from": 3670727, - "to": 3705434, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482840, - "label": "BINDS", - "from": 91444566, - "to": 91442133, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482847, - "label": "BINDS", - "from": 91444573, - "to": 91441625, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482846, - "label": "BINDS", - "from": 91444572, - "to": 91441640, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482844, - "label": "BINDS", - "from": 91444570, - "to": 91442223, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222274, - "label": "PRODUCES", - "from": 3705436, - "to": 3685580, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482914, - "label": "BINDS", - "from": 91444640, - "to": 91442281, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482913, - "label": "BINDS", - "from": 91444639, - "to": 91441980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222272, - "label": "CONSUMED_BY", - "from": 3681511, - "to": 3705436, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482912, - "label": "BINDS", - "from": 91444638, - "to": 91442035, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222279, - "label": "PRODUCES", - "from": 3705437, - "to": 3677794, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482919, - "label": "BINDS", - "from": 91444645, - "to": 91441576, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386112, - "label": "ELEMENT_OF", - "from": 3687596, - "to": 3726182, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222277, - "label": "CONSUMED_BY", - "from": 3677431, - "to": 3705437, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222283, - "label": "PRODUCES", - "from": 3705438, - "to": 3681797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482922, - "label": "BINDS", - "from": 91444648, - "to": 91441902, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222281, - "label": "CONSUMED_BY", - "from": 3681322, - "to": 3705438, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386127, - "label": "ELEMENT_OF", - "from": 3687209, - "to": 3726185, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482927, - "label": "BINDS", - "from": 91444653, - "to": 91442024, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482926, - "label": "BINDS", - "from": 91444652, - "to": 91442297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482925, - "label": "BINDS", - "from": 91444651, - "to": 91442302, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482924, - "label": "BINDS", - "from": 91444650, - "to": 91442041, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482929, - "label": "BINDS", - "from": 91444655, - "to": 91441594, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222295, - "label": "CONSUMED_BY", - "from": 3682144, - "to": 3705441, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482935, - "label": "BINDS", - "from": 91444661, - "to": 3685211, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482934, - "label": "BINDS", - "from": 91444660, - "to": 91442341, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482933, - "label": "BINDS", - "from": 91444659, - "to": 91441747, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482939, - "label": "BINDS", - "from": 91444665, - "to": 91441893, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482938, - "label": "BINDS", - "from": 91444664, - "to": 91441746, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482937, - "label": "BINDS", - "from": 91444663, - "to": 91442307, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386143, - "label": "ELEMENT_OF", - "from": 3693955, - "to": 3726188, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482936, - "label": "BINDS", - "from": 91444662, - "to": 91442048, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222302, - "label": "PRODUCES", - "from": 3705442, - "to": 3684144, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222300, - "label": "CONSUMED_BY", - "from": 3677401, - "to": 3705442, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482940, - "label": "BINDS", - "from": 91444666, - "to": 3679986, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222306, - "label": "PRODUCES", - "from": 3705443, - "to": 3681277, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222304, - "label": "CONSUMED_BY", - "from": 3684076, - "to": 3705443, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482880, - "label": "BINDS", - "from": 91444606, - "to": 91441906, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482887, - "label": "BINDS", - "from": 91444613, - "to": 3686226, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482886, - "label": "BINDS", - "from": 91444612, - "to": 91441751, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482885, - "label": "BINDS", - "from": 91444611, - "to": 91442215, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482891, - "label": "BINDS", - "from": 91444617, - "to": 91441769, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386159, - "label": "ELEMENT_OF", - "from": 3707270, - "to": 3726194, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482888, - "label": "BINDS", - "from": 91444614, - "to": 91442021, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482895, - "label": "BINDS", - "from": 91444621, - "to": 91441738, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222316, - "label": "CONSUMED_BY", - "from": 3681919, - "to": 3705446, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386154, - "label": "ELEMENT_OF", - "from": 3720034, - "to": 3726191, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482892, - "label": "BINDS", - "from": 91444618, - "to": 91442080, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482898, - "label": "BINDS", - "from": 91444624, - "to": 91442220, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482897, - "label": "BINDS", - "from": 91444623, - "to": 91441755, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222320, - "label": "CONSUMED_BY", - "from": 3679137, - "to": 3705447, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482903, - "label": "BINDS", - "from": 91444629, - "to": 3679584, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482902, - "label": "BINDS", - "from": 91444628, - "to": 91442111, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482901, - "label": "BINDS", - "from": 91444627, - "to": 91441643, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482900, - "label": "BINDS", - "from": 91444626, - "to": 91442029, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222331, - "label": "CONSUMED_BY", - "from": 3677196, - "to": 3705449, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482907, - "label": "BINDS", - "from": 91444633, - "to": 91441525, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482911, - "label": "BINDS", - "from": 91444637, - "to": 91442114, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222334, - "label": "CONSUMED_BY", - "from": 3681281, - "to": 3705450, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482909, - "label": "BINDS", - "from": 91444635, - "to": 91441760, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222332, - "label": "PRODUCES", - "from": 3705449, - "to": 3683914, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482723, - "label": "BINDS", - "from": 91444448, - "to": 91442239, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222338, - "label": "CONSUMED_BY", - "from": 3677464, - "to": 3705451, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482722, - "label": "BINDS", - "from": 91444447, - "to": 91442082, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482720, - "label": "BINDS", - "from": 91444445, - "to": 3678745, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482727, - "label": "BINDS", - "from": 91444452, - "to": 91441912, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482726, - "label": "BINDS", - "from": 91444451, - "to": 91441960, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482725, - "label": "BINDS", - "from": 91444450, - "to": 91441663, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222340, - "label": "PRODUCES", - "from": 3705451, - "to": 3681817, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482724, - "label": "BINDS", - "from": 91444449, - "to": 91441554, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482731, - "label": "BINDS", - "from": 91444456, - "to": 91442255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482730, - "label": "BINDS", - "from": 91444455, - "to": 91441687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482729, - "label": "BINDS", - "from": 91444454, - "to": 3678519, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222344, - "label": "PRODUCES", - "from": 3705452, - "to": 3673311, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482735, - "label": "BINDS", - "from": 91444460, - "to": 91442136, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222351, - "label": "PRODUCES", - "from": 3705453, - "to": 3711707, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482734, - "label": "BINDS", - "from": 91444459, - "to": 91442088, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222348, - "label": "CONSUMED_BY", - "from": 3714319, - "to": 3705453, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482732, - "label": "BINDS", - "from": 91444457, - "to": 3679699, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482739, - "label": "BINDS", - "from": 91444464, - "to": 3678513, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222354, - "label": "CONSUMED_BY", - "from": 3677478, - "to": 3705454, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482738, - "label": "BINDS", - "from": 91444463, - "to": 91441679, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482737, - "label": "BINDS", - "from": 91444462, - "to": 91441561, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482736, - "label": "BINDS", - "from": 91444461, - "to": 91441559, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482743, - "label": "BINDS", - "from": 91444468, - "to": 91442149, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482742, - "label": "BINDS", - "from": 91444467, - "to": 91441692, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482741, - "label": "BINDS", - "from": 91444466, - "to": 91441655, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222356, - "label": "PRODUCES", - "from": 3705454, - "to": 3675449, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482747, - "label": "BINDS", - "from": 91444472, - "to": 91442140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222366, - "label": "PRODUCES", - "from": 3705456, - "to": 3668270, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482750, - "label": "BINDS", - "from": 91444475, - "to": 91441695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482749, - "label": "BINDS", - "from": 91444474, - "to": 91442337, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222364, - "label": "CONSUMED_BY", - "from": 3668230, - "to": 3705456, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482690, - "label": "BINDS", - "from": 91444415, - "to": 3679950, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222369, - "label": "CONSUMED_BY", - "from": 3677401, - "to": 3705457, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222375, - "label": "CONSUMED_BY", - "from": 3684067, - "to": 3705458, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482694, - "label": "BINDS", - "from": 91444419, - "to": 3686512, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482693, - "label": "BINDS", - "from": 91444418, - "to": 91441589, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222372, - "label": "PRODUCES", - "from": 3705457, - "to": 3684272, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482699, - "label": "BINDS", - "from": 91444424, - "to": 3678887, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482698, - "label": "BINDS", - "from": 91444423, - "to": 91441825, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482697, - "label": "BINDS", - "from": 91444422, - "to": 91441636, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222383, - "label": "CONSUMED_BY", - "from": 3684277, - "to": 3705460, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482703, - "label": "BINDS", - "from": 91444428, - "to": 91441716, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482702, - "label": "BINDS", - "from": 91444427, - "to": 91442201, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482701, - "label": "BINDS", - "from": 91444426, - "to": 91441690, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222380, - "label": "CONSUMED_BY", - "from": 3677441, - "to": 3705459, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482700, - "label": "BINDS", - "from": 91444425, - "to": 91442023, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222387, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3705461, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482707, - "label": "BINDS", - "from": 91444432, - "to": 91442200, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482705, - "label": "BINDS", - "from": 91444430, - "to": 3678631, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222384, - "label": "PRODUCES", - "from": 3705460, - "to": 3684352, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482704, - "label": "BINDS", - "from": 91444429, - "to": 3678477, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482711, - "label": "BINDS", - "from": 91444436, - "to": 91441624, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222390, - "label": "CONSUMED_BY", - "from": 3681365, - "to": 3705462, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482710, - "label": "BINDS", - "from": 91444435, - "to": 91442076, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222395, - "label": "PRODUCES", - "from": 3705463, - "to": 3684066, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222394, - "label": "CONSUMED_BY", - "from": 3684067, - "to": 3705463, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482714, - "label": "BINDS", - "from": 91444439, - "to": 91441504, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482713, - "label": "BINDS", - "from": 91444438, - "to": 91441770, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222392, - "label": "PRODUCES", - "from": 3705462, - "to": 3677176, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482719, - "label": "BINDS", - "from": 91444444, - "to": 91442098, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222398, - "label": "PRODUCES", - "from": 3705464, - "to": 3674628, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482718, - "label": "BINDS", - "from": 91444443, - "to": 91442293, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222397, - "label": "CONSUMED_BY", - "from": 3668939, - "to": 3705464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482717, - "label": "BINDS", - "from": 91444442, - "to": 3685355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482787, - "label": "BINDS", - "from": 91444512, - "to": 91441823, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482785, - "label": "BINDS", - "from": 91444510, - "to": 91442148, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482784, - "label": "BINDS", - "from": 91444509, - "to": 91441926, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482789, - "label": "BINDS", - "from": 91444514, - "to": 91441966, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482788, - "label": "BINDS", - "from": 91444513, - "to": 91441606, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482795, - "label": "BINDS", - "from": 91444520, - "to": 91441628, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222410, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3705467, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482792, - "label": "BINDS", - "from": 91444517, - "to": 91442280, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482799, - "label": "BINDS", - "from": 91444524, - "to": 91441611, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482798, - "label": "BINDS", - "from": 91444523, - "to": 91441889, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482797, - "label": "BINDS", - "from": 91444522, - "to": 3679793, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222412, - "label": "PRODUCES", - "from": 3705467, - "to": 3672645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482796, - "label": "BINDS", - "from": 91444521, - "to": 91441932, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482803, - "label": "BINDS", - "from": 91444528, - "to": 91442178, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482802, - "label": "BINDS", - "from": 91444527, - "to": 91442309, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482801, - "label": "BINDS", - "from": 91444526, - "to": 3678588, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482800, - "label": "BINDS", - "from": 91444525, - "to": 91442043, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222423, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3705470, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482806, - "label": "BINDS", - "from": 91444531, - "to": 91441677, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482811, - "label": "BINDS", - "from": 91444536, - "to": 91441731, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482810, - "label": "BINDS", - "from": 91444535, - "to": 91441614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222425, - "label": "PRODUCES", - "from": 3705470, - "to": 3669070, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482809, - "label": "BINDS", - "from": 91444534, - "to": 3678429, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482808, - "label": "BINDS", - "from": 91444533, - "to": 91441728, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222431, - "label": "CONSUMED_BY", - "from": 3677435, - "to": 3705471, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482815, - "label": "BINDS", - "from": 91444540, - "to": 3678431, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482814, - "label": "BINDS", - "from": 91444539, - "to": 91442183, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482813, - "label": "BINDS", - "from": 91444538, - "to": 91442206, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482812, - "label": "BINDS", - "from": 91444537, - "to": 3678473, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482755, - "label": "BINDS", - "from": 91444480, - "to": 3682907, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222433, - "label": "PRODUCES", - "from": 3705471, - "to": 3675476, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482753, - "label": "BINDS", - "from": 91444478, - "to": 91441591, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482752, - "label": "BINDS", - "from": 91444477, - "to": 91441595, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222439, - "label": "PRODUCES", - "from": 3705472, - "to": 3677272, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482759, - "label": "BINDS", - "from": 91444484, - "to": 91442213, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222436, - "label": "CONSUMED_BY", - "from": 3684006, - "to": 3705472, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222443, - "label": "CONSUMED_BY", - "from": 3679337, - "to": 3705473, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482763, - "label": "BINDS", - "from": 91444488, - "to": 91442361, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482762, - "label": "BINDS", - "from": 91444487, - "to": 3682951, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482761, - "label": "BINDS", - "from": 91444486, - "to": 91441700, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482760, - "label": "BINDS", - "from": 91444485, - "to": 3686157, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482766, - "label": "BINDS", - "from": 91444491, - "to": 3686460, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482765, - "label": "BINDS", - "from": 91444490, - "to": 91442221, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482764, - "label": "BINDS", - "from": 91444489, - "to": 91441596, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482771, - "label": "BINDS", - "from": 91444496, - "to": 91441670, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222450, - "label": "CONSUMED_BY", - "from": 3683870, - "to": 3705475, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482768, - "label": "BINDS", - "from": 91444493, - "to": 91441976, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482775, - "label": "BINDS", - "from": 91444500, - "to": 91442256, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482773, - "label": "BINDS", - "from": 91444498, - "to": 91442143, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222453, - "label": "PRODUCES", - "from": 3705475, - "to": 3681501, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482772, - "label": "BINDS", - "from": 91444497, - "to": 91442085, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482777, - "label": "BINDS", - "from": 91444502, - "to": 91442116, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482776, - "label": "BINDS", - "from": 91444501, - "to": 91441601, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222463, - "label": "PRODUCES", - "from": 3705477, - "to": 3704210, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482783, - "label": "BINDS", - "from": 91444508, - "to": 91442053, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482780, - "label": "BINDS", - "from": 91444505, - "to": 91442275, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222467, - "label": "CONSUMED_BY", - "from": 3675449, - "to": 3705478, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483107, - "label": "REGULATES", - "from": 91443191, - "to": 3707288, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483111, - "label": "REGULATES", - "from": 91443193, - "to": 3693706, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483110, - "label": "REGULATES", - "from": 3708153, - "to": 91443192, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222469, - "label": "PRODUCES", - "from": 3705478, - "to": 3675602, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483109, - "label": "REGULATES", - "from": 91443192, - "to": 3690771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483108, - "label": "REGULATES", - "from": 3712313, - "to": 91443191, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222475, - "label": "CONSUMED_BY", - "from": 3677454, - "to": 3705480, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483114, - "label": "REGULATES", - "from": 3712313, - "to": 91443194, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483113, - "label": "REGULATES", - "from": 91443194, - "to": 3701411, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483112, - "label": "REGULATES", - "from": 3710270, - "to": 91443193, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483119, - "label": "REGULATES", - "from": 91443197, - "to": 3701627, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483118, - "label": "REGULATES", - "from": 3708153, - "to": 91443196, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222478, - "label": "PRODUCES", - "from": 3705480, - "to": 3677285, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483117, - "label": "REGULATES", - "from": 91443196, - "to": 3699063, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483116, - "label": "REGULATES", - "from": 3711265, - "to": 91443195, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483123, - "label": "REGULATES", - "from": 91443199, - "to": 3712152, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483120, - "label": "REGULATES", - "from": 3712313, - "to": 91443197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483124, - "label": "REGULATES", - "from": 3708153, - "to": 91443199, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483131, - "label": "REGULATES", - "from": 91443203, - "to": 3698751, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483135, - "label": "REGULATES", - "from": 91443205, - "to": 3719932, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483134, - "label": "REGULATES", - "from": 3708153, - "to": 91443204, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483133, - "label": "REGULATES", - "from": 91443204, - "to": 3716765, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483132, - "label": "REGULATES", - "from": 3712313, - "to": 91443203, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483075, - "label": "REGULATES", - "from": 91443175, - "to": 3690502, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483074, - "label": "REGULATES", - "from": 3708153, - "to": 91443174, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483073, - "label": "REGULATES", - "from": 91443174, - "to": 3717056, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483076, - "label": "REGULATES", - "from": 3712313, - "to": 91443175, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483083, - "label": "REGULATES", - "from": 91443179, - "to": 3707125, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483087, - "label": "REGULATES", - "from": 91443181, - "to": 3711940, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483086, - "label": "REGULATES", - "from": 3712313, - "to": 91443180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483085, - "label": "REGULATES", - "from": 91443180, - "to": 3702863, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483084, - "label": "REGULATES", - "from": 3708153, - "to": 91443179, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483091, - "label": "REGULATES", - "from": 91443183, - "to": 3701343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483090, - "label": "REGULATES", - "from": 3710270, - "to": 91443182, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483088, - "label": "REGULATES", - "from": 3712313, - "to": 91443181, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483095, - "label": "REGULATES", - "from": 91443185, - "to": 3698609, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483094, - "label": "REGULATES", - "from": 3711285, - "to": 91443184, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483093, - "label": "REGULATES", - "from": 91443184, - "to": 91442600, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483092, - "label": "REGULATES", - "from": 3712313, - "to": 91443183, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483098, - "label": "REGULATES", - "from": 3712313, - "to": 91443186, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483097, - "label": "REGULATES", - "from": 91443186, - "to": 3707222, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483096, - "label": "REGULATES", - "from": 3708153, - "to": 91443185, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483171, - "label": "REGULATES", - "from": 91443223, - "to": 3717105, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483168, - "label": "REGULATES", - "from": 3712313, - "to": 91443221, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483174, - "label": "REGULATES", - "from": 3712313, - "to": 91443224, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483173, - "label": "REGULATES", - "from": 91443224, - "to": 3717119, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483172, - "label": "REGULATES", - "from": 3708153, - "to": 91443223, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483179, - "label": "REGULATES", - "from": 91443227, - "to": 3706825, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483182, - "label": "REGULATES", - "from": 3708153, - "to": 91443228, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483181, - "label": "REGULATES", - "from": 91443228, - "to": 3690769, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483180, - "label": "REGULATES", - "from": 3712313, - "to": 91443227, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483185, - "label": "REGULATES", - "from": 3712313, - "to": 91443229, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483191, - "label": "REGULATES", - "from": 3712313, - "to": 91443232, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483190, - "label": "REGULATES", - "from": 91443232, - "to": 3702766, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483189, - "label": "REGULATES", - "from": 3708153, - "to": 91443231, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483195, - "label": "REGULATES", - "from": 3708153, - "to": 91443234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483194, - "label": "REGULATES", - "from": 91443234, - "to": 3698975, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483197, - "label": "REGULATES", - "from": 3712313, - "to": 91443235, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483196, - "label": "REGULATES", - "from": 91443235, - "to": 3716792, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483138, - "label": "REGULATES", - "from": 3712313, - "to": 91443206, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483137, - "label": "REGULATES", - "from": 91443206, - "to": 3698916, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483136, - "label": "REGULATES", - "from": 3711179, - "to": 91443205, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483143, - "label": "REGULATES", - "from": 91443209, - "to": 3690614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483142, - "label": "REGULATES", - "from": 3708153, - "to": 91443208, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483141, - "label": "REGULATES", - "from": 91443208, - "to": 3701776, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483147, - "label": "REGULATES", - "from": 91443211, - "to": 3693775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386413, - "label": "ELEMENT_OF", - "from": 3697847, - "to": 3726201, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483144, - "label": "REGULATES", - "from": 3712313, - "to": 91443209, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483150, - "label": "REGULATES", - "from": 3712401, - "to": 91443212, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386408, - "label": "ELEMENT_OF", - "from": 3694944, - "to": 3726197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483148, - "label": "REGULATES", - "from": 3708153, - "to": 91443211, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483155, - "label": "REGULATES", - "from": 91443215, - "to": 3707074, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483159, - "label": "REGULATES", - "from": 91443217, - "to": 3697287, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483158, - "label": "REGULATES", - "from": 3708153, - "to": 91443216, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483156, - "label": "REGULATES", - "from": 3712313, - "to": 91443215, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483162, - "label": "REGULATES", - "from": 3712313, - "to": 91443218, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483161, - "label": "REGULATES", - "from": 91443218, - "to": 3712175, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483160, - "label": "REGULATES", - "from": 3712602, - "to": 91443217, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386425, - "label": "ELEMENT_OF", - "from": 3700140, - "to": 3726203, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483167, - "label": "REGULATES", - "from": 91443221, - "to": 3701396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483166, - "label": "REGULATES", - "from": 3708153, - "to": 91443220, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483165, - "label": "REGULATES", - "from": 91443220, - "to": 3702765, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482979, - "label": "REGULATES", - "from": 3714635, - "to": 91443127, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482978, - "label": "REGULATES", - "from": 91443127, - "to": 3689619, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482981, - "label": "REGULATES", - "from": 3708153, - "to": 91443128, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386434, - "label": "ELEMENT_OF", - "from": 3697968, - "to": 3726205, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482980, - "label": "REGULATES", - "from": 91443128, - "to": 3711790, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482987, - "label": "REGULATES", - "from": 3712313, - "to": 91443131, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482986, - "label": "REGULATES", - "from": 91443131, - "to": 3687579, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482985, - "label": "REGULATES", - "from": 3710270, - "to": 91443130, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482991, - "label": "REGULATES", - "from": 3712313, - "to": 91443133, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482990, - "label": "REGULATES", - "from": 91443133, - "to": 3701355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482989, - "label": "REGULATES", - "from": 3710270, - "to": 91443132, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482988, - "label": "REGULATES", - "from": 91443132, - "to": 3699124, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482995, - "label": "REGULATES", - "from": 3712313, - "to": 91443135, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386452, - "label": "ELEMENT_OF", - "from": 3712239, - "to": 3726210, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482994, - "label": "REGULATES", - "from": 91443135, - "to": 3719999, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482999, - "label": "REGULATES", - "from": 3712401, - "to": 91443137, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386448, - "label": "ELEMENT_OF", - "from": 3707299, - "to": 3726208, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482998, - "label": "REGULATES", - "from": 91443137, - "to": 91442596, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482997, - "label": "REGULATES", - "from": 3710270, - "to": 91443136, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482996, - "label": "REGULATES", - "from": 91443136, - "to": 3720029, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483003, - "label": "REGULATES", - "from": 3712313, - "to": 91443139, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483001, - "label": "REGULATES", - "from": 3718538, - "to": 91443138, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483005, - "label": "REGULATES", - "from": 3707928, - "to": 91443140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482947, - "label": "BINDS", - "from": 91444673, - "to": 91442055, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482946, - "label": "BINDS", - "from": 91444672, - "to": 3678598, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482945, - "label": "BINDS", - "from": 91444671, - "to": 91442346, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386471, - "label": "ELEMENT_OF", - "from": 3698772, - "to": 3726212, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482950, - "label": "BINDS", - "from": 91444676, - "to": 91441787, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482949, - "label": "BINDS", - "from": 91444675, - "to": 91442235, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482948, - "label": "BINDS", - "from": 91444674, - "to": 91441815, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482955, - "label": "BINDS", - "from": 91444681, - "to": 3683306, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482953, - "label": "BINDS", - "from": 91444679, - "to": 91441773, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482959, - "label": "BINDS", - "from": 91444685, - "to": 91441820, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482957, - "label": "BINDS", - "from": 91444683, - "to": 91442351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482956, - "label": "BINDS", - "from": 91444682, - "to": 91441545, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482963, - "label": "BINDS", - "from": 91444689, - "to": 91441676, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482962, - "label": "BINDS", - "from": 91444688, - "to": 3687502, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482961, - "label": "BINDS", - "from": 91444687, - "to": 3679802, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482960, - "label": "BINDS", - "from": 91444686, - "to": 91441896, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482967, - "label": "REGULATES", - "from": 3714635, - "to": 91443121, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482966, - "label": "REGULATES", - "from": 91443121, - "to": 3690981, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482965, - "label": "BINDS", - "from": 91444691, - "to": 3678835, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482971, - "label": "REGULATES", - "from": 3718538, - "to": 91443123, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482969, - "label": "REGULATES", - "from": 3711285, - "to": 91443122, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482968, - "label": "REGULATES", - "from": 91443122, - "to": 91442587, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482973, - "label": "REGULATES", - "from": 3712313, - "to": 91443124, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386491, - "label": "ELEMENT_OF", - "from": 3695280, - "to": 3726219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482972, - "label": "REGULATES", - "from": 91443124, - "to": 3707263, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483042, - "label": "REGULATES", - "from": 3712313, - "to": 91443158, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483040, - "label": "REGULATES", - "from": 3712313, - "to": 91443157, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386496, - "label": "ELEMENT_OF", - "from": 3717103, - "to": 3726221, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483046, - "label": "REGULATES", - "from": 3712586, - "to": 91443160, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483044, - "label": "REGULATES", - "from": 3710270, - "to": 91443159, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483051, - "label": "REGULATES", - "from": 91443163, - "to": 3698986, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483050, - "label": "REGULATES", - "from": 3708153, - "to": 91443162, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483049, - "label": "REGULATES", - "from": 91443162, - "to": 3701656, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386505, - "label": "ELEMENT_OF", - "from": 3690900, - "to": 3726223, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483052, - "label": "REGULATES", - "from": 3712313, - "to": 91443163, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483058, - "label": "REGULATES", - "from": 3708153, - "to": 91443166, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483057, - "label": "REGULATES", - "from": 91443166, - "to": 3707187, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483063, - "label": "REGULATES", - "from": 91443169, - "to": 3701866, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483062, - "label": "REGULATES", - "from": 3708153, - "to": 91443168, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483061, - "label": "REGULATES", - "from": 91443168, - "to": 3711867, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483060, - "label": "REGULATES", - "from": 3712602, - "to": 91443167, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483067, - "label": "REGULATES", - "from": 91443171, - "to": 3701754, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483066, - "label": "REGULATES", - "from": 3712313, - "to": 91443170, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483064, - "label": "REGULATES", - "from": 3712313, - "to": 91443169, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386521, - "label": "ELEMENT_OF", - "from": 3712239, - "to": 3726231, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483070, - "label": "REGULATES", - "from": 3712313, - "to": 91443172, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386520, - "label": "ELEMENT_OF", - "from": 3702791, - "to": 3726230, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483068, - "label": "REGULATES", - "from": 3710270, - "to": 91443171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353765, - "label": "REGULATES", - "from": 3711265, - "to": 3721652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483011, - "label": "REGULATES", - "from": 3710270, - "to": 91443143, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483010, - "label": "REGULATES", - "from": 91443143, - "to": 3701391, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483009, - "label": "REGULATES", - "from": 3708153, - "to": 91443142, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483008, - "label": "REGULATES", - "from": 91443142, - "to": 3707137, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353761, - "label": "REGULATES", - "from": 3681876, - "to": 3721651, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483013, - "label": "REGULATES", - "from": 3708153, - "to": 91443144, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483012, - "label": "REGULATES", - "from": 91443144, - "to": 3690933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483018, - "label": "REGULATES", - "from": 3712313, - "to": 91443146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483017, - "label": "REGULATES", - "from": 91443146, - "to": 3702544, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483016, - "label": "REGULATES", - "from": 3712313, - "to": 91443145, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483020, - "label": "REGULATES", - "from": 3710270, - "to": 91443147, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483027, - "label": "REGULATES", - "from": 91443151, - "to": 3706909, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483026, - "label": "REGULATES", - "from": 3708153, - "to": 91443150, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483025, - "label": "REGULATES", - "from": 91443150, - "to": 3712251, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353783, - "label": "REGULATES", - "from": 3721657, - "to": 3695045, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353782, - "label": "BINDS", - "from": 3721657, - "to": 3678467, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483024, - "label": "REGULATES", - "from": 3710167, - "to": 91443149, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483028, - "label": "REGULATES", - "from": 3712313, - "to": 91443151, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386546, - "label": "ELEMENT_OF", - "from": 3702544, - "to": 3726238, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483035, - "label": "REGULATES", - "from": 91443155, - "to": 3719983, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483034, - "label": "REGULATES", - "from": 3708153, - "to": 91443154, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483033, - "label": "REGULATES", - "from": 91443154, - "to": 3707142, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353790, - "label": "BINDS", - "from": 3721659, - "to": 3686467, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386553, - "label": "ELEMENT_OF", - "from": 3717106, - "to": 3726240, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483039, - "label": "REGULATES", - "from": 91443157, - "to": 3687596, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483038, - "label": "REGULATES", - "from": 3708153, - "to": 91443156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353784, - "label": "REGULATES", - "from": 3712313, - "to": 3721657, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483037, - "label": "REGULATES", - "from": 91443156, - "to": 3711928, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483036, - "label": "REGULATES", - "from": 3711179, - "to": 91443155, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222723, - "label": "PRODUCES", - "from": 3705481, - "to": 3677334, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482339, - "label": "BINDS", - "from": 91444056, - "to": 91442124, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353799, - "label": "REGULATES", - "from": 3677501, - "to": 3721661, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353798, - "label": "REGULATES", - "from": 3721661, - "to": 3687772, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482336, - "label": "BINDS", - "from": 91444052, - "to": 91442246, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482342, - "label": "BINDS", - "from": 91444060, - "to": 91441783, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353792, - "label": "REGULATES", - "from": 3708326, - "to": 3721659, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222725, - "label": "CONSUMED_BY", - "from": 3677068, - "to": 3705482, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482341, - "label": "BINDS", - "from": 91444058, - "to": 91441659, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482340, - "label": "BINDS", - "from": 91444057, - "to": 91442353, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482347, - "label": "BINDS", - "from": 91444065, - "to": 91441801, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482345, - "label": "BINDS", - "from": 91444063, - "to": 91441857, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222729, - "label": "PRODUCES", - "from": 3705482, - "to": 3676914, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482344, - "label": "BINDS", - "from": 91444062, - "to": 3682853, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482350, - "label": "BINDS", - "from": 91444069, - "to": 91442157, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222732, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3705483, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482348, - "label": "BINDS", - "from": 91444066, - "to": 91442036, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386581, - "label": "ELEMENT_OF", - "from": 3694532, - "to": 3726250, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482355, - "label": "BINDS", - "from": 91444075, - "to": 91441697, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482354, - "label": "BINDS", - "from": 91444074, - "to": 3686180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482353, - "label": "BINDS", - "from": 91444072, - "to": 91441729, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222736, - "label": "PRODUCES", - "from": 3705483, - "to": 3682077, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386582, - "label": "ELEMENT_OF", - "from": 3701415, - "to": 3726251, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482358, - "label": "BINDS", - "from": 91444078, - "to": 91441574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386576, - "label": "ELEMENT_OF", - "from": 3702957, - "to": 3726248, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482357, - "label": "BINDS", - "from": 91444077, - "to": 91441713, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482356, - "label": "BINDS", - "from": 91444076, - "to": 91442042, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482363, - "label": "BINDS", - "from": 91444083, - "to": 91441702, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222746, - "label": "CONSUMED_BY", - "from": 3681210, - "to": 3705486, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482362, - "label": "BINDS", - "from": 91444082, - "to": 3682926, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482361, - "label": "BINDS", - "from": 91444081, - "to": 91442056, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482360, - "label": "BINDS", - "from": 91444080, - "to": 3687410, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353822, - "label": "REGULATES", - "from": 3718538, - "to": 3721667, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482366, - "label": "BINDS", - "from": 91444087, - "to": 91441619, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482365, - "label": "BINDS", - "from": 91444085, - "to": 91441780, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482364, - "label": "BINDS", - "from": 91444084, - "to": 91441715, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353828, - "label": "BINDS", - "from": 3721669, - "to": 3680023, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482306, - "label": "BINDS", - "from": 91444015, - "to": 91441607, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482305, - "label": "BINDS", - "from": 91444014, - "to": 91441570, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482304, - "label": "BINDS", - "from": 91444013, - "to": 91442204, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353830, - "label": "REGULATES", - "from": 3711265, - "to": 3721669, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222758, - "label": "PRODUCES", - "from": 3705488, - "to": 3675073, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482309, - "label": "BINDS", - "from": 91444020, - "to": 91441555, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222756, - "label": "CONSUMED_BY", - "from": 3675450, - "to": 3705488, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482315, - "label": "BINDS", - "from": 91444027, - "to": 91441522, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482314, - "label": "BINDS", - "from": 91444026, - "to": 91441803, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222761, - "label": "CONSUMED_BY", - "from": 3684048, - "to": 3705489, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482312, - "label": "BINDS", - "from": 91444024, - "to": 91441691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386606, - "label": "ELEMENT_OF", - "from": 3699918, - "to": 3726260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482318, - "label": "BINDS", - "from": 91444030, - "to": 91442129, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482317, - "label": "BINDS", - "from": 91444029, - "to": 91441723, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482316, - "label": "BINDS", - "from": 91444028, - "to": 91442208, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222771, - "label": "PRODUCES", - "from": 3705491, - "to": 3681292, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482323, - "label": "BINDS", - "from": 91444038, - "to": 3679735, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353845, - "label": "REGULATES", - "from": 3711445, - "to": 3721673, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386612, - "label": "ELEMENT_OF", - "from": 3698653, - "to": 3726264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482322, - "label": "BINDS", - "from": 91444036, - "to": 3678448, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222769, - "label": "CONSUMED_BY", - "from": 3677740, - "to": 3705491, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222775, - "label": "PRODUCES", - "from": 3705492, - "to": 3669009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482327, - "label": "BINDS", - "from": 91444043, - "to": 91442049, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482326, - "label": "BINDS", - "from": 91444041, - "to": 91441808, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222773, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3705492, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353843, - "label": "BINDS", - "from": 3721673, - "to": 3678851, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386611, - "label": "ELEMENT_OF", - "from": 3700219, - "to": 3726263, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482331, - "label": "BINDS", - "from": 91444047, - "to": 91442364, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482330, - "label": "BINDS", - "from": 91444046, - "to": 91442348, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482329, - "label": "BINDS", - "from": 91444045, - "to": 91442227, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386623, - "label": "ELEMENT_OF", - "from": 3699691, - "to": 3726270, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482328, - "label": "BINDS", - "from": 91444044, - "to": 91441678, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222783, - "label": "CONSUMED_BY", - "from": 3682185, - "to": 3705494, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482335, - "label": "BINDS", - "from": 91444051, - "to": 3687462, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482334, - "label": "BINDS", - "from": 91444050, - "to": 3679581, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386619, - "label": "ELEMENT_OF", - "from": 3701354, - "to": 3726269, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482333, - "label": "BINDS", - "from": 91444049, - "to": 91442216, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222781, - "label": "PRODUCES", - "from": 3705493, - "to": 3704243, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482332, - "label": "BINDS", - "from": 91444048, - "to": 91442225, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482402, - "label": "BINDS", - "from": 91444124, - "to": 91441740, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482401, - "label": "BINDS", - "from": 91444123, - "to": 3679912, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386625, - "label": "ELEMENT_OF", - "from": 3717103, - "to": 3726271, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482407, - "label": "BINDS", - "from": 91444129, - "to": 91441828, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482406, - "label": "BINDS", - "from": 91444128, - "to": 3679985, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482405, - "label": "BINDS", - "from": 91444127, - "to": 91442294, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482404, - "label": "BINDS", - "from": 91444126, - "to": 91441572, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386637, - "label": "ELEMENT_OF", - "from": 3711889, - "to": 3726277, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482410, - "label": "BINDS", - "from": 91444132, - "to": 91441744, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353868, - "label": "REGULATES", - "from": 3710228, - "to": 3721679, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482408, - "label": "BINDS", - "from": 91444130, - "to": 91441931, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353870, - "label": "BINDS", - "from": 3721680, - "to": 3678748, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353864, - "label": "REGULATES", - "from": 3718538, - "to": 3721678, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482414, - "label": "BINDS", - "from": 91444136, - "to": 91442360, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482412, - "label": "BINDS", - "from": 91444134, - "to": 91442226, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353866, - "label": "BINDS", - "from": 3721679, - "to": 3685149, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482418, - "label": "BINDS", - "from": 91444140, - "to": 91441750, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222802, - "label": "CONSUMED_BY", - "from": 3681206, - "to": 3705498, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482416, - "label": "BINDS", - "from": 91444138, - "to": 91441937, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222806, - "label": "CONSUMED_BY", - "from": 3677446, - "to": 3705499, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353872, - "label": "REGULATES", - "from": 3708153, - "to": 3721680, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482422, - "label": "BINDS", - "from": 91444144, - "to": 91442219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222811, - "label": "CONSUMED_BY", - "from": 3684317, - "to": 3705500, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482426, - "label": "BINDS", - "from": 91444148, - "to": 91441756, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482425, - "label": "BINDS", - "from": 91444147, - "to": 3685373, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222808, - "label": "PRODUCES", - "from": 3705499, - "to": 3681312, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482424, - "label": "BINDS", - "from": 91444146, - "to": 91441944, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482430, - "label": "BINDS", - "from": 91444152, - "to": 91441784, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222814, - "label": "CONSUMED_BY", - "from": 3677471, - "to": 3705501, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222813, - "label": "PRODUCES", - "from": 3705500, - "to": 3668643, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482428, - "label": "BINDS", - "from": 91444150, - "to": 91441796, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482371, - "label": "BINDS", - "from": 91444093, - "to": 91441707, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482369, - "label": "BINDS", - "from": 91444090, - "to": 91441897, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482368, - "label": "BINDS", - "from": 91444089, - "to": 3679636, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482375, - "label": "BINDS", - "from": 91444097, - "to": 91442230, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222822, - "label": "CONSUMED_BY", - "from": 3684186, - "to": 3705503, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353891, - "label": "REGULATES", - "from": 3711301, - "to": 3721685, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482373, - "label": "BINDS", - "from": 91444095, - "to": 91441911, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353890, - "label": "REGULATES", - "from": 3721685, - "to": 3696200, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482372, - "label": "BINDS", - "from": 91444094, - "to": 91441567, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482378, - "label": "BINDS", - "from": 91444100, - "to": 91441580, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353900, - "label": "BINDS", - "from": 3721688, - "to": 3678728, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222826, - "label": "PRODUCES", - "from": 3705504, - "to": 3677508, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222825, - "label": "CONSUMED_BY", - "from": 3681575, - "to": 3705504, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222824, - "label": "PRODUCES", - "from": 3705503, - "to": 3683946, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482376, - "label": "BINDS", - "from": 91444098, - "to": 91441903, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353902, - "label": "REGULATES", - "from": 3710228, - "to": 3721688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482383, - "label": "BINDS", - "from": 91444105, - "to": 91442146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482382, - "label": "BINDS", - "from": 91444104, - "to": 3687445, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482381, - "label": "BINDS", - "from": 91444103, - "to": 91441521, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482380, - "label": "BINDS", - "from": 91444102, - "to": 91441975, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222834, - "label": "PRODUCES", - "from": 3705506, - "to": 3685625, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482386, - "label": "BINDS", - "from": 91444108, - "to": 91441840, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222832, - "label": "CONSUMED_BY", - "from": 3684055, - "to": 3705506, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482384, - "label": "BINDS", - "from": 91444106, - "to": 91441910, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353910, - "label": "REGULATES", - "from": 3707928, - "to": 3721690, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482391, - "label": "BINDS", - "from": 91444113, - "to": 91442019, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255606, - "label": "CONSUMED_BY", - "from": 3677415, - "to": 3709109, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482389, - "label": "BINDS", - "from": 91444111, - "to": 91442283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222837, - "label": "CONSUMED_BY", - "from": 3710173, - "to": 3705507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482388, - "label": "BINDS", - "from": 91444110, - "to": 91441623, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255610, - "label": "CONSUMED_BY", - "from": 3677153, - "to": 3709110, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482394, - "label": "BINDS", - "from": 91444116, - "to": 91441845, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482392, - "label": "BINDS", - "from": 91444114, - "to": 91441917, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482399, - "label": "BINDS", - "from": 91444121, - "to": 91441924, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255613, - "label": "PRODUCES", - "from": 3709110, - "to": 3676804, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482397, - "label": "BINDS", - "from": 91444119, - "to": 91442288, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222844, - "label": "CONSUMED_BY", - "from": 3682011, - "to": 3705509, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482211, - "label": "BINDS", - "from": 91443903, - "to": 91441985, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255618, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3709112, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222849, - "label": "CONSUMED_BY", - "from": 3675720, - "to": 3705510, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353927, - "label": "BINDS", - "from": 3721695, - "to": 3678723, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482209, - "label": "BINDS", - "from": 91443901, - "to": 91442174, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482208, - "label": "BINDS", - "from": 91443900, - "to": 91442190, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255623, - "label": "CONSUMED_BY", - "from": 3677427, - "to": 3709113, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482215, - "label": "BINDS", - "from": 91443907, - "to": 91441657, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255621, - "label": "PRODUCES", - "from": 3709112, - "to": 3666732, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482213, - "label": "BINDS", - "from": 91443905, - "to": 3678438, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482212, - "label": "BINDS", - "from": 91443904, - "to": 91442010, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353932, - "label": "REGULATES", - "from": 3677464, - "to": 3721696, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222858, - "label": "PRODUCES", - "from": 3705512, - "to": 3677574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482218, - "label": "BINDS", - "from": 91443910, - "to": 91442330, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255625, - "label": "PRODUCES", - "from": 3709113, - "to": 3677415, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353935, - "label": "REGULATES", - "from": 3721697, - "to": 3697634, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482217, - "label": "BINDS", - "from": 91443909, - "to": 91442357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353934, - "label": "BINDS", - "from": 3721697, - "to": 3686438, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222856, - "label": "CONSUMED_BY", - "from": 3681243, - "to": 3705512, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222863, - "label": "PRODUCES", - "from": 3705513, - "to": 3682144, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353929, - "label": "REGULATES", - "from": 3710270, - "to": 3721695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353931, - "label": "REGULATES", - "from": 3721696, - "to": 3688142, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222861, - "label": "CONSUMED_BY", - "from": 3682185, - "to": 3705513, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482221, - "label": "BINDS", - "from": 91443915, - "to": 91441900, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482220, - "label": "BINDS", - "from": 91443914, - "to": 91442241, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482227, - "label": "BINDS", - "from": 91443921, - "to": 91441661, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353940, - "label": "REGULATES", - "from": 3718648, - "to": 3721698, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482225, - "label": "BINDS", - "from": 91443919, - "to": 91442272, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482224, - "label": "BINDS", - "from": 91443918, - "to": 91442177, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482231, - "label": "BINDS", - "from": 91443927, - "to": 91441807, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222871, - "label": "PRODUCES", - "from": 3705515, - "to": 3681412, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255638, - "label": "CONSUMED_BY", - "from": 3675417, - "to": 3709117, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353936, - "label": "REGULATES", - "from": 3711319, - "to": 3721697, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482230, - "label": "BINDS", - "from": 91443924, - "to": 91442362, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482229, - "label": "BINDS", - "from": 91443923, - "to": 91441786, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353939, - "label": "REGULATES", - "from": 3721698, - "to": 3697069, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353938, - "label": "BINDS", - "from": 3721698, - "to": 3684993, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482228, - "label": "BINDS", - "from": 91443922, - "to": 3679832, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353948, - "label": "REGULATES", - "from": 3714081, - "to": 3721700, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482234, - "label": "BINDS", - "from": 91443930, - "to": 91441681, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353951, - "label": "REGULATES", - "from": 3681872, - "to": 3721701, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255640, - "label": "CONSUMED_BY", - "from": 3681316, - "to": 3709118, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255647, - "label": "PRODUCES", - "from": 3709119, - "to": 3684173, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222879, - "label": "PRODUCES", - "from": 3705517, - "to": 3708135, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482239, - "label": "BINDS", - "from": 91443936, - "to": 91441666, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482238, - "label": "BINDS", - "from": 91443935, - "to": 3678879, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255645, - "label": "CONSUMED_BY", - "from": 3677501, - "to": 3709119, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222877, - "label": "CONSUMED_BY", - "from": 3702197, - "to": 3705517, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482237, - "label": "BINDS", - "from": 91443934, - "to": 91441891, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353946, - "label": "BINDS", - "from": 3721700, - "to": 3685270, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482236, - "label": "BINDS", - "from": 91443932, - "to": 91442003, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482179, - "label": "BINDS", - "from": 91443858, - "to": 91441818, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482178, - "label": "BINDS", - "from": 91443857, - "to": 91441642, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255649, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3709120, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222880, - "label": "PRODUCES", - "from": 3705517, - "to": 3712357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482176, - "label": "BINDS", - "from": 91443855, - "to": 91442130, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255655, - "label": "PRODUCES", - "from": 3709120, - "to": 3669339, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222886, - "label": "CONSUMED_BY", - "from": 3681782, - "to": 3705519, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482181, - "label": "BINDS", - "from": 91443863, - "to": 91442047, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482187, - "label": "BINDS", - "from": 91443869, - "to": 91441969, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222891, - "label": "CONSUMED_BY", - "from": 3667416, - "to": 3705520, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255658, - "label": "CONSUMED_BY", - "from": 3684338, - "to": 3709121, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353967, - "label": "REGULATES", - "from": 3712313, - "to": 3721705, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482185, - "label": "BINDS", - "from": 91443867, - "to": 91442109, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222888, - "label": "PRODUCES", - "from": 3705519, - "to": 3681278, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482191, - "label": "BINDS", - "from": 91443874, - "to": 3679593, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353961, - "label": "BINDS", - "from": 3721704, - "to": 3685134, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222895, - "label": "PRODUCES", - "from": 3705520, - "to": 3684152, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482190, - "label": "BINDS", - "from": 91443872, - "to": 91441648, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353963, - "label": "REGULATES", - "from": 3712586, - "to": 3721704, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255660, - "label": "PRODUCES", - "from": 3709121, - "to": 3684327, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482188, - "label": "BINDS", - "from": 91443870, - "to": 91441993, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255667, - "label": "PRODUCES", - "from": 3709123, - "to": 3677444, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482195, - "label": "BINDS", - "from": 91443883, - "to": 91441685, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255665, - "label": "CONSUMED_BY", - "from": 3683884, - "to": 3709123, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222897, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3705521, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482193, - "label": "BINDS", - "from": 91443881, - "to": 91441585, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482199, - "label": "BINDS", - "from": 91443887, - "to": 91441977, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482198, - "label": "BINDS", - "from": 91443886, - "to": 3679841, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482197, - "label": "BINDS", - "from": 91443885, - "to": 91441956, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482203, - "label": "BINDS", - "from": 91443891, - "to": 91441502, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222906, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3705522, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482202, - "label": "BINDS", - "from": 91443890, - "to": 91441652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353980, - "label": "BINDS", - "from": 3721709, - "to": 3685454, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482200, - "label": "BINDS", - "from": 91443888, - "to": 91442001, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353982, - "label": "REGULATES", - "from": 3711317, - "to": 3721709, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482205, - "label": "BINDS", - "from": 91443895, - "to": 91442352, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222908, - "label": "PRODUCES", - "from": 3705522, - "to": 3672706, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255676, - "label": "CONSUMED_BY", - "from": 3668943, - "to": 3709126, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482275, - "label": "BINDS", - "from": 91443980, - "to": 91441994, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255682, - "label": "CONSUMED_BY", - "from": 3669293, - "to": 3709127, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353991, - "label": "BINDS", - "from": 3721712, - "to": 3679657, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482272, - "label": "BINDS", - "from": 91443977, - "to": 91442087, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482279, - "label": "BINDS", - "from": 91443984, - "to": 91441757, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482278, - "label": "BINDS", - "from": 91443983, - "to": 91441509, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222917, - "label": "PRODUCES", - "from": 3705523, - "to": 3677445, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255684, - "label": "PRODUCES", - "from": 3709127, - "to": 3676152, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482276, - "label": "BINDS", - "from": 91443981, - "to": 91441995, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353997, - "label": "REGULATES", - "from": 3711285, - "to": 3721713, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482283, - "label": "BINDS", - "from": 91443990, - "to": 3680002, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482282, - "label": "BINDS", - "from": 91443989, - "to": 91441654, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482281, - "label": "BINDS", - "from": 91443986, - "to": 91441500, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255689, - "label": "PRODUCES", - "from": 3709128, - "to": 3681392, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482280, - "label": "BINDS", - "from": 91443985, - "to": 91441633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353993, - "label": "REGULATES", - "from": 3708153, - "to": 3721712, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255695, - "label": "PRODUCES", - "from": 3709129, - "to": 3666875, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482286, - "label": "BINDS", - "from": 91443993, - "to": 91441967, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353995, - "label": "BINDS", - "from": 3721713, - "to": 3678711, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255692, - "label": "CONSUMED_BY", - "from": 3666925, - "to": 3709129, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482291, - "label": "BINDS", - "from": 91443998, - "to": 91441793, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222931, - "label": "CONSUMED_BY", - "from": 3684021, - "to": 3705527, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482290, - "label": "BINDS", - "from": 91443997, - "to": 91441512, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255697, - "label": "CONSUMED_BY", - "from": 3685537, - "to": 3709130, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222929, - "label": "PRODUCES", - "from": 3705526, - "to": 3681652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222928, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3705526, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482288, - "label": "BINDS", - "from": 91443995, - "to": 91441682, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222934, - "label": "CONSUMED_BY", - "from": 3681362, - "to": 3705528, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482294, - "label": "BINDS", - "from": 91444001, - "to": 91441790, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255701, - "label": "PRODUCES", - "from": 3709130, - "to": 3684055, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482293, - "label": "BINDS", - "from": 91444000, - "to": 91441953, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482292, - "label": "BINDS", - "from": 91443999, - "to": 91441762, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222932, - "label": "PRODUCES", - "from": 3705527, - "to": 3677369, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222939, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3705529, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482298, - "label": "BINDS", - "from": 91444007, - "to": 91442125, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482297, - "label": "BINDS", - "from": 91444006, - "to": 91442139, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222936, - "label": "PRODUCES", - "from": 3705528, - "to": 3679114, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222943, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3705530, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482303, - "label": "BINDS", - "from": 91444012, - "to": 91441517, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482302, - "label": "BINDS", - "from": 91444011, - "to": 91441799, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222941, - "label": "PRODUCES", - "from": 3705529, - "to": 3681194, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482300, - "label": "BINDS", - "from": 91444009, - "to": 3679595, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482243, - "label": "BINDS", - "from": 91443940, - "to": 91441965, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482242, - "label": "BINDS", - "from": 91443939, - "to": 91441498, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222945, - "label": "PRODUCES", - "from": 3705530, - "to": 3669320, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482240, - "label": "BINDS", - "from": 91443937, - "to": 91441970, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482246, - "label": "BINDS", - "from": 91443946, - "to": 91441534, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482245, - "label": "BINDS", - "from": 91443945, - "to": 91441812, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482251, - "label": "BINDS", - "from": 91443951, - "to": 91441979, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222954, - "label": "PRODUCES", - "from": 3705531, - "to": 3669575, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255722, - "label": "CONSUMED_BY", - "from": 3685519, - "to": 3709135, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482250, - "label": "BINDS", - "from": 91443950, - "to": 3679911, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482249, - "label": "BINDS", - "from": 91443949, - "to": 91441520, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222952, - "label": "CONSUMED_BY", - "from": 3673162, - "to": 3705531, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 222959, - "label": "CONSUMED_BY", - "from": 3684067, - "to": 3705532, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482255, - "label": "BINDS", - "from": 91443955, - "to": 91442291, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482254, - "label": "BINDS", - "from": 91443954, - "to": 91441503, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482252, - "label": "BINDS", - "from": 91443952, - "to": 91441671, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482259, - "label": "BINDS", - "from": 91443962, - "to": 3687168, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255730, - "label": "CONSUMED_BY", - "from": 3677415, - "to": 3709137, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482257, - "label": "BINDS", - "from": 91443959, - "to": 91441706, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482263, - "label": "BINDS", - "from": 91443966, - "to": 91441986, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482260, - "label": "BINDS", - "from": 91443963, - "to": 91442017, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255738, - "label": "CONSUMED_BY", - "from": 3672997, - "to": 3709139, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482266, - "label": "BINDS", - "from": 91443969, - "to": 91441506, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482265, - "label": "BINDS", - "from": 91443968, - "to": 3686091, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255736, - "label": "PRODUCES", - "from": 3709138, - "to": 3681364, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482264, - "label": "BINDS", - "from": 91443967, - "to": 91441674, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255743, - "label": "CONSUMED_BY", - "from": 3677501, - "to": 3709141, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482270, - "label": "BINDS", - "from": 91443975, - "to": 3679798, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482269, - "label": "BINDS", - "from": 91443973, - "to": 91442318, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255740, - "label": "CONSUMED_BY", - "from": 3681364, - "to": 3709140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482268, - "label": "BINDS", - "from": 91443971, - "to": 91441846, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482594, - "label": "BINDS", - "from": 91444318, - "to": 91441855, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255745, - "label": "PRODUCES", - "from": 3709141, - "to": 3684176, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482593, - "label": "BINDS", - "from": 91444317, - "to": 3686135, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482592, - "label": "BINDS", - "from": 91444316, - "to": 91442095, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482598, - "label": "BINDS", - "from": 91444322, - "to": 3686323, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255749, - "label": "PRODUCES", - "from": 3709142, - "to": 3671516, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482597, - "label": "BINDS", - "from": 91444321, - "to": 91442335, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255748, - "label": "CONSUMED_BY", - "from": 3671380, - "to": 3709142, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482602, - "label": "BINDS", - "from": 91444326, - "to": 91441860, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482601, - "label": "BINDS", - "from": 91444325, - "to": 91442100, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255752, - "label": "PRODUCES", - "from": 3709142, - "to": 3671381, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482600, - "label": "BINDS", - "from": 91444324, - "to": 3687436, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482606, - "label": "BINDS", - "from": 91444330, - "to": 91442327, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482605, - "label": "BINDS", - "from": 91444329, - "to": 91441792, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482611, - "label": "BINDS", - "from": 91444335, - "to": 91441641, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482610, - "label": "BINDS", - "from": 91444334, - "to": 91442105, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255766, - "label": "PRODUCES", - "from": 3709145, - "to": 3684044, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255764, - "label": "CONSUMED_BY", - "from": 3681214, - "to": 3709145, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482612, - "label": "BINDS", - "from": 91444336, - "to": 91441865, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255771, - "label": "PRODUCES", - "from": 3709146, - "to": 3677532, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482619, - "label": "BINDS", - "from": 91444343, - "to": 91441895, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482617, - "label": "BINDS", - "from": 91444341, - "to": 91441913, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255768, - "label": "CONSUMED_BY", - "from": 3677785, - "to": 3709146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482623, - "label": "BINDS", - "from": 91444347, - "to": 91442110, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255774, - "label": "CONSUMED_BY", - "from": 3677710, - "to": 3709147, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482622, - "label": "BINDS", - "from": 91444346, - "to": 3687455, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482621, - "label": "BINDS", - "from": 91444345, - "to": 91441646, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482562, - "label": "BINDS", - "from": 91444286, - "to": 91441686, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255776, - "label": "PRODUCES", - "from": 3709147, - "to": 3684334, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482560, - "label": "BINDS", - "from": 91444283, - "to": 91442067, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255782, - "label": "CONSUMED_BY", - "from": 3670744, - "to": 3709149, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482566, - "label": "BINDS", - "from": 91444290, - "to": 91441942, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482565, - "label": "BINDS", - "from": 91444289, - "to": 91441629, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482570, - "label": "BINDS", - "from": 91444294, - "to": 91441978, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255785, - "label": "CONSUMED_BY", - "from": 3684194, - "to": 3709150, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482568, - "label": "BINDS", - "from": 91444292, - "to": 91442075, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255790, - "label": "CONSUMED_BY", - "from": 3681852, - "to": 3709151, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482573, - "label": "BINDS", - "from": 91444297, - "to": 91441526, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255788, - "label": "PRODUCES", - "from": 3709150, - "to": 3677476, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482572, - "label": "BINDS", - "from": 91444296, - "to": 91441733, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482578, - "label": "BINDS", - "from": 91444302, - "to": 91441987, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255792, - "label": "PRODUCES", - "from": 3709151, - "to": 3684390, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482576, - "label": "BINDS", - "from": 91444300, - "to": 91442083, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482583, - "label": "BINDS", - "from": 91444307, - "to": 3683020, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255798, - "label": "PRODUCES", - "from": 3709153, - "to": 3684172, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482581, - "label": "BINDS", - "from": 91444305, - "to": 91441530, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255796, - "label": "CONSUMED_BY", - "from": 3677504, - "to": 3709153, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482580, - "label": "BINDS", - "from": 91444304, - "to": 91442113, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255803, - "label": "CONSUMED_BY", - "from": 3677501, - "to": 3709155, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482586, - "label": "BINDS", - "from": 91444310, - "to": 91441850, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482584, - "label": "BINDS", - "from": 91444308, - "to": 91442090, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255806, - "label": "PRODUCES", - "from": 3709155, - "to": 3679067, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482590, - "label": "BINDS", - "from": 91444314, - "to": 3687265, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482588, - "label": "BINDS", - "from": 91444312, - "to": 91442282, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482659, - "label": "BINDS", - "from": 91444383, - "to": 3687258, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386884, - "label": "ELEMENT_OF", - "from": 3694364, - "to": 3726279, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482656, - "label": "BINDS", - "from": 91444380, - "to": 91442355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255815, - "label": "CONSUMED_BY", - "from": 3684167, - "to": 3709158, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482663, - "label": "BINDS", - "from": 91444387, - "to": 91442112, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482662, - "label": "BINDS", - "from": 91444386, - "to": 91442199, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482661, - "label": "BINDS", - "from": 91444385, - "to": 91442233, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482660, - "label": "BINDS", - "from": 91444384, - "to": 91441887, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255818, - "label": "PRODUCES", - "from": 3709158, - "to": 3684165, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482666, - "label": "BINDS", - "from": 91444390, - "to": 3679784, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482664, - "label": "BINDS", - "from": 91444388, - "to": 91442229, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386889, - "label": "ELEMENT_OF", - "from": 3702438, - "to": 3726281, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255821, - "label": "CONSUMED_BY", - "from": 3669277, - "to": 3709159, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482669, - "label": "BINDS", - "from": 91444393, - "to": 3686509, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482675, - "label": "BINDS", - "from": 91444399, - "to": 91441675, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482674, - "label": "BINDS", - "from": 91444398, - "to": 91441705, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482673, - "label": "BINDS", - "from": 91444397, - "to": 91442238, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482672, - "label": "BINDS", - "from": 91444396, - "to": 91441892, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255831, - "label": "CONSUMED_BY", - "from": 3677696, - "to": 3709161, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482677, - "label": "BINDS", - "from": 91444401, - "to": 91441782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482676, - "label": "BINDS", - "from": 91444400, - "to": 91442123, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255828, - "label": "PRODUCES", - "from": 3709160, - "to": 3681637, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255834, - "label": "PRODUCES", - "from": 3709161, - "to": 3677501, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482681, - "label": "BINDS", - "from": 91444405, - "to": 91441540, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482687, - "label": "BINDS", - "from": 91444412, - "to": 91442160, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482686, - "label": "BINDS", - "from": 91444410, - "to": 91441710, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 255837, - "label": "CONSUMED_BY", - "from": 3677501, - "to": 3709162, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482685, - "label": "BINDS", - "from": 91444409, - "to": 91441785, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482684, - "label": "BINDS", - "from": 91444408, - "to": 91442243, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482627, - "label": "BINDS", - "from": 91444351, - "to": 91442144, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386919, - "label": "ELEMENT_OF", - "from": 3693802, - "to": 3726293, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482625, - "label": "BINDS", - "from": 91444349, - "to": 91441533, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482624, - "label": "BINDS", - "from": 91444348, - "to": 91441870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482630, - "label": "BINDS", - "from": 91444354, - "to": 91441802, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386915, - "label": "ELEMENT_OF", - "from": 3719965, - "to": 3726291, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482635, - "label": "BINDS", - "from": 91444359, - "to": 91441875, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482633, - "label": "BINDS", - "from": 91444357, - "to": 91441650, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482632, - "label": "BINDS", - "from": 91444356, - "to": 3675666, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386921, - "label": "ELEMENT_OF", - "from": 3724919, - "to": 3726294, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482638, - "label": "BINDS", - "from": 91444362, - "to": 91441560, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482637, - "label": "BINDS", - "from": 91444361, - "to": 91441571, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482642, - "label": "BINDS", - "from": 91444366, - "to": 91441933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482640, - "label": "BINDS", - "from": 91444364, - "to": 91441867, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386934, - "label": "ELEMENT_OF", - "from": 3693780, - "to": 3726296, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482647, - "label": "BINDS", - "from": 91444371, - "to": 91441880, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482645, - "label": "BINDS", - "from": 91444369, - "to": 91441789, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482644, - "label": "BINDS", - "from": 91444368, - "to": 3686149, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482651, - "label": "BINDS", - "from": 91444375, - "to": 91441764, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482650, - "label": "BINDS", - "from": 91444374, - "to": 91442050, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482649, - "label": "BINDS", - "from": 91444373, - "to": 91441638, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482648, - "label": "BINDS", - "from": 91444372, - "to": 91442194, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482655, - "label": "BINDS", - "from": 91444379, - "to": 91441639, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386938, - "label": "ELEMENT_OF", - "from": 3707288, - "to": 3726297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482467, - "label": "BINDS", - "from": 91444190, - "to": 91441971, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482466, - "label": "BINDS", - "from": 91444189, - "to": 91441781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386951, - "label": "ELEMENT_OF", - "from": 3690814, - "to": 3726302, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482464, - "label": "BINDS", - "from": 91444186, - "to": 91442128, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482471, - "label": "BINDS", - "from": 91444194, - "to": 3686148, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482469, - "label": "BINDS", - "from": 91444192, - "to": 91441817, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386946, - "label": "ELEMENT_OF", - "from": 3697077, - "to": 3726300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386957, - "label": "ELEMENT_OF", - "from": 3700174, - "to": 3726304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482475, - "label": "BINDS", - "from": 91444198, - "to": 91442173, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482472, - "label": "BINDS", - "from": 91444195, - "to": 91442132, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482478, - "label": "BINDS", - "from": 91444201, - "to": 91442349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482476, - "label": "BINDS", - "from": 91444199, - "to": 91442016, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386954, - "label": "ELEMENT_OF", - "from": 3702944, - "to": 3726303, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482483, - "label": "BINDS", - "from": 91444206, - "to": 91442119, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482482, - "label": "BINDS", - "from": 91444205, - "to": 91441866, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482481, - "label": "BINDS", - "from": 91444204, - "to": 91441964, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482480, - "label": "BINDS", - "from": 91444203, - "to": 91442137, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386961, - "label": "ELEMENT_OF", - "from": 3702542, - "to": 3726306, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482484, - "label": "BINDS", - "from": 91444207, - "to": 91441609, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482491, - "label": "BINDS", - "from": 91444214, - "to": 91441871, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482490, - "label": "BINDS", - "from": 91444213, - "to": 91441909, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482495, - "label": "BINDS", - "from": 91444218, - "to": 91442250, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482492, - "label": "BINDS", - "from": 91444215, - "to": 91441905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482434, - "label": "BINDS", - "from": 91444156, - "to": 91441761, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482432, - "label": "BINDS", - "from": 91444154, - "to": 91441952, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482439, - "label": "BINDS", - "from": 91444161, - "to": 3686161, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482438, - "label": "BINDS", - "from": 91444160, - "to": 91441990, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482437, - "label": "BINDS", - "from": 91444159, - "to": 91442298, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386989, - "label": "ELEMENT_OF", - "from": 3693706, - "to": 3726311, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482442, - "label": "BINDS", - "from": 91444164, - "to": 91441766, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482440, - "label": "BINDS", - "from": 91444162, - "to": 91441957, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386985, - "label": "ELEMENT_OF", - "from": 3716924, - "to": 3726309, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482446, - "label": "BINDS", - "from": 91444168, - "to": 91442065, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482451, - "label": "BINDS", - "from": 91444173, - "to": 91441899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482450, - "label": "BINDS", - "from": 91444172, - "to": 91441771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386996, - "label": "ELEMENT_OF", - "from": 3701415, - "to": 3726313, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482449, - "label": "BINDS", - "from": 91444171, - "to": 3678934, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482448, - "label": "BINDS", - "from": 91444170, - "to": 91442284, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482454, - "label": "BINDS", - "from": 91444176, - "to": 91441529, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386994, - "label": "ELEMENT_OF", - "from": 3701809, - "to": 3726312, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482458, - "label": "BINDS", - "from": 91444180, - "to": 91441776, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482457, - "label": "BINDS", - "from": 91444179, - "to": 91442122, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387006, - "label": "ELEMENT_OF", - "from": 3698965, - "to": 3726316, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482462, - "label": "BINDS", - "from": 91444184, - "to": 91441644, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482531, - "label": "BINDS", - "from": 91444254, - "to": 91442005, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482530, - "label": "BINDS", - "from": 91444253, - "to": 3682944, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482529, - "label": "BINDS", - "from": 91444252, - "to": 91442009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482528, - "label": "BINDS", - "from": 91444251, - "to": 3684963, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482535, - "label": "BINDS", - "from": 91444258, - "to": 3679797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482533, - "label": "BINDS", - "from": 91444256, - "to": 91441664, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482532, - "label": "BINDS", - "from": 91444255, - "to": 91441919, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387010, - "label": "ELEMENT_OF", - "from": 3719959, - "to": 3726318, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482539, - "label": "BINDS", - "from": 91444262, - "to": 91442014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387021, - "label": "ELEMENT_OF", - "from": 3697191, - "to": 3726322, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482538, - "label": "BINDS", - "from": 91444261, - "to": 3687361, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482537, - "label": "BINDS", - "from": 91444260, - "to": 91442166, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387022, - "label": "ELEMENT_OF", - "from": 3701536, - "to": 3726323, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482536, - "label": "BINDS", - "from": 91444259, - "to": 3683021, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482543, - "label": "BINDS", - "from": 91444266, - "to": 3685362, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354248, - "label": "REGULATES", - "from": 3681872, - "to": 3721716, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482541, - "label": "BINDS", - "from": 91444264, - "to": 91441974, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387018, - "label": "ELEMENT_OF", - "from": 3694388, - "to": 3726321, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482540, - "label": "BINDS", - "from": 91444263, - "to": 91441806, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288724, - "label": "REGULATES", - "from": 3713248, - "to": 3689046, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482547, - "label": "BINDS", - "from": 91444270, - "to": 91442153, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288725, - "label": "REGULATES", - "from": 3677025, - "to": 3713248, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482545, - "label": "BINDS", - "from": 91444268, - "to": 91442172, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387025, - "label": "ELEMENT_OF", - "from": 3698840, - "to": 3726324, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482549, - "label": "BINDS", - "from": 91444272, - "to": 91442344, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288722, - "label": "REGULATES", - "from": 3666734, - "to": 3713247, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482548, - "label": "BINDS", - "from": 91444271, - "to": 91441811, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482553, - "label": "BINDS", - "from": 91444276, - "to": 91442062, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482559, - "label": "BINDS", - "from": 91444282, - "to": 3678675, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482558, - "label": "BINDS", - "from": 91444281, - "to": 91442099, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288730, - "label": "REGULATES", - "from": 3713250, - "to": 3688919, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482557, - "label": "BINDS", - "from": 91444280, - "to": 91442077, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288731, - "label": "REGULATES", - "from": 3669455, - "to": 3713250, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387034, - "label": "ELEMENT_OF", - "from": 3701951, - "to": 3726328, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482556, - "label": "BINDS", - "from": 91444279, - "to": 91441885, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482499, - "label": "BINDS", - "from": 91444222, - "to": 91442312, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354277, - "label": "BINDS", - "from": 3721724, - "to": 3682994, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482498, - "label": "BINDS", - "from": 91444221, - "to": 91441916, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387047, - "label": "ELEMENT_OF", - "from": 3701395, - "to": 3726331, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354279, - "label": "REGULATES", - "from": 3710246, - "to": 3721724, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354278, - "label": "REGULATES", - "from": 3721724, - "to": 3697191, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288736, - "label": "REGULATES", - "from": 3713252, - "to": 3688157, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288737, - "label": "REGULATES", - "from": 3677560, - "to": 3713252, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482501, - "label": "BINDS", - "from": 91444224, - "to": 3678679, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482500, - "label": "BINDS", - "from": 91444223, - "to": 91441794, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387042, - "label": "ELEMENT_OF", - "from": 3717023, - "to": 3726330, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482507, - "label": "BINDS", - "from": 91444230, - "to": 91442316, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482506, - "label": "BINDS", - "from": 91444229, - "to": 91441923, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387055, - "label": "ELEMENT_OF", - "from": 3711867, - "to": 3726334, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387054, - "label": "ELEMENT_OF", - "from": 3701415, - "to": 3726333, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482511, - "label": "BINDS", - "from": 91444234, - "to": 91441821, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482510, - "label": "BINDS", - "from": 91444233, - "to": 3685319, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288746, - "label": "REGULATES", - "from": 3679073, - "to": 3713255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482509, - "label": "BINDS", - "from": 91444232, - "to": 91441833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482515, - "label": "BINDS", - "from": 91444238, - "to": 91442022, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482513, - "label": "BINDS", - "from": 91444236, - "to": 3678650, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354294, - "label": "REGULATES", - "from": 3708153, - "to": 3721728, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482512, - "label": "BINDS", - "from": 91444235, - "to": 3687184, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482519, - "label": "BINDS", - "from": 91444242, - "to": 91442324, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482518, - "label": "BINDS", - "from": 91444241, - "to": 3684995, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387059, - "label": "ELEMENT_OF", - "from": 3707305, - "to": 3726337, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482517, - "label": "BINDS", - "from": 91444240, - "to": 3679629, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482516, - "label": "BINDS", - "from": 91444239, - "to": 91441588, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482523, - "label": "BINDS", - "from": 91444246, - "to": 91441592, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482521, - "label": "BINDS", - "from": 91444244, - "to": 3686293, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387071, - "label": "ELEMENT_OF", - "from": 3690717, - "to": 3726339, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354297, - "label": "REGULATES", - "from": 3721729, - "to": 3726184, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482527, - "label": "BINDS", - "from": 91444250, - "to": 3687446, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387064, - "label": "ELEMENT_OF", - "from": 3694982, - "to": 3726338, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354296, - "label": "BINDS", - "from": 3721729, - "to": 3686172, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482526, - "label": "BINDS", - "from": 91444249, - "to": 91442234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482525, - "label": "BINDS", - "from": 91444248, - "to": 91442252, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354298, - "label": "REGULATES", - "from": 3710238, - "to": 3721729, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479778, - "label": "CONSUMED_BY", - "from": 3681524, - "to": 91443109, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387079, - "label": "ELEMENT_OF", - "from": 3701453, - "to": 3726341, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479782, - "label": "PRODUCES", - "from": 91443091, - "to": 3675834, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288769, - "label": "REGULATES", - "from": 3713263, - "to": 3687809, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288770, - "label": "REGULATES", - "from": 3681210, - "to": 3713263, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288782, - "label": "REGULATES", - "from": 3681355, - "to": 3713267, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387087, - "label": "ELEMENT_OF", - "from": 3698833, - "to": 3726343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479785, - "label": "PRODUCES", - "from": 91443093, - "to": 3670572, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479791, - "label": "PRODUCES", - "from": 91443095, - "to": 91441329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354324, - "label": "REGULATES", - "from": 3677454, - "to": 3721736, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288790, - "label": "REGULATES", - "from": 3713270, - "to": 3691083, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479793, - "label": "PRODUCES", - "from": 91442489, - "to": 3684262, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288791, - "label": "REGULATES", - "from": 3677401, - "to": 3713270, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354326, - "label": "BINDS", - "from": 3721737, - "to": 3686186, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479798, - "label": "PRODUCES", - "from": 91442485, - "to": 3671803, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479796, - "label": "PRODUCES", - "from": 3706550, - "to": 91441325, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387100, - "label": "ELEMENT_OF", - "from": 3700089, - "to": 3726349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479801, - "label": "PRODUCES", - "from": 3706542, - "to": 91441324, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479800, - "label": "PRODUCES", - "from": 91442486, - "to": 91441314, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354328, - "label": "REGULATES", - "from": 3710228, - "to": 3721737, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479804, - "label": "PRODUCES", - "from": 3706552, - "to": 3673210, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479747, - "label": "CONSUMED_BY", - "from": 3684141, - "to": 91442487, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354340, - "label": "REGULATES", - "from": 3711265, - "to": 3721740, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354343, - "label": "REGULATES", - "from": 3684013, - "to": 3721741, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479745, - "label": "CONSUMED_BY", - "from": 3684186, - "to": 91443102, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354342, - "label": "REGULATES", - "from": 3721741, - "to": 3689486, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479751, - "label": "CONSUMED_BY", - "from": 3676878, - "to": 91443103, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354336, - "label": "REGULATES", - "from": 3710228, - "to": 3721739, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288812, - "label": "REGULATES", - "from": 3681919, - "to": 3713277, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387116, - "label": "ELEMENT_OF", - "from": 3702575, - "to": 3726355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479753, - "label": "CONSUMED_BY", - "from": 3710270, - "to": 91443104, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387119, - "label": "ELEMENT_OF", - "from": 3707149, - "to": 3726357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479757, - "label": "CONSUMED_BY", - "from": 91441325, - "to": 3708667, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387114, - "label": "ELEMENT_OF", - "from": 3702799, - "to": 3726354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354357, - "label": "BINDS", - "from": 3721745, - "to": 3678614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479762, - "label": "CONSUMED_BY", - "from": 91441310, - "to": 91442482, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354359, - "label": "REGULATES", - "from": 3714533, - "to": 3721745, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354358, - "label": "REGULATES", - "from": 3721745, - "to": 3698023, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354353, - "label": "BINDS", - "from": 3721744, - "to": 3685196, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479766, - "label": "CONSUMED_BY", - "from": 91441314, - "to": 91442484, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354355, - "label": "REGULATES", - "from": 3708423, - "to": 3721744, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288818, - "label": "REGULATES", - "from": 3677715, - "to": 3713279, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479764, - "label": "CONSUMED_BY", - "from": 3681405, - "to": 91443106, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288829, - "label": "REGULATES", - "from": 3713283, - "to": 3689028, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288830, - "label": "REGULATES", - "from": 3677196, - "to": 3713283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479768, - "label": "CONSUMED_BY", - "from": 3671501, - "to": 91442479, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288824, - "label": "REGULATES", - "from": 3681281, - "to": 3713281, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479775, - "label": "CONSUMED_BY", - "from": 3681298, - "to": 91442476, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479774, - "label": "CONSUMED_BY", - "from": 3681405, - "to": 91443108, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288836, - "label": "REGULATES", - "from": 3677368, - "to": 3713285, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479841, - "label": "PRODUCES", - "from": 91442490, - "to": 91441328, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479847, - "label": "PRODUCES", - "from": 91443102, - "to": 91441282, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479844, - "label": "PRODUCES", - "from": 91442480, - "to": 91441311, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479851, - "label": "PRODUCES", - "from": 91442487, - "to": 91441335, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479850, - "label": "PRODUCES", - "from": 91442487, - "to": 91441308, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354376, - "label": "BINDS", - "from": 3721750, - "to": 3686159, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479853, - "label": "PRODUCES", - "from": 91443103, - "to": 3681145, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288842, - "label": "REGULATES", - "from": 3679360, - "to": 3713287, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479852, - "label": "PRODUCES", - "from": 91443103, - "to": 3670388, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354378, - "label": "REGULATES", - "from": 3710228, - "to": 3721750, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354389, - "label": "REGULATES", - "from": 3710270, - "to": 3721753, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479858, - "label": "PRODUCES", - "from": 3708730, - "to": 3671802, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479857, - "label": "PRODUCES", - "from": 3708667, - "to": 91441326, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479862, - "label": "PRODUCES", - "from": 91443106, - "to": 91441333, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354387, - "label": "BINDS", - "from": 3721753, - "to": 3687276, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479861, - "label": "PRODUCES", - "from": 91442482, - "to": 91441299, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479867, - "label": "PRODUCES", - "from": 91442484, - "to": 91441336, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354397, - "label": "REGULATES", - "from": 3710167, - "to": 3721755, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479866, - "label": "PRODUCES", - "from": 91442484, - "to": 91441313, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479864, - "label": "PRODUCES", - "from": 3705384, - "to": 91441330, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288869, - "label": "REGULATES", - "from": 3681364, - "to": 3713296, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479809, - "label": "PRODUCES", - "from": 91442492, - "to": 91441364, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479808, - "label": "PRODUCES", - "from": 91442492, - "to": 91441341, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354406, - "label": "BINDS", - "from": 3721758, - "to": 3679521, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288878, - "label": "REGULATES", - "from": 3681872, - "to": 3713299, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288872, - "label": "REGULATES", - "from": 3685555, - "to": 3713297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479822, - "label": "PRODUCES", - "from": 91442477, - "to": 3670742, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354408, - "label": "REGULATES", - "from": 3710167, - "to": 3721758, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288874, - "label": "REGULATES", - "from": 3713298, - "to": 3689339, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288875, - "label": "REGULATES", - "from": 3677368, - "to": 3713298, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479820, - "label": "PRODUCES", - "from": 91443100, - "to": 91441332, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479827, - "label": "PRODUCES", - "from": 91442488, - "to": 91441301, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479825, - "label": "PRODUCES", - "from": 91443101, - "to": 91441334, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479831, - "label": "PRODUCES", - "from": 3707606, - "to": 3670119, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354419, - "label": "REGULATES", - "from": 3677401, - "to": 3721761, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479828, - "label": "PRODUCES", - "from": 91442488, - "to": 91441310, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479835, - "label": "PRODUCES", - "from": 91442481, - "to": 91441300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479834, - "label": "PRODUCES", - "from": 91442491, - "to": 91441293, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288893, - "label": "REGULATES", - "from": 3677560, - "to": 3713304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479833, - "label": "PRODUCES", - "from": 3708959, - "to": 91441307, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479832, - "label": "PRODUCES", - "from": 3708492, - "to": 3668116, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479838, - "label": "PRODUCES", - "from": 91442481, - "to": 91441315, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479837, - "label": "PRODUCES", - "from": 91442481, - "to": 91441290, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479836, - "label": "PRODUCES", - "from": 91442481, - "to": 3670103, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479651, - "label": "CONSUMED_BY", - "from": 3670742, - "to": 91442489, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288901, - "label": "REGULATES", - "from": 3713307, - "to": 3691277, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288902, - "label": "REGULATES", - "from": 3677698, - "to": 3713307, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479648, - "label": "CONSUMED_BY", - "from": 91441331, - "to": 91443095, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479654, - "label": "CONSUMED_BY", - "from": 3671802, - "to": 3706550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354435, - "label": "REGULATES", - "from": 3710270, - "to": 3721765, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288898, - "label": "REGULATES", - "from": 3713306, - "to": 3685630, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288899, - "label": "REGULATES", - "from": 3677368, - "to": 3713306, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479658, - "label": "CONSUMED_BY", - "from": 3671803, - "to": 91442486, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479656, - "label": "CONSUMED_BY", - "from": 3667467, - "to": 91442485, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354441, - "label": "REGULATES", - "from": 3721767, - "to": 3728778, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354440, - "label": "BINDS", - "from": 3721767, - "to": 3679902, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479661, - "label": "CONSUMED_BY", - "from": 3671802, - "to": 3706542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354442, - "label": "REGULATES", - "from": 3705945, - "to": 3721767, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354452, - "label": "BINDS", - "from": 3721770, - "to": 3678757, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288919, - "label": "REGULATES", - "from": 3713313, - "to": 3689555, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354454, - "label": "REGULATES", - "from": 3714081, - "to": 3721770, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354449, - "label": "REGULATES", - "from": 3721769, - "to": 3697745, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354448, - "label": "BINDS", - "from": 3721769, - "to": 3679644, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354450, - "label": "REGULATES", - "from": 3711285, - "to": 3721769, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354463, - "label": "BINDS", - "from": 3721773, - "to": 3683222, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288920, - "label": "REGULATES", - "from": 3677487, - "to": 3713313, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354469, - "label": "REGULATES", - "from": 3711179, - "to": 3721774, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354468, - "label": "REGULATES", - "from": 3721774, - "to": 3696332, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288928, - "label": "REGULATES", - "from": 3713316, - "to": 3685695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354465, - "label": "REGULATES", - "from": 3711281, - "to": 3721773, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288929, - "label": "REGULATES", - "from": 3682118, - "to": 3713316, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354467, - "label": "BINDS", - "from": 3721774, - "to": 3682858, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354478, - "label": "BINDS", - "from": 3721777, - "to": 3686200, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288937, - "label": "REGULATES", - "from": 3713319, - "to": 3688222, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288938, - "label": "REGULATES", - "from": 3677454, - "to": 3713319, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288944, - "label": "REGULATES", - "from": 3677560, - "to": 3713321, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288946, - "label": "REGULATES", - "from": 3713322, - "to": 3689158, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288947, - "label": "REGULATES", - "from": 3681891, - "to": 3713322, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479642, - "label": "CONSUMED_BY", - "from": 91441282, - "to": 91443091, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288958, - "label": "REGULATES", - "from": 3713326, - "to": 3689829, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 288959, - "label": "REGULATES", - "from": 3677368, - "to": 3713326, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479645, - "label": "CONSUMED_BY", - "from": 3676111, - "to": 91443093, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479717, - "label": "CONSUMED_BY", - "from": 3683983, - "to": 91443099, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479721, - "label": "CONSUMED_BY", - "from": 3670737, - "to": 91442477, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479720, - "label": "CONSUMED_BY", - "from": 3681405, - "to": 91443100, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479725, - "label": "CONSUMED_BY", - "from": 3681405, - "to": 91443101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479731, - "label": "CONSUMED_BY", - "from": 91441308, - "to": 91442488, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479733, - "label": "CONSUMED_BY", - "from": 3679481, - "to": 91442491, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479732, - "label": "CONSUMED_BY", - "from": 91441324, - "to": 3708959, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479739, - "label": "CONSUMED_BY", - "from": 3677153, - "to": 91442490, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479738, - "label": "CONSUMED_BY", - "from": 3672718, - "to": 91442481, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479742, - "label": "CONSUMED_BY", - "from": 91441300, - "to": 91442480, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479741, - "label": "CONSUMED_BY", - "from": 91441324, - "to": 3708884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479710, - "label": "CONSUMED_BY", - "from": 91441328, - "to": 91442492, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387365, - "label": "ELEMENT_OF", - "from": 3695225, - "to": 3726359, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387362, - "label": "ELEMENT_OF", - "from": 3719950, - "to": 3726358, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387374, - "label": "ELEMENT_OF", - "from": 3699331, - "to": 3726361, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387391, - "label": "ELEMENT_OF", - "from": 3719984, - "to": 3726367, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387399, - "label": "ELEMENT_OF", - "from": 3694174, - "to": 3726370, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387394, - "label": "ELEMENT_OF", - "from": 3699864, - "to": 3726369, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387414, - "label": "ELEMENT_OF", - "from": 3712091, - "to": 3726374, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387411, - "label": "ELEMENT_OF", - "from": 3698765, - "to": 3726373, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387422, - "label": "ELEMENT_OF", - "from": 3719956, - "to": 3726378, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387428, - "label": "ELEMENT_OF", - "from": 3717151, - "to": 3726379, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387441, - "label": "ELEMENT_OF", - "from": 3687645, - "to": 3726383, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387452, - "label": "ELEMENT_OF", - "from": 3694635, - "to": 3726385, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387460, - "label": "ELEMENT_OF", - "from": 3717056, - "to": 3726388, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387469, - "label": "ELEMENT_OF", - "from": 3717115, - "to": 3726391, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387477, - "label": "ELEMENT_OF", - "from": 3686250, - "to": 3726393, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387485, - "label": "ELEMENT_OF", - "from": 3699346, - "to": 3726394, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387486, - "label": "ELEMENT_OF", - "from": 3690955, - "to": 3726395, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387492, - "label": "ELEMENT_OF", - "from": 3712071, - "to": 3726397, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479874, - "label": "PRODUCES", - "from": 91443108, - "to": 91441331, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479877, - "label": "PRODUCES", - "from": 91443109, - "to": 3679481, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387496, - "label": "ELEMENT_OF", - "from": 3697789, - "to": 3726399, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387504, - "label": "ELEMENT_OF", - "from": 3699089, - "to": 3726400, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223683, - "label": "PRODUCES", - "from": 3705532, - "to": 3679447, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223685, - "label": "CONSUMED_BY", - "from": 3679067, - "to": 3705533, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223691, - "label": "PRODUCES", - "from": 3705534, - "to": 3679103, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223689, - "label": "CONSUMED_BY", - "from": 3679114, - "to": 3705534, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223688, - "label": "PRODUCES", - "from": 3705533, - "to": 3677547, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223695, - "label": "PRODUCES", - "from": 3705535, - "to": 3679120, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223694, - "label": "CONSUMED_BY", - "from": 3677711, - "to": 3705535, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223699, - "label": "PRODUCES", - "from": 3705536, - "to": 3682206, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387541, - "label": "ELEMENT_OF", - "from": 3712180, - "to": 3726410, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223698, - "label": "CONSUMED_BY", - "from": 3684289, - "to": 3705536, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223707, - "label": "CONSUMED_BY", - "from": 3677396, - "to": 3705538, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387550, - "label": "ELEMENT_OF", - "from": 3694414, - "to": 3726413, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223714, - "label": "PRODUCES", - "from": 3705539, - "to": 3677578, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387558, - "label": "ELEMENT_OF", - "from": 3711787, - "to": 3726417, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223716, - "label": "CONSUMED_BY", - "from": 3670256, - "to": 3705540, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223723, - "label": "CONSUMED_BY", - "from": 3684277, - "to": 3705541, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223725, - "label": "PRODUCES", - "from": 3705541, - "to": 3677441, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223731, - "label": "PRODUCES", - "from": 3705542, - "to": 3677603, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223729, - "label": "CONSUMED_BY", - "from": 3677705, - "to": 3705542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223735, - "label": "PRODUCES", - "from": 3705543, - "to": 3681507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223734, - "label": "CONSUMED_BY", - "from": 3681407, - "to": 3705543, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387571, - "label": "ELEMENT_OF", - "from": 3701526, - "to": 3726421, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223738, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3705544, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223743, - "label": "CONSUMED_BY", - "from": 3677458, - "to": 3705545, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387576, - "label": "ELEMENT_OF", - "from": 3717112, - "to": 3726423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223741, - "label": "PRODUCES", - "from": 3705544, - "to": 3672657, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223747, - "label": "PRODUCES", - "from": 3705545, - "to": 3679392, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387585, - "label": "ELEMENT_OF", - "from": 3702836, - "to": 3726425, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223755, - "label": "CONSUMED_BY", - "from": 3666494, - "to": 3705547, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387597, - "label": "ELEMENT_OF", - "from": 3687561, - "to": 3726428, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223770, - "label": "CONSUMED_BY", - "from": 3681872, - "to": 3705550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223773, - "label": "PRODUCES", - "from": 3705550, - "to": 3681929, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223776, - "label": "CONSUMED_BY", - "from": 3675930, - "to": 3705551, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223781, - "label": "PRODUCES", - "from": 3705551, - "to": 3683891, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223799, - "label": "PRODUCES", - "from": 3705555, - "to": 3668159, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223797, - "label": "CONSUMED_BY", - "from": 3668188, - "to": 3705555, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223803, - "label": "PRODUCES", - "from": 3705556, - "to": 3677776, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223801, - "label": "CONSUMED_BY", - "from": 3677501, - "to": 3705556, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223807, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3705557, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223811, - "label": "CONSUMED_BY", - "from": 3677550, - "to": 3705558, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223808, - "label": "PRODUCES", - "from": 3705557, - "to": 3681262, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223816, - "label": "CONSUMED_BY", - "from": 3667424, - "to": 3705559, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223821, - "label": "PRODUCES", - "from": 3705559, - "to": 3679083, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223829, - "label": "CONSUMED_BY", - "from": 3670537, - "to": 3705561, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223828, - "label": "PRODUCES", - "from": 3705560, - "to": 3681781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223834, - "label": "PRODUCES", - "from": 3705562, - "to": 3677742, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223833, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3705562, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223838, - "label": "CONSUMED_BY", - "from": 3677444, - "to": 3705563, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223840, - "label": "PRODUCES", - "from": 3705563, - "to": 3675458, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223847, - "label": "CONSUMED_BY", - "from": 3681797, - "to": 3705565, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223857, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3705567, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223863, - "label": "CONSUMED_BY", - "from": 3681876, - "to": 3705568, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223866, - "label": "CONSUMED_BY", - "from": 3674692, - "to": 3705569, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223870, - "label": "CONSUMED_BY", - "from": 3679247, - "to": 3705570, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223868, - "label": "PRODUCES", - "from": 3705569, - "to": 3679323, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223874, - "label": "PRODUCES", - "from": 3705571, - "to": 3672868, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223878, - "label": "PRODUCES", - "from": 3705572, - "to": 3668774, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223876, - "label": "CONSUMED_BY", - "from": 3668781, - "to": 3705572, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223883, - "label": "CONSUMED_BY", - "from": 3677192, - "to": 3705573, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223885, - "label": "PRODUCES", - "from": 3705573, - "to": 3675448, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223888, - "label": "CONSUMED_BY", - "from": 3677366, - "to": 3705574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223898, - "label": "CONSUMED_BY", - "from": 3681437, - "to": 3705576, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223900, - "label": "PRODUCES", - "from": 3705576, - "to": 3685599, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223906, - "label": "CONSUMED_BY", - "from": 3677570, - "to": 3705578, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223909, - "label": "PRODUCES", - "from": 3705578, - "to": 3682064, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 223917, - "label": "CONSUMED_BY", - "from": 3672657, - "to": 3705580, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178479132, - "label": "MODIFIED_TO", - "from": 3710270, - "to": 91442750, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191281, - "label": "IN_PATHWAY", - "from": 3692949, - "to": 3692825, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191286, - "label": "IN_PATHWAY", - "from": 3692827, - "to": 3692826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191289, - "label": "IN_PATHWAY", - "from": 3705523, - "to": 3692827, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191293, - "label": "IN_PATHWAY", - "from": 3709459, - "to": 3692828, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191296, - "label": "IN_PATHWAY", - "from": 3692829, - "to": 3693017, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191300, - "label": "IN_PATHWAY", - "from": 3709381, - "to": 3692829, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191309, - "label": "IN_PATHWAY", - "from": 3705532, - "to": 3692830, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191316, - "label": "IN_PATHWAY", - "from": 3708501, - "to": 3692831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191322, - "label": "IN_PATHWAY", - "from": 3705418, - "to": 3692832, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191321, - "label": "IN_PATHWAY", - "from": 3692832, - "to": 3694278, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191338, - "label": "IN_PATHWAY", - "from": 3705510, - "to": 3692834, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191336, - "label": "IN_PATHWAY", - "from": 3707602, - "to": 3692833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191341, - "label": "IN_PATHWAY", - "from": 3709030, - "to": 3692835, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191348, - "label": "IN_PATHWAY", - "from": 3707663, - "to": 3692836, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191357, - "label": "IN_PATHWAY", - "from": 3707680, - "to": 3692837, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191363, - "label": "IN_PATHWAY", - "from": 3705547, - "to": 3692838, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191365, - "label": "IN_PATHWAY", - "from": 3709570, - "to": 3692839, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191369, - "label": "IN_PATHWAY", - "from": 3709206, - "to": 3692840, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191374, - "label": "IN_PATHWAY", - "from": 3709543, - "to": 3692841, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191383, - "label": "IN_PATHWAY", - "from": 3706294, - "to": 3692842, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191390, - "label": "IN_PATHWAY", - "from": 3705256, - "to": 3692843, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191389, - "label": "IN_PATHWAY", - "from": 3692843, - "to": 3692950, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191395, - "label": "IN_PATHWAY", - "from": 3707453, - "to": 3692844, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191398, - "label": "IN_PATHWAY", - "from": 3700672, - "to": 3692845, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191402, - "label": "IN_PATHWAY", - "from": 3708584, - "to": 3692846, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191419, - "label": "IN_PATHWAY", - "from": 3709049, - "to": 3692847, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191424, - "label": "IN_PATHWAY", - "from": 3694277, - "to": 3692848, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191430, - "label": "IN_PATHWAY", - "from": 3692928, - "to": 3692849, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191436, - "label": "IN_PATHWAY", - "from": 3706551, - "to": 3692850, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191442, - "label": "IN_PATHWAY", - "from": 3706264, - "to": 3692852, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191440, - "label": "IN_PATHWAY", - "from": 3705437, - "to": 3692851, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191446, - "label": "IN_PATHWAY", - "from": 3708813, - "to": 3692853, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191452, - "label": "IN_PATHWAY", - "from": 3705374, - "to": 3692854, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191459, - "label": "IN_PATHWAY", - "from": 3692857, - "to": 3692856, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191456, - "label": "IN_PATHWAY", - "from": 3709442, - "to": 3692855, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191463, - "label": "IN_PATHWAY", - "from": 3708462, - "to": 3692857, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191471, - "label": "IN_PATHWAY", - "from": 3709276, - "to": 3692859, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388082, - "label": "ELEMENT_OF", - "from": 3702863, - "to": 3726431, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191480, - "label": "IN_PATHWAY", - "from": 3707401, - "to": 3692860, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388091, - "label": "ELEMENT_OF", - "from": 3694005, - "to": 3726434, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191490, - "label": "IN_PATHWAY", - "from": 3708678, - "to": 3692861, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322567, - "label": "REGULATES", - "from": 3717466, - "to": 3689491, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191494, - "label": "IN_PATHWAY", - "from": 3705308, - "to": 3692862, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191497, - "label": "IN_PATHWAY", - "from": 3706783, - "to": 3692863, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191502, - "label": "IN_PATHWAY", - "from": 3709306, - "to": 3692864, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322568, - "label": "REGULATES", - "from": 3666563, - "to": 3717466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388105, - "label": "ELEMENT_OF", - "from": 3694235, - "to": 3726438, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388118, - "label": "ELEMENT_OF", - "from": 3694684, - "to": 3726441, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388114, - "label": "ELEMENT_OF", - "from": 3697075, - "to": 3726440, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191514, - "label": "IN_PATHWAY", - "from": 3706591, - "to": 3692865, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388126, - "label": "ELEMENT_OF", - "from": 3719971, - "to": 3726445, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191518, - "label": "IN_PATHWAY", - "from": 3708825, - "to": 3692867, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322585, - "label": "BINDS", - "from": 3717471, - "to": 3679569, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388120, - "label": "ELEMENT_OF", - "from": 3719915, - "to": 3726442, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 191516, - "label": "IN_PATHWAY", - "from": 3707546, - "to": 3692866, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322587, - "label": "REGULATES", - "from": 3708153, - "to": 3717471, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322596, - "label": "BINDS", - "from": 3717474, - "to": 3678716, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322597, - "label": "REGULATES", - "from": 3717474, - "to": 3699636, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322598, - "label": "REGULATES", - "from": 3711247, - "to": 3717474, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322607, - "label": "BINDS", - "from": 3717477, - "to": 3685490, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388142, - "label": "ELEMENT_OF", - "from": 3698970, - "to": 3726450, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388149, - "label": "ELEMENT_OF", - "from": 3716762, - "to": 3726454, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322615, - "label": "REGULATES", - "from": 3717479, - "to": 3726008, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322609, - "label": "REGULATES", - "from": 3711207, - "to": 3717477, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322616, - "label": "REGULATES", - "from": 3712313, - "to": 3717479, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388153, - "label": "ELEMENT_OF", - "from": 3696323, - "to": 3726457, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322632, - "label": "REGULATES", - "from": 3717484, - "to": 3688850, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388169, - "label": "ELEMENT_OF", - "from": 3699457, - "to": 3726463, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322633, - "label": "REGULATES", - "from": 3679096, - "to": 3717484, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388181, - "label": "ELEMENT_OF", - "from": 3717029, - "to": 3726470, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388182, - "label": "ELEMENT_OF", - "from": 3682810, - "to": 3726471, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322652, - "label": "REGULATES", - "from": 3710228, - "to": 3717489, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322654, - "label": "REGULATES", - "from": 3717490, - "to": 3688887, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322655, - "label": "REGULATES", - "from": 3682083, - "to": 3717490, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322650, - "label": "BINDS", - "from": 3717489, - "to": 3683149, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322665, - "label": "BINDS", - "from": 3717493, - "to": 3682955, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322666, - "label": "REGULATES", - "from": 3717493, - "to": 3727765, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322667, - "label": "REGULATES", - "from": 3712313, - "to": 3717493, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388208, - "label": "ELEMENT_OF", - "from": 3706991, - "to": 3726479, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388210, - "label": "ELEMENT_OF", - "from": 3702579, - "to": 3726480, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388220, - "label": "ELEMENT_OF", - "from": 3694011, - "to": 3726482, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 289922, - "label": "REGULATES", - "from": 3683945, - "to": 3713327, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 289933, - "label": "REGULATES", - "from": 3713331, - "to": 3689436, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 289934, - "label": "REGULATES", - "from": 3677368, - "to": 3713331, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388235, - "label": "ELEMENT_OF", - "from": 3698684, - "to": 3726488, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322699, - "label": "REGULATES", - "from": 3677615, - "to": 3717502, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 289931, - "label": "REGULATES", - "from": 3677466, - "to": 3713330, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388247, - "label": "ELEMENT_OF", - "from": 3711989, - "to": 3726494, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 289951, - "label": "REGULATES", - "from": 3713337, - "to": 3689403, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388250, - "label": "ELEMENT_OF", - "from": 3694149, - "to": 3726495, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322725, - "label": "REGULATES", - "from": 3710143, - "to": 3717509, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322727, - "label": "BINDS", - "from": 3717510, - "to": 3682964, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 289952, - "label": "REGULATES", - "from": 3677401, - "to": 3713337, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 158886, - "label": "CATALYZES", - "from": 3711389, - "to": 3685993, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 158887, - "label": "CATALYZES", - "from": 3685993, - "to": 3708802, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 158885, - "label": "CATALYZES", - "from": 3685992, - "to": 3708631, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388258, - "label": "ELEMENT_OF", - "from": 3687618, - "to": 3726497, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322723, - "label": "BINDS", - "from": 3717509, - "to": 3686499, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322733, - "label": "REGULATES", - "from": 3711404, - "to": 3717511, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 289967, - "label": "REGULATES", - "from": 3677401, - "to": 3713342, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322735, - "label": "REGULATES", - "from": 3717512, - "to": 3688906, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322729, - "label": "REGULATES", - "from": 3712313, - "to": 3717510, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388267, - "label": "ELEMENT_OF", - "from": 3697758, - "to": 3726500, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 158892, - "label": "CATALYZES", - "from": 3712579, - "to": 3685996, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322731, - "label": "BINDS", - "from": 3717511, - "to": 3682815, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388277, - "label": "ELEMENT_OF", - "from": 3696980, - "to": 3726504, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 158898, - "label": "CATALYZES", - "from": 3712539, - "to": 3685999, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 158899, - "label": "CATALYZES", - "from": 3685999, - "to": 3708502, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322736, - "label": "REGULATES", - "from": 3710560, - "to": 3717512, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 289969, - "label": "REGULATES", - "from": 3713343, - "to": 3686024, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 289970, - "label": "REGULATES", - "from": 3677818, - "to": 3713343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 289982, - "label": "REGULATES", - "from": 3681147, - "to": 3713347, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388286, - "label": "ELEMENT_OF", - "from": 3699002, - "to": 3726506, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 158909, - "label": "CATALYZES", - "from": 3686004, - "to": 3706668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322747, - "label": "REGULATES", - "from": 3715127, - "to": 3717515, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322757, - "label": "REGULATES", - "from": 3717518, - "to": 3685992, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322758, - "label": "REGULATES", - "from": 3677613, - "to": 3717518, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 289991, - "label": "REGULATES", - "from": 3679145, - "to": 3713350, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 289984, - "label": "REGULATES", - "from": 3713348, - "to": 3688981, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 158918, - "label": "CATALYZES", - "from": 3712597, - "to": 3686009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 289985, - "label": "REGULATES", - "from": 3710552, - "to": 3713348, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 158917, - "label": "CATALYZES", - "from": 3686008, - "to": 3706707, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388290, - "label": "ELEMENT_OF", - "from": 3690560, - "to": 3726507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322765, - "label": "REGULATES", - "from": 3681640, - "to": 3717520, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388302, - "label": "ELEMENT_OF", - "from": 3697959, - "to": 3726515, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388297, - "label": "ELEMENT_OF", - "from": 3719976, - "to": 3726512, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 289993, - "label": "REGULATES", - "from": 3713351, - "to": 3691179, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 289994, - "label": "REGULATES", - "from": 3666457, - "to": 3713351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388311, - "label": "ELEMENT_OF", - "from": 3719932, - "to": 3726518, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 158928, - "label": "CATALYZES", - "from": 3710183, - "to": 3686014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388307, - "label": "ELEMENT_OF", - "from": 3696410, - "to": 3726516, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290012, - "label": "REGULATES", - "from": 3677445, - "to": 3713357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 158939, - "label": "CATALYZES", - "from": 3686019, - "to": 3706250, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322782, - "label": "BINDS", - "from": 3717525, - "to": 3686440, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322783, - "label": "REGULATES", - "from": 3717525, - "to": 3699720, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290011, - "label": "REGULATES", - "from": 3713357, - "to": 3689239, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 158946, - "label": "CATALYZES", - "from": 3714773, - "to": 3686023, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290021, - "label": "REGULATES", - "from": 3677796, - "to": 3713360, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 158947, - "label": "CATALYZES", - "from": 3686023, - "to": 3705619, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322784, - "label": "REGULATES", - "from": 3714900, - "to": 3717525, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322786, - "label": "REGULATES", - "from": 3717526, - "to": 3689016, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322787, - "label": "REGULATES", - "from": 3677446, - "to": 3717526, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322799, - "label": "REGULATES", - "from": 3710228, - "to": 3717529, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290024, - "label": "REGULATES", - "from": 3677336, - "to": 3713361, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 322795, - "label": "REGULATES", - "from": 3711285, - "to": 3717528, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 158968, - "label": "CATALYZES", - "from": 3705953, - "to": 3686034, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 158969, - "label": "CATALYZES", - "from": 3686034, - "to": 3708580, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290041, - "label": "REGULATES", - "from": 3713367, - "to": 3689848, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290042, - "label": "REGULATES", - "from": 3677501, - "to": 3713367, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 158978, - "label": "CATALYZES", - "from": 3714782, - "to": 3686039, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 158979, - "label": "CATALYZES", - "from": 3686039, - "to": 3708603, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290054, - "label": "REGULATES", - "from": 3677711, - "to": 3713371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290050, - "label": "REGULATES", - "from": 3713370, - "to": 3688818, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290051, - "label": "REGULATES", - "from": 3677401, - "to": 3713370, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 158986, - "label": "CATALYZES", - "from": 3710524, - "to": 3686043, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 158984, - "label": "CATALYZES", - "from": 3702067, - "to": 3686042, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 158985, - "label": "CATALYZES", - "from": 3686042, - "to": 3707446, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 158990, - "label": "CATALYZES", - "from": 3715065, - "to": 3686045, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 158991, - "label": "CATALYZES", - "from": 3686045, - "to": 3706320, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 158995, - "label": "CATALYZES", - "from": 3687685, - "to": 3708648, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 158992, - "label": "CATALYZES", - "from": 3714491, - "to": 3687684, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159002, - "label": "CATALYZES", - "from": 3711379, - "to": 3687689, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159003, - "label": "CATALYZES", - "from": 3687689, - "to": 3705566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290074, - "label": "REGULATES", - "from": 3713378, - "to": 3687685, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290075, - "label": "REGULATES", - "from": 3677401, - "to": 3713378, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159010, - "label": "CATALYZES", - "from": 3714458, - "to": 3687693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159011, - "label": "CATALYZES", - "from": 3687693, - "to": 3709255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159025, - "label": "CATALYZES", - "from": 3687700, - "to": 3706657, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159032, - "label": "CATALYZES", - "from": 3704577, - "to": 3687704, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290105, - "label": "REGULATES", - "from": 3677496, - "to": 3713388, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159046, - "label": "CATALYZES", - "from": 3714146, - "to": 3687711, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159050, - "label": "CATALYZES", - "from": 3712579, - "to": 3687713, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290125, - "label": "REGULATES", - "from": 3713395, - "to": 3686019, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290126, - "label": "REGULATES", - "from": 3681147, - "to": 3713395, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159048, - "label": "CATALYZES", - "from": 3710547, - "to": 3687712, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159049, - "label": "CATALYZES", - "from": 3687712, - "to": 3707831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290120, - "label": "REGULATES", - "from": 3677161, - "to": 3713393, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159053, - "label": "CATALYZES", - "from": 3687714, - "to": 3708672, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290132, - "label": "REGULATES", - "from": 3677501, - "to": 3713397, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159060, - "label": "CATALYZES", - "from": 3714650, - "to": 3687718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290131, - "label": "REGULATES", - "from": 3713397, - "to": 3688135, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159074, - "label": "CATALYZES", - "from": 3708286, - "to": 3687725, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159075, - "label": "CATALYZES", - "from": 3687725, - "to": 3709493, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355686, - "label": "BINDS", - "from": 3721779, - "to": 3687370, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355680, - "label": "REGULATES", - "from": 3708423, - "to": 3721777, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159076, - "label": "CATALYZES", - "from": 3714876, - "to": 3687726, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355695, - "label": "REGULATES", - "from": 3679440, - "to": 3721781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159080, - "label": "CATALYZES", - "from": 3710304, - "to": 3687728, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290159, - "label": "REGULATES", - "from": 3677605, - "to": 3713406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355688, - "label": "REGULATES", - "from": 3714706, - "to": 3721779, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355701, - "label": "BINDS", - "from": 3721783, - "to": 3678864, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159090, - "label": "CATALYZES", - "from": 3712636, - "to": 3687733, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355703, - "label": "REGULATES", - "from": 3710270, - "to": 3721783, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355702, - "label": "REGULATES", - "from": 3721783, - "to": 3695066, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355697, - "label": "BINDS", - "from": 3721782, - "to": 3683179, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355699, - "label": "REGULATES", - "from": 3715127, - "to": 3721782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159098, - "label": "CATALYZES", - "from": 3710183, - "to": 3687737, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159099, - "label": "CATALYZES", - "from": 3687737, - "to": 3708477, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355711, - "label": "REGULATES", - "from": 3711285, - "to": 3721785, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355707, - "label": "REGULATES", - "from": 3712313, - "to": 3721784, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355706, - "label": "REGULATES", - "from": 3721784, - "to": 3726736, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224641, - "label": "PRODUCES", - "from": 3705580, - "to": 3677636, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224640, - "label": "PRODUCES", - "from": 3705580, - "to": 3672681, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159110, - "label": "CATALYZES", - "from": 3714723, - "to": 3687743, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355714, - "label": "REGULATES", - "from": 3679284, - "to": 3721786, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224644, - "label": "CONSUMED_BY", - "from": 3677578, - "to": 3705581, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224654, - "label": "PRODUCES", - "from": 3705582, - "to": 3684109, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224659, - "label": "CONSUMED_BY", - "from": 3677432, - "to": 3705583, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224662, - "label": "CONSUMED_BY", - "from": 3683881, - "to": 3705584, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224666, - "label": "CONSUMED_BY", - "from": 3679118, - "to": 3705585, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224664, - "label": "PRODUCES", - "from": 3705584, - "to": 3682124, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224674, - "label": "PRODUCES", - "from": 3705586, - "to": 3684049, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224672, - "label": "CONSUMED_BY", - "from": 3684322, - "to": 3705586, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224678, - "label": "PRODUCES", - "from": 3705587, - "to": 3666419, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224677, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3705587, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355756, - "label": "REGULATES", - "from": 3712313, - "to": 3721797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224681, - "label": "CONSUMED_BY", - "from": 3677573, - "to": 3705588, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355758, - "label": "BINDS", - "from": 3721798, - "to": 3678427, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355752, - "label": "REGULATES", - "from": 3677368, - "to": 3721796, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224685, - "label": "PRODUCES", - "from": 3705588, - "to": 3679360, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355755, - "label": "REGULATES", - "from": 3721797, - "to": 3727296, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355754, - "label": "BINDS", - "from": 3721797, - "to": 3678441, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224691, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3705590, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355764, - "label": "REGULATES", - "from": 3711233, - "to": 3721799, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224690, - "label": "PRODUCES", - "from": 3705589, - "to": 3666574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224689, - "label": "CONSUMED_BY", - "from": 3677238, - "to": 3705589, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355760, - "label": "REGULATES", - "from": 3710228, - "to": 3721798, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224693, - "label": "PRODUCES", - "from": 3705590, - "to": 3666423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355762, - "label": "BINDS", - "from": 3721799, - "to": 3678731, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355773, - "label": "BINDS", - "from": 3721802, - "to": 3685066, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224698, - "label": "CONSUMED_BY", - "from": 3672655, - "to": 3705592, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355775, - "label": "REGULATES", - "from": 3708153, - "to": 3721802, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224706, - "label": "CONSUMED_BY", - "from": 3682143, - "to": 3705593, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224704, - "label": "PRODUCES", - "from": 3705592, - "to": 3681679, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224710, - "label": "CONSUMED_BY", - "from": 3679250, - "to": 3705594, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224708, - "label": "PRODUCES", - "from": 3705593, - "to": 3679338, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355789, - "label": "REGULATES", - "from": 3721806, - "to": 3685690, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355790, - "label": "REGULATES", - "from": 3677452, - "to": 3721806, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224712, - "label": "PRODUCES", - "from": 3705594, - "to": 3669528, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355785, - "label": "BINDS", - "from": 3721805, - "to": 3682775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355787, - "label": "REGULATES", - "from": 3710270, - "to": 3721805, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355786, - "label": "REGULATES", - "from": 3721805, - "to": 3697549, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224727, - "label": "PRODUCES", - "from": 3705597, - "to": 3670275, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224728, - "label": "CONSUMED_BY", - "from": 3675780, - "to": 3705598, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355801, - "label": "REGULATES", - "from": 3721809, - "to": 3730328, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355800, - "label": "BINDS", - "from": 3721809, - "to": 3678450, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355802, - "label": "REGULATES", - "from": 3712313, - "to": 3721809, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224739, - "label": "PRODUCES", - "from": 3705600, - "to": 3679473, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224736, - "label": "CONSUMED_BY", - "from": 3681503, - "to": 3705600, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224743, - "label": "CONSUMED_BY", - "from": 3677302, - "to": 3705601, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224746, - "label": "CONSUMED_BY", - "from": 3677731, - "to": 3705602, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224745, - "label": "PRODUCES", - "from": 3705601, - "to": 3677307, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355823, - "label": "BINDS", - "from": 3721815, - "to": 3679550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323048, - "label": "REGULATES", - "from": 3717532, - "to": 3692623, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323049, - "label": "REGULATES", - "from": 3681418, - "to": 3717532, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224749, - "label": "PRODUCES", - "from": 3705602, - "to": 3684061, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224748, - "label": "PRODUCES", - "from": 3705602, - "to": 3681287, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224753, - "label": "PRODUCES", - "from": 3705603, - "to": 3672718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224752, - "label": "CONSUMED_BY", - "from": 3682077, - "to": 3705603, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323063, - "label": "REGULATES", - "from": 3717536, - "to": 3692663, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355825, - "label": "REGULATES", - "from": 3712401, - "to": 3721815, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224757, - "label": "PRODUCES", - "from": 3705604, - "to": 3682022, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224756, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3705604, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224763, - "label": "PRODUCES", - "from": 3705606, - "to": 3684283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323068, - "label": "REGULATES", - "from": 3704409, - "to": 3717537, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355836, - "label": "REGULATES", - "from": 3711285, - "to": 3721818, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224761, - "label": "CONSUMED_BY", - "from": 3677811, - "to": 3705606, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323064, - "label": "REGULATES", - "from": 3677444, - "to": 3717536, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355835, - "label": "REGULATES", - "from": 3721818, - "to": 3697729, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355834, - "label": "BINDS", - "from": 3721818, - "to": 3682792, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224777, - "label": "PRODUCES", - "from": 3705609, - "to": 3682043, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323086, - "label": "REGULATES", - "from": 3677431, - "to": 3717542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224776, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3705609, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355849, - "label": "BINDS", - "from": 3721822, - "to": 3679804, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355851, - "label": "REGULATES", - "from": 3712313, - "to": 3721822, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323083, - "label": "REGULATES", - "from": 3710270, - "to": 3717541, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355850, - "label": "REGULATES", - "from": 3721822, - "to": 3726944, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224787, - "label": "PRODUCES", - "from": 3705611, - "to": 3677566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323093, - "label": "REGULATES", - "from": 3681929, - "to": 3717544, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224785, - "label": "CONSUMED_BY", - "from": 3677501, - "to": 3705611, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323088, - "label": "BINDS", - "from": 3717543, - "to": 3682982, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224789, - "label": "CONSUMED_BY", - "from": 3668939, - "to": 3705612, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323090, - "label": "REGULATES", - "from": 3711393, - "to": 3717543, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323103, - "label": "BINDS", - "from": 3717547, - "to": 3678446, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355870, - "label": "REGULATES", - "from": 3711189, - "to": 3721827, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224792, - "label": "PRODUCES", - "from": 3705612, - "to": 3668627, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224797, - "label": "PRODUCES", - "from": 3705613, - "to": 3682014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224796, - "label": "CONSUMED_BY", - "from": 3677711, - "to": 3705613, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323108, - "label": "REGULATES", - "from": 3711204, - "to": 3717548, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323104, - "label": "REGULATES", - "from": 3717547, - "to": 3694388, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224806, - "label": "PRODUCES", - "from": 3705615, - "to": 3670250, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323105, - "label": "REGULATES", - "from": 3714533, - "to": 3717547, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355872, - "label": "BINDS", - "from": 3721828, - "to": 3686168, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323107, - "label": "REGULATES", - "from": 3717548, - "to": 3692745, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224804, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3705615, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355874, - "label": "REGULATES", - "from": 3711237, - "to": 3721828, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224811, - "label": "CONSUMED_BY", - "from": 3670727, - "to": 3705616, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323112, - "label": "REGULATES", - "from": 3708153, - "to": 3717549, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224814, - "label": "CONSUMED_BY", - "from": 3710250, - "to": 3705617, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323114, - "label": "REGULATES", - "from": 3717550, - "to": 3689807, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224812, - "label": "PRODUCES", - "from": 3705616, - "to": 3681855, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323115, - "label": "REGULATES", - "from": 3677560, - "to": 3717550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224817, - "label": "PRODUCES", - "from": 3705618, - "to": 3681205, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355895, - "label": "BINDS", - "from": 3721834, - "to": 3687274, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224816, - "label": "CONSUMED_BY", - "from": 3681157, - "to": 3705618, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224826, - "label": "CONSUMED_BY", - "from": 3684317, - "to": 3705620, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355897, - "label": "REGULATES", - "from": 3712313, - "to": 3721834, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355896, - "label": "REGULATES", - "from": 3721834, - "to": 3726601, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224829, - "label": "CONSUMED_BY", - "from": 3681876, - "to": 3705621, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224828, - "label": "PRODUCES", - "from": 3705620, - "to": 3666914, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323140, - "label": "REGULATES", - "from": 3717557, - "to": 3727223, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323141, - "label": "REGULATES", - "from": 3708061, - "to": 3717557, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224834, - "label": "PRODUCES", - "from": 3705622, - "to": 3673470, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355911, - "label": "REGULATES", - "from": 3721838, - "to": 3697108, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323136, - "label": "REGULATES", - "from": 3717556, - "to": 3688164, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323137, - "label": "REGULATES", - "from": 3679303, - "to": 3717556, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224838, - "label": "PRODUCES", - "from": 3705623, - "to": 3679378, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323139, - "label": "BINDS", - "from": 3717557, - "to": 3683256, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355919, - "label": "REGULATES", - "from": 3721840, - "to": 3695225, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355918, - "label": "BINDS", - "from": 3721840, - "to": 3679712, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323151, - "label": "REGULATES", - "from": 3717560, - "to": 3685722, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 355912, - "label": "REGULATES", - "from": 3707928, - "to": 3721838, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224845, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3705625, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224851, - "label": "PRODUCES", - "from": 3705627, - "to": 3681645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224850, - "label": "CONSUMED_BY", - "from": 3679303, - "to": 3705627, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323152, - "label": "REGULATES", - "from": 3679292, - "to": 3717560, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224852, - "label": "CONSUMED_BY", - "from": 3685537, - "to": 3705628, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224861, - "label": "PRODUCES", - "from": 3705630, - "to": 3681640, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224867, - "label": "CONSUMED_BY", - "from": 3684275, - "to": 3705632, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323173, - "label": "REGULATES", - "from": 3717566, - "to": 3691200, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323174, - "label": "REGULATES", - "from": 3677394, - "to": 3717566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 224876, - "label": "CONSUMED_BY", - "from": 3681923, - "to": 3705634, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323196, - "label": "REGULATES", - "from": 3717572, - "to": 3698010, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323197, - "label": "REGULATES", - "from": 3712357, - "to": 3717572, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323195, - "label": "BINDS", - "from": 3717572, - "to": 3683063, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323224, - "label": "BINDS", - "from": 3717580, - "to": 3687471, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323226, - "label": "REGULATES", - "from": 3710228, - "to": 3717580, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323237, - "label": "REGULATES", - "from": 3677368, - "to": 3717583, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323233, - "label": "REGULATES", - "from": 3717582, - "to": 3697988, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323234, - "label": "REGULATES", - "from": 3711285, - "to": 3717582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323244, - "label": "REGULATES", - "from": 3677345, - "to": 3717585, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323254, - "label": "BINDS", - "from": 3717588, - "to": 3678594, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323256, - "label": "REGULATES", - "from": 3710270, - "to": 3717588, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323259, - "label": "REGULATES", - "from": 3682203, - "to": 3717589, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323268, - "label": "BINDS", - "from": 3717592, - "to": 3686396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388807, - "label": "ELEMENT_OF", - "from": 3716740, - "to": 3726524, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323270, - "label": "REGULATES", - "from": 3707928, - "to": 3717592, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323265, - "label": "REGULATES", - "from": 3717591, - "to": 3691375, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323266, - "label": "REGULATES", - "from": 3711204, - "to": 3717591, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 323278, - "label": "REGULATES", - "from": 3708153, - "to": 3717594, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388815, - "label": "ELEMENT_OF", - "from": 3701756, - "to": 3726527, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388824, - "label": "ELEMENT_OF", - "from": 3698609, - "to": 3726532, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388834, - "label": "ELEMENT_OF", - "from": 3702729, - "to": 3726534, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388845, - "label": "ELEMENT_OF", - "from": 3701809, - "to": 3726537, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388851, - "label": "ELEMENT_OF", - "from": 3716709, - "to": 3726538, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388859, - "label": "ELEMENT_OF", - "from": 3701508, - "to": 3726540, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388870, - "label": "ELEMENT_OF", - "from": 3690851, - "to": 3726544, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388878, - "label": "ELEMENT_OF", - "from": 3698712, - "to": 3726547, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388873, - "label": "ELEMENT_OF", - "from": 3701620, - "to": 3726545, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388875, - "label": "ELEMENT_OF", - "from": 3701391, - "to": 3726546, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388892, - "label": "ELEMENT_OF", - "from": 3694466, - "to": 3726553, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388898, - "label": "ELEMENT_OF", - "from": 3690668, - "to": 3726556, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388908, - "label": "ELEMENT_OF", - "from": 3687673, - "to": 3726559, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388906, - "label": "ELEMENT_OF", - "from": 3706886, - "to": 3726558, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388914, - "label": "ELEMENT_OF", - "from": 3702034, - "to": 3726562, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388925, - "label": "ELEMENT_OF", - "from": 3698772, - "to": 3726566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388923, - "label": "ELEMENT_OF", - "from": 3711835, - "to": 3726565, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388929, - "label": "ELEMENT_OF", - "from": 3690584, - "to": 3726569, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356160, - "label": "REGULATES", - "from": 3711285, - "to": 3721840, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290644, - "label": "REGULATES", - "from": 3713408, - "to": 3686008, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290645, - "label": "REGULATES", - "from": 3677464, - "to": 3713408, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290647, - "label": "REGULATES", - "from": 3713409, - "to": 3687714, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356182, - "label": "REGULATES", - "from": 3677496, - "to": 3721846, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388950, - "label": "ELEMENT_OF", - "from": 3699145, - "to": 3726576, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356177, - "label": "BINDS", - "from": 3721845, - "to": 3679719, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388945, - "label": "ELEMENT_OF", - "from": 3701688, - "to": 3726575, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290642, - "label": "REGULATES", - "from": 3677496, - "to": 3713407, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356179, - "label": "REGULATES", - "from": 3710270, - "to": 3721845, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356178, - "label": "REGULATES", - "from": 3721845, - "to": 3694426, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356189, - "label": "REGULATES", - "from": 3721848, - "to": 3699459, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290654, - "label": "REGULATES", - "from": 3708429, - "to": 3713411, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356190, - "label": "REGULATES", - "from": 3704409, - "to": 3721848, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290648, - "label": "REGULATES", - "from": 3677432, - "to": 3713409, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356185, - "label": "REGULATES", - "from": 3721847, - "to": 3727324, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356184, - "label": "BINDS", - "from": 3721847, - "to": 3687283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388954, - "label": "ELEMENT_OF", - "from": 3690769, - "to": 3726577, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356186, - "label": "REGULATES", - "from": 3712313, - "to": 3721847, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388965, - "label": "ELEMENT_OF", - "from": 3696019, - "to": 3726583, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290663, - "label": "REGULATES", - "from": 3677711, - "to": 3713414, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225127, - "label": "PRODUCES", - "from": 3705635, - "to": 3684116, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225125, - "label": "CONSUMED_BY", - "from": 3684173, - "to": 3705635, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356207, - "label": "REGULATES", - "from": 3721853, - "to": 3698031, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356206, - "label": "BINDS", - "from": 3721853, - "to": 3678875, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225134, - "label": "CONSUMED_BY", - "from": 3682143, - "to": 3705637, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159602, - "label": "CATALYZES", - "from": 3704090, - "to": 3687749, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388983, - "label": "ELEMENT_OF", - "from": 3701754, - "to": 3726589, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225136, - "label": "PRODUCES", - "from": 3705637, - "to": 3684315, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356214, - "label": "BINDS", - "from": 3721855, - "to": 3686261, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225142, - "label": "PRODUCES", - "from": 3705638, - "to": 3675930, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356208, - "label": "REGULATES", - "from": 3710270, - "to": 3721853, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290684, - "label": "REGULATES", - "from": 3677513, - "to": 3713421, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225146, - "label": "PRODUCES", - "from": 3705639, - "to": 3681355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225145, - "label": "CONSUMED_BY", - "from": 3684009, - "to": 3705639, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159608, - "label": "CATALYZES", - "from": 3710433, - "to": 3687752, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356216, - "label": "REGULATES", - "from": 3710270, - "to": 3721855, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356219, - "label": "REGULATES", - "from": 3679440, - "to": 3721856, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225148, - "label": "CONSUMED_BY", - "from": 3677168, - "to": 3705640, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388986, - "label": "ELEMENT_OF", - "from": 3698775, - "to": 3726591, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356218, - "label": "REGULATES", - "from": 3721856, - "to": 3691262, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356229, - "label": "BINDS", - "from": 3721859, - "to": 3687292, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225154, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3705641, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356231, - "label": "REGULATES", - "from": 3712313, - "to": 3721859, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356230, - "label": "REGULATES", - "from": 3721859, - "to": 3728911, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225159, - "label": "CONSUMED_BY", - "from": 3668627, - "to": 3705642, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388992, - "label": "ELEMENT_OF", - "from": 3697729, - "to": 3726593, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159620, - "label": "CATALYZES", - "from": 3713900, - "to": 3687758, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225156, - "label": "PRODUCES", - "from": 3705641, - "to": 3672682, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290696, - "label": "REGULATES", - "from": 3677671, - "to": 3713425, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159631, - "label": "CATALYZES", - "from": 3687763, - "to": 3708920, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389002, - "label": "ELEMENT_OF", - "from": 3690488, - "to": 3726595, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225170, - "label": "CONSUMED_BY", - "from": 3684390, - "to": 3705644, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159632, - "label": "CATALYZES", - "from": 3712573, - "to": 3687764, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159633, - "label": "CATALYZES", - "from": 3687764, - "to": 3708889, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290711, - "label": "REGULATES", - "from": 3677560, - "to": 3713430, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225168, - "label": "PRODUCES", - "from": 3705643, - "to": 3679091, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389009, - "label": "ELEMENT_OF", - "from": 3719956, - "to": 3726597, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225173, - "label": "PRODUCES", - "from": 3705644, - "to": 3681365, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225177, - "label": "CONSUMED_BY", - "from": 3677445, - "to": 3705645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389023, - "label": "ELEMENT_OF", - "from": 3724919, - "to": 3726603, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225183, - "label": "CONSUMED_BY", - "from": 3677446, - "to": 3705646, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389016, - "label": "ELEMENT_OF", - "from": 3699989, - "to": 3726598, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225181, - "label": "PRODUCES", - "from": 3705645, - "to": 3677302, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225180, - "label": "PRODUCES", - "from": 3705645, - "to": 3681157, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389018, - "label": "ELEMENT_OF", - "from": 3702553, - "to": 3726599, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225187, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3705647, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159649, - "label": "CATALYZES", - "from": 3687772, - "to": 3709497, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290720, - "label": "REGULATES", - "from": 3677368, - "to": 3713433, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225189, - "label": "PRODUCES", - "from": 3705647, - "to": 3672615, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225195, - "label": "CONSUMED_BY", - "from": 3677280, - "to": 3705648, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389037, - "label": "ELEMENT_OF", - "from": 3693960, - "to": 3726605, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159658, - "label": "CATALYZES", - "from": 3714509, - "to": 3687777, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290732, - "label": "REGULATES", - "from": 3677336, - "to": 3713437, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356269, - "label": "REGULATES", - "from": 3710274, - "to": 3721869, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159659, - "label": "CATALYZES", - "from": 3687777, - "to": 3705468, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389039, - "label": "ELEMENT_OF", - "from": 3690417, - "to": 3726606, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159656, - "label": "CATALYZES", - "from": 3706084, - "to": 3687776, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159663, - "label": "CATALYZES", - "from": 3687779, - "to": 3708621, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290729, - "label": "REGULATES", - "from": 3677689, - "to": 3713436, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356267, - "label": "BINDS", - "from": 3721869, - "to": 3686389, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225196, - "label": "PRODUCES", - "from": 3705648, - "to": 3682154, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290731, - "label": "REGULATES", - "from": 3713437, - "to": 3685776, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225202, - "label": "PRODUCES", - "from": 3705650, - "to": 3677589, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225201, - "label": "CONSUMED_BY", - "from": 3682143, - "to": 3705650, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356278, - "label": "BINDS", - "from": 3721872, - "to": 3685367, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225207, - "label": "PRODUCES", - "from": 3705651, - "to": 3684166, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290738, - "label": "REGULATES", - "from": 3677496, - "to": 3713439, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225204, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3705651, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290749, - "label": "REGULATES", - "from": 3713443, - "to": 3685847, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225210, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3705652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356284, - "label": "REGULATES", - "from": 3712313, - "to": 3721873, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290750, - "label": "REGULATES", - "from": 3684064, - "to": 3713443, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159678, - "label": "CATALYZES", - "from": 3715102, - "to": 3687787, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356280, - "label": "REGULATES", - "from": 3711179, - "to": 3721872, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225213, - "label": "PRODUCES", - "from": 3705652, - "to": 3669309, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356283, - "label": "REGULATES", - "from": 3721873, - "to": 3727152, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356282, - "label": "BINDS", - "from": 3721873, - "to": 3687300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225227, - "label": "PRODUCES", - "from": 3705655, - "to": 3685512, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225226, - "label": "CONSUMED_BY", - "from": 3685525, - "to": 3705655, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356303, - "label": "REGULATES", - "from": 3708153, - "to": 3721878, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159689, - "label": "CATALYZES", - "from": 3687792, - "to": 3705552, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225231, - "label": "PRODUCES", - "from": 3705656, - "to": 3681308, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159693, - "label": "CATALYZES", - "from": 3687794, - "to": 3708992, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225228, - "label": "CONSUMED_BY", - "from": 3677220, - "to": 3705656, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159698, - "label": "CATALYZES", - "from": 3710253, - "to": 3687797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159699, - "label": "CATALYZES", - "from": 3687797, - "to": 3708461, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225239, - "label": "PRODUCES", - "from": 3705658, - "to": 3677837, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225238, - "label": "CONSUMED_BY", - "from": 3684001, - "to": 3705658, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356317, - "label": "REGULATES", - "from": 3721882, - "to": 3699906, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159706, - "label": "CATALYZES", - "from": 3718550, - "to": 3687801, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356316, - "label": "BINDS", - "from": 3721882, - "to": 3686488, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159707, - "label": "CATALYZES", - "from": 3687801, - "to": 3706412, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159704, - "label": "CATALYZES", - "from": 3714801, - "to": 3687800, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356318, - "label": "REGULATES", - "from": 3711247, - "to": 3721882, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159710, - "label": "CATALYZES", - "from": 3714650, - "to": 3687803, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159708, - "label": "CATALYZES", - "from": 3708386, - "to": 3687802, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356314, - "label": "REGULATES", - "from": 3684067, - "to": 3721881, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225251, - "label": "CONSUMED_BY", - "from": 3681204, - "to": 3705661, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159715, - "label": "CATALYZES", - "from": 3687805, - "to": 3707645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290789, - "label": "REGULATES", - "from": 3682188, - "to": 3713456, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159712, - "label": "CATALYZES", - "from": 3715350, - "to": 3687804, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159713, - "label": "CATALYZES", - "from": 3687804, - "to": 3705302, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159723, - "label": "CATALYZES", - "from": 3687809, - "to": 3705395, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225257, - "label": "CONSUMED_BY", - "from": 3677445, - "to": 3705662, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159720, - "label": "CATALYZES", - "from": 3712504, - "to": 3687808, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356335, - "label": "BINDS", - "from": 3721887, - "to": 3685216, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290792, - "label": "REGULATES", - "from": 3677472, - "to": 3713457, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159726, - "label": "CATALYZES", - "from": 3714876, - "to": 3687811, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225262, - "label": "PRODUCES", - "from": 3705662, - "to": 3681429, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290804, - "label": "REGULATES", - "from": 3668965, - "to": 3713461, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159730, - "label": "CATALYZES", - "from": 3712557, - "to": 3687813, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290806, - "label": "REGULATES", - "from": 3713462, - "to": 3688820, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356343, - "label": "BINDS", - "from": 3721889, - "to": 3682843, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159728, - "label": "CATALYZES", - "from": 3712585, - "to": 3687812, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290807, - "label": "REGULATES", - "from": 3684130, - "to": 3713462, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356337, - "label": "REGULATES", - "from": 3704560, - "to": 3721887, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159732, - "label": "CATALYZES", - "from": 3718343, - "to": 3687814, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225275, - "label": "PRODUCES", - "from": 3705665, - "to": 3684089, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356349, - "label": "REGULATES", - "from": 3712308, - "to": 3721890, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159738, - "label": "CATALYZES", - "from": 3714146, - "to": 3687817, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225274, - "label": "CONSUMED_BY", - "from": 3681992, - "to": 3705665, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159739, - "label": "CATALYZES", - "from": 3687817, - "to": 3707352, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356345, - "label": "REGULATES", - "from": 3710270, - "to": 3721889, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225279, - "label": "PRODUCES", - "from": 3705666, - "to": 3674937, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356347, - "label": "BINDS", - "from": 3721890, - "to": 3679589, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225277, - "label": "CONSUMED_BY", - "from": 3672797, - "to": 3705666, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225283, - "label": "CONSUMED_BY", - "from": 3669455, - "to": 3705668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485923, - "label": "REGULATES", - "from": 91444599, - "to": 3701863, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356356, - "label": "REGULATES", - "from": 3707928, - "to": 3721892, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485920, - "label": "REGULATES", - "from": 3712313, - "to": 91444597, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225287, - "label": "CONSUMED_BY", - "from": 3677571, - "to": 3705669, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485927, - "label": "REGULATES", - "from": 91444601, - "to": 3694054, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159750, - "label": "CATALYZES", - "from": 3715008, - "to": 3687823, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356352, - "label": "REGULATES", - "from": 3677458, - "to": 3721891, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159751, - "label": "CATALYZES", - "from": 3687823, - "to": 3705435, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485924, - "label": "REGULATES", - "from": 3708153, - "to": 91444599, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485931, - "label": "REGULATES", - "from": 91444603, - "to": 3711828, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485930, - "label": "REGULATES", - "from": 3710270, - "to": 91444602, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290830, - "label": "REGULATES", - "from": 3713470, - "to": 3692733, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485929, - "label": "REGULATES", - "from": 91444602, - "to": 3716942, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290831, - "label": "REGULATES", - "from": 3681638, - "to": 3713470, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485928, - "label": "REGULATES", - "from": 3708153, - "to": 91444601, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225295, - "label": "PRODUCES", - "from": 3705670, - "to": 3682001, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485935, - "label": "REGULATES", - "from": 91444605, - "to": 3702948, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159756, - "label": "CATALYZES", - "from": 3710433, - "to": 3687826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225292, - "label": "CONSUMED_BY", - "from": 3682025, - "to": 3705670, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485932, - "label": "REGULATES", - "from": 3712313, - "to": 91444603, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485938, - "label": "REGULATES", - "from": 3712313, - "to": 91444606, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485937, - "label": "REGULATES", - "from": 91444606, - "to": 3701789, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159761, - "label": "CATALYZES", - "from": 3687828, - "to": 3700736, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485936, - "label": "REGULATES", - "from": 3712313, - "to": 91444605, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485943, - "label": "REGULATES", - "from": 91444609, - "to": 3707116, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225302, - "label": "PRODUCES", - "from": 3705672, - "to": 3670327, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225300, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3705672, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485947, - "label": "REGULATES", - "from": 91444611, - "to": 3707118, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225305, - "label": "CONSUMED_BY", - "from": 3679229, - "to": 3705673, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485944, - "label": "REGULATES", - "from": 3712313, - "to": 91444609, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225311, - "label": "PRODUCES", - "from": 3705674, - "to": 3677771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485951, - "label": "REGULATES", - "from": 91444613, - "to": 91442610, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159774, - "label": "CATALYZES", - "from": 3714121, - "to": 3687835, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225310, - "label": "CONSUMED_BY", - "from": 3681852, - "to": 3705674, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485950, - "label": "REGULATES", - "from": 3708153, - "to": 91444612, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485949, - "label": "REGULATES", - "from": 91444612, - "to": 3716673, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159772, - "label": "CATALYZES", - "from": 3714155, - "to": 3687834, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485948, - "label": "REGULATES", - "from": 3708153, - "to": 91444611, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290843, - "label": "REGULATES", - "from": 3677443, - "to": 3713474, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485891, - "label": "REGULATES", - "from": 3715027, - "to": 91444583, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225315, - "label": "PRODUCES", - "from": 3705675, - "to": 3676837, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225314, - "label": "CONSUMED_BY", - "from": 3677104, - "to": 3705675, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290854, - "label": "REGULATES", - "from": 3713478, - "to": 3689691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485889, - "label": "REGULATES", - "from": 3712313, - "to": 91444582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290855, - "label": "REGULATES", - "from": 3668947, - "to": 3713478, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485888, - "label": "REGULATES", - "from": 91444582, - "to": 3701501, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290848, - "label": "REGULATES", - "from": 3713476, - "to": 3689427, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485895, - "label": "REGULATES", - "from": 3712313, - "to": 91444585, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356385, - "label": "BINDS", - "from": 3721900, - "to": 3687317, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290849, - "label": "REGULATES", - "from": 3681801, - "to": 3713476, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485894, - "label": "REGULATES", - "from": 91444585, - "to": 3711717, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225318, - "label": "PRODUCES", - "from": 3705676, - "to": 3681773, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356387, - "label": "REGULATES", - "from": 3711317, - "to": 3721900, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356397, - "label": "REGULATES", - "from": 3721903, - "to": 3696059, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225323, - "label": "CONSUMED_BY", - "from": 3681574, - "to": 3705678, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485899, - "label": "REGULATES", - "from": 3708153, - "to": 91444587, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356396, - "label": "BINDS", - "from": 3721903, - "to": 3678532, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290861, - "label": "REGULATES", - "from": 3677368, - "to": 3713480, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225321, - "label": "PRODUCES", - "from": 3705677, - "to": 3676162, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485897, - "label": "REGULATES", - "from": 3718538, - "to": 91444586, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159784, - "label": "CATALYZES", - "from": 3712655, - "to": 3687840, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225320, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3705677, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356398, - "label": "REGULATES", - "from": 3711207, - "to": 3721903, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290863, - "label": "REGULATES", - "from": 3713481, - "to": 3691431, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225327, - "label": "CONSUMED_BY", - "from": 3684130, - "to": 3705679, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485903, - "label": "REGULATES", - "from": 3708153, - "to": 91444589, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159790, - "label": "CATALYZES", - "from": 3713900, - "to": 3687843, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485902, - "label": "REGULATES", - "from": 91444589, - "to": 3690651, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356392, - "label": "BINDS", - "from": 3721902, - "to": 3687467, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485901, - "label": "REGULATES", - "from": 3711265, - "to": 91444588, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290858, - "label": "REGULATES", - "from": 3677560, - "to": 3713479, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356394, - "label": "REGULATES", - "from": 3710270, - "to": 3721902, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485907, - "label": "REGULATES", - "from": 91444591, - "to": 3694060, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225329, - "label": "PRODUCES", - "from": 3705679, - "to": 3684193, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485905, - "label": "REGULATES", - "from": 3710270, - "to": 91444590, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485904, - "label": "REGULATES", - "from": 91444590, - "to": 3707057, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356406, - "label": "REGULATES", - "from": 3707928, - "to": 3721905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290864, - "label": "REGULATES", - "from": 3684009, - "to": 3713481, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485911, - "label": "REGULATES", - "from": 91444593, - "to": 91442503, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159798, - "label": "CATALYZES", - "from": 3714775, - "to": 3687847, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225334, - "label": "CONSUMED_BY", - "from": 3677615, - "to": 3705681, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356400, - "label": "BINDS", - "from": 3721904, - "to": 3684964, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159799, - "label": "CATALYZES", - "from": 3687847, - "to": 3709008, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290866, - "label": "REGULATES", - "from": 3713482, - "to": 3689202, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159796, - "label": "CATALYZES", - "from": 3714255, - "to": 3687846, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290867, - "label": "REGULATES", - "from": 3677394, - "to": 3713482, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356402, - "label": "REGULATES", - "from": 3711265, - "to": 3721904, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485908, - "label": "REGULATES", - "from": 3712313, - "to": 91444591, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159797, - "label": "CATALYZES", - "from": 3687846, - "to": 3707553, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485914, - "label": "REGULATES", - "from": 3712313, - "to": 91444594, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290878, - "label": "REGULATES", - "from": 3713486, - "to": 3689825, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485913, - "label": "REGULATES", - "from": 91444594, - "to": 3712113, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356415, - "label": "BINDS", - "from": 3721908, - "to": 3686379, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159800, - "label": "CATALYZES", - "from": 3715204, - "to": 3687848, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 290879, - "label": "REGULATES", - "from": 3681355, - "to": 3713486, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485912, - "label": "REGULATES", - "from": 3711265, - "to": 91444593, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485919, - "label": "REGULATES", - "from": 91444597, - "to": 3690599, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159806, - "label": "CATALYZES", - "from": 3712750, - "to": 3687851, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485918, - "label": "REGULATES", - "from": 3708153, - "to": 91444596, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485917, - "label": "REGULATES", - "from": 91444596, - "to": 3707094, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225340, - "label": "CONSUMED_BY", - "from": 3682112, - "to": 3705682, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225347, - "label": "CONSUMED_BY", - "from": 3679096, - "to": 3705684, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356423, - "label": "BINDS", - "from": 3721910, - "to": 3685183, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485984, - "label": "REGULATES", - "from": 3712313, - "to": 91444629, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356417, - "label": "REGULATES", - "from": 3713905, - "to": 3721908, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485991, - "label": "REGULATES", - "from": 91444633, - "to": 3707037, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159814, - "label": "CATALYZES", - "from": 3714582, - "to": 3687855, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485990, - "label": "REGULATES", - "from": 3712313, - "to": 91444632, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356416, - "label": "REGULATES", - "from": 3721908, - "to": 3697322, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159815, - "label": "CATALYZES", - "from": 3687855, - "to": 3705202, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485992, - "label": "REGULATES", - "from": 3712313, - "to": 91444633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485999, - "label": "REGULATES", - "from": 91444637, - "to": 3707121, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356425, - "label": "REGULATES", - "from": 3710270, - "to": 3721910, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225358, - "label": "CONSUMED_BY", - "from": 3679067, - "to": 3705687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356424, - "label": "REGULATES", - "from": 3721910, - "to": 3697645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485998, - "label": "REGULATES", - "from": 3718538, - "to": 91444636, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159820, - "label": "CATALYZES", - "from": 3712565, - "to": 3687858, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485996, - "label": "REGULATES", - "from": 3708153, - "to": 91444635, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159821, - "label": "CATALYZES", - "from": 3687858, - "to": 3707530, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486003, - "label": "REGULATES", - "from": 91444639, - "to": 3716636, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486002, - "label": "REGULATES", - "from": 3708153, - "to": 91444638, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159825, - "label": "CATALYZES", - "from": 3687860, - "to": 3708619, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486000, - "label": "REGULATES", - "from": 3708153, - "to": 91444637, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486007, - "label": "REGULATES", - "from": 3710270, - "to": 91444640, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486006, - "label": "REGULATES", - "from": 91444640, - "to": 3699123, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486004, - "label": "REGULATES", - "from": 3710270, - "to": 91444639, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356444, - "label": "REGULATES", - "from": 3711285, - "to": 3721915, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356447, - "label": "REGULATES", - "from": 3677613, - "to": 3721916, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486009, - "label": "REGULATES", - "from": 3712313, - "to": 91444641, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 159832, - "label": "CATALYZES", - "from": 3712727, - "to": 3687864, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356446, - "label": "REGULATES", - "from": 3721916, - "to": 3687982, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486008, - "label": "REGULATES", - "from": 91444641, - "to": 3719925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486015, - "label": "REGULATES", - "from": 3712313, - "to": 91444644, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486014, - "label": "REGULATES", - "from": 91444644, - "to": 3690732, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356443, - "label": "REGULATES", - "from": 3721915, - "to": 3699346, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356442, - "label": "BINDS", - "from": 3721915, - "to": 3683065, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485955, - "label": "REGULATES", - "from": 91444615, - "to": 3707274, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485954, - "label": "REGULATES", - "from": 3708153, - "to": 91444614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485953, - "label": "REGULATES", - "from": 91444614, - "to": 3702797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485952, - "label": "REGULATES", - "from": 3708153, - "to": 91444613, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485959, - "label": "REGULATES", - "from": 91444617, - "to": 3707009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485956, - "label": "REGULATES", - "from": 3710270, - "to": 91444615, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356461, - "label": "BINDS", - "from": 3721920, - "to": 3686468, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485962, - "label": "REGULATES", - "from": 3712313, - "to": 91444618, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356463, - "label": "REGULATES", - "from": 3711285, - "to": 3721920, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485961, - "label": "REGULATES", - "from": 91444618, - "to": 3707299, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356462, - "label": "REGULATES", - "from": 3721920, - "to": 3699307, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485960, - "label": "REGULATES", - "from": 3712313, - "to": 91444617, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485967, - "label": "REGULATES", - "from": 91444621, - "to": 3701573, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485968, - "label": "REGULATES", - "from": 3712313, - "to": 91444621, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485974, - "label": "REGULATES", - "from": 3708153, - "to": 91444624, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485973, - "label": "REGULATES", - "from": 91444624, - "to": 3706808, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485972, - "label": "REGULATES", - "from": 3708153, - "to": 91444623, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485979, - "label": "REGULATES", - "from": 91444627, - "to": 3698694, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485978, - "label": "REGULATES", - "from": 3708153, - "to": 91444626, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485977, - "label": "REGULATES", - "from": 91444626, - "to": 3707128, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485983, - "label": "REGULATES", - "from": 91444629, - "to": 3701636, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356473, - "label": "REGULATES", - "from": 3721923, - "to": 3694798, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356472, - "label": "BINDS", - "from": 3721923, - "to": 3686313, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485982, - "label": "REGULATES", - "from": 3712586, - "to": 91444628, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485980, - "label": "REGULATES", - "from": 3710270, - "to": 91444627, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356474, - "label": "REGULATES", - "from": 3712313, - "to": 3721923, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485795, - "label": "REGULATES", - "from": 3708153, - "to": 91444536, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485794, - "label": "REGULATES", - "from": 91444536, - "to": 3720011, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485793, - "label": "REGULATES", - "from": 3708153, - "to": 91444535, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485792, - "label": "REGULATES", - "from": 91444535, - "to": 3698827, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485799, - "label": "REGULATES", - "from": 3712313, - "to": 91444538, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485798, - "label": "REGULATES", - "from": 91444538, - "to": 3711948, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356480, - "label": "BINDS", - "from": 3721925, - "to": 3679737, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485797, - "label": "REGULATES", - "from": 3711265, - "to": 91444537, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356482, - "label": "REGULATES", - "from": 3710143, - "to": 3721925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485803, - "label": "REGULATES", - "from": 91444540, - "to": 91442533, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485801, - "label": "REGULATES", - "from": 3708153, - "to": 91444539, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485800, - "label": "REGULATES", - "from": 91444539, - "to": 3702432, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485806, - "label": "REGULATES", - "from": 3708153, - "to": 91444541, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485805, - "label": "REGULATES", - "from": 91444541, - "to": 3712000, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485804, - "label": "REGULATES", - "from": 3710167, - "to": 91444540, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485810, - "label": "REGULATES", - "from": 3712313, - "to": 91444543, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485809, - "label": "REGULATES", - "from": 91444543, - "to": 3701841, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485814, - "label": "REGULATES", - "from": 3712313, - "to": 91444545, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485819, - "label": "REGULATES", - "from": 91444548, - "to": 3690670, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485818, - "label": "REGULATES", - "from": 3708153, - "to": 91444547, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485817, - "label": "REGULATES", - "from": 91444547, - "to": 3687566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485816, - "label": "REGULATES", - "from": 3712586, - "to": 91444546, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485823, - "label": "REGULATES", - "from": 91444550, - "to": 3690775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485822, - "label": "REGULATES", - "from": 3718538, - "to": 91444549, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485820, - "label": "REGULATES", - "from": 3708153, - "to": 91444548, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485763, - "label": "REGULATES", - "from": 3712313, - "to": 91444520, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485762, - "label": "REGULATES", - "from": 91444520, - "to": 3693726, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356519, - "label": "REGULATES", - "from": 3721935, - "to": 3694982, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356518, - "label": "BINDS", - "from": 3721935, - "to": 3678898, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485767, - "label": "REGULATES", - "from": 3707928, - "to": 91444522, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485765, - "label": "REGULATES", - "from": 3708153, - "to": 91444521, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485771, - "label": "REGULATES", - "from": 3708153, - "to": 91444524, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485770, - "label": "REGULATES", - "from": 91444524, - "to": 3690494, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356527, - "label": "REGULATES", - "from": 3712602, - "to": 3721937, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485769, - "label": "REGULATES", - "from": 3712313, - "to": 91444523, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356526, - "label": "REGULATES", - "from": 3721937, - "to": 3695300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485768, - "label": "REGULATES", - "from": 91444523, - "to": 3716975, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485775, - "label": "REGULATES", - "from": 3711285, - "to": 91444526, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356520, - "label": "REGULATES", - "from": 3711285, - "to": 3721935, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485773, - "label": "REGULATES", - "from": 3712313, - "to": 91444525, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485772, - "label": "REGULATES", - "from": 91444525, - "to": 3701879, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485779, - "label": "REGULATES", - "from": 3708153, - "to": 91444528, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485777, - "label": "REGULATES", - "from": 3712313, - "to": 91444527, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485776, - "label": "REGULATES", - "from": 91444527, - "to": 3701367, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356541, - "label": "REGULATES", - "from": 3721941, - "to": 3688052, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485785, - "label": "REGULATES", - "from": 3712313, - "to": 91444531, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356542, - "label": "REGULATES", - "from": 3677401, - "to": 3721941, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485784, - "label": "REGULATES", - "from": 91444531, - "to": 3702613, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356537, - "label": "BINDS", - "from": 3721940, - "to": 3686213, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485791, - "label": "REGULATES", - "from": 3718538, - "to": 91444534, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356539, - "label": "REGULATES", - "from": 3711285, - "to": 3721940, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485789, - "label": "REGULATES", - "from": 3712313, - "to": 91444533, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356538, - "label": "REGULATES", - "from": 3721940, - "to": 3695903, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485788, - "label": "REGULATES", - "from": 91444533, - "to": 3687564, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258242, - "label": "CONSUMED_BY", - "from": 3670742, - "to": 3709163, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485857, - "label": "REGULATES", - "from": 3708153, - "to": 91444566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258247, - "label": "PRODUCES", - "from": 3709164, - "to": 3666427, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258246, - "label": "CONSUMED_BY", - "from": 3676123, - "to": 3709164, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485861, - "label": "REGULATES", - "from": 3712313, - "to": 91444568, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356546, - "label": "REGULATES", - "from": 3710143, - "to": 3721942, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258250, - "label": "CONSUMED_BY", - "from": 3684067, - "to": 3709165, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485865, - "label": "REGULATES", - "from": 3712313, - "to": 91444570, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356558, - "label": "REGULATES", - "from": 3711265, - "to": 3721945, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485864, - "label": "REGULATES", - "from": 91444570, - "to": 3693788, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485871, - "label": "REGULATES", - "from": 3708153, - "to": 91444573, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258255, - "label": "PRODUCES", - "from": 3709166, - "to": 3681703, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485870, - "label": "REGULATES", - "from": 91444573, - "to": 3687664, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485869, - "label": "REGULATES", - "from": 3708153, - "to": 91444572, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258253, - "label": "CONSUMED_BY", - "from": 3677803, - "to": 3709166, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485868, - "label": "REGULATES", - "from": 91444572, - "to": 3711847, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485875, - "label": "REGULATES", - "from": 3712313, - "to": 91444575, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356565, - "label": "REGULATES", - "from": 3715127, - "to": 3721947, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485874, - "label": "REGULATES", - "from": 91444575, - "to": 3720018, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192720, - "label": "IN_PATHWAY", - "from": 3709543, - "to": 3692868, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356561, - "label": "REGULATES", - "from": 3677501, - "to": 3721946, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485877, - "label": "REGULATES", - "from": 3708153, - "to": 91444576, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356563, - "label": "BINDS", - "from": 3721947, - "to": 3686316, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258260, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3709168, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485876, - "label": "REGULATES", - "from": 91444576, - "to": 3690470, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356573, - "label": "REGULATES", - "from": 3708153, - "to": 3721949, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485883, - "label": "REGULATES", - "from": 3712586, - "to": 91444579, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258266, - "label": "CONSUMED_BY", - "from": 3681365, - "to": 3709169, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485882, - "label": "REGULATES", - "from": 91444579, - "to": 3712180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485881, - "label": "REGULATES", - "from": 3708153, - "to": 91444578, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485880, - "label": "REGULATES", - "from": 91444578, - "to": 3698999, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258271, - "label": "PRODUCES", - "from": 3709170, - "to": 3684210, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485887, - "label": "REGULATES", - "from": 3712313, - "to": 91444581, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258270, - "label": "CONSUMED_BY", - "from": 3683884, - "to": 3709170, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485886, - "label": "REGULATES", - "from": 91444581, - "to": 3707290, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192739, - "label": "IN_PATHWAY", - "from": 3709252, - "to": 3692870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485826, - "label": "REGULATES", - "from": 3708153, - "to": 91444551, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258273, - "label": "CONSUMED_BY", - "from": 3684067, - "to": 3709171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192736, - "label": "IN_PATHWAY", - "from": 3709544, - "to": 3692869, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485825, - "label": "REGULATES", - "from": 91444551, - "to": 3690754, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485824, - "label": "REGULATES", - "from": 3712313, - "to": 91444550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192742, - "label": "IN_PATHWAY", - "from": 3692873, - "to": 3692871, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485831, - "label": "REGULATES", - "from": 3708153, - "to": 91444553, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485830, - "label": "REGULATES", - "from": 91444553, - "to": 3698617, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258282, - "label": "CONSUMED_BY", - "from": 3684109, - "to": 3709174, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192747, - "label": "IN_PATHWAY", - "from": 3706445, - "to": 3692872, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485837, - "label": "REGULATES", - "from": 3712313, - "to": 91444556, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258284, - "label": "PRODUCES", - "from": 3709174, - "to": 3677665, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485836, - "label": "REGULATES", - "from": 91444556, - "to": 3699044, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356596, - "label": "REGULATES", - "from": 3710270, - "to": 3721955, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258289, - "label": "CONSUMED_BY", - "from": 3682104, - "to": 3709176, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485841, - "label": "REGULATES", - "from": 3712313, - "to": 91444558, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192753, - "label": "IN_PATHWAY", - "from": 3705303, - "to": 3692873, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485840, - "label": "REGULATES", - "from": 91444558, - "to": 3690415, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485847, - "label": "REGULATES", - "from": 3708153, - "to": 91444561, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192759, - "label": "IN_PATHWAY", - "from": 3705318, - "to": 3692874, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485846, - "label": "REGULATES", - "from": 91444561, - "to": 3720014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485845, - "label": "REGULATES", - "from": 3708153, - "to": 91444560, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356595, - "label": "REGULATES", - "from": 3721955, - "to": 3697009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258292, - "label": "PRODUCES", - "from": 3709176, - "to": 3682185, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485844, - "label": "REGULATES", - "from": 91444560, - "to": 3719936, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356594, - "label": "BINDS", - "from": 3721955, - "to": 3685429, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485851, - "label": "REGULATES", - "from": 3712313, - "to": 91444563, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258299, - "label": "CONSUMED_BY", - "from": 3681336, - "to": 3709178, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485850, - "label": "REGULATES", - "from": 91444563, - "to": 3701702, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192761, - "label": "IN_PATHWAY", - "from": 3709437, - "to": 3692875, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485855, - "label": "REGULATES", - "from": 3710238, - "to": 91444565, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192767, - "label": "IN_PATHWAY", - "from": 3709306, - "to": 3692876, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192764, - "label": "IN_PATHWAY", - "from": 3692876, - "to": 3693137, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485853, - "label": "REGULATES", - "from": 3708153, - "to": 91444564, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258307, - "label": "CONSUMED_BY", - "from": 3683924, - "to": 3709180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258305, - "label": "CONSUMED_BY", - "from": 3681375, - "to": 3709179, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356615, - "label": "REGULATES", - "from": 3707928, - "to": 3721960, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258308, - "label": "PRODUCES", - "from": 3709180, - "to": 3683898, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258315, - "label": "CONSUMED_BY", - "from": 3681312, - "to": 3709182, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192779, - "label": "IN_PATHWAY", - "from": 3705363, - "to": 3692877, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486191, - "label": "ELEMENT_OF", - "from": 91442502, - "to": 91444716, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192782, - "label": "IN_PATHWAY", - "from": 3700781, - "to": 3692878, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486195, - "label": "ELEMENT_OF", - "from": 91442605, - "to": 91444717, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356628, - "label": "BINDS", - "from": 3721964, - "to": 3683223, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356630, - "label": "REGULATES", - "from": 3711445, - "to": 3721964, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356625, - "label": "REGULATES", - "from": 3721963, - "to": 3697610, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356624, - "label": "BINDS", - "from": 3721963, - "to": 3682954, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192789, - "label": "IN_PATHWAY", - "from": 3708974, - "to": 3692879, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356626, - "label": "REGULATES", - "from": 3710208, - "to": 3721963, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356637, - "label": "REGULATES", - "from": 3677477, - "to": 3721966, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192795, - "label": "IN_PATHWAY", - "from": 3709306, - "to": 3692880, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356636, - "label": "REGULATES", - "from": 3721966, - "to": 3687922, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192792, - "label": "IN_PATHWAY", - "from": 3692880, - "to": 3694272, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486201, - "label": "ELEMENT_OF", - "from": 3690769, - "to": 91444719, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258335, - "label": "PRODUCES", - "from": 3709186, - "to": 3682210, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486207, - "label": "ELEMENT_OF", - "from": 91442555, - "to": 91444720, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258332, - "label": "CONSUMED_BY", - "from": 3677648, - "to": 3709186, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356645, - "label": "REGULATES", - "from": 3710270, - "to": 3721968, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258339, - "label": "PRODUCES", - "from": 3709187, - "to": 3684162, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356644, - "label": "REGULATES", - "from": 3721968, - "to": 3699558, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356647, - "label": "BINDS", - "from": 3721969, - "to": 3683019, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258343, - "label": "PRODUCES", - "from": 3709188, - "to": 3684264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258341, - "label": "CONSUMED_BY", - "from": 3682158, - "to": 3709188, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356643, - "label": "BINDS", - "from": 3721968, - "to": 3678668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192805, - "label": "IN_PATHWAY", - "from": 3708447, - "to": 3692881, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486155, - "label": "ELEMENT_OF", - "from": 91442582, - "to": 91444712, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258346, - "label": "PRODUCES", - "from": 3709189, - "to": 3681281, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192811, - "label": "IN_PATHWAY", - "from": 3707530, - "to": 3692882, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258345, - "label": "CONSUMED_BY", - "from": 3670482, - "to": 3709189, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356649, - "label": "REGULATES", - "from": 3710228, - "to": 3721969, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258354, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3709192, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192819, - "label": "IN_PATHWAY", - "from": 3706445, - "to": 3692883, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356660, - "label": "REGULATES", - "from": 3718538, - "to": 3721972, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258358, - "label": "PRODUCES", - "from": 3709192, - "to": 3679456, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258357, - "label": "PRODUCES", - "from": 3709192, - "to": 3669267, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486165, - "label": "ELEMENT_OF", - "from": 91442603, - "to": 91444713, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192821, - "label": "IN_PATHWAY", - "from": 3706792, - "to": 3692884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356658, - "label": "BINDS", - "from": 3721972, - "to": 3683108, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486171, - "label": "ELEMENT_OF", - "from": 91442549, - "to": 91444714, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258363, - "label": "PRODUCES", - "from": 3709193, - "to": 3685601, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356668, - "label": "REGULATES", - "from": 3708153, - "to": 3721974, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192824, - "label": "IN_PATHWAY", - "from": 3709211, - "to": 3692885, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258361, - "label": "CONSUMED_BY", - "from": 3685594, - "to": 3709193, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192830, - "label": "IN_PATHWAY", - "from": 3693127, - "to": 3692886, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258367, - "label": "CONSUMED_BY", - "from": 3676151, - "to": 3709194, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486174, - "label": "ELEMENT_OF", - "from": 3698970, - "to": 91444715, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356666, - "label": "BINDS", - "from": 3721974, - "to": 3679496, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258371, - "label": "PRODUCES", - "from": 3709194, - "to": 3675728, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486243, - "label": "ELEMENT_OF", - "from": 3719990, - "to": 91444725, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192835, - "label": "IN_PATHWAY", - "from": 3706792, - "to": 3692888, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258370, - "label": "PRODUCES", - "from": 3709194, - "to": 3670714, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225601, - "label": "PRODUCES", - "from": 3705687, - "to": 3685537, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192833, - "label": "IN_PATHWAY", - "from": 3706410, - "to": 3692887, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225607, - "label": "PRODUCES", - "from": 3705688, - "to": 3677462, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486246, - "label": "ELEMENT_OF", - "from": 3707074, - "to": 91444726, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356672, - "label": "REGULATES", - "from": 3711317, - "to": 3721975, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225606, - "label": "PRODUCES", - "from": 3705688, - "to": 3685525, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225604, - "label": "CONSUMED_BY", - "from": 3684298, - "to": 3705688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225611, - "label": "PRODUCES", - "from": 3705689, - "to": 3677169, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192841, - "label": "IN_PATHWAY", - "from": 3693113, - "to": 3692889, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356681, - "label": "BINDS", - "from": 3721978, - "to": 3686071, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225614, - "label": "CONSUMED_BY", - "from": 3679163, - "to": 3705691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258381, - "label": "CONSUMED_BY", - "from": 3677478, - "to": 3709196, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356683, - "label": "REGULATES", - "from": 3710228, - "to": 3721978, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192850, - "label": "IN_PATHWAY", - "from": 3700743, - "to": 3692891, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192848, - "label": "IN_PATHWAY", - "from": 3708974, - "to": 3692890, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258391, - "label": "CONSUMED_BY", - "from": 3677536, - "to": 3709198, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225623, - "label": "CONSUMED_BY", - "from": 3710198, - "to": 3705693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356689, - "label": "BINDS", - "from": 3721980, - "to": 3678526, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192855, - "label": "IN_PATHWAY", - "from": 3705637, - "to": 3692892, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258390, - "label": "PRODUCES", - "from": 3709197, - "to": 3677850, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356691, - "label": "REGULATES", - "from": 3710228, - "to": 3721980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225626, - "label": "CONSUMED_BY", - "from": 3668947, - "to": 3705694, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258393, - "label": "CONSUMED_BY", - "from": 3677401, - "to": 3709199, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258392, - "label": "PRODUCES", - "from": 3709198, - "to": 3682214, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356702, - "label": "REGULATES", - "from": 3707928, - "to": 3721983, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225631, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3705695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258398, - "label": "CONSUMED_BY", - "from": 3677438, - "to": 3709200, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486269, - "label": "ELEMENT_OF", - "from": 3698970, - "to": 91444730, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225628, - "label": "PRODUCES", - "from": 3705694, - "to": 3668943, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225632, - "label": "PRODUCES", - "from": 3705695, - "to": 3681626, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258407, - "label": "PRODUCES", - "from": 3709201, - "to": 3672583, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225639, - "label": "PRODUCES", - "from": 3705697, - "to": 3676839, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192871, - "label": "IN_PATHWAY", - "from": 3692894, - "to": 3692893, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258405, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3709201, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225637, - "label": "CONSUMED_BY", - "from": 3679114, - "to": 3705697, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192874, - "label": "IN_PATHWAY", - "from": 3708672, - "to": 3692894, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225643, - "label": "PRODUCES", - "from": 3705698, - "to": 3681621, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356717, - "label": "REGULATES", - "from": 3710208, - "to": 3721987, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356716, - "label": "REGULATES", - "from": 3721987, - "to": 3699522, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225641, - "label": "CONSUMED_BY", - "from": 3679440, - "to": 3705698, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192878, - "label": "IN_PATHWAY", - "from": 3693128, - "to": 3692895, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225647, - "label": "CONSUMED_BY", - "from": 3681197, - "to": 3705699, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258413, - "label": "PRODUCES", - "from": 3709202, - "to": 3677696, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486221, - "label": "ELEMENT_OF", - "from": 91442580, - "to": 91444721, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356715, - "label": "BINDS", - "from": 3721987, - "to": 3679637, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258412, - "label": "PRODUCES", - "from": 3709202, - "to": 3670727, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486227, - "label": "ELEMENT_OF", - "from": 3701395, - "to": 91444722, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356725, - "label": "REGULATES", - "from": 3710208, - "to": 3721989, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225649, - "label": "PRODUCES", - "from": 3705699, - "to": 3677600, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356727, - "label": "BINDS", - "from": 3721990, - "to": 3686176, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258422, - "label": "CONSUMED_BY", - "from": 3684193, - "to": 3709205, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192884, - "label": "IN_PATHWAY", - "from": 3707430, - "to": 3692896, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356723, - "label": "BINDS", - "from": 3721989, - "to": 3685206, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486235, - "label": "ELEMENT_OF", - "from": 3693818, - "to": 91444724, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356732, - "label": "REGULATES", - "from": 3677560, - "to": 3721991, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356729, - "label": "REGULATES", - "from": 3711285, - "to": 3721990, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258431, - "label": "PRODUCES", - "from": 3709206, - "to": 3684208, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356728, - "label": "REGULATES", - "from": 3721990, - "to": 3697579, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225662, - "label": "PRODUCES", - "from": 3705701, - "to": 3677434, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192892, - "label": "IN_PATHWAY", - "from": 3706691, - "to": 3692897, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258429, - "label": "CONSUMED_BY", - "from": 3679096, - "to": 3709206, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258435, - "label": "PRODUCES", - "from": 3709207, - "to": 3679223, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356740, - "label": "REGULATES", - "from": 3714081, - "to": 3721993, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486050, - "label": "REGULATES", - "from": 3710562, - "to": 91444661, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225666, - "label": "PRODUCES", - "from": 3706248, - "to": 3675700, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192896, - "label": "IN_PATHWAY", - "from": 3694279, - "to": 3692898, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258433, - "label": "CONSUMED_BY", - "from": 3677805, - "to": 3709207, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486049, - "label": "REGULATES", - "from": 91444661, - "to": 91442593, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225665, - "label": "CONSUMED_BY", - "from": 3666497, - "to": 3706248, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486048, - "label": "REGULATES", - "from": 3708153, - "to": 91444660, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486055, - "label": "REGULATES", - "from": 91444664, - "to": 3707237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192903, - "label": "IN_PATHWAY", - "from": 3692899, - "to": 3692903, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486054, - "label": "REGULATES", - "from": 3710270, - "to": 91444663, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225669, - "label": "CONSUMED_BY", - "from": 3671386, - "to": 3706249, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486052, - "label": "REGULATES", - "from": 3708153, - "to": 91444662, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258442, - "label": "CONSUMED_BY", - "from": 3681145, - "to": 3709209, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486058, - "label": "REGULATES", - "from": 3712313, - "to": 91444665, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192904, - "label": "IN_PATHWAY", - "from": 3709447, - "to": 3692899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356751, - "label": "REGULATES", - "from": 3677445, - "to": 3721996, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356750, - "label": "REGULATES", - "from": 3721996, - "to": 3691082, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486056, - "label": "REGULATES", - "from": 3710270, - "to": 91444664, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192910, - "label": "IN_PATHWAY", - "from": 3693110, - "to": 3692900, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225678, - "label": "CONSUMED_BY", - "from": 3677534, - "to": 3706251, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486062, - "label": "REGULATES", - "from": 3712313, - "to": 91444667, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225677, - "label": "PRODUCES", - "from": 3706250, - "to": 3679115, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486061, - "label": "REGULATES", - "from": 91444667, - "to": 3693786, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258444, - "label": "PRODUCES", - "from": 3709209, - "to": 3681577, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486060, - "label": "REGULATES", - "from": 3710228, - "to": 91444666, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389524, - "label": "ELEMENT_OF", - "from": 3679797, - "to": 3726608, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486071, - "label": "REGULATES", - "from": 91444672, - "to": 91442511, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225686, - "label": "PRODUCES", - "from": 3706252, - "to": 3675608, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486070, - "label": "REGULATES", - "from": 3708153, - "to": 91444671, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192916, - "label": "IN_PATHWAY", - "from": 3705256, - "to": 3692901, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486069, - "label": "REGULATES", - "from": 91444671, - "to": 3707250, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225684, - "label": "CONSUMED_BY", - "from": 3677438, - "to": 3706252, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486075, - "label": "REGULATES", - "from": 91444674, - "to": 3702690, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225690, - "label": "PRODUCES", - "from": 3706253, - "to": 3681323, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192923, - "label": "IN_PATHWAY", - "from": 3709568, - "to": 3692902, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486074, - "label": "REGULATES", - "from": 3708153, - "to": 91444673, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225689, - "label": "CONSUMED_BY", - "from": 3681370, - "to": 3706253, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389535, - "label": "ELEMENT_OF", - "from": 3679998, - "to": 3726609, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486073, - "label": "REGULATES", - "from": 91444673, - "to": 3698690, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258456, - "label": "PRODUCES", - "from": 3709211, - "to": 3683884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486072, - "label": "REGULATES", - "from": 3715027, - "to": 91444672, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486078, - "label": "REGULATES", - "from": 3710270, - "to": 91444675, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258462, - "label": "CONSUMED_BY", - "from": 3681473, - "to": 3709213, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356763, - "label": "REGULATES", - "from": 3711179, - "to": 3721999, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225693, - "label": "CONSUMED_BY", - "from": 3714457, - "to": 3706254, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486076, - "label": "REGULATES", - "from": 3711179, - "to": 91444674, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486017, - "label": "REGULATES", - "from": 3712313, - "to": 91444645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486016, - "label": "REGULATES", - "from": 91444645, - "to": 3694042, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486023, - "label": "REGULATES", - "from": 3708153, - "to": 91444648, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225702, - "label": "CONSUMED_BY", - "from": 3681627, - "to": 3706257, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486022, - "label": "REGULATES", - "from": 91444648, - "to": 3693818, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192933, - "label": "IN_PATHWAY", - "from": 3708486, - "to": 3692904, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486027, - "label": "REGULATES", - "from": 3708153, - "to": 91444650, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225706, - "label": "CONSUMED_BY", - "from": 3666419, - "to": 3706258, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486026, - "label": "REGULATES", - "from": 91444650, - "to": 3716776, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389548, - "label": "ELEMENT_OF", - "from": 3678828, - "to": 3726613, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225711, - "label": "PRODUCES", - "from": 3706258, - "to": 3684006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389545, - "label": "ELEMENT_OF", - "from": 3697346, - "to": 3726612, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225710, - "label": "PRODUCES", - "from": 3706258, - "to": 3683872, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258478, - "label": "PRODUCES", - "from": 3709217, - "to": 3681500, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356776, - "label": "BINDS", - "from": 3722003, - "to": 3678617, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225709, - "label": "PRODUCES", - "from": 3706258, - "to": 3676123, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486029, - "label": "REGULATES", - "from": 3710270, - "to": 91444651, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192941, - "label": "IN_PATHWAY", - "from": 3706569, - "to": 3692905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 258476, - "label": "CONSUMED_BY", - "from": 3679397, - "to": 3709217, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356778, - "label": "REGULATES", - "from": 3710270, - "to": 3722003, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486028, - "label": "REGULATES", - "from": 91444651, - "to": 3702858, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192946, - "label": "IN_PATHWAY", - "from": 3708624, - "to": 3692906, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356789, - "label": "REGULATES", - "from": 3677560, - "to": 3722006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486034, - "label": "REGULATES", - "from": 3712313, - "to": 91444653, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356791, - "label": "BINDS", - "from": 3722007, - "to": 3678910, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486033, - "label": "REGULATES", - "from": 91444653, - "to": 3690904, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486032, - "label": "REGULATES", - "from": 3710270, - "to": 91444652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356784, - "label": "BINDS", - "from": 3722005, - "to": 3679858, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486038, - "label": "REGULATES", - "from": 3712313, - "to": 91444655, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192948, - "label": "IN_PATHWAY", - "from": 3708809, - "to": 3692907, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486037, - "label": "REGULATES", - "from": 91444655, - "to": 3702818, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356786, - "label": "REGULATES", - "from": 3708153, - "to": 3722005, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389567, - "label": "ELEMENT_OF", - "from": 3697938, - "to": 3726617, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192953, - "label": "IN_PATHWAY", - "from": 3708974, - "to": 3692908, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356793, - "label": "REGULATES", - "from": 3711285, - "to": 3722007, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486047, - "label": "REGULATES", - "from": 91444660, - "to": 3707143, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486046, - "label": "REGULATES", - "from": 3712313, - "to": 91444659, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486045, - "label": "REGULATES", - "from": 91444659, - "to": 3690508, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 192957, - "label": "IN_PATHWAY", - "from": 3707863, - "to": 3692909, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225730, - "label": "CONSUMED_BY", - "from": 3677500, - "to": 3706263, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225735, - "label": "CONSUMED_BY", - "from": 3670483, - "to": 3706264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225739, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3706266, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389580, - "label": "ELEMENT_OF", - "from": 3699591, - "to": 3726618, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225742, - "label": "PRODUCES", - "from": 3706266, - "to": 3681407, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486129, - "label": "ELEMENT_OF", - "from": 91442517, - "to": 91444709, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356829, - "label": "BINDS", - "from": 3722017, - "to": 3683268, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356831, - "label": "REGULATES", - "from": 3715027, - "to": 3722017, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356830, - "label": "REGULATES", - "from": 3722017, - "to": 3696278, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225759, - "label": "CONSUMED_BY", - "from": 3684315, - "to": 3706270, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486142, - "label": "ELEMENT_OF", - "from": 91442610, - "to": 91444710, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389594, - "label": "ELEMENT_OF", - "from": 3716831, - "to": 3726620, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225763, - "label": "CONSUMED_BY", - "from": 3684193, - "to": 3706271, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356837, - "label": "BINDS", - "from": 3722019, - "to": 3686127, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486083, - "label": "REGULATES", - "from": 91444678, - "to": 3711916, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225762, - "label": "PRODUCES", - "from": 3706270, - "to": 3684323, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486082, - "label": "REGULATES", - "from": 3712586, - "to": 91444677, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389604, - "label": "ELEMENT_OF", - "from": 3696120, - "to": 3726625, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225761, - "label": "PRODUCES", - "from": 3706270, - "to": 3674743, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356839, - "label": "REGULATES", - "from": 3711265, - "to": 3722019, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356838, - "label": "REGULATES", - "from": 3722019, - "to": 3694850, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486080, - "label": "REGULATES", - "from": 3712313, - "to": 91444676, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225766, - "label": "CONSUMED_BY", - "from": 3676091, - "to": 3706272, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486086, - "label": "REGULATES", - "from": 3712313, - "to": 91444679, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389600, - "label": "ELEMENT_OF", - "from": 3698799, - "to": 3726623, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486085, - "label": "REGULATES", - "from": 91444679, - "to": 3702856, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486084, - "label": "REGULATES", - "from": 3712586, - "to": 91444678, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225771, - "label": "CONSUMED_BY", - "from": 3668939, - "to": 3706273, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356845, - "label": "REGULATES", - "from": 3722021, - "to": 3689542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389613, - "label": "ELEMENT_OF", - "from": 3719931, - "to": 3726627, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225770, - "label": "PRODUCES", - "from": 3706272, - "to": 3671386, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486090, - "label": "REGULATES", - "from": 3704560, - "to": 91444681, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225769, - "label": "PRODUCES", - "from": 3706272, - "to": 3676082, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356846, - "label": "REGULATES", - "from": 3681418, - "to": 3722021, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356841, - "label": "BINDS", - "from": 3722020, - "to": 3687458, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225774, - "label": "PRODUCES", - "from": 3706273, - "to": 3669175, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486094, - "label": "REGULATES", - "from": 3708153, - "to": 91444683, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356843, - "label": "REGULATES", - "from": 3711179, - "to": 3722020, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486093, - "label": "REGULATES", - "from": 91444683, - "to": 3702891, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486092, - "label": "REGULATES", - "from": 3712313, - "to": 91444682, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486099, - "label": "REGULATES", - "from": 91444686, - "to": 3701623, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486098, - "label": "REGULATES", - "from": 3711179, - "to": 91444685, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486097, - "label": "REGULATES", - "from": 91444685, - "to": 3717136, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486103, - "label": "REGULATES", - "from": 91444688, - "to": 3690781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486102, - "label": "REGULATES", - "from": 3710270, - "to": 91444687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486101, - "label": "REGULATES", - "from": 91444687, - "to": 3702712, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486100, - "label": "REGULATES", - "from": 3708153, - "to": 91444686, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486107, - "label": "REGULATES", - "from": 91444690, - "to": 3698784, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486106, - "label": "REGULATES", - "from": 3710270, - "to": 91444689, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486104, - "label": "REGULATES", - "from": 3712313, - "to": 91444688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356862, - "label": "REGULATES", - "from": 3712313, - "to": 3722025, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486110, - "label": "REGULATES", - "from": 3712313, - "to": 91444691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486108, - "label": "REGULATES", - "from": 3712313, - "to": 91444690, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225794, - "label": "PRODUCES", - "from": 3706278, - "to": 3682216, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485410, - "label": "REGULATES", - "from": 3708153, - "to": 91444345, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356871, - "label": "BINDS", - "from": 3722028, - "to": 3685137, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485409, - "label": "REGULATES", - "from": 91444345, - "to": 3717004, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225792, - "label": "CONSUMED_BY", - "from": 3681626, - "to": 3706278, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485415, - "label": "REGULATES", - "from": 91444348, - "to": 3690462, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485414, - "label": "REGULATES", - "from": 3708153, - "to": 91444347, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485413, - "label": "REGULATES", - "from": 91444347, - "to": 3702705, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225796, - "label": "CONSUMED_BY", - "from": 3668044, - "to": 3706279, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485412, - "label": "REGULATES", - "from": 3707928, - "to": 91444346, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356877, - "label": "REGULATES", - "from": 3712308, - "to": 3722029, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356876, - "label": "REGULATES", - "from": 3722029, - "to": 3699585, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485418, - "label": "REGULATES", - "from": 3710270, - "to": 91444349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389644, - "label": "ELEMENT_OF", - "from": 3698992, - "to": 3726637, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389647, - "label": "ELEMENT_OF", - "from": 3690735, - "to": 3726638, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356879, - "label": "BINDS", - "from": 3722030, - "to": 3686390, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485416, - "label": "REGULATES", - "from": 3708153, - "to": 91444348, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356873, - "label": "REGULATES", - "from": 3711285, - "to": 3722028, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485422, - "label": "REGULATES", - "from": 3712313, - "to": 91444351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225805, - "label": "CONSUMED_BY", - "from": 3677711, - "to": 3706281, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356875, - "label": "BINDS", - "from": 3722029, - "to": 3679548, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485421, - "label": "REGULATES", - "from": 91444351, - "to": 3712085, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485427, - "label": "REGULATES", - "from": 91444354, - "to": 3690758, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225815, - "label": "PRODUCES", - "from": 3706283, - "to": 3676057, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485431, - "label": "REGULATES", - "from": 91444356, - "to": 91442561, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485430, - "label": "REGULATES", - "from": 3712313, - "to": 91444355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485429, - "label": "REGULATES", - "from": 91444355, - "to": 3707326, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 225812, - "label": "CONSUMED_BY", - "from": 3677401, - "to": 3706283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485428, - "label": "REGULATES", - "from": 3712313, - "to": 91444354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485434, - "label": "REGULATES", - "from": 3708153, - "to": 91444357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485433, - "label": "REGULATES", - "from": 91444357, - "to": 3687645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485432, - "label": "REGULATES", - "from": 3715027, - "to": 91444356, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485439, - "label": "REGULATES", - "from": 91444360, - "to": 3716951, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485438, - "label": "REGULATES", - "from": 3708153, - "to": 91444359, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485437, - "label": "REGULATES", - "from": 91444359, - "to": 3712061, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485436, - "label": "REGULATES", - "from": 3718538, - "to": 91444358, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485379, - "label": "REGULATES", - "from": 91444330, - "to": 3699007, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485378, - "label": "REGULATES", - "from": 3712313, - "to": 91444329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389668, - "label": "ELEMENT_OF", - "from": 3696322, - "to": 3726643, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485377, - "label": "REGULATES", - "from": 91444329, - "to": 3690734, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485380, - "label": "REGULATES", - "from": 3712313, - "to": 91444330, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389677, - "label": "ELEMENT_OF", - "from": 3716672, - "to": 3726647, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485391, - "label": "REGULATES", - "from": 91444336, - "to": 3698909, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485390, - "label": "REGULATES", - "from": 3708153, - "to": 91444335, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485389, - "label": "REGULATES", - "from": 91444335, - "to": 3702743, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389675, - "label": "ELEMENT_OF", - "from": 3702856, - "to": 3726645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485388, - "label": "REGULATES", - "from": 3708153, - "to": 91444334, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485394, - "label": "REGULATES", - "from": 3710270, - "to": 91444337, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485393, - "label": "REGULATES", - "from": 91444337, - "to": 3701538, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485392, - "label": "REGULATES", - "from": 3708153, - "to": 91444336, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485398, - "label": "REGULATES", - "from": 3712313, - "to": 91444339, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485397, - "label": "REGULATES", - "from": 91444339, - "to": 3702480, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485402, - "label": "REGULATES", - "from": 3712313, - "to": 91444341, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485401, - "label": "REGULATES", - "from": 91444341, - "to": 3698781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485406, - "label": "REGULATES", - "from": 3712313, - "to": 91444343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389691, - "label": "ELEMENT_OF", - "from": 3699440, - "to": 3726652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485405, - "label": "REGULATES", - "from": 91444343, - "to": 3693780, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389703, - "label": "ELEMENT_OF", - "from": 3693960, - "to": 3726655, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485472, - "label": "REGULATES", - "from": 3712313, - "to": 91444375, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485479, - "label": "REGULATES", - "from": 91444379, - "to": 3693740, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160327, - "label": "CATALYZES", - "from": 3687871, - "to": 3705560, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485482, - "label": "REGULATES", - "from": 3712313, - "to": 91444380, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485481, - "label": "REGULATES", - "from": 91444380, - "to": 3701554, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485480, - "label": "REGULATES", - "from": 3712313, - "to": 91444379, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389710, - "label": "ELEMENT_OF", - "from": 3695166, - "to": 3726656, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485487, - "label": "REGULATES", - "from": 91444383, - "to": 91442502, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160334, - "label": "CATALYZES", - "from": 3718603, - "to": 3687875, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160335, - "label": "CATALYZES", - "from": 3687875, - "to": 3705163, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485491, - "label": "REGULATES", - "from": 91444385, - "to": 3717118, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160338, - "label": "CATALYZES", - "from": 3714831, - "to": 3687877, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485490, - "label": "REGULATES", - "from": 3708153, - "to": 91444384, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485489, - "label": "REGULATES", - "from": 91444384, - "to": 3712213, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485488, - "label": "REGULATES", - "from": 3711265, - "to": 91444383, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485495, - "label": "REGULATES", - "from": 91444387, - "to": 3719945, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160343, - "label": "CATALYZES", - "from": 3687879, - "to": 3707481, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485494, - "label": "REGULATES", - "from": 3710270, - "to": 91444386, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485493, - "label": "REGULATES", - "from": 91444386, - "to": 3687633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389715, - "label": "ELEMENT_OF", - "from": 3694707, - "to": 3726657, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485492, - "label": "REGULATES", - "from": 3708153, - "to": 91444385, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485498, - "label": "REGULATES", - "from": 3710270, - "to": 91444388, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485497, - "label": "REGULATES", - "from": 91444388, - "to": 3711714, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160345, - "label": "CATALYZES", - "from": 3687880, - "to": 3709016, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485496, - "label": "REGULATES", - "from": 3712313, - "to": 91444387, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485503, - "label": "REGULATES", - "from": 91444391, - "to": 3698799, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485502, - "label": "REGULATES", - "from": 3710274, - "to": 91444390, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485443, - "label": "REGULATES", - "from": 3710270, - "to": 91444361, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160354, - "label": "CATALYZES", - "from": 3714801, - "to": 3687885, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389733, - "label": "ELEMENT_OF", - "from": 3693893, - "to": 3726663, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485440, - "label": "REGULATES", - "from": 3710270, - "to": 91444360, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160358, - "label": "CATALYZES", - "from": 3712724, - "to": 3687887, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485445, - "label": "REGULATES", - "from": 3712313, - "to": 91444362, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485444, - "label": "REGULATES", - "from": 91444362, - "to": 3702901, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485449, - "label": "REGULATES", - "from": 3712313, - "to": 91444364, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160360, - "label": "CATALYZES", - "from": 3714942, - "to": 3687888, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485448, - "label": "REGULATES", - "from": 91444364, - "to": 3694078, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160361, - "label": "CATALYZES", - "from": 3687888, - "to": 3705342, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485453, - "label": "REGULATES", - "from": 3712313, - "to": 91444366, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389739, - "label": "ELEMENT_OF", - "from": 3690904, - "to": 3726664, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485452, - "label": "REGULATES", - "from": 91444366, - "to": 3716976, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485459, - "label": "REGULATES", - "from": 3708153, - "to": 91444369, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485457, - "label": "REGULATES", - "from": 3707928, - "to": 91444368, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485456, - "label": "REGULATES", - "from": 91444368, - "to": 91442589, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485463, - "label": "REGULATES", - "from": 3708153, - "to": 91444371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485462, - "label": "REGULATES", - "from": 91444371, - "to": 3701721, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389746, - "label": "ELEMENT_OF", - "from": 3694078, - "to": 3726665, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389757, - "label": "ELEMENT_OF", - "from": 3712213, - "to": 3726668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485467, - "label": "REGULATES", - "from": 91444373, - "to": 3706812, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160379, - "label": "CATALYZES", - "from": 3687897, - "to": 3706262, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 389756, - "label": "ELEMENT_OF", - "from": 3701608, - "to": 3726667, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485465, - "label": "REGULATES", - "from": 3710270, - "to": 91444372, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160377, - "label": "CATALYZES", - "from": 3687896, - "to": 3706385, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485471, - "label": "REGULATES", - "from": 91444375, - "to": 3717054, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160382, - "label": "CATALYZES", - "from": 3718343, - "to": 3687899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485470, - "label": "REGULATES", - "from": 3712313, - "to": 91444374, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485469, - "label": "REGULATES", - "from": 91444374, - "to": 3701484, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485468, - "label": "REGULATES", - "from": 3710270, - "to": 91444373, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485283, - "label": "REGULATES", - "from": 91444283, - "to": 3694229, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485282, - "label": "REGULATES", - "from": 3711265, - "to": 91444282, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485281, - "label": "REGULATES", - "from": 91444282, - "to": 91442549, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485280, - "label": "REGULATES", - "from": 3712313, - "to": 91444281, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485284, - "label": "REGULATES", - "from": 3708153, - "to": 91444283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485290, - "label": "REGULATES", - "from": 3708153, - "to": 91444286, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160392, - "label": "CATALYZES", - "from": 3714453, - "to": 3687904, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485295, - "label": "REGULATES", - "from": 91444289, - "to": 3698615, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160398, - "label": "CATALYZES", - "from": 3718653, - "to": 3687907, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485294, - "label": "REGULATES", - "from": 3712313, - "to": 91444288, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160396, - "label": "CATALYZES", - "from": 3714005, - "to": 3687906, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485298, - "label": "REGULATES", - "from": 3712313, - "to": 91444290, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485297, - "label": "REGULATES", - "from": 91444290, - "to": 3711908, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485296, - "label": "REGULATES", - "from": 3708153, - "to": 91444289, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160406, - "label": "CATALYZES", - "from": 3710433, - "to": 3687911, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485302, - "label": "REGULATES", - "from": 3708153, - "to": 91444292, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160407, - "label": "CATALYZES", - "from": 3687911, - "to": 3705614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485301, - "label": "REGULATES", - "from": 91444292, - "to": 3694005, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485300, - "label": "REGULATES", - "from": 3718538, - "to": 91444291, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485306, - "label": "REGULATES", - "from": 3708153, - "to": 91444294, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485305, - "label": "REGULATES", - "from": 91444294, - "to": 3690789, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485311, - "label": "REGULATES", - "from": 91444297, - "to": 3698777, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485310, - "label": "REGULATES", - "from": 3712313, - "to": 91444296, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485309, - "label": "REGULATES", - "from": 91444296, - "to": 3687641, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160412, - "label": "CATALYZES", - "from": 3706184, - "to": 3687914, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485250, - "label": "REGULATES", - "from": 3704409, - "to": 91444266, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485248, - "label": "REGULATES", - "from": 3712313, - "to": 91444265, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160422, - "label": "CATALYZES", - "from": 3712378, - "to": 3687919, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485254, - "label": "REGULATES", - "from": 3708153, - "to": 91444268, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485253, - "label": "REGULATES", - "from": 91444268, - "to": 3717140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485259, - "label": "REGULATES", - "from": 91444271, - "to": 3719974, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485258, - "label": "REGULATES", - "from": 3710270, - "to": 91444270, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485257, - "label": "REGULATES", - "from": 91444270, - "to": 3726828, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485263, - "label": "REGULATES", - "from": 91444273, - "to": 3687561, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485262, - "label": "REGULATES", - "from": 3712313, - "to": 91444272, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485261, - "label": "REGULATES", - "from": 91444272, - "to": 3716842, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485260, - "label": "REGULATES", - "from": 3708153, - "to": 91444271, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160429, - "label": "CATALYZES", - "from": 3687922, - "to": 3709314, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160434, - "label": "CATALYZES", - "from": 3711427, - "to": 3687925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485266, - "label": "REGULATES", - "from": 3712313, - "to": 91444274, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485265, - "label": "REGULATES", - "from": 91444274, - "to": 3693753, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485264, - "label": "REGULATES", - "from": 3712313, - "to": 91444273, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485270, - "label": "REGULATES", - "from": 3708153, - "to": 91444276, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485269, - "label": "REGULATES", - "from": 91444276, - "to": 3690687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160442, - "label": "CATALYZES", - "from": 3712641, - "to": 3687929, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485275, - "label": "REGULATES", - "from": 91444279, - "to": 3701724, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160443, - "label": "CATALYZES", - "from": 3687929, - "to": 3708599, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485272, - "label": "REGULATES", - "from": 3718538, - "to": 91444277, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485279, - "label": "REGULATES", - "from": 91444281, - "to": 3698792, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160446, - "label": "CATALYZES", - "from": 3714255, - "to": 3687931, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485278, - "label": "REGULATES", - "from": 3712313, - "to": 91444280, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485276, - "label": "REGULATES", - "from": 3712313, - "to": 91444279, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485347, - "label": "REGULATES", - "from": 3712313, - "to": 91444314, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485346, - "label": "REGULATES", - "from": 91444314, - "to": 3698823, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485351, - "label": "REGULATES", - "from": 3708153, - "to": 91444316, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485350, - "label": "REGULATES", - "from": 91444316, - "to": 3707054, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485349, - "label": "REGULATES", - "from": 3718538, - "to": 91444315, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485355, - "label": "REGULATES", - "from": 3708153, - "to": 91444318, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485354, - "label": "REGULATES", - "from": 91444318, - "to": 3698749, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485353, - "label": "REGULATES", - "from": 3711265, - "to": 91444317, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485363, - "label": "REGULATES", - "from": 91444322, - "to": 3694053, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485362, - "label": "REGULATES", - "from": 3712313, - "to": 91444321, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485361, - "label": "REGULATES", - "from": 91444321, - "to": 3687585, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485366, - "label": "REGULATES", - "from": 3712586, - "to": 91444323, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485364, - "label": "REGULATES", - "from": 3712313, - "to": 91444322, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485371, - "label": "REGULATES", - "from": 91444326, - "to": 3698992, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485370, - "label": "REGULATES", - "from": 3708153, - "to": 91444325, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485369, - "label": "REGULATES", - "from": 91444325, - "to": 3702473, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160472, - "label": "CATALYZES", - "from": 3714782, - "to": 3687944, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485368, - "label": "REGULATES", - "from": 3718538, - "to": 91444324, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485372, - "label": "REGULATES", - "from": 3708153, - "to": 91444326, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160482, - "label": "CATALYZES", - "from": 3708135, - "to": 3687949, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485314, - "label": "REGULATES", - "from": 3712313, - "to": 91444298, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485313, - "label": "REGULATES", - "from": 91444298, - "to": 3690613, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485312, - "label": "REGULATES", - "from": 3708153, - "to": 91444297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485319, - "label": "REGULATES", - "from": 3708153, - "to": 91444300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485318, - "label": "REGULATES", - "from": 91444300, - "to": 3701354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485323, - "label": "REGULATES", - "from": 3708153, - "to": 91444302, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160491, - "label": "CATALYZES", - "from": 3687953, - "to": 3709211, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485327, - "label": "REGULATES", - "from": 3712313, - "to": 91444304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485326, - "label": "REGULATES", - "from": 91444304, - "to": 3693738, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485331, - "label": "REGULATES", - "from": 3712313, - "to": 91444306, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485330, - "label": "REGULATES", - "from": 91444306, - "to": 3702846, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485329, - "label": "REGULATES", - "from": 3708153, - "to": 91444305, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485328, - "label": "REGULATES", - "from": 91444305, - "to": 3702773, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485335, - "label": "REGULATES", - "from": 3708153, - "to": 91444308, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160502, - "label": "CATALYZES", - "from": 3710433, - "to": 3687959, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485334, - "label": "REGULATES", - "from": 91444308, - "to": 3701668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485333, - "label": "REGULATES", - "from": 3710143, - "to": 91444307, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160500, - "label": "CATALYZES", - "from": 3714255, - "to": 3687958, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485339, - "label": "REGULATES", - "from": 3708153, - "to": 91444310, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160506, - "label": "CATALYZES", - "from": 3714030, - "to": 3687961, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485338, - "label": "REGULATES", - "from": 91444310, - "to": 3693767, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485343, - "label": "REGULATES", - "from": 3712313, - "to": 91444312, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485342, - "label": "REGULATES", - "from": 91444312, - "to": 3707205, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160508, - "label": "CATALYZES", - "from": 3714146, - "to": 3687962, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485667, - "label": "REGULATES", - "from": 3708153, - "to": 91444472, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160514, - "label": "CATALYZES", - "from": 3712434, - "to": 3687965, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485666, - "label": "REGULATES", - "from": 91444472, - "to": 3716628, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160515, - "label": "CATALYZES", - "from": 3687965, - "to": 3708579, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485671, - "label": "REGULATES", - "from": 3712313, - "to": 91444474, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485670, - "label": "REGULATES", - "from": 91444474, - "to": 3687570, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485669, - "label": "REGULATES", - "from": 3712313, - "to": 91444473, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160516, - "label": "CATALYZES", - "from": 3710183, - "to": 3687966, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485668, - "label": "REGULATES", - "from": 91444473, - "to": 3693935, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485673, - "label": "REGULATES", - "from": 3710270, - "to": 91444475, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485672, - "label": "REGULATES", - "from": 91444475, - "to": 3702528, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485679, - "label": "REGULATES", - "from": 3708153, - "to": 91444478, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485678, - "label": "REGULATES", - "from": 91444478, - "to": 3701536, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485677, - "label": "REGULATES", - "from": 3712313, - "to": 91444477, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160524, - "label": "CATALYZES", - "from": 3705938, - "to": 3687970, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485676, - "label": "REGULATES", - "from": 91444477, - "to": 3690520, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485683, - "label": "REGULATES", - "from": 3718538, - "to": 91444480, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160530, - "label": "CATALYZES", - "from": 3713972, - "to": 3687973, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160531, - "label": "CATALYZES", - "from": 3687973, - "to": 3708574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485681, - "label": "REGULATES", - "from": 3712313, - "to": 91444479, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160529, - "label": "CATALYZES", - "from": 3687972, - "to": 3707683, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485680, - "label": "REGULATES", - "from": 91444479, - "to": 3690900, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485691, - "label": "REGULATES", - "from": 3712313, - "to": 91444484, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485690, - "label": "REGULATES", - "from": 91444484, - "to": 3698653, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485695, - "label": "REGULATES", - "from": 3710270, - "to": 91444486, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485693, - "label": "REGULATES", - "from": 3712313, - "to": 91444485, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160540, - "label": "CATALYZES", - "from": 3714146, - "to": 3687978, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485692, - "label": "REGULATES", - "from": 91444485, - "to": 3701352, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485635, - "label": "REGULATES", - "from": 3712313, - "to": 91444456, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160547, - "label": "CATALYZES", - "from": 3687981, - "to": 3705220, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485633, - "label": "REGULATES", - "from": 3708153, - "to": 91444455, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485632, - "label": "REGULATES", - "from": 91444455, - "to": 3694170, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160550, - "label": "CATALYZES", - "from": 3711603, - "to": 3687983, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485637, - "label": "REGULATES", - "from": 3704560, - "to": 91444457, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 160549, - "label": "CATALYZES", - "from": 3687982, - "to": 3706781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485643, - "label": "REGULATES", - "from": 3708153, - "to": 91444460, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485642, - "label": "REGULATES", - "from": 91444460, - "to": 3707190, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485641, - "label": "REGULATES", - "from": 3708153, - "to": 91444459, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485640, - "label": "REGULATES", - "from": 91444459, - "to": 3687621, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485647, - "label": "REGULATES", - "from": 3712313, - "to": 91444462, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485646, - "label": "REGULATES", - "from": 91444462, - "to": 3699025, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485645, - "label": "REGULATES", - "from": 3711179, - "to": 91444461, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485644, - "label": "REGULATES", - "from": 91444461, - "to": 3702930, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485651, - "label": "REGULATES", - "from": 3710270, - "to": 91444464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485649, - "label": "REGULATES", - "from": 3712313, - "to": 91444463, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485648, - "label": "REGULATES", - "from": 91444463, - "to": 3690606, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485655, - "label": "REGULATES", - "from": 3712313, - "to": 91444466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485654, - "label": "REGULATES", - "from": 91444466, - "to": 3716871, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485659, - "label": "REGULATES", - "from": 3712313, - "to": 91444468, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485658, - "label": "REGULATES", - "from": 91444468, - "to": 3719979, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485657, - "label": "REGULATES", - "from": 3708153, - "to": 91444467, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485656, - "label": "REGULATES", - "from": 91444467, - "to": 3701710, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485731, - "label": "REGULATES", - "from": 3712586, - "to": 91444504, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485733, - "label": "REGULATES", - "from": 3708153, - "to": 91444505, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485732, - "label": "REGULATES", - "from": 91444505, - "to": 3694174, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485739, - "label": "REGULATES", - "from": 3712313, - "to": 91444508, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485738, - "label": "REGULATES", - "from": 91444508, - "to": 3701547, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485743, - "label": "REGULATES", - "from": 3711179, - "to": 91444510, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485742, - "label": "REGULATES", - "from": 91444510, - "to": 3687582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485741, - "label": "REGULATES", - "from": 3708153, - "to": 91444509, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485747, - "label": "REGULATES", - "from": 3712313, - "to": 91444512, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485746, - "label": "REGULATES", - "from": 91444512, - "to": 3690667, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485751, - "label": "REGULATES", - "from": 3712313, - "to": 91444514, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485750, - "label": "REGULATES", - "from": 91444514, - "to": 3707294, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485749, - "label": "REGULATES", - "from": 3708153, - "to": 91444513, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485748, - "label": "REGULATES", - "from": 91444513, - "to": 3701752, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485755, - "label": "REGULATES", - "from": 3712313, - "to": 91444516, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485757, - "label": "REGULATES", - "from": 3708153, - "to": 91444517, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485756, - "label": "REGULATES", - "from": 91444517, - "to": 3690851, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485699, - "label": "REGULATES", - "from": 3712313, - "to": 91444488, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485698, - "label": "REGULATES", - "from": 91444488, - "to": 3699101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485697, - "label": "REGULATES", - "from": 3711265, - "to": 91444487, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485703, - "label": "REGULATES", - "from": 3712313, - "to": 91444490, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485702, - "label": "REGULATES", - "from": 91444490, - "to": 3699030, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485701, - "label": "REGULATES", - "from": 3708153, - "to": 91444489, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485700, - "label": "REGULATES", - "from": 91444489, - "to": 3706848, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485705, - "label": "REGULATES", - "from": 3710167, - "to": 91444491, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485709, - "label": "REGULATES", - "from": 3708153, - "to": 91444493, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485715, - "label": "REGULATES", - "from": 3712313, - "to": 91444496, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485714, - "label": "REGULATES", - "from": 91444496, - "to": 3712119, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485719, - "label": "REGULATES", - "from": 3711179, - "to": 91444498, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485718, - "label": "REGULATES", - "from": 91444498, - "to": 3701422, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485717, - "label": "REGULATES", - "from": 3708153, - "to": 91444497, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485716, - "label": "REGULATES", - "from": 91444497, - "to": 3717068, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485723, - "label": "REGULATES", - "from": 3712313, - "to": 91444500, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485722, - "label": "REGULATES", - "from": 91444500, - "to": 3699089, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485721, - "label": "REGULATES", - "from": 3718538, - "to": 91444499, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485727, - "label": "REGULATES", - "from": 3712313, - "to": 91444502, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485725, - "label": "REGULATES", - "from": 3708153, - "to": 91444501, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485724, - "label": "REGULATES", - "from": 91444501, - "to": 3698756, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485539, - "label": "REGULATES", - "from": 3708153, - "to": 91444408, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485538, - "label": "REGULATES", - "from": 91444408, - "to": 3687612, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485543, - "label": "REGULATES", - "from": 3711179, - "to": 91444410, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485542, - "label": "REGULATES", - "from": 91444410, - "to": 3694153, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485541, - "label": "REGULATES", - "from": 3708153, - "to": 91444409, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485540, - "label": "REGULATES", - "from": 91444409, - "to": 3717076, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485547, - "label": "REGULATES", - "from": 3712313, - "to": 91444412, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485546, - "label": "REGULATES", - "from": 91444412, - "to": 3690954, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485551, - "label": "REGULATES", - "from": 3710270, - "to": 91444414, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485549, - "label": "REGULATES", - "from": 3710270, - "to": 91444413, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485548, - "label": "REGULATES", - "from": 91444413, - "to": 3698891, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485555, - "label": "REGULATES", - "from": 3712313, - "to": 91444416, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485554, - "label": "REGULATES", - "from": 91444416, - "to": 3719961, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485553, - "label": "REGULATES", - "from": 3708153, - "to": 91444415, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485559, - "label": "REGULATES", - "from": 3712313, - "to": 91444418, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485558, - "label": "REGULATES", - "from": 91444418, - "to": 3690726, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485561, - "label": "REGULATES", - "from": 3711265, - "to": 91444419, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485567, - "label": "REGULATES", - "from": 3708153, - "to": 91444422, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485566, - "label": "REGULATES", - "from": 91444422, - "to": 3712219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485507, - "label": "REGULATES", - "from": 91444393, - "to": 91442524, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485506, - "label": "REGULATES", - "from": 3712313, - "to": 91444392, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193441, - "label": "IN_PATHWAY", - "from": 3700724, - "to": 3692910, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485504, - "label": "REGULATES", - "from": 3712313, - "to": 91444391, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193446, - "label": "IN_PATHWAY", - "from": 3709333, - "to": 3692911, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485508, - "label": "REGULATES", - "from": 3711265, - "to": 91444393, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485515, - "label": "REGULATES", - "from": 91444397, - "to": 3698903, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485514, - "label": "REGULATES", - "from": 3708153, - "to": 91444396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485513, - "label": "REGULATES", - "from": 91444396, - "to": 3706940, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485519, - "label": "REGULATES", - "from": 91444399, - "to": 3694210, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485518, - "label": "REGULATES", - "from": 3711179, - "to": 91444398, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193452, - "label": "IN_PATHWAY", - "from": 3707693, - "to": 3692912, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485517, - "label": "REGULATES", - "from": 91444398, - "to": 3690488, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485516, - "label": "REGULATES", - "from": 3708153, - "to": 91444397, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193458, - "label": "IN_PATHWAY", - "from": 3692913, - "to": 3693041, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485523, - "label": "REGULATES", - "from": 91444401, - "to": 3707293, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485522, - "label": "REGULATES", - "from": 3710270, - "to": 91444400, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485521, - "label": "REGULATES", - "from": 91444400, - "to": 3706952, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485520, - "label": "REGULATES", - "from": 3712313, - "to": 91444399, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193462, - "label": "IN_PATHWAY", - "from": 3705526, - "to": 3692913, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485527, - "label": "REGULATES", - "from": 91444403, - "to": 3707148, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485524, - "label": "REGULATES", - "from": 3712586, - "to": 91444401, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485531, - "label": "REGULATES", - "from": 91444405, - "to": 3702942, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193467, - "label": "IN_PATHWAY", - "from": 3700748, - "to": 3692914, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485528, - "label": "REGULATES", - "from": 3712313, - "to": 91444403, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485532, - "label": "REGULATES", - "from": 3712313, - "to": 91444405, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485603, - "label": "REGULATES", - "from": 3710270, - "to": 91444440, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485602, - "label": "REGULATES", - "from": 91444440, - "to": 3711835, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193472, - "label": "IN_PATHWAY", - "from": 3709294, - "to": 3692915, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485601, - "label": "REGULATES", - "from": 3712313, - "to": 91444439, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485600, - "label": "REGULATES", - "from": 91444439, - "to": 3706943, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485607, - "label": "REGULATES", - "from": 3710228, - "to": 91444442, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193479, - "label": "IN_PATHWAY", - "from": 3707391, - "to": 3692917, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193476, - "label": "IN_PATHWAY", - "from": 3709299, - "to": 3692916, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485611, - "label": "REGULATES", - "from": 3712313, - "to": 91444444, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485610, - "label": "REGULATES", - "from": 91444444, - "to": 3702748, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485609, - "label": "REGULATES", - "from": 3708153, - "to": 91444443, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485608, - "label": "REGULATES", - "from": 91444443, - "to": 3699093, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485613, - "label": "REGULATES", - "from": 3710194, - "to": 91444445, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193485, - "label": "IN_PATHWAY", - "from": 3705332, - "to": 3692918, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485612, - "label": "REGULATES", - "from": 91444445, - "to": 91442615, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485619, - "label": "REGULATES", - "from": 3708153, - "to": 91444448, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193491, - "label": "IN_PATHWAY", - "from": 3705363, - "to": 3692920, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485617, - "label": "REGULATES", - "from": 3708153, - "to": 91444447, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193489, - "label": "IN_PATHWAY", - "from": 3705332, - "to": 3692919, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485616, - "label": "REGULATES", - "from": 91444447, - "to": 3702579, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485623, - "label": "REGULATES", - "from": 3712313, - "to": 91444450, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485622, - "label": "REGULATES", - "from": 91444450, - "to": 3698918, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485621, - "label": "REGULATES", - "from": 3711179, - "to": 91444449, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485620, - "label": "REGULATES", - "from": 91444449, - "to": 3711710, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485627, - "label": "REGULATES", - "from": 3710270, - "to": 91444452, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193499, - "label": "IN_PATHWAY", - "from": 3692922, - "to": 3694314, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485625, - "label": "REGULATES", - "from": 3712313, - "to": 91444451, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193497, - "label": "IN_PATHWAY", - "from": 3709560, - "to": 3692921, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485631, - "label": "REGULATES", - "from": 3711265, - "to": 91444454, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193503, - "label": "IN_PATHWAY", - "from": 3705556, - "to": 3692922, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485571, - "label": "REGULATES", - "from": 3712313, - "to": 91444424, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485569, - "label": "REGULATES", - "from": 3710270, - "to": 91444423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485568, - "label": "REGULATES", - "from": 91444423, - "to": 3729149, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485575, - "label": "REGULATES", - "from": 3710270, - "to": 91444426, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485573, - "label": "REGULATES", - "from": 3710270, - "to": 91444425, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485579, - "label": "REGULATES", - "from": 3712313, - "to": 91444428, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485578, - "label": "REGULATES", - "from": 91444428, - "to": 3720005, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485577, - "label": "REGULATES", - "from": 3712313, - "to": 91444427, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193513, - "label": "IN_PATHWAY", - "from": 3709170, - "to": 3692923, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485576, - "label": "REGULATES", - "from": 91444427, - "to": 3720041, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485583, - "label": "REGULATES", - "from": 3718538, - "to": 91444430, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193516, - "label": "IN_PATHWAY", - "from": 3692924, - "to": 3693098, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485581, - "label": "REGULATES", - "from": 3712313, - "to": 91444429, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193517, - "label": "IN_PATHWAY", - "from": 3693094, - "to": 3692924, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485580, - "label": "REGULATES", - "from": 91444429, - "to": 3701528, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485587, - "label": "REGULATES", - "from": 3712313, - "to": 91444432, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485586, - "label": "REGULATES", - "from": 91444432, - "to": 3702688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193523, - "label": "IN_PATHWAY", - "from": 3708613, - "to": 3692925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485595, - "label": "REGULATES", - "from": 3712313, - "to": 91444436, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485594, - "label": "REGULATES", - "from": 91444436, - "to": 3698659, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193528, - "label": "IN_PATHWAY", - "from": 3705562, - "to": 3692926, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485593, - "label": "REGULATES", - "from": 3708153, - "to": 91444435, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485599, - "label": "REGULATES", - "from": 3712313, - "to": 91444438, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485597, - "label": "REGULATES", - "from": 3710270, - "to": 91444437, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193533, - "label": "IN_PATHWAY", - "from": 3707803, - "to": 3692927, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193538, - "label": "IN_PATHWAY", - "from": 3706679, - "to": 3692929, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193536, - "label": "IN_PATHWAY", - "from": 3705562, - "to": 3692928, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193544, - "label": "IN_PATHWAY", - "from": 3707698, - "to": 3692930, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193551, - "label": "IN_PATHWAY", - "from": 3692932, - "to": 3694308, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193548, - "label": "IN_PATHWAY", - "from": 3692931, - "to": 3694310, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193549, - "label": "IN_PATHWAY", - "from": 3706300, - "to": 3692931, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193554, - "label": "IN_PATHWAY", - "from": 3708476, - "to": 3692932, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226327, - "label": "PRODUCES", - "from": 3706289, - "to": 3669010, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226324, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3706289, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 291869, - "label": "REGULATES", - "from": 3684210, - "to": 3713496, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193560, - "label": "IN_PATHWAY", - "from": 3707698, - "to": 3692933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226329, - "label": "CONSUMED_BY", - "from": 3684141, - "to": 3706290, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226334, - "label": "CONSUMED_BY", - "from": 3683991, - "to": 3706291, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193564, - "label": "IN_PATHWAY", - "from": 3692934, - "to": 3692937, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 291866, - "label": "REGULATES", - "from": 3677624, - "to": 3713495, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193565, - "label": "IN_PATHWAY", - "from": 3709378, - "to": 3692934, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226332, - "label": "PRODUCES", - "from": 3706290, - "to": 3682202, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 291878, - "label": "REGULATES", - "from": 3702082, - "to": 3713499, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193569, - "label": "IN_PATHWAY", - "from": 3709329, - "to": 3692935, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226336, - "label": "PRODUCES", - "from": 3706291, - "to": 3681896, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193574, - "label": "IN_PATHWAY", - "from": 3707751, - "to": 3692936, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 291886, - "label": "REGULATES", - "from": 3713502, - "to": 3685813, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 291887, - "label": "REGULATES", - "from": 3677368, - "to": 3713502, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193582, - "label": "IN_PATHWAY", - "from": 3709550, - "to": 3692939, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226350, - "label": "PRODUCES", - "from": 3706294, - "to": 3673334, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193580, - "label": "IN_PATHWAY", - "from": 3707680, - "to": 3692938, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226355, - "label": "PRODUCES", - "from": 3706295, - "to": 3681750, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 291893, - "label": "REGULATES", - "from": 3682118, - "to": 3713504, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178847386, - "label": "CONSUMED_BY", - "from": 3671386, - "to": 3709144, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226353, - "label": "CONSUMED_BY", - "from": 3684009, - "to": 3706295, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193591, - "label": "IN_PATHWAY", - "from": 3705173, - "to": 3692941, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226357, - "label": "CONSUMED_BY", - "from": 3683895, - "to": 3706296, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193589, - "label": "IN_PATHWAY", - "from": 3705205, - "to": 3692940, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193595, - "label": "IN_PATHWAY", - "from": 3692942, - "to": 3692956, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193598, - "label": "IN_PATHWAY", - "from": 3709410, - "to": 3692943, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226367, - "label": "PRODUCES", - "from": 3706297, - "to": 3681354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226366, - "label": "PRODUCES", - "from": 3706297, - "to": 3710202, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193596, - "label": "IN_PATHWAY", - "from": 3705232, - "to": 3692942, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226364, - "label": "CONSUMED_BY", - "from": 3710264, - "to": 3706297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226371, - "label": "PRODUCES", - "from": 3706298, - "to": 3666976, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 291905, - "label": "REGULATES", - "from": 3684133, - "to": 3713508, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193605, - "label": "IN_PATHWAY", - "from": 3709566, - "to": 3692944, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226379, - "label": "CONSUMED_BY", - "from": 3670256, - "to": 3706300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 291914, - "label": "REGULATES", - "from": 3679065, - "to": 3713511, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226380, - "label": "PRODUCES", - "from": 3706300, - "to": 3677196, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193619, - "label": "IN_PATHWAY", - "from": 3705611, - "to": 3692946, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226386, - "label": "PRODUCES", - "from": 3706301, - "to": 3670653, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226385, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3706301, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193626, - "label": "IN_PATHWAY", - "from": 3706659, - "to": 3692947, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226394, - "label": "PRODUCES", - "from": 3706302, - "to": 3672695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226392, - "label": "CONSUMED_BY", - "from": 3677447, - "to": 3706302, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193634, - "label": "IN_PATHWAY", - "from": 3709065, - "to": 3692948, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 390244, - "label": "ELEMENT_OF", - "from": 3699996, - "to": 3726672, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193633, - "label": "IN_PATHWAY", - "from": 3692948, - "to": 3692952, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226400, - "label": "PRODUCES", - "from": 3706303, - "to": 3681875, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193637, - "label": "IN_PATHWAY", - "from": 3705483, - "to": 3692949, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 291949, - "label": "REGULATES", - "from": 3713523, - "to": 3689395, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 291950, - "label": "REGULATES", - "from": 3684202, - "to": 3713523, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226408, - "label": "CONSUMED_BY", - "from": 3684210, - "to": 3706305, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226415, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3706306, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193644, - "label": "IN_PATHWAY", - "from": 3705159, - "to": 3692951, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 291947, - "label": "REGULATES", - "from": 3684058, - "to": 3713522, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 390261, - "label": "ELEMENT_OF", - "from": 3717035, - "to": 3726678, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324724, - "label": "REGULATES", - "from": 3717596, - "to": 3697403, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193651, - "label": "IN_PATHWAY", - "from": 3709049, - "to": 3692953, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324725, - "label": "REGULATES", - "from": 3711259, - "to": 3717596, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226417, - "label": "PRODUCES", - "from": 3706306, - "to": 3672690, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193654, - "label": "IN_PATHWAY", - "from": 3709200, - "to": 3692954, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 390259, - "label": "ELEMENT_OF", - "from": 3699212, - "to": 3726677, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324723, - "label": "BINDS", - "from": 3717596, - "to": 3685186, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226427, - "label": "PRODUCES", - "from": 3706308, - "to": 3679166, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193658, - "label": "IN_PATHWAY", - "from": 3706711, - "to": 3692955, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324732, - "label": "REGULATES", - "from": 3708153, - "to": 3717598, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226426, - "label": "CONSUMED_BY", - "from": 3681868, - "to": 3706308, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193663, - "label": "IN_PATHWAY", - "from": 3708893, - "to": 3692957, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 291961, - "label": "REGULATES", - "from": 3713527, - "to": 3689425, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 390264, - "label": "ELEMENT_OF", - "from": 3701710, - "to": 3726680, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 291962, - "label": "REGULATES", - "from": 3681895, - "to": 3713527, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324730, - "label": "BINDS", - "from": 3717598, - "to": 3679606, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 291973, - "label": "REGULATES", - "from": 3713531, - "to": 3691142, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 291974, - "label": "REGULATES", - "from": 3681895, - "to": 3713531, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259201, - "label": "CONSUMED_BY", - "from": 3684043, - "to": 3709218, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486817, - "label": "ELEMENT_OF", - "from": 91442534, - "to": 91444827, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226439, - "label": "PRODUCES", - "from": 3706311, - "to": 3677588, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486823, - "label": "ELEMENT_OF", - "from": 3702772, - "to": 91444829, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193668, - "label": "IN_PATHWAY", - "from": 3705284, - "to": 3692958, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226437, - "label": "CONSUMED_BY", - "from": 3677280, - "to": 3706311, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193674, - "label": "IN_PATHWAY", - "from": 3708708, - "to": 3692959, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226443, - "label": "PRODUCES", - "from": 3706312, - "to": 3676901, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226442, - "label": "PRODUCES", - "from": 3706312, - "to": 3675772, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226440, - "label": "CONSUMED_BY", - "from": 3676804, - "to": 3706312, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 390286, - "label": "ELEMENT_OF", - "from": 3712143, - "to": 3726692, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259215, - "label": "CONSUMED_BY", - "from": 3677401, - "to": 3709221, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 193678, - "label": "IN_PATHWAY", - "from": 3692961, - "to": 3692963, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226446, - "label": "PRODUCES", - "from": 3706313, - "to": 3670552, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226445, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3706313, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486828, - "label": "ELEMENT_OF", - "from": 3698834, - "to": 91444830, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486835, - "label": "ELEMENT_OF", - "from": 3694153, - "to": 91444832, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 390293, - "label": "ELEMENT_OF", - "from": 3712127, - "to": 3726696, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 291989, - "label": "REGULATES", - "from": 3683945, - "to": 3713536, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259218, - "label": "PRODUCES", - "from": 3709221, - "to": 3684270, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 390295, - "label": "ELEMENT_OF", - "from": 3695091, - "to": 3726698, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 291991, - "label": "REGULATES", - "from": 3713537, - "to": 3691220, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324759, - "label": "BINDS", - "from": 3717606, - "to": 3682879, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324752, - "label": "REGULATES", - "from": 3717604, - "to": 3688858, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486839, - "label": "ELEMENT_OF", - "from": 91442572, - "to": 91444834, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324753, - "label": "REGULATES", - "from": 3681868, - "to": 3717604, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178847294, - "label": "CONSUMED_BY", - "from": 3671386, - "to": 3709522, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 390291, - "label": "ELEMENT_OF", - "from": 3690599, - "to": 3726695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324764, - "label": "REGULATES", - "from": 3717607, - "to": 3694853, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259226, - "label": "CONSUMED_BY", - "from": 3681557, - "to": 3709223, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324765, - "label": "REGULATES", - "from": 3710246, - "to": 3717607, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 291998, - "label": "REGULATES", - "from": 3677560, - "to": 3713539, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 291992, - "label": "REGULATES", - "from": 3677401, - "to": 3713537, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226463, - "label": "PRODUCES", - "from": 3706317, - "to": 3672562, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259231, - "label": "CONSUMED_BY", - "from": 3652193, - "to": 3709224, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324761, - "label": "REGULATES", - "from": 3711317, - "to": 3717606, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226461, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3706317, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259228, - "label": "PRODUCES", - "from": 3709223, - "to": 3681619, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324763, - "label": "BINDS", - "from": 3717607, - "to": 3678938, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226466, - "label": "CONSUMED_BY", - "from": 3684009, - "to": 3706318, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 390308, - "label": "ELEMENT_OF", - "from": 3702028, - "to": 3726702, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486784, - "label": "ELEMENT_OF", - "from": 91442541, - "to": 91444820, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259239, - "label": "CONSUMED_BY", - "from": 3677696, - "to": 3709225, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178847245, - "label": "CONSUMED_BY", - "from": 3685566, - "to": 3705579, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226470, - "label": "CONSUMED_BY", - "from": 3684202, - "to": 3706319, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486788, - "label": "ELEMENT_OF", - "from": 91442600, - "to": 91444821, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226468, - "label": "PRODUCES", - "from": 3706318, - "to": 3681775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292013, - "label": "REGULATES", - "from": 3684069, - "to": 3713544, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 390316, - "label": "ELEMENT_OF", - "from": 3697565, - "to": 3726706, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259240, - "label": "PRODUCES", - "from": 3709225, - "to": 3666888, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292015, - "label": "REGULATES", - "from": 3713545, - "to": 3689085, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178683405, - "label": "CONSUMED_BY", - "from": 3677460, - "to": 3706357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226478, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3706321, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259245, - "label": "PRODUCES", - "from": 3709226, - "to": 3681689, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292010, - "label": "REGULATES", - "from": 3677472, - "to": 3713543, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226477, - "label": "PRODUCES", - "from": 3706320, - "to": 3685574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486796, - "label": "ELEMENT_OF", - "from": 91442615, - "to": 91444823, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226476, - "label": "PRODUCES", - "from": 3706320, - "to": 3681648, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324789, - "label": "REGULATES", - "from": 3717614, - "to": 3685887, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226482, - "label": "CONSUMED_BY", - "from": 3679116, - "to": 3706322, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324790, - "label": "REGULATES", - "from": 3685555, - "to": 3717614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226481, - "label": "PRODUCES", - "from": 3706321, - "to": 3681676, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292016, - "label": "REGULATES", - "from": 3711204, - "to": 3713545, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486807, - "label": "ELEMENT_OF", - "from": 91442561, - "to": 91444824, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259255, - "label": "PRODUCES", - "from": 3709229, - "to": 3679093, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259254, - "label": "CONSUMED_BY", - "from": 3684009, - "to": 3709229, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292019, - "label": "REGULATES", - "from": 3681852, - "to": 3713546, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226484, - "label": "PRODUCES", - "from": 3706322, - "to": 3679094, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259259, - "label": "CONSUMED_BY", - "from": 3681453, - "to": 3709230, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292030, - "label": "REGULATES", - "from": 3713550, - "to": 3689163, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324799, - "label": "BINDS", - "from": 3717617, - "to": 3685142, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292031, - "label": "REGULATES", - "from": 3679440, - "to": 3713550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324792, - "label": "BINDS", - "from": 3717615, - "to": 3683289, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486815, - "label": "ELEMENT_OF", - "from": 3699029, - "to": 91444826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226495, - "label": "PRODUCES", - "from": 3706324, - "to": 3670385, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226494, - "label": "PRODUCES", - "from": 3706324, - "to": 3675950, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259261, - "label": "PRODUCES", - "from": 3709230, - "to": 3679461, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324794, - "label": "REGULATES", - "from": 3710270, - "to": 3717615, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486813, - "label": "ELEMENT_OF", - "from": 91442616, - "to": 91444825, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178683417, - "label": "CONSUMED_BY", - "from": 3674860, - "to": 3709536, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 390330, - "label": "ELEMENT_OF", - "from": 3702543, - "to": 3726711, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226492, - "label": "CONSUMED_BY", - "from": 3675985, - "to": 3706324, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292036, - "label": "REGULATES", - "from": 3713552, - "to": 3689820, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292037, - "label": "REGULATES", - "from": 3679446, - "to": 3713552, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 390342, - "label": "ELEMENT_OF", - "from": 3694066, - "to": 3726715, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324800, - "label": "REGULATES", - "from": 3717617, - "to": 3697817, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324801, - "label": "REGULATES", - "from": 3718538, - "to": 3717617, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 390336, - "label": "ELEMENT_OF", - "from": 3702772, - "to": 3726713, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259269, - "label": "PRODUCES", - "from": 3709232, - "to": 3684206, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259268, - "label": "CONSUMED_BY", - "from": 3677624, - "to": 3709232, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259275, - "label": "CONSUMED_BY", - "from": 3681923, - "to": 3709234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226506, - "label": "CONSUMED_BY", - "from": 3681868, - "to": 3706327, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259273, - "label": "PRODUCES", - "from": 3709233, - "to": 3682038, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259272, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3709233, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226511, - "label": "PRODUCES", - "from": 3706328, - "to": 3678963, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259279, - "label": "PRODUCES", - "from": 3709234, - "to": 3681680, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226510, - "label": "CONSUMED_BY", - "from": 3682044, - "to": 3706328, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259278, - "label": "PRODUCES", - "from": 3709234, - "to": 3683981, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226508, - "label": "PRODUCES", - "from": 3706327, - "to": 3673337, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226514, - "label": "CONSUMED_BY", - "from": 3677605, - "to": 3706329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324821, - "label": "BINDS", - "from": 3717623, - "to": 3682888, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259281, - "label": "CONSUMED_BY", - "from": 3666551, - "to": 3709235, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324823, - "label": "REGULATES", - "from": 3711265, - "to": 3717623, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226519, - "label": "PRODUCES", - "from": 3706330, - "to": 3682003, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324818, - "label": "REGULATES", - "from": 3717622, - "to": 3691360, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226516, - "label": "CONSUMED_BY", - "from": 3682027, - "to": 3706330, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324819, - "label": "REGULATES", - "from": 3677368, - "to": 3717622, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226522, - "label": "CONSUMED_BY", - "from": 3677168, - "to": 3706331, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 390367, - "label": "ELEMENT_OF", - "from": 3697870, - "to": 3726722, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226527, - "label": "PRODUCES", - "from": 3706332, - "to": 3677781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259294, - "label": "CONSUMED_BY", - "from": 3681908, - "to": 3709238, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292057, - "label": "REGULATES", - "from": 3713559, - "to": 3687765, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292058, - "label": "REGULATES", - "from": 3683877, - "to": 3713559, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324827, - "label": "REGULATES", - "from": 3714081, - "to": 3717624, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226524, - "label": "CONSUMED_BY", - "from": 3679114, - "to": 3706332, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259292, - "label": "PRODUCES", - "from": 3709237, - "to": 3681511, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226531, - "label": "CONSUMED_BY", - "from": 3677572, - "to": 3706333, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324836, - "label": "BINDS", - "from": 3717627, - "to": 3685456, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324838, - "label": "REGULATES", - "from": 3710228, - "to": 3717627, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259296, - "label": "PRODUCES", - "from": 3709238, - "to": 3681414, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226533, - "label": "CONSUMED_BY", - "from": 3681911, - "to": 3706334, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259300, - "label": "PRODUCES", - "from": 3709239, - "to": 3675954, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292078, - "label": "REGULATES", - "from": 3713566, - "to": 3688959, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292079, - "label": "REGULATES", - "from": 3683945, - "to": 3713566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226536, - "label": "PRODUCES", - "from": 3706334, - "to": 3681887, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226540, - "label": "CONSUMED_BY", - "from": 3677501, - "to": 3706335, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 390388, - "label": "ELEMENT_OF", - "from": 3717136, - "to": 3726731, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324853, - "label": "REGULATES", - "from": 3711237, - "to": 3717631, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259318, - "label": "PRODUCES", - "from": 3709243, - "to": 3682042, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324849, - "label": "REGULATES", - "from": 3718538, - "to": 3717630, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259317, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3709243, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226549, - "label": "CONSUMED_BY", - "from": 3677454, - "to": 3706337, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324851, - "label": "BINDS", - "from": 3717631, - "to": 3685290, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324860, - "label": "REGULATES", - "from": 3708153, - "to": 3717633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 390396, - "label": "ELEMENT_OF", - "from": 3699198, - "to": 3726734, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259321, - "label": "PRODUCES", - "from": 3709244, - "to": 3683869, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324862, - "label": "REGULATES", - "from": 3717634, - "to": 3691195, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259320, - "label": "CONSUMED_BY", - "from": 3683872, - "to": 3709244, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324863, - "label": "REGULATES", - "from": 3682118, - "to": 3717634, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226559, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3706340, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324856, - "label": "REGULATES", - "from": 3681872, - "to": 3717632, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 226556, - "label": "CONSUMED_BY", - "from": 3681809, - "to": 3706339, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 390401, - "label": "ELEMENT_OF", - "from": 3694640, - "to": 3726735, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259332, - "label": "CONSUMED_BY", - "from": 3679208, - "to": 3709247, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259336, - "label": "CONSUMED_BY", - "from": 3677396, - "to": 3709248, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 390414, - "label": "ELEMENT_OF", - "from": 3684963, - "to": 3726741, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259346, - "label": "CONSUMED_BY", - "from": 3679303, - "to": 3709250, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 390420, - "label": "ELEMENT_OF", - "from": 3702579, - "to": 3726742, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259348, - "label": "PRODUCES", - "from": 3709250, - "to": 3681428, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324893, - "label": "REGULATES", - "from": 3710228, - "to": 3717642, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259358, - "label": "PRODUCES", - "from": 3709252, - "to": 3681161, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259356, - "label": "CONSUMED_BY", - "from": 3677460, - "to": 3709252, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324891, - "label": "BINDS", - "from": 3717642, - "to": 3685236, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 390436, - "label": "ELEMENT_OF", - "from": 3720008, - "to": 3726746, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 390439, - "label": "ELEMENT_OF", - "from": 3701756, - "to": 3726747, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324902, - "label": "BINDS", - "from": 3717645, - "to": 3685151, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259371, - "label": "PRODUCES", - "from": 3709256, - "to": 3677533, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259370, - "label": "CONSUMED_BY", - "from": 3677633, - "to": 3709256, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 390444, - "label": "ELEMENT_OF", - "from": 3701400, - "to": 3726750, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 390447, - "label": "ELEMENT_OF", - "from": 3694678, - "to": 3726752, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259368, - "label": "PRODUCES", - "from": 3709255, - "to": 3676951, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259375, - "label": "PRODUCES", - "from": 3709257, - "to": 3677714, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324904, - "label": "REGULATES", - "from": 3707928, - "to": 3717645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 390440, - "label": "ELEMENT_OF", - "from": 3706794, - "to": 3726748, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259372, - "label": "CONSUMED_BY", - "from": 3685519, - "to": 3709257, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259379, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3709259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324918, - "label": "REGULATES", - "from": 3717649, - "to": 3692680, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259377, - "label": "PRODUCES", - "from": 3709258, - "to": 3677286, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324919, - "label": "REGULATES", - "from": 3677501, - "to": 3717649, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259376, - "label": "CONSUMED_BY", - "from": 3666747, - "to": 3709258, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259382, - "label": "PRODUCES", - "from": 3709259, - "to": 3669346, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259384, - "label": "CONSUMED_BY", - "from": 3677721, - "to": 3709260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324923, - "label": "REGULATES", - "from": 3710586, - "to": 3717650, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259395, - "label": "PRODUCES", - "from": 3709262, - "to": 3669321, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259394, - "label": "CONSUMED_BY", - "from": 3684317, - "to": 3709262, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 390468, - "label": "ELEMENT_OF", - "from": 3719974, - "to": 3726757, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259399, - "label": "CONSUMED_BY", - "from": 3685555, - "to": 3709263, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259403, - "label": "PRODUCES", - "from": 3709263, - "to": 3681510, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324936, - "label": "BINDS", - "from": 3717654, - "to": 3685061, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324938, - "label": "REGULATES", - "from": 3714081, - "to": 3717654, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259405, - "label": "CONSUMED_BY", - "from": 3681247, - "to": 3709264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259410, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3709265, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259413, - "label": "PRODUCES", - "from": 3709265, - "to": 3672573, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259417, - "label": "PRODUCES", - "from": 3709266, - "to": 3678972, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324958, - "label": "BINDS", - "from": 3717660, - "to": 3685475, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259416, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3709266, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324959, - "label": "REGULATES", - "from": 3717660, - "to": 3695182, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178683897, - "label": "CONSUMED_BY", - "from": 3652193, - "to": 3709283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259425, - "label": "CONSUMED_BY", - "from": 3684128, - "to": 3709268, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259431, - "label": "CONSUMED_BY", - "from": 3679148, - "to": 3709269, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324960, - "label": "REGULATES", - "from": 3718431, - "to": 3717660, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324963, - "label": "REGULATES", - "from": 3681428, - "to": 3717661, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259428, - "label": "PRODUCES", - "from": 3709268, - "to": 3684134, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178847680, - "label": "CONSUMED_BY", - "from": 3671386, - "to": 3707347, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324972, - "label": "BINDS", - "from": 3717664, - "to": 3675653, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259434, - "label": "PRODUCES", - "from": 3709269, - "to": 3681905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324973, - "label": "REGULATES", - "from": 3717664, - "to": 3694744, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259433, - "label": "PRODUCES", - "from": 3709269, - "to": 3677582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324974, - "label": "REGULATES", - "from": 3710270, - "to": 3717664, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259437, - "label": "PRODUCES", - "from": 3709270, - "to": 3677481, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324980, - "label": "BINDS", - "from": 3717666, - "to": 3678632, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324982, - "label": "REGULATES", - "from": 3711285, - "to": 3717666, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324976, - "label": "BINDS", - "from": 3717665, - "to": 3683199, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324978, - "label": "REGULATES", - "from": 3706146, - "to": 3717665, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324989, - "label": "REGULATES", - "from": 3711183, - "to": 3717668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324987, - "label": "BINDS", - "from": 3717668, - "to": 3675618, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324996, - "label": "REGULATES", - "from": 3711285, - "to": 3717670, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325009, - "label": "BINDS", - "from": 3717674, - "to": 3685307, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325011, - "label": "REGULATES", - "from": 3708153, - "to": 3717674, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325031, - "label": "BINDS", - "from": 3717680, - "to": 3679591, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325038, - "label": "BINDS", - "from": 3717682, - "to": 3686070, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325033, - "label": "REGULATES", - "from": 3714081, - "to": 3717680, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325044, - "label": "REGULATES", - "from": 3711285, - "to": 3717683, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325040, - "label": "REGULATES", - "from": 3712586, - "to": 3717682, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325042, - "label": "BINDS", - "from": 3717683, - "to": 3687524, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178847592, - "label": "CONSUMED_BY", - "from": 3671386, - "to": 3708870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325064, - "label": "BINDS", - "from": 3717689, - "to": 3679854, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325065, - "label": "REGULATES", - "from": 3717689, - "to": 3699777, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325066, - "label": "REGULATES", - "from": 3710238, - "to": 3717689, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325077, - "label": "REGULATES", - "from": 3705945, - "to": 3717692, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325075, - "label": "BINDS", - "from": 3717692, - "to": 3679664, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325092, - "label": "REGULATES", - "from": 3715027, - "to": 3717696, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325102, - "label": "REGULATES", - "from": 3674849, - "to": 3717699, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325097, - "label": "BINDS", - "from": 3717698, - "to": 3679869, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325098, - "label": "REGULATES", - "from": 3717698, - "to": 3696384, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325099, - "label": "REGULATES", - "from": 3718384, - "to": 3717698, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325108, - "label": "BINDS", - "from": 3717701, - "to": 3685053, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325110, - "label": "REGULATES", - "from": 3712586, - "to": 3717701, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325106, - "label": "REGULATES", - "from": 3707928, - "to": 3717700, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325116, - "label": "REGULATES", - "from": 3717703, - "to": 3687897, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325117, - "label": "REGULATES", - "from": 3677464, - "to": 3717703, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325112, - "label": "BINDS", - "from": 3717702, - "to": 3679863, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325114, - "label": "REGULATES", - "from": 3710167, - "to": 3717702, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325124, - "label": "REGULATES", - "from": 3677711, - "to": 3717705, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161282, - "label": "CATALYZES", - "from": 3711555, - "to": 3687989, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161283, - "label": "CATALYZES", - "from": 3687989, - "to": 3708613, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325128, - "label": "REGULATES", - "from": 3710228, - "to": 3717706, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486450, - "label": "ELEMENT_OF", - "from": 91442590, - "to": 91444760, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486455, - "label": "ELEMENT_OF", - "from": 91442513, - "to": 91444762, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325136, - "label": "REGULATES", - "from": 3710167, - "to": 3717708, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161301, - "label": "CATALYZES", - "from": 3687998, - "to": 3706445, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325139, - "label": "REGULATES", - "from": 3677447, - "to": 3717709, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486463, - "label": "ELEMENT_OF", - "from": 3698992, - "to": 91444764, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161310, - "label": "CATALYZES", - "from": 3718343, - "to": 3688003, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486462, - "label": "ELEMENT_OF", - "from": 91442510, - "to": 91444763, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161308, - "label": "CATALYZES", - "from": 3715215, - "to": 3688002, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161309, - "label": "CATALYZES", - "from": 3688002, - "to": 3706684, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161314, - "label": "CATALYZES", - "from": 3711370, - "to": 3688005, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325156, - "label": "BINDS", - "from": 3717714, - "to": 3678811, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161315, - "label": "CATALYZES", - "from": 3688005, - "to": 3707792, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325158, - "label": "REGULATES", - "from": 3710228, - "to": 3717714, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161319, - "label": "CATALYZES", - "from": 3688007, - "to": 3707751, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161320, - "label": "CATALYZES", - "from": 3712461, - "to": 3688008, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486408, - "label": "ELEMENT_OF", - "from": 91442539, - "to": 91444752, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325161, - "label": "REGULATES", - "from": 3677560, - "to": 3717715, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161324, - "label": "CATALYZES", - "from": 3711696, - "to": 3688010, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325172, - "label": "REGULATES", - "from": 3712313, - "to": 3717718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325174, - "label": "BINDS", - "from": 3717719, - "to": 3679894, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325168, - "label": "REGULATES", - "from": 3677332, - "to": 3717717, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325170, - "label": "BINDS", - "from": 3717718, - "to": 3686069, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161333, - "label": "CATALYZES", - "from": 3688014, - "to": 3708708, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486420, - "label": "ELEMENT_OF", - "from": 3690814, - "to": 91444755, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161336, - "label": "CATALYZES", - "from": 3712673, - "to": 3688016, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325176, - "label": "REGULATES", - "from": 3710208, - "to": 3717719, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486431, - "label": "ELEMENT_OF", - "from": 91442589, - "to": 91444758, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161345, - "label": "CATALYZES", - "from": 3688020, - "to": 3709556, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161350, - "label": "CATALYZES", - "from": 3714590, - "to": 3688023, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161351, - "label": "CATALYZES", - "from": 3688023, - "to": 3709202, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325192, - "label": "BINDS", - "from": 3717724, - "to": 3686436, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325193, - "label": "REGULATES", - "from": 3717724, - "to": 3700185, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325194, - "label": "REGULATES", - "from": 3710167, - "to": 3717724, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486517, - "label": "ELEMENT_OF", - "from": 3701796, - "to": 91444775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161364, - "label": "CATALYZES", - "from": 3711609, - "to": 3688030, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161365, - "label": "CATALYZES", - "from": 3688030, - "to": 3708723, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486522, - "label": "ELEMENT_OF", - "from": 3698765, - "to": 91444776, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325214, - "label": "BINDS", - "from": 3717730, - "to": 3678829, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161368, - "label": "CATALYZES", - "from": 3708049, - "to": 3688032, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161369, - "label": "CATALYZES", - "from": 3688032, - "to": 3707601, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161374, - "label": "CATALYZES", - "from": 3714216, - "to": 3688035, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325209, - "label": "REGULATES", - "from": 3711285, - "to": 3717728, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259687, - "label": "PRODUCES", - "from": 3709272, - "to": 3683885, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325216, - "label": "REGULATES", - "from": 3705945, - "to": 3717730, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259685, - "label": "CONSUMED_BY", - "from": 3684009, - "to": 3709272, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161386, - "label": "CATALYZES", - "from": 3714644, - "to": 3688041, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325230, - "label": "REGULATES", - "from": 3717734, - "to": 3697377, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259688, - "label": "CONSUMED_BY", - "from": 3670604, - "to": 3709273, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325231, - "label": "REGULATES", - "from": 3718648, - "to": 3717734, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259695, - "label": "CONSUMED_BY", - "from": 3684041, - "to": 3709275, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161390, - "label": "CATALYZES", - "from": 3714255, - "to": 3688043, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486478, - "label": "ELEMENT_OF", - "from": 3690520, - "to": 91444767, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161391, - "label": "CATALYZES", - "from": 3688043, - "to": 3707350, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486477, - "label": "ELEMENT_OF", - "from": 91442503, - "to": 91444766, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259692, - "label": "CONSUMED_BY", - "from": 3682163, - "to": 3709274, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325227, - "label": "REGULATES", - "from": 3677715, - "to": 3717733, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259699, - "label": "CONSUMED_BY", - "from": 3681323, - "to": 3709276, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161395, - "label": "CATALYZES", - "from": 3688045, - "to": 3705455, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259698, - "label": "PRODUCES", - "from": 3709275, - "to": 3677212, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259702, - "label": "PRODUCES", - "from": 3709277, - "to": 3684094, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325233, - "label": "REGULATES", - "from": 3717735, - "to": 3685661, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259701, - "label": "CONSUMED_BY", - "from": 3682007, - "to": 3709277, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325234, - "label": "REGULATES", - "from": 3677368, - "to": 3717735, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259700, - "label": "PRODUCES", - "from": 3709276, - "to": 3681368, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259707, - "label": "PRODUCES", - "from": 3709278, - "to": 3677808, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325245, - "label": "REGULATES", - "from": 3717738, - "to": 3699608, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486490, - "label": "ELEMENT_OF", - "from": 91442596, - "to": 91444769, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325246, - "label": "REGULATES", - "from": 3704560, - "to": 3717738, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259704, - "label": "CONSUMED_BY", - "from": 3679114, - "to": 3709278, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259711, - "label": "CONSUMED_BY", - "from": 3681872, - "to": 3709279, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161406, - "label": "CATALYZES", - "from": 3710183, - "to": 3688051, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325242, - "label": "REGULATES", - "from": 3711285, - "to": 3717737, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486306, - "label": "ELEMENT_OF", - "from": 91442574, - "to": 91444735, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161409, - "label": "CATALYZES", - "from": 3688052, - "to": 3707441, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259712, - "label": "PRODUCES", - "from": 3709279, - "to": 3679145, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259718, - "label": "PRODUCES", - "from": 3709280, - "to": 3675465, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259716, - "label": "CONSUMED_BY", - "from": 3677476, - "to": 3709280, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325260, - "label": "REGULATES", - "from": 3710194, - "to": 3717742, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161418, - "label": "CATALYZES", - "from": 3704580, - "to": 3688057, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259727, - "label": "CONSUMED_BY", - "from": 3684322, - "to": 3709282, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486323, - "label": "ELEMENT_OF", - "from": 91442494, - "to": 91444738, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325268, - "label": "REGULATES", - "from": 3710228, - "to": 3717744, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325270, - "label": "REGULATES", - "from": 3717745, - "to": 3689080, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325271, - "label": "REGULATES", - "from": 3677613, - "to": 3717745, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259728, - "label": "PRODUCES", - "from": 3709282, - "to": 3681755, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161431, - "label": "CATALYZES", - "from": 3688063, - "to": 3707388, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161428, - "label": "CATALYZES", - "from": 3711609, - "to": 3688062, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325266, - "label": "BINDS", - "from": 3717744, - "to": 3682993, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161429, - "label": "CATALYZES", - "from": 3688062, - "to": 3707507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325267, - "label": "REGULATES", - "from": 3717744, - "to": 3696166, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161434, - "label": "CATALYZES", - "from": 3714491, - "to": 3688065, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325277, - "label": "REGULATES", - "from": 3717747, - "to": 3689778, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325278, - "label": "REGULATES", - "from": 3681852, - "to": 3717747, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161432, - "label": "CATALYZES", - "from": 3714340, - "to": 3688064, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486335, - "label": "ELEMENT_OF", - "from": 91442596, - "to": 91444739, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259741, - "label": "CONSUMED_BY", - "from": 3677742, - "to": 3709285, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325275, - "label": "REGULATES", - "from": 3708423, - "to": 3717746, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259747, - "label": "CONSUMED_BY", - "from": 3684067, - "to": 3709286, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325284, - "label": "BINDS", - "from": 3717749, - "to": 3687169, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325286, - "label": "REGULATES", - "from": 3714706, - "to": 3717749, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259744, - "label": "PRODUCES", - "from": 3709285, - "to": 3677721, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161446, - "label": "CATALYZES", - "from": 3704366, - "to": 3688071, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259749, - "label": "PRODUCES", - "from": 3709286, - "to": 3677438, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259748, - "label": "PRODUCES", - "from": 3709286, - "to": 3677549, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486276, - "label": "ELEMENT_OF", - "from": 91442591, - "to": 91444731, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259755, - "label": "PRODUCES", - "from": 3709288, - "to": 3672608, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486282, - "label": "ELEMENT_OF", - "from": 91442511, - "to": 91444733, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259758, - "label": "CONSUMED_BY", - "from": 3677648, - "to": 3709289, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259763, - "label": "PRODUCES", - "from": 3709290, - "to": 3682083, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259761, - "label": "CONSUMED_BY", - "from": 3681631, - "to": 3709290, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259760, - "label": "PRODUCES", - "from": 3709289, - "to": 3681462, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325297, - "label": "REGULATES", - "from": 3710586, - "to": 3717752, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259765, - "label": "CONSUMED_BY", - "from": 3684260, - "to": 3709291, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259771, - "label": "PRODUCES", - "from": 3709292, - "to": 3677289, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486299, - "label": "ELEMENT_OF", - "from": 91442573, - "to": 91444734, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161466, - "label": "CATALYZES", - "from": 3708076, - "to": 3688081, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259770, - "label": "CONSUMED_BY", - "from": 3681362, - "to": 3709292, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259772, - "label": "PRODUCES", - "from": 3709292, - "to": 3669722, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259778, - "label": "CONSUMED_BY", - "from": 3681891, - "to": 3709294, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486369, - "label": "ELEMENT_OF", - "from": 3702622, - "to": 91444746, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358087, - "label": "REGULATES", - "from": 3722032, - "to": 3694344, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358086, - "label": "BINDS", - "from": 3722032, - "to": 3685404, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259783, - "label": "CONSUMED_BY", - "from": 3677615, - "to": 3709295, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161478, - "label": "CATALYZES", - "from": 3714455, - "to": 3688087, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358081, - "label": "REGULATES", - "from": 3710274, - "to": 3722030, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161479, - "label": "CATALYZES", - "from": 3688087, - "to": 3707870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259781, - "label": "PRODUCES", - "from": 3709294, - "to": 3681943, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161477, - "label": "CATALYZES", - "from": 3688086, - "to": 3706580, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358092, - "label": "REGULATES", - "from": 3710228, - "to": 3722033, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259791, - "label": "PRODUCES", - "from": 3709297, - "to": 3679333, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259790, - "label": "CONSUMED_BY", - "from": 3674732, - "to": 3709297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358088, - "label": "REGULATES", - "from": 3710228, - "to": 3722032, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325332, - "label": "BINDS", - "from": 3717762, - "to": 3685148, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259794, - "label": "CONSUMED_BY", - "from": 3666504, - "to": 3709298, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358100, - "label": "REGULATES", - "from": 3718407, - "to": 3722035, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161488, - "label": "CATALYZES", - "from": 3708198, - "to": 3688092, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486385, - "label": "ELEMENT_OF", - "from": 91442593, - "to": 91444748, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325334, - "label": "REGULATES", - "from": 3715127, - "to": 3717762, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259799, - "label": "CONSUMED_BY", - "from": 3681141, - "to": 3709299, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292562, - "label": "REGULATES", - "from": 3681640, - "to": 3713567, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358099, - "label": "REGULATES", - "from": 3722035, - "to": 3698021, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259796, - "label": "PRODUCES", - "from": 3709298, - "to": 3652189, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358098, - "label": "BINDS", - "from": 3722035, - "to": 3684971, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292573, - "label": "REGULATES", - "from": 3713571, - "to": 3688777, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292574, - "label": "REGULATES", - "from": 3668965, - "to": 3713571, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161496, - "label": "CATALYZES", - "from": 3714758, - "to": 3688096, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325343, - "label": "REGULATES", - "from": 3717765, - "to": 3688137, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486392, - "label": "ELEMENT_OF", - "from": 3706808, - "to": 91444751, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161497, - "label": "CATALYZES", - "from": 3688096, - "to": 3706680, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259807, - "label": "CONSUMED_BY", - "from": 3711707, - "to": 3709301, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259804, - "label": "PRODUCES", - "from": 3709300, - "to": 3672658, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259811, - "label": "CONSUMED_BY", - "from": 3668646, - "to": 3709302, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161506, - "label": "CATALYZES", - "from": 3712673, - "to": 3688101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486339, - "label": "ELEMENT_OF", - "from": 3698834, - "to": 91444740, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161504, - "label": "CATALYZES", - "from": 3712599, - "to": 3688100, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259815, - "label": "CONSUMED_BY", - "from": 3677460, - "to": 3709303, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325344, - "label": "REGULATES", - "from": 3666725, - "to": 3717765, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325356, - "label": "REGULATES", - "from": 3710228, - "to": 3717768, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486346, - "label": "ELEMENT_OF", - "from": 3702743, - "to": 91444742, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325359, - "label": "REGULATES", - "from": 3677237, - "to": 3717769, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292585, - "label": "REGULATES", - "from": 3713575, - "to": 3685751, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259822, - "label": "PRODUCES", - "from": 3709304, - "to": 3675816, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292586, - "label": "REGULATES", - "from": 3681364, - "to": 3713575, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 161516, - "label": "CATALYZES", - "from": 3708270, - "to": 3688106, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325354, - "label": "BINDS", - "from": 3717768, - "to": 3684969, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259827, - "label": "PRODUCES", - "from": 3709305, - "to": 3666902, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259826, - "label": "PRODUCES", - "from": 3709305, - "to": 3681912, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358132, - "label": "BINDS", - "from": 3722044, - "to": 3685413, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259825, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3709305, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358134, - "label": "REGULATES", - "from": 3710228, - "to": 3722044, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325361, - "label": "BINDS", - "from": 3717770, - "to": 3685154, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259829, - "label": "CONSUMED_BY", - "from": 3677501, - "to": 3709306, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325362, - "label": "REGULATES", - "from": 3717770, - "to": 3727475, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292595, - "label": "REGULATES", - "from": 3682083, - "to": 3713578, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325363, - "label": "REGULATES", - "from": 3712313, - "to": 3717770, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486356, - "label": "ELEMENT_OF", - "from": 3702580, - "to": 91444743, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325372, - "label": "BINDS", - "from": 3717773, - "to": 3685047, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358141, - "label": "REGULATES", - "from": 3674585, - "to": 3722046, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325374, - "label": "REGULATES", - "from": 3711233, - "to": 3717773, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259833, - "label": "PRODUCES", - "from": 3709306, - "to": 3677711, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358149, - "label": "REGULATES", - "from": 3711404, - "to": 3722048, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292612, - "label": "REGULATES", - "from": 3713584, - "to": 3688172, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325381, - "label": "REGULATES", - "from": 3677445, - "to": 3717775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259842, - "label": "PRODUCES", - "from": 3709308, - "to": 3681413, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292613, - "label": "REGULATES", - "from": 3677560, - "to": 3713584, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358151, - "label": "BINDS", - "from": 3722049, - "to": 3679982, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259840, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3709308, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292615, - "label": "REGULATES", - "from": 3713585, - "to": 3691173, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259847, - "label": "PRODUCES", - "from": 3709309, - "to": 3669239, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358147, - "label": "BINDS", - "from": 3722048, - "to": 3678750, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259844, - "label": "CONSUMED_BY", - "from": 3670589, - "to": 3709309, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259851, - "label": "CONSUMED_BY", - "from": 3704498, - "to": 3709310, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325390, - "label": "BINDS", - "from": 3717778, - "to": 3683191, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358153, - "label": "REGULATES", - "from": 3711207, - "to": 3722049, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292616, - "label": "REGULATES", - "from": 3679378, - "to": 3713585, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358152, - "label": "REGULATES", - "from": 3722049, - "to": 3699563, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325385, - "label": "REGULATES", - "from": 3708153, - "to": 3717776, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259859, - "label": "CONSUMED_BY", - "from": 3677401, - "to": 3709312, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292628, - "label": "REGULATES", - "from": 3677431, - "to": 3713589, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259858, - "label": "PRODUCES", - "from": 3709311, - "to": 3677617, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259856, - "label": "CONSUMED_BY", - "from": 3677604, - "to": 3709311, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325392, - "label": "REGULATES", - "from": 3710270, - "to": 3717778, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259867, - "label": "PRODUCES", - "from": 3709313, - "to": 3679385, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358172, - "label": "REGULATES", - "from": 3718538, - "to": 3722054, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358175, - "label": "REGULATES", - "from": 3722055, - "to": 3697847, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358174, - "label": "BINDS", - "from": 3722055, - "to": 3683252, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358170, - "label": "BINDS", - "from": 3722054, - "to": 3687349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325403, - "label": "REGULATES", - "from": 3670237, - "to": 3717781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259875, - "label": "CONSUMED_BY", - "from": 3681860, - "to": 3709315, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292645, - "label": "REGULATES", - "from": 3713595, - "to": 3688958, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292646, - "label": "REGULATES", - "from": 3677368, - "to": 3713595, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486656, - "label": "ELEMENT_OF", - "from": 91442604, - "to": 91444801, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358176, - "label": "REGULATES", - "from": 3710578, - "to": 3722055, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259877, - "label": "PRODUCES", - "from": 3709315, - "to": 3681807, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259876, - "label": "PRODUCES", - "from": 3709315, - "to": 3679413, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358191, - "label": "REGULATES", - "from": 3710270, - "to": 3722059, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325416, - "label": "BINDS", - "from": 3717785, - "to": 3685163, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259886, - "label": "CONSUMED_BY", - "from": 3681569, - "to": 3709318, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486670, - "label": "ELEMENT_OF", - "from": 3712239, - "to": 91444803, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325417, - "label": "REGULATES", - "from": 3717785, - "to": 3729721, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259885, - "label": "PRODUCES", - "from": 3709317, - "to": 3681318, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325418, - "label": "REGULATES", - "from": 3712313, - "to": 3717785, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259884, - "label": "CONSUMED_BY", - "from": 3681276, - "to": 3709317, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292660, - "label": "REGULATES", - "from": 3713600, - "to": 3688921, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259890, - "label": "CONSUMED_BY", - "from": 3679109, - "to": 3709319, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325429, - "label": "REGULATES", - "from": 3711183, - "to": 3717788, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292661, - "label": "REGULATES", - "from": 3677336, - "to": 3713600, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486672, - "label": "ELEMENT_OF", - "from": 3694011, - "to": 91444804, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259895, - "label": "PRODUCES", - "from": 3709320, - "to": 3681809, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358193, - "label": "BINDS", - "from": 3722060, - "to": 3682833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259893, - "label": "CONSUMED_BY", - "from": 3677714, - "to": 3709320, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358195, - "label": "REGULATES", - "from": 3705945, - "to": 3722060, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486677, - "label": "ELEMENT_OF", - "from": 91442607, - "to": 91444806, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358194, - "label": "REGULATES", - "from": 3722060, - "to": 3729475, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325436, - "label": "REGULATES", - "from": 3711247, - "to": 3717790, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486683, - "label": "ELEMENT_OF", - "from": 91442545, - "to": 91444807, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325438, - "label": "BINDS", - "from": 3717791, - "to": 3685269, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325434, - "label": "BINDS", - "from": 3717790, - "to": 3687515, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259907, - "label": "PRODUCES", - "from": 3709323, - "to": 3681434, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325444, - "label": "REGULATES", - "from": 3708153, - "to": 3717792, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259906, - "label": "CONSUMED_BY", - "from": 3677615, - "to": 3709323, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325440, - "label": "REGULATES", - "from": 3712308, - "to": 3717791, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358208, - "label": "BINDS", - "from": 3722064, - "to": 3678556, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259909, - "label": "CONSUMED_BY", - "from": 3679128, - "to": 3709324, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358210, - "label": "REGULATES", - "from": 3714081, - "to": 3722064, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325443, - "label": "REGULATES", - "from": 3717792, - "to": 3699382, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358223, - "label": "REGULATES", - "from": 3722068, - "to": 3694782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358222, - "label": "BINDS", - "from": 3722068, - "to": 3685063, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259919, - "label": "PRODUCES", - "from": 3709325, - "to": 3708346, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259918, - "label": "PRODUCES", - "from": 3709325, - "to": 3710522, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486766, - "label": "ELEMENT_OF", - "from": 91442540, - "to": 91444819, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 259916, - "label": "CONSUMED_BY", - "from": 3704210, - "to": 3709325, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358228, - "label": "REGULATES", - "from": 3711179, - "to": 3722069, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325456, - "label": "BINDS", - "from": 3717796, - "to": 3686177, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358224, - "label": "REGULATES", - "from": 3711281, - "to": 3722068, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325458, - "label": "REGULATES", - "from": 3710270, - "to": 3717796, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358226, - "label": "BINDS", - "from": 3722069, - "to": 3683059, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292700, - "label": "REGULATES", - "from": 3677560, - "to": 3713613, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292702, - "label": "REGULATES", - "from": 3713614, - "to": 3688909, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358239, - "label": "REGULATES", - "from": 3677336, - "to": 3722072, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292703, - "label": "REGULATES", - "from": 3677464, - "to": 3713614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325471, - "label": "BINDS", - "from": 3717800, - "to": 3684968, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358238, - "label": "REGULATES", - "from": 3722072, - "to": 3688979, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292699, - "label": "REGULATES", - "from": 3713613, - "to": 3687792, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358245, - "label": "BINDS", - "from": 3722074, - "to": 3675633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358247, - "label": "REGULATES", - "from": 3714706, - "to": 3722074, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325472, - "label": "REGULATES", - "from": 3717800, - "to": 3726218, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325473, - "label": "REGULATES", - "from": 3712313, - "to": 3717800, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358253, - "label": "BINDS", - "from": 3722076, - "to": 3683188, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358255, - "label": "REGULATES", - "from": 3715127, - "to": 3722076, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486728, - "label": "ELEMENT_OF", - "from": 3702772, - "to": 91444813, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358258, - "label": "REGULATES", - "from": 3677472, - "to": 3722077, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325500, - "label": "BINDS", - "from": 3717808, - "to": 3682783, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325502, - "label": "REGULATES", - "from": 3711237, - "to": 3717808, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292735, - "label": "REGULATES", - "from": 3713625, - "to": 3692699, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358265, - "label": "REGULATES", - "from": 3722079, - "to": 3726347, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358264, - "label": "BINDS", - "from": 3722079, - "to": 3686296, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486749, - "label": "ELEMENT_OF", - "from": 91442564, - "to": 91444818, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358266, - "label": "REGULATES", - "from": 3712313, - "to": 3722079, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358277, - "label": "REGULATES", - "from": 3684322, - "to": 3722082, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325510, - "label": "REGULATES", - "from": 3711285, - "to": 3717810, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358279, - "label": "BINDS", - "from": 3722083, - "to": 3687459, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292736, - "label": "REGULATES", - "from": 3683945, - "to": 3713625, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486567, - "label": "ELEMENT_OF", - "from": 3698834, - "to": 91444783, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292738, - "label": "REGULATES", - "from": 3713626, - "to": 3691255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292739, - "label": "REGULATES", - "from": 3681891, - "to": 3713626, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292748, - "label": "REGULATES", - "from": 3681355, - "to": 3713629, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325517, - "label": "REGULATES", - "from": 3711265, - "to": 3717812, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292744, - "label": "REGULATES", - "from": 3713628, - "to": 3692628, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358281, - "label": "REGULATES", - "from": 3718648, - "to": 3722083, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292745, - "label": "REGULATES", - "from": 3677788, - "to": 3713628, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325515, - "label": "BINDS", - "from": 3717812, - "to": 3678537, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486572, - "label": "ELEMENT_OF", - "from": 91442570, - "to": 91444784, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292756, - "label": "REGULATES", - "from": 3713632, - "to": 3691461, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292757, - "label": "REGULATES", - "from": 3679440, - "to": 3713632, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358295, - "label": "REGULATES", - "from": 3722087, - "to": 3687947, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325527, - "label": "REGULATES", - "from": 3717815, - "to": 3726207, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292765, - "label": "REGULATES", - "from": 3713635, - "to": 3689172, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292766, - "label": "REGULATES", - "from": 3674743, - "to": 3713635, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358302, - "label": "BINDS", - "from": 3722089, - "to": 3686383, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325528, - "label": "REGULATES", - "from": 3712313, - "to": 3717815, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486590, - "label": "ELEMENT_OF", - "from": 3698905, - "to": 91444788, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358296, - "label": "REGULATES", - "from": 3668188, - "to": 3722087, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486528, - "label": "ELEMENT_OF", - "from": 91442613, - "to": 91444777, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358310, - "label": "BINDS", - "from": 3722091, - "to": 3678643, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292768, - "label": "REGULATES", - "from": 3713636, - "to": 3688950, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292769, - "label": "REGULATES", - "from": 3681638, - "to": 3713636, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358304, - "label": "REGULATES", - "from": 3711243, - "to": 3722089, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486532, - "label": "ELEMENT_OF", - "from": 91442605, - "to": 91444778, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325549, - "label": "REGULATES", - "from": 3710576, - "to": 3717821, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358312, - "label": "REGULATES", - "from": 3712313, - "to": 3722091, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358315, - "label": "REGULATES", - "from": 3684013, - "to": 3722092, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358314, - "label": "REGULATES", - "from": 3722092, - "to": 3685821, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325547, - "label": "BINDS", - "from": 3717821, - "to": 3686225, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486545, - "label": "ELEMENT_OF", - "from": 91442524, - "to": 91444779, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292784, - "label": "REGULATES", - "from": 3682118, - "to": 3713641, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292796, - "label": "REGULATES", - "from": 3677696, - "to": 3713645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486554, - "label": "ELEMENT_OF", - "from": 3701343, - "to": 91444781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 292799, - "label": "REGULATES", - "from": 3677332, - "to": 3713646, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486557, - "label": "ELEMENT_OF", - "from": 3719951, - "to": 91444782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486625, - "label": "ELEMENT_OF", - "from": 3687513, - "to": 91444796, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325581, - "label": "REGULATES", - "from": 3717830, - "to": 3728964, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325582, - "label": "REGULATES", - "from": 3712313, - "to": 3717830, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325578, - "label": "REGULATES", - "from": 3677401, - "to": 3717829, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486637, - "label": "ELEMENT_OF", - "from": 91442587, - "to": 91444797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227280, - "label": "PRODUCES", - "from": 3706340, - "to": 3682031, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227284, - "label": "CONSUMED_BY", - "from": 3679389, - "to": 3706341, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325596, - "label": "REGULATES", - "from": 3710228, - "to": 3717834, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486599, - "label": "ELEMENT_OF", - "from": 3701395, - "to": 91444790, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227302, - "label": "CONSUMED_BY", - "from": 3720229, - "to": 3706345, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227307, - "label": "PRODUCES", - "from": 3706346, - "to": 3679148, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227305, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3706346, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325608, - "label": "BINDS", - "from": 3717838, - "to": 3686231, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227310, - "label": "CONSUMED_BY", - "from": 3714553, - "to": 3706347, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325610, - "label": "REGULATES", - "from": 3710270, - "to": 3717838, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325621, - "label": "REGULATES", - "from": 3684186, - "to": 3717841, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227323, - "label": "CONSUMED_BY", - "from": 3676180, - "to": 3706350, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227320, - "label": "CONSUMED_BY", - "from": 3679447, - "to": 3706349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486622, - "label": "ELEMENT_OF", - "from": 91442578, - "to": 91444795, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227326, - "label": "CONSUMED_BY", - "from": 3706204, - "to": 3706351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227324, - "label": "PRODUCES", - "from": 3706350, - "to": 3676929, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325636, - "label": "REGULATES", - "from": 3712313, - "to": 3717845, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483875, - "label": "REGULATES", - "from": 91443572, - "to": 3701400, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227330, - "label": "CONSUMED_BY", - "from": 3677818, - "to": 3706352, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483874, - "label": "REGULATES", - "from": 3710208, - "to": 91443571, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483873, - "label": "REGULATES", - "from": 91443571, - "to": 91442577, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483872, - "label": "REGULATES", - "from": 3712313, - "to": 91443570, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483879, - "label": "REGULATES", - "from": 91443574, - "to": 91442494, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483878, - "label": "REGULATES", - "from": 3708153, - "to": 91443573, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227334, - "label": "CONSUMED_BY", - "from": 3708153, - "to": 3706353, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483877, - "label": "REGULATES", - "from": 91443573, - "to": 3719990, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325634, - "label": "BINDS", - "from": 3717845, - "to": 3683156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227332, - "label": "PRODUCES", - "from": 3706352, - "to": 3677833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483876, - "label": "REGULATES", - "from": 3712313, - "to": 91443572, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325635, - "label": "REGULATES", - "from": 3717845, - "to": 3727196, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227339, - "label": "PRODUCES", - "from": 3706354, - "to": 3675920, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483883, - "label": "REGULATES", - "from": 91443576, - "to": 3701348, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227338, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3706354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483882, - "label": "REGULATES", - "from": 3718538, - "to": 91443575, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483880, - "label": "REGULATES", - "from": 3711285, - "to": 91443574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325647, - "label": "REGULATES", - "from": 3710167, - "to": 3717848, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483887, - "label": "REGULATES", - "from": 91443578, - "to": 3698852, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483886, - "label": "REGULATES", - "from": 3708153, - "to": 91443577, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483885, - "label": "REGULATES", - "from": 91443577, - "to": 3693858, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483884, - "label": "REGULATES", - "from": 3708153, - "to": 91443576, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325652, - "label": "BINDS", - "from": 3717850, - "to": 3687435, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483890, - "label": "REGULATES", - "from": 3712313, - "to": 91443579, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325654, - "label": "REGULATES", - "from": 3714081, - "to": 3717850, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483889, - "label": "REGULATES", - "from": 91443579, - "to": 3690682, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227344, - "label": "CONSUMED_BY", - "from": 3677805, - "to": 3706355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483888, - "label": "REGULATES", - "from": 3710270, - "to": 91443578, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483894, - "label": "REGULATES", - "from": 3705945, - "to": 91443581, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483893, - "label": "REGULATES", - "from": 91443581, - "to": 91442603, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227348, - "label": "CONSUMED_BY", - "from": 3684186, - "to": 3706356, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325660, - "label": "BINDS", - "from": 3717852, - "to": 3686241, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483899, - "label": "REGULATES", - "from": 91443584, - "to": 3706935, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325661, - "label": "REGULATES", - "from": 3717852, - "to": 3699457, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483898, - "label": "REGULATES", - "from": 3712313, - "to": 91443583, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325662, - "label": "REGULATES", - "from": 3711285, - "to": 3717852, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483897, - "label": "REGULATES", - "from": 91443583, - "to": 3701504, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227352, - "label": "PRODUCES", - "from": 3706357, - "to": 3677510, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483903, - "label": "REGULATES", - "from": 3679440, - "to": 91443586, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483902, - "label": "REGULATES", - "from": 3708153, - "to": 91443585, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483901, - "label": "REGULATES", - "from": 91443585, - "to": 3707150, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483900, - "label": "REGULATES", - "from": 3712313, - "to": 91443584, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227356, - "label": "CONSUMED_BY", - "from": 3677368, - "to": 3706358, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227362, - "label": "CONSUMED_BY", - "from": 3681789, - "to": 3706360, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483842, - "label": "REGULATES", - "from": 3708153, - "to": 91443555, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483840, - "label": "REGULATES", - "from": 3712313, - "to": 91443554, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483847, - "label": "REGULATES", - "from": 91443558, - "to": 3720040, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227365, - "label": "PRODUCES", - "from": 3706360, - "to": 3681309, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483844, - "label": "REGULATES", - "from": 3712313, - "to": 91443556, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227370, - "label": "CONSUMED_BY", - "from": 3684327, - "to": 3706361, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483850, - "label": "REGULATES", - "from": 3712313, - "to": 91443559, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325678, - "label": "BINDS", - "from": 3717857, - "to": 3682798, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483849, - "label": "REGULATES", - "from": 91443559, - "to": 3701403, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483848, - "label": "REGULATES", - "from": 3708153, - "to": 91443558, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325672, - "label": "REGULATES", - "from": 3684069, - "to": 3717855, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483854, - "label": "REGULATES", - "from": 3708153, - "to": 91443561, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227372, - "label": "CONSUMED_BY", - "from": 3682153, - "to": 3706362, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483859, - "label": "REGULATES", - "from": 91443564, - "to": 3707183, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483858, - "label": "REGULATES", - "from": 3708153, - "to": 91443563, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227378, - "label": "CONSUMED_BY", - "from": 3677192, - "to": 3706363, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483857, - "label": "REGULATES", - "from": 91443563, - "to": 3702440, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483860, - "label": "REGULATES", - "from": 3712586, - "to": 91443564, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227387, - "label": "CONSUMED_BY", - "from": 3677501, - "to": 3706365, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483866, - "label": "REGULATES", - "from": 3712313, - "to": 91443567, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483865, - "label": "REGULATES", - "from": 91443567, - "to": 3716924, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483871, - "label": "REGULATES", - "from": 91443570, - "to": 3706971, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227390, - "label": "CONSUMED_BY", - "from": 3681640, - "to": 3706366, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483937, - "label": "REGULATES", - "from": 3708153, - "to": 91443603, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483936, - "label": "REGULATES", - "from": 91443603, - "to": 3711889, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483943, - "label": "REGULATES", - "from": 3708153, - "to": 91443606, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483942, - "label": "REGULATES", - "from": 91443606, - "to": 3694149, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483941, - "label": "REGULATES", - "from": 3710228, - "to": 91443605, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227396, - "label": "CONSUMED_BY", - "from": 3702395, - "to": 3706367, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483947, - "label": "REGULATES", - "from": 3710270, - "to": 91443608, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483945, - "label": "REGULATES", - "from": 3708153, - "to": 91443607, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483944, - "label": "REGULATES", - "from": 91443607, - "to": 3711806, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227407, - "label": "CONSUMED_BY", - "from": 3685555, - "to": 3706370, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483950, - "label": "REGULATES", - "from": 3679440, - "to": 91443610, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227404, - "label": "CONSUMED_BY", - "from": 3718577, - "to": 3706369, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483948, - "label": "REGULATES", - "from": 3679440, - "to": 91443609, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227410, - "label": "PRODUCES", - "from": 3706370, - "to": 3673214, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483954, - "label": "REGULATES", - "from": 3712313, - "to": 91443612, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483953, - "label": "REGULATES", - "from": 91443612, - "to": 3690558, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227413, - "label": "CONSUMED_BY", - "from": 3677447, - "to": 3706371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227419, - "label": "CONSUMED_BY", - "from": 3681669, - "to": 3706373, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483963, - "label": "REGULATES", - "from": 91443617, - "to": 3687618, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483962, - "label": "REGULATES", - "from": 3712313, - "to": 91443616, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227417, - "label": "CONSUMED_BY", - "from": 3681384, - "to": 3706372, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483961, - "label": "REGULATES", - "from": 91443616, - "to": 3716740, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483966, - "label": "REGULATES", - "from": 3712313, - "to": 91443618, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483965, - "label": "REGULATES", - "from": 91443618, - "to": 3690638, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227420, - "label": "PRODUCES", - "from": 3706373, - "to": 3679357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483964, - "label": "REGULATES", - "from": 3708153, - "to": 91443617, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227426, - "label": "CONSUMED_BY", - "from": 3684390, - "to": 3706375, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483911, - "label": "REGULATES", - "from": 3679440, - "to": 91443590, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483909, - "label": "REGULATES", - "from": 3712586, - "to": 91443589, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227428, - "label": "PRODUCES", - "from": 3706375, - "to": 3668947, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227435, - "label": "CONSUMED_BY", - "from": 3670727, - "to": 3706377, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483915, - "label": "REGULATES", - "from": 3708153, - "to": 91443592, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483914, - "label": "REGULATES", - "from": 91443592, - "to": 3701856, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483913, - "label": "REGULATES", - "from": 3708153, - "to": 91443591, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227439, - "label": "CONSUMED_BY", - "from": 3669028, - "to": 3706378, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483918, - "label": "REGULATES", - "from": 3710270, - "to": 91443593, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227437, - "label": "PRODUCES", - "from": 3706377, - "to": 3669869, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227436, - "label": "PRODUCES", - "from": 3706377, - "to": 3681549, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227443, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3706379, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483920, - "label": "REGULATES", - "from": 3712313, - "to": 91443594, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483927, - "label": "REGULATES", - "from": 3714908, - "to": 91443598, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227446, - "label": "PRODUCES", - "from": 3706379, - "to": 3677774, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483926, - "label": "REGULATES", - "from": 91443598, - "to": 91442529, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483925, - "label": "REGULATES", - "from": 3679440, - "to": 91443597, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483931, - "label": "REGULATES", - "from": 3679440, - "to": 91443600, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227451, - "label": "CONSUMED_BY", - "from": 3714377, - "to": 3706380, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483929, - "label": "REGULATES", - "from": 3679440, - "to": 91443599, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483935, - "label": "REGULATES", - "from": 3712313, - "to": 91443602, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483934, - "label": "REGULATES", - "from": 91443602, - "to": 3693848, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483933, - "label": "REGULATES", - "from": 3712313, - "to": 91443601, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483932, - "label": "REGULATES", - "from": 91443601, - "to": 3702874, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483747, - "label": "REGULATES", - "from": 3708153, - "to": 91443508, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483746, - "label": "REGULATES", - "from": 91443508, - "to": 3707332, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483745, - "label": "REGULATES", - "from": 3708153, - "to": 91443507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483751, - "label": "REGULATES", - "from": 3712313, - "to": 91443510, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483750, - "label": "REGULATES", - "from": 91443510, - "to": 3698701, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227461, - "label": "CONSUMED_BY", - "from": 3679336, - "to": 3706382, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483749, - "label": "REGULATES", - "from": 3712313, - "to": 91443509, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483748, - "label": "REGULATES", - "from": 91443509, - "to": 3698722, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483755, - "label": "REGULATES", - "from": 3710228, - "to": 91443512, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227465, - "label": "PRODUCES", - "from": 3706383, - "to": 3714225, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483753, - "label": "REGULATES", - "from": 3712313, - "to": 91443511, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227464, - "label": "CONSUMED_BY", - "from": 3710308, - "to": 3706383, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483752, - "label": "REGULATES", - "from": 91443511, - "to": 3707258, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227469, - "label": "CONSUMED_BY", - "from": 3677401, - "to": 3706384, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483757, - "label": "REGULATES", - "from": 3708153, - "to": 91443513, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483756, - "label": "REGULATES", - "from": 91443513, - "to": 3716672, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483761, - "label": "REGULATES", - "from": 3710462, - "to": 91443515, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483760, - "label": "REGULATES", - "from": 91443515, - "to": 3695935, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483765, - "label": "REGULATES", - "from": 3712313, - "to": 91443517, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483764, - "label": "REGULATES", - "from": 91443517, - "to": 3707264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483771, - "label": "REGULATES", - "from": 3708153, - "to": 91443520, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227482, - "label": "PRODUCES", - "from": 3706387, - "to": 3669965, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483770, - "label": "REGULATES", - "from": 91443520, - "to": 3690644, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227481, - "label": "CONSUMED_BY", - "from": 3677464, - "to": 3706387, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483769, - "label": "REGULATES", - "from": 3707928, - "to": 91443519, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483775, - "label": "REGULATES", - "from": 3712313, - "to": 91443522, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483774, - "label": "REGULATES", - "from": 91443522, - "to": 3717158, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483773, - "label": "REGULATES", - "from": 3708153, - "to": 91443521, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483772, - "label": "REGULATES", - "from": 91443521, - "to": 3693721, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483713, - "label": "REGULATES", - "from": 3710270, - "to": 91443491, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483712, - "label": "REGULATES", - "from": 91443491, - "to": 91442541, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227495, - "label": "CONSUMED_BY", - "from": 3672880, - "to": 3706391, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483719, - "label": "REGULATES", - "from": 3710270, - "to": 91443494, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483717, - "label": "REGULATES", - "from": 3712313, - "to": 91443493, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483716, - "label": "REGULATES", - "from": 91443493, - "to": 3702776, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483723, - "label": "REGULATES", - "from": 3708153, - "to": 91443496, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483722, - "label": "REGULATES", - "from": 91443496, - "to": 3694041, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227497, - "label": "PRODUCES", - "from": 3706391, - "to": 3668946, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358569, - "label": "BINDS", - "from": 3722096, - "to": 3685430, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483727, - "label": "REGULATES", - "from": 3712313, - "to": 91443498, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227502, - "label": "CONSUMED_BY", - "from": 3681547, - "to": 3706392, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483726, - "label": "REGULATES", - "from": 91443498, - "to": 3707296, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483725, - "label": "REGULATES", - "from": 3708153, - "to": 91443497, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358571, - "label": "REGULATES", - "from": 3708153, - "to": 3722096, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483724, - "label": "REGULATES", - "from": 91443497, - "to": 3702881, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483731, - "label": "REGULATES", - "from": 3712313, - "to": 91443500, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483730, - "label": "REGULATES", - "from": 91443500, - "to": 3712087, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483729, - "label": "REGULATES", - "from": 3712313, - "to": 91443499, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227504, - "label": "CONSUMED_BY", - "from": 3684064, - "to": 3706393, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483728, - "label": "REGULATES", - "from": 91443499, - "to": 3707238, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483735, - "label": "REGULATES", - "from": 3708153, - "to": 91443502, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483734, - "label": "REGULATES", - "from": 91443502, - "to": 3694198, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483733, - "label": "REGULATES", - "from": 3715027, - "to": 91443501, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483732, - "label": "REGULATES", - "from": 91443501, - "to": 91442582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 227518, - "label": "CONSUMED_BY", - "from": 3684116, - "to": 3706395, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483741, - "label": "REGULATES", - "from": 3712313, - "to": 91443505, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483740, - "label": "REGULATES", - "from": 91443505, - "to": 3707230, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483810, - "label": "REGULATES", - "from": 3708153, - "to": 91443539, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483809, - "label": "REGULATES", - "from": 91443539, - "to": 3690565, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483814, - "label": "REGULATES", - "from": 3712313, - "to": 91443541, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483813, - "label": "REGULATES", - "from": 91443541, - "to": 3698834, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358605, - "label": "REGULATES", - "from": 3710270, - "to": 3722105, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483819, - "label": "REGULATES", - "from": 91443544, - "to": 3698717, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483818, - "label": "REGULATES", - "from": 3708153, - "to": 91443543, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483817, - "label": "REGULATES", - "from": 91443543, - "to": 3702573, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483823, - "label": "REGULATES", - "from": 91443546, - "to": 3701796, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358601, - "label": "REGULATES", - "from": 3712313, - "to": 3722104, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358600, - "label": "REGULATES", - "from": 3722104, - "to": 3727274, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358603, - "label": "BINDS", - "from": 3722105, - "to": 3679501, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483820, - "label": "REGULATES", - "from": 3712313, - "to": 91443544, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358612, - "label": "REGULATES", - "from": 3668943, - "to": 3722107, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483826, - "label": "REGULATES", - "from": 3712313, - "to": 91443547, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483825, - "label": "REGULATES", - "from": 91443547, - "to": 3690473, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483824, - "label": "REGULATES", - "from": 3708153, - "to": 91443546, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358614, - "label": "BINDS", - "from": 3722108, - "to": 3679656, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483830, - "label": "REGULATES", - "from": 3708153, - "to": 91443549, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358620, - "label": "REGULATES", - "from": 3712357, - "to": 3722109, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483834, - "label": "REGULATES", - "from": 3708153, - "to": 91443551, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483833, - "label": "REGULATES", - "from": 91443551, - "to": 3716813, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358616, - "label": "REGULATES", - "from": 3708326, - "to": 3722108, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483779, - "label": "REGULATES", - "from": 3707928, - "to": 91443524, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358631, - "label": "REGULATES", - "from": 3677222, - "to": 3722112, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483777, - "label": "REGULATES", - "from": 3712313, - "to": 91443523, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483776, - "label": "REGULATES", - "from": 91443523, - "to": 3717023, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483781, - "label": "REGULATES", - "from": 3708153, - "to": 91443525, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483780, - "label": "REGULATES", - "from": 91443525, - "to": 3690525, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483785, - "label": "REGULATES", - "from": 3708153, - "to": 91443527, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483789, - "label": "REGULATES", - "from": 3712313, - "to": 91443529, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483788, - "label": "REGULATES", - "from": 91443529, - "to": 3698915, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483795, - "label": "REGULATES", - "from": 3708153, - "to": 91443532, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483794, - "label": "REGULATES", - "from": 91443532, - "to": 3711745, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358647, - "label": "REGULATES", - "from": 3712313, - "to": 3722116, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358646, - "label": "REGULATES", - "from": 3722116, - "to": 3727451, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358641, - "label": "BINDS", - "from": 3722115, - "to": 3682998, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483799, - "label": "REGULATES", - "from": 3708153, - "to": 91443534, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483798, - "label": "REGULATES", - "from": 91443534, - "to": 3687672, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358643, - "label": "REGULATES", - "from": 3712308, - "to": 3722115, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483797, - "label": "REGULATES", - "from": 3712313, - "to": 91443533, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358642, - "label": "REGULATES", - "from": 3722115, - "to": 3699818, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483796, - "label": "REGULATES", - "from": 91443533, - "to": 3699117, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358653, - "label": "REGULATES", - "from": 3722118, - "to": 3699418, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358652, - "label": "BINDS", - "from": 3722118, - "to": 3687240, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483801, - "label": "REGULATES", - "from": 3712313, - "to": 91443535, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483800, - "label": "REGULATES", - "from": 91443535, - "to": 3690735, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358654, - "label": "REGULATES", - "from": 3712586, - "to": 3722118, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358649, - "label": "REGULATES", - "from": 3722117, - "to": 3688084, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483806, - "label": "REGULATES", - "from": 3708153, - "to": 91443537, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483805, - "label": "REGULATES", - "from": 91443537, - "to": 3687677, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358650, - "label": "REGULATES", - "from": 3684076, - "to": 3722117, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484130, - "label": "REGULATES", - "from": 3712313, - "to": 91443701, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484129, - "label": "REGULATES", - "from": 91443701, - "to": 3702835, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484128, - "label": "REGULATES", - "from": 3708153, - "to": 91443700, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358657, - "label": "REGULATES", - "from": 3722119, - "to": 3699421, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484134, - "label": "REGULATES", - "from": 3712313, - "to": 91443703, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358656, - "label": "BINDS", - "from": 3722119, - "to": 3687162, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484133, - "label": "REGULATES", - "from": 91443703, - "to": 3687590, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484132, - "label": "REGULATES", - "from": 3710270, - "to": 91443702, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358658, - "label": "REGULATES", - "from": 3712295, - "to": 3722119, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484138, - "label": "REGULATES", - "from": 3712313, - "to": 91443705, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484137, - "label": "REGULATES", - "from": 91443705, - "to": 3698742, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358671, - "label": "BINDS", - "from": 3722123, - "to": 3686370, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484136, - "label": "REGULATES", - "from": 3710270, - "to": 91443704, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484143, - "label": "REGULATES", - "from": 91443708, - "to": 3702622, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358677, - "label": "REGULATES", - "from": 3710187, - "to": 3722124, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358676, - "label": "REGULATES", - "from": 3722124, - "to": 3695178, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484144, - "label": "REGULATES", - "from": 3712313, - "to": 91443708, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358673, - "label": "REGULATES", - "from": 3710208, - "to": 3722123, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484150, - "label": "REGULATES", - "from": 3708153, - "to": 91443711, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484149, - "label": "REGULATES", - "from": 91443711, - "to": 3712107, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358675, - "label": "BINDS", - "from": 3722124, - "to": 3675665, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358685, - "label": "REGULATES", - "from": 3711285, - "to": 3722126, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484154, - "label": "REGULATES", - "from": 3708153, - "to": 91443713, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484153, - "label": "REGULATES", - "from": 91443713, - "to": 3712127, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484152, - "label": "REGULATES", - "from": 3712313, - "to": 91443712, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 391454, - "label": "ELEMENT_OF", - "from": 3698891, - "to": 3726764, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484159, - "label": "REGULATES", - "from": 91443716, - "to": 3701506, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484158, - "label": "REGULATES", - "from": 3712313, - "to": 91443715, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358683, - "label": "BINDS", - "from": 3722126, - "to": 3685057, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484157, - "label": "REGULATES", - "from": 91443715, - "to": 3694206, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484156, - "label": "REGULATES", - "from": 3710270, - "to": 91443714, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484097, - "label": "REGULATES", - "from": 3708153, - "to": 91443685, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358695, - "label": "REGULATES", - "from": 3722129, - "to": 3726901, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 391463, - "label": "ELEMENT_OF", - "from": 3694583, - "to": 3726766, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484096, - "label": "REGULATES", - "from": 91443685, - "to": 3720022, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484103, - "label": "REGULATES", - "from": 3711179, - "to": 91443688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484102, - "label": "REGULATES", - "from": 91443688, - "to": 3706970, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484101, - "label": "REGULATES", - "from": 3708153, - "to": 91443687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484100, - "label": "REGULATES", - "from": 91443687, - "to": 3720034, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484107, - "label": "REGULATES", - "from": 3710270, - "to": 91443690, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484105, - "label": "REGULATES", - "from": 3712313, - "to": 91443689, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484104, - "label": "REGULATES", - "from": 91443689, - "to": 3717021, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484111, - "label": "REGULATES", - "from": 3712586, - "to": 91443692, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358696, - "label": "REGULATES", - "from": 3712313, - "to": 3722129, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484109, - "label": "REGULATES", - "from": 3705945, - "to": 91443691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358709, - "label": "BINDS", - "from": 3722133, - "to": 3679582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 391476, - "label": "ELEMENT_OF", - "from": 3701453, - "to": 3726771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484113, - "label": "REGULATES", - "from": 3712313, - "to": 91443693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358711, - "label": "REGULATES", - "from": 3710228, - "to": 3722133, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484112, - "label": "REGULATES", - "from": 91443693, - "to": 3690602, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484119, - "label": "REGULATES", - "from": 91443696, - "to": 3706854, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260406, - "label": "PRODUCES", - "from": 3709327, - "to": 3681210, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484117, - "label": "REGULATES", - "from": 3708153, - "to": 91443695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 391485, - "label": "ELEMENT_OF", - "from": 3701391, - "to": 3726774, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484122, - "label": "REGULATES", - "from": 3708153, - "to": 91443697, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484121, - "label": "REGULATES", - "from": 91443697, - "to": 3719956, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484120, - "label": "REGULATES", - "from": 3712313, - "to": 91443696, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484127, - "label": "REGULATES", - "from": 91443700, - "to": 3712165, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260414, - "label": "PRODUCES", - "from": 3709329, - "to": 3677460, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484126, - "label": "REGULATES", - "from": 3710270, - "to": 91443699, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260413, - "label": "CONSUMED_BY", - "from": 3677474, - "to": 3709329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484125, - "label": "REGULATES", - "from": 91443699, - "to": 3726819, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484195, - "label": "REGULATES", - "from": 91443734, - "to": 3693795, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260416, - "label": "CONSUMED_BY", - "from": 3684372, - "to": 3709330, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484192, - "label": "REGULATES", - "from": 3710270, - "to": 91443732, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260423, - "label": "PRODUCES", - "from": 3709331, - "to": 3684043, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484198, - "label": "REGULATES", - "from": 3712313, - "to": 91443735, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484197, - "label": "REGULATES", - "from": 91443735, - "to": 3719992, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484196, - "label": "REGULATES", - "from": 3708153, - "to": 91443734, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260427, - "label": "PRODUCES", - "from": 3709332, - "to": 3672867, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484203, - "label": "REGULATES", - "from": 91443738, - "to": 3717142, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484202, - "label": "REGULATES", - "from": 3714081, - "to": 91443737, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260425, - "label": "CONSUMED_BY", - "from": 3672426, - "to": 3709332, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484201, - "label": "REGULATES", - "from": 91443737, - "to": 91442613, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358729, - "label": "REGULATES", - "from": 3722138, - "to": 3699351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484206, - "label": "REGULATES", - "from": 3708153, - "to": 91443739, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358728, - "label": "BINDS", - "from": 3722138, - "to": 3685091, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260429, - "label": "CONSUMED_BY", - "from": 3682122, - "to": 3709333, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484205, - "label": "REGULATES", - "from": 91443739, - "to": 3717151, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484204, - "label": "REGULATES", - "from": 3708153, - "to": 91443738, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358730, - "label": "REGULATES", - "from": 3712313, - "to": 3722138, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260435, - "label": "CONSUMED_BY", - "from": 3677394, - "to": 3709334, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358741, - "label": "REGULATES", - "from": 3722141, - "to": 3729464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484210, - "label": "REGULATES", - "from": 3712313, - "to": 91443741, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358740, - "label": "BINDS", - "from": 3722141, - "to": 3687484, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484209, - "label": "REGULATES", - "from": 91443741, - "to": 3716777, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260432, - "label": "PRODUCES", - "from": 3709333, - "to": 3681190, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484208, - "label": "REGULATES", - "from": 3711179, - "to": 91443740, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358742, - "label": "REGULATES", - "from": 3712313, - "to": 3722141, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 391510, - "label": "ELEMENT_OF", - "from": 3693788, - "to": 3726785, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484214, - "label": "REGULATES", - "from": 3712313, - "to": 91443743, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260437, - "label": "PRODUCES", - "from": 3709334, - "to": 3677350, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484213, - "label": "REGULATES", - "from": 91443743, - "to": 3712091, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484218, - "label": "REGULATES", - "from": 3710270, - "to": 91443745, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 391519, - "label": "ELEMENT_OF", - "from": 3698056, - "to": 3726789, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484217, - "label": "REGULATES", - "from": 91443745, - "to": 3698938, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 391513, - "label": "ELEMENT_OF", - "from": 3693804, - "to": 3726786, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260446, - "label": "PRODUCES", - "from": 3709336, - "to": 3677225, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484222, - "label": "REGULATES", - "from": 3708153, - "to": 91443747, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484221, - "label": "REGULATES", - "from": 91443747, - "to": 3712022, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260444, - "label": "CONSUMED_BY", - "from": 3679101, - "to": 3709336, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260448, - "label": "CONSUMED_BY", - "from": 3684043, - "to": 3709337, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484160, - "label": "REGULATES", - "from": 3712313, - "to": 91443716, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 391521, - "label": "ELEMENT_OF", - "from": 3694722, - "to": 3726790, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484167, - "label": "REGULATES", - "from": 91443720, - "to": 91442605, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484166, - "label": "REGULATES", - "from": 3710270, - "to": 91443719, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260458, - "label": "PRODUCES", - "from": 3709339, - "to": 3681269, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 391532, - "label": "ELEMENT_OF", - "from": 3711835, - "to": 3726793, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484170, - "label": "REGULATES", - "from": 3710462, - "to": 91443721, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260457, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3709339, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484169, - "label": "REGULATES", - "from": 91443721, - "to": 3726955, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484168, - "label": "REGULATES", - "from": 3712602, - "to": 91443720, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484174, - "label": "REGULATES", - "from": 3712313, - "to": 91443723, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484173, - "label": "REGULATES", - "from": 91443723, - "to": 3719995, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484179, - "label": "REGULATES", - "from": 91443726, - "to": 3719915, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 391543, - "label": "ELEMENT_OF", - "from": 3695137, - "to": 3726796, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484183, - "label": "REGULATES", - "from": 91443728, - "to": 3719988, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484182, - "label": "REGULATES", - "from": 3708153, - "to": 91443727, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260470, - "label": "CONSUMED_BY", - "from": 3677343, - "to": 3709342, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 391536, - "label": "ELEMENT_OF", - "from": 3697321, - "to": 3726795, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484181, - "label": "REGULATES", - "from": 91443727, - "to": 3698733, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484180, - "label": "REGULATES", - "from": 3708153, - "to": 91443726, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484187, - "label": "REGULATES", - "from": 91443730, - "to": 3699052, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484186, - "label": "REGULATES", - "from": 3712313, - "to": 91443729, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484185, - "label": "REGULATES", - "from": 91443729, - "to": 3701574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484184, - "label": "REGULATES", - "from": 3711179, - "to": 91443728, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484190, - "label": "REGULATES", - "from": 3711445, - "to": 91443731, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484188, - "label": "REGULATES", - "from": 3712313, - "to": 91443730, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358789, - "label": "REGULATES", - "from": 3722154, - "to": 3729071, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358788, - "label": "BINDS", - "from": 3722154, - "to": 3687493, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260481, - "label": "CONSUMED_BY", - "from": 3681220, - "to": 3709344, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484000, - "label": "REGULATES", - "from": 3712313, - "to": 91443635, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358790, - "label": "REGULATES", - "from": 3712313, - "to": 3722154, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484007, - "label": "REGULATES", - "from": 91443639, - "to": 3706821, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484006, - "label": "REGULATES", - "from": 3708153, - "to": 91443638, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484005, - "label": "REGULATES", - "from": 91443638, - "to": 3716868, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260484, - "label": "PRODUCES", - "from": 3709344, - "to": 3683889, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484011, - "label": "REGULATES", - "from": 3679440, - "to": 91443641, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358797, - "label": "REGULATES", - "from": 3722156, - "to": 3700158, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484010, - "label": "REGULATES", - "from": 3710270, - "to": 91443640, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358796, - "label": "BINDS", - "from": 3722156, - "to": 3685128, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484009, - "label": "REGULATES", - "from": 91443640, - "to": 3690646, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484008, - "label": "REGULATES", - "from": 3708153, - "to": 91443639, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 358798, - "label": "REGULATES", - "from": 3712401, - "to": 3722156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484015, - "label": "REGULATES", - "from": 3679440, - "to": 91443643, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260495, - "label": "CONSUMED_BY", - "from": 3682200, - "to": 3709346, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484014, - "label": "REGULATES", - "from": 91443643, - "to": 91442569, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484013, - "label": "REGULATES", - "from": 3679440, - "to": 91443642, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484019, - "label": "REGULATES", - "from": 3710270, - "to": 91443645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484018, - "label": "REGULATES", - "from": 91443645, - "to": 3698990, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484017, - "label": "REGULATES", - "from": 3712313, - "to": 91443644, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484016, - "label": "REGULATES", - "from": 91443644, - "to": 3707248, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260501, - "label": "PRODUCES", - "from": 3709347, - "to": 3682138, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484021, - "label": "REGULATES", - "from": 3710228, - "to": 91443646, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 391581, - "label": "ELEMENT_OF", - "from": 3694573, - "to": 3726805, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260506, - "label": "PRODUCES", - "from": 3709348, - "to": 3681545, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260505, - "label": "PRODUCES", - "from": 3709348, - "to": 3677787, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484025, - "label": "REGULATES", - "from": 3712313, - "to": 91443648, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260504, - "label": "CONSUMED_BY", - "from": 3684329, - "to": 3709348, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484024, - "label": "REGULATES", - "from": 91443648, - "to": 3712100, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484029, - "label": "REGULATES", - "from": 3712313, - "to": 91443650, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484028, - "label": "REGULATES", - "from": 91443650, - "to": 3702791, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483970, - "label": "REGULATES", - "from": 3679440, - "to": 91443620, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483969, - "label": "REGULATES", - "from": 91443620, - "to": 91442534, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260512, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3709350, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 391585, - "label": "ELEMENT_OF", - "from": 3706834, - "to": 3726806, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483974, - "label": "REGULATES", - "from": 3679440, - "to": 91443622, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 391586, - "label": "ELEMENT_OF", - "from": 3702690, - "to": 3726807, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483979, - "label": "REGULATES", - "from": 91443625, - "to": 3698830, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483978, - "label": "REGULATES", - "from": 3708153, - "to": 91443624, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483977, - "label": "REGULATES", - "from": 91443624, - "to": 3698929, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483976, - "label": "REGULATES", - "from": 3707928, - "to": 91443623, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483983, - "label": "REGULATES", - "from": 91443627, - "to": 3701809, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483982, - "label": "REGULATES", - "from": 3710270, - "to": 91443626, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483981, - "label": "REGULATES", - "from": 91443626, - "to": 3706886, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483980, - "label": "REGULATES", - "from": 3708153, - "to": 91443625, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 391604, - "label": "ELEMENT_OF", - "from": 3698031, - "to": 3726811, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483986, - "label": "REGULATES", - "from": 3712586, - "to": 91443628, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483985, - "label": "REGULATES", - "from": 91443628, - "to": 3693944, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483984, - "label": "REGULATES", - "from": 3712313, - "to": 91443627, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483990, - "label": "REGULATES", - "from": 3679440, - "to": 91443630, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483988, - "label": "REGULATES", - "from": 3710143, - "to": 91443629, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260532, - "label": "CONSUMED_BY", - "from": 3652193, - "to": 3709354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483995, - "label": "REGULATES", - "from": 91443633, - "to": 3702575, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260538, - "label": "PRODUCES", - "from": 3709355, - "to": 3712295, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260536, - "label": "CONSUMED_BY", - "from": 3704243, - "to": 3709355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483999, - "label": "REGULATES", - "from": 91443635, - "to": 3706796, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483998, - "label": "REGULATES", - "from": 3712313, - "to": 91443634, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483997, - "label": "REGULATES", - "from": 91443634, - "to": 3706794, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483996, - "label": "REGULATES", - "from": 3708153, - "to": 91443633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260547, - "label": "PRODUCES", - "from": 3709357, - "to": 3681834, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484067, - "label": "REGULATES", - "from": 3710228, - "to": 91443670, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260545, - "label": "CONSUMED_BY", - "from": 3684009, - "to": 3709357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484071, - "label": "REGULATES", - "from": 3708153, - "to": 91443672, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484070, - "label": "REGULATES", - "from": 91443672, - "to": 3719965, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484069, - "label": "REGULATES", - "from": 3708153, - "to": 91443671, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484068, - "label": "REGULATES", - "from": 91443671, - "to": 3717130, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484075, - "label": "REGULATES", - "from": 3679440, - "to": 91443674, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260555, - "label": "PRODUCES", - "from": 3709359, - "to": 3672424, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484074, - "label": "REGULATES", - "from": 91443674, - "to": 91442540, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484073, - "label": "REGULATES", - "from": 3711179, - "to": 91443673, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484072, - "label": "REGULATES", - "from": 91443673, - "to": 3701508, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 391630, - "label": "ELEMENT_OF", - "from": 3699585, - "to": 3726817, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484079, - "label": "REGULATES", - "from": 3679440, - "to": 91443676, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484078, - "label": "REGULATES", - "from": 91443676, - "to": 91442572, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260557, - "label": "CONSUMED_BY", - "from": 3683981, - "to": 3709360, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484077, - "label": "REGULATES", - "from": 3679440, - "to": 91443675, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484076, - "label": "REGULATES", - "from": 91443675, - "to": 91442559, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484083, - "label": "REGULATES", - "from": 3710270, - "to": 91443678, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260561, - "label": "PRODUCES", - "from": 3709360, - "to": 3681243, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484081, - "label": "REGULATES", - "from": 3712313, - "to": 91443677, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484080, - "label": "REGULATES", - "from": 91443677, - "to": 3716709, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260564, - "label": "CONSUMED_BY", - "from": 3677445, - "to": 3709361, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484091, - "label": "REGULATES", - "from": 3711265, - "to": 91443682, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484089, - "label": "REGULATES", - "from": 3712313, - "to": 91443681, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 391647, - "label": "ELEMENT_OF", - "from": 3702580, - "to": 3726821, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484088, - "label": "REGULATES", - "from": 91443681, - "to": 3707108, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260575, - "label": "PRODUCES", - "from": 3709362, - "to": 3684011, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484095, - "label": "REGULATES", - "from": 3712313, - "to": 91443684, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260574, - "label": "PRODUCES", - "from": 3709362, - "to": 3684351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484094, - "label": "REGULATES", - "from": 91443684, - "to": 3719951, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260572, - "label": "CONSUMED_BY", - "from": 3685551, - "to": 3709362, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260579, - "label": "PRODUCES", - "from": 3709363, - "to": 3676136, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260578, - "label": "CONSUMED_BY", - "from": 3668894, - "to": 3709363, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484034, - "label": "REGULATES", - "from": 3679440, - "to": 91443653, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484033, - "label": "REGULATES", - "from": 91443653, - "to": 91442543, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484032, - "label": "REGULATES", - "from": 3679440, - "to": 91443652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484039, - "label": "REGULATES", - "from": 91443656, - "to": 3702755, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484038, - "label": "REGULATES", - "from": 3710194, - "to": 91443655, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260580, - "label": "PRODUCES", - "from": 3709363, - "to": 3672873, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484036, - "label": "REGULATES", - "from": 3711269, - "to": 91443654, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260586, - "label": "PRODUCES", - "from": 3709365, - "to": 3677567, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484042, - "label": "REGULATES", - "from": 3708153, - "to": 91443657, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260585, - "label": "CONSUMED_BY", - "from": 3671495, - "to": 3709365, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484040, - "label": "REGULATES", - "from": 3708153, - "to": 91443656, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 391657, - "label": "ELEMENT_OF", - "from": 3706970, - "to": 3726824, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260591, - "label": "CONSUMED_BY", - "from": 3681278, - "to": 3709367, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260590, - "label": "PRODUCES", - "from": 3709366, - "to": 3672741, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484046, - "label": "REGULATES", - "from": 3712313, - "to": 91443659, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260589, - "label": "CONSUMED_BY", - "from": 3670604, - "to": 3709366, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484045, - "label": "REGULATES", - "from": 91443659, - "to": 3716968, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484044, - "label": "REGULATES", - "from": 3710270, - "to": 91443658, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484051, - "label": "REGULATES", - "from": 3679440, - "to": 91443662, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260593, - "label": "PRODUCES", - "from": 3709367, - "to": 3685591, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 391670, - "label": "ELEMENT_OF", - "from": 3696283, - "to": 3726831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484048, - "label": "REGULATES", - "from": 3710270, - "to": 91443660, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484053, - "label": "REGULATES", - "from": 3711269, - "to": 91443663, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 391666, - "label": "ELEMENT_OF", - "from": 3711828, - "to": 3726827, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260596, - "label": "CONSUMED_BY", - "from": 3684152, - "to": 3709368, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484059, - "label": "REGULATES", - "from": 3712313, - "to": 91443666, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484057, - "label": "REGULATES", - "from": 3711269, - "to": 91443665, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260607, - "label": "CONSUMED_BY", - "from": 3677788, - "to": 3709371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484063, - "label": "REGULATES", - "from": 3712313, - "to": 91443668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484062, - "label": "REGULATES", - "from": 91443668, - "to": 3690591, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484061, - "label": "REGULATES", - "from": 3707928, - "to": 91443667, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483363, - "label": "REGULATES", - "from": 91443317, - "to": 3702799, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260610, - "label": "CONSUMED_BY", - "from": 3684009, - "to": 3709372, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260608, - "label": "PRODUCES", - "from": 3709371, - "to": 3679446, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483367, - "label": "REGULATES", - "from": 91443319, - "to": 3699145, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483366, - "label": "REGULATES", - "from": 3712308, - "to": 91443318, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483365, - "label": "REGULATES", - "from": 91443318, - "to": 91442545, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483364, - "label": "REGULATES", - "from": 3712313, - "to": 91443317, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260618, - "label": "PRODUCES", - "from": 3709374, - "to": 3682183, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483370, - "label": "REGULATES", - "from": 3708153, - "to": 91443320, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260617, - "label": "CONSUMED_BY", - "from": 3678957, - "to": 3709374, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483369, - "label": "REGULATES", - "from": 91443320, - "to": 3701756, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483368, - "label": "REGULATES", - "from": 3708153, - "to": 91443319, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260622, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3709375, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483374, - "label": "REGULATES", - "from": 3708153, - "to": 91443322, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483373, - "label": "REGULATES", - "from": 91443322, - "to": 3711750, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260627, - "label": "PRODUCES", - "from": 3709376, - "to": 3684320, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260625, - "label": "CONSUMED_BY", - "from": 3684315, - "to": 3709376, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260624, - "label": "PRODUCES", - "from": 3709375, - "to": 3681189, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483376, - "label": "REGULATES", - "from": 3710270, - "to": 91443323, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483382, - "label": "REGULATES", - "from": 3708153, - "to": 91443326, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483381, - "label": "REGULATES", - "from": 91443326, - "to": 91442513, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260628, - "label": "PRODUCES", - "from": 3709376, - "to": 3677280, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483380, - "label": "REGULATES", - "from": 3712313, - "to": 91443325, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260634, - "label": "CONSUMED_BY", - "from": 3677501, - "to": 3709378, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483386, - "label": "REGULATES", - "from": 3712313, - "to": 91443328, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483385, - "label": "REGULATES", - "from": 91443328, - "to": 3702735, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260639, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3709379, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483390, - "label": "REGULATES", - "from": 3708153, - "to": 91443330, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260637, - "label": "PRODUCES", - "from": 3709378, - "to": 3677487, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260636, - "label": "PRODUCES", - "from": 3709378, - "to": 3677474, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483333, - "label": "REGULATES", - "from": 3712313, - "to": 91443302, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483332, - "label": "REGULATES", - "from": 91443302, - "to": 3711789, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483339, - "label": "REGULATES", - "from": 3712313, - "to": 91443305, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483338, - "label": "REGULATES", - "from": 91443305, - "to": 3690621, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483337, - "label": "REGULATES", - "from": 3708153, - "to": 91443304, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483336, - "label": "REGULATES", - "from": 91443304, - "to": 3698970, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483343, - "label": "REGULATES", - "from": 3708153, - "to": 91443307, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483342, - "label": "REGULATES", - "from": 91443307, - "to": 3702966, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483341, - "label": "REGULATES", - "from": 3712586, - "to": 91443306, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483347, - "label": "REGULATES", - "from": 3710270, - "to": 91443309, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483346, - "label": "REGULATES", - "from": 91443309, - "to": 3690881, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195121, - "label": "IN_PATHWAY", - "from": 3708798, - "to": 3692961, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195124, - "label": "IN_PATHWAY", - "from": 3708702, - "to": 3692962, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483349, - "label": "REGULATES", - "from": 3708153, - "to": 91443310, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483348, - "label": "REGULATES", - "from": 91443310, - "to": 3701510, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483355, - "label": "REGULATES", - "from": 91443313, - "to": 3717060, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483352, - "label": "REGULATES", - "from": 3710270, - "to": 91443311, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483358, - "label": "REGULATES", - "from": 3712313, - "to": 91443314, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483357, - "label": "REGULATES", - "from": 91443314, - "to": 3711955, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195133, - "label": "IN_PATHWAY", - "from": 3692964, - "to": 3693037, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483356, - "label": "REGULATES", - "from": 3712313, - "to": 91443313, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195138, - "label": "IN_PATHWAY", - "from": 3705645, - "to": 3692964, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483427, - "label": "REGULATES", - "from": 3712313, - "to": 91443348, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483426, - "label": "REGULATES", - "from": 91443348, - "to": 3699029, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483424, - "label": "REGULATES", - "from": 3710270, - "to": 91443347, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483429, - "label": "REGULATES", - "from": 3712313, - "to": 91443349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483428, - "label": "REGULATES", - "from": 91443349, - "to": 3698813, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195147, - "label": "IN_PATHWAY", - "from": 3708688, - "to": 3692965, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483439, - "label": "REGULATES", - "from": 3712313, - "to": 91443354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195151, - "label": "IN_PATHWAY", - "from": 3692968, - "to": 3692966, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195154, - "label": "IN_PATHWAY", - "from": 3708893, - "to": 3692967, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483441, - "label": "REGULATES", - "from": 3708153, - "to": 91443355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195153, - "label": "IN_PATHWAY", - "from": 3692967, - "to": 3692975, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483440, - "label": "REGULATES", - "from": 91443355, - "to": 3711844, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483447, - "label": "REGULATES", - "from": 3710270, - "to": 91443358, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483446, - "label": "REGULATES", - "from": 91443358, - "to": 3712253, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483445, - "label": "REGULATES", - "from": 3708153, - "to": 91443357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483444, - "label": "REGULATES", - "from": 91443357, - "to": 3693838, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195162, - "label": "IN_PATHWAY", - "from": 3706641, - "to": 3692968, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483451, - "label": "REGULATES", - "from": 91443360, - "to": 3701834, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483449, - "label": "REGULATES", - "from": 3710270, - "to": 91443359, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483455, - "label": "REGULATES", - "from": 91443362, - "to": 3687597, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483452, - "label": "REGULATES", - "from": 3712313, - "to": 91443360, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483395, - "label": "REGULATES", - "from": 91443333, - "to": 3712211, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195168, - "label": "IN_PATHWAY", - "from": 3694279, - "to": 3692969, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483392, - "label": "REGULATES", - "from": 3708153, - "to": 91443331, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483399, - "label": "REGULATES", - "from": 91443335, - "to": 3712041, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483398, - "label": "REGULATES", - "from": 3710270, - "to": 91443334, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483397, - "label": "REGULATES", - "from": 91443334, - "to": 3694092, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483396, - "label": "REGULATES", - "from": 3708153, - "to": 91443333, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483402, - "label": "REGULATES", - "from": 3712313, - "to": 91443336, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483401, - "label": "REGULATES", - "from": 91443336, - "to": 3706973, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483400, - "label": "REGULATES", - "from": 3712586, - "to": 91443335, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483407, - "label": "REGULATES", - "from": 91443339, - "to": 3698729, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483410, - "label": "REGULATES", - "from": 3712313, - "to": 91443340, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483409, - "label": "REGULATES", - "from": 91443340, - "to": 3712073, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483408, - "label": "REGULATES", - "from": 3712313, - "to": 91443339, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483414, - "label": "REGULATES", - "from": 3708153, - "to": 91443342, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195188, - "label": "IN_PATHWAY", - "from": 3708902, - "to": 3692971, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483413, - "label": "REGULATES", - "from": 91443342, - "to": 3698630, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483419, - "label": "REGULATES", - "from": 91443345, - "to": 3711989, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483418, - "label": "REGULATES", - "from": 3707928, - "to": 91443344, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483416, - "label": "REGULATES", - "from": 3708153, - "to": 91443343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483423, - "label": "REGULATES", - "from": 91443347, - "to": 3701631, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483422, - "label": "REGULATES", - "from": 3710270, - "to": 91443346, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483420, - "label": "REGULATES", - "from": 3708153, - "to": 91443345, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483235, - "label": "REGULATES", - "from": 91443254, - "to": 3716669, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483232, - "label": "REGULATES", - "from": 3712313, - "to": 91443252, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483239, - "label": "REGULATES", - "from": 91443256, - "to": 3690436, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195207, - "label": "IN_PATHWAY", - "from": 3708973, - "to": 3692972, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483238, - "label": "REGULATES", - "from": 3710143, - "to": 91443255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195205, - "label": "IN_PATHWAY", - "from": 3692972, - "to": 3692998, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483236, - "label": "REGULATES", - "from": 3708153, - "to": 91443254, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483243, - "label": "REGULATES", - "from": 91443258, - "to": 3690560, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483242, - "label": "REGULATES", - "from": 3708153, - "to": 91443257, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483241, - "label": "REGULATES", - "from": 91443257, - "to": 3717109, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483240, - "label": "REGULATES", - "from": 3708153, - "to": 91443256, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483247, - "label": "REGULATES", - "from": 91443260, - "to": 3694004, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483244, - "label": "REGULATES", - "from": 3712313, - "to": 91443258, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195218, - "label": "IN_PATHWAY", - "from": 3707575, - "to": 3692973, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195216, - "label": "IN_PATHWAY", - "from": 3692973, - "to": 3693018, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483248, - "label": "REGULATES", - "from": 3708153, - "to": 91443260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483255, - "label": "REGULATES", - "from": 91443264, - "to": 3717062, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195223, - "label": "IN_PATHWAY", - "from": 3692974, - "to": 3693032, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483254, - "label": "REGULATES", - "from": 3712313, - "to": 91443263, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195227, - "label": "IN_PATHWAY", - "from": 3708708, - "to": 3692974, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483258, - "label": "REGULATES", - "from": 3710562, - "to": 91443265, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483256, - "label": "REGULATES", - "from": 3712313, - "to": 91443264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195230, - "label": "IN_PATHWAY", - "from": 3692975, - "to": 3692977, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483263, - "label": "REGULATES", - "from": 91443268, - "to": 3687619, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483262, - "label": "REGULATES", - "from": 3708153, - "to": 91443267, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483260, - "label": "REGULATES", - "from": 3708153, - "to": 91443266, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483203, - "label": "REGULATES", - "from": 3712313, - "to": 91443238, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483202, - "label": "REGULATES", - "from": 91443238, - "to": 3707315, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483207, - "label": "REGULATES", - "from": 3712313, - "to": 91443240, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483206, - "label": "REGULATES", - "from": 91443240, - "to": 3693751, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483211, - "label": "REGULATES", - "from": 3708153, - "to": 91443242, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483210, - "label": "REGULATES", - "from": 91443242, - "to": 3698775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483209, - "label": "REGULATES", - "from": 3718538, - "to": 91443241, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483208, - "label": "REGULATES", - "from": 91443241, - "to": 91442576, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195244, - "label": "IN_PATHWAY", - "from": 3707883, - "to": 3692978, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483213, - "label": "REGULATES", - "from": 3708153, - "to": 91443243, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483212, - "label": "REGULATES", - "from": 91443243, - "to": 3690883, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483219, - "label": "REGULATES", - "from": 3712313, - "to": 91443246, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483218, - "label": "REGULATES", - "from": 91443246, - "to": 3702784, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483217, - "label": "REGULATES", - "from": 3708153, - "to": 91443245, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195249, - "label": "IN_PATHWAY", - "from": 3708691, - "to": 3692979, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483216, - "label": "REGULATES", - "from": 91443245, - "to": 3719987, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483223, - "label": "REGULATES", - "from": 91443248, - "to": 3699073, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195256, - "label": "IN_PATHWAY", - "from": 3708957, - "to": 3692980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483224, - "label": "REGULATES", - "from": 3708153, - "to": 91443248, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483231, - "label": "REGULATES", - "from": 91443252, - "to": 3717005, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483230, - "label": "REGULATES", - "from": 3712313, - "to": 91443251, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195261, - "label": "IN_PATHWAY", - "from": 3707699, - "to": 3692981, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195266, - "label": "IN_PATHWAY", - "from": 3706751, - "to": 3692982, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483299, - "label": "REGULATES", - "from": 91443286, - "to": 3699034, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483298, - "label": "REGULATES", - "from": 3708153, - "to": 91443285, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483297, - "label": "REGULATES", - "from": 91443285, - "to": 3699119, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483303, - "label": "REGULATES", - "from": 91443288, - "to": 3701688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195269, - "label": "IN_PATHWAY", - "from": 3707582, - "to": 3692983, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483300, - "label": "REGULATES", - "from": 3712586, - "to": 91443286, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483307, - "label": "REGULATES", - "from": 3712313, - "to": 91443289, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483306, - "label": "REGULATES", - "from": 91443289, - "to": 3707240, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195273, - "label": "IN_PATHWAY", - "from": 3707674, - "to": 3692984, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483304, - "label": "REGULATES", - "from": 3712313, - "to": 91443288, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195278, - "label": "IN_PATHWAY", - "from": 3692985, - "to": 3692986, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483315, - "label": "REGULATES", - "from": 3708153, - "to": 91443293, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195283, - "label": "IN_PATHWAY", - "from": 3700703, - "to": 3692985, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483314, - "label": "REGULATES", - "from": 91443293, - "to": 3702553, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483319, - "label": "REGULATES", - "from": 3708153, - "to": 91443295, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483318, - "label": "REGULATES", - "from": 91443295, - "to": 3707178, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483317, - "label": "REGULATES", - "from": 3712313, - "to": 91443294, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483316, - "label": "REGULATES", - "from": 91443294, - "to": 3699069, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483323, - "label": "REGULATES", - "from": 3710270, - "to": 91443297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483322, - "label": "REGULATES", - "from": 91443297, - "to": 3707305, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483321, - "label": "REGULATES", - "from": 3707928, - "to": 91443296, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483327, - "label": "REGULATES", - "from": 3712313, - "to": 91443299, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483326, - "label": "REGULATES", - "from": 91443299, - "to": 3706826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195292, - "label": "IN_PATHWAY", - "from": 3705198, - "to": 3692987, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483325, - "label": "REGULATES", - "from": 3708153, - "to": 91443298, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483324, - "label": "REGULATES", - "from": 91443298, - "to": 3716786, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483267, - "label": "REGULATES", - "from": 91443270, - "to": 3716984, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483266, - "label": "REGULATES", - "from": 3708153, - "to": 91443269, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483265, - "label": "REGULATES", - "from": 91443269, - "to": 3706849, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483264, - "label": "REGULATES", - "from": 3708153, - "to": 91443268, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483270, - "label": "REGULATES", - "from": 3684058, - "to": 91443271, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483268, - "label": "REGULATES", - "from": 3712313, - "to": 91443270, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483275, - "label": "REGULATES", - "from": 91443274, - "to": 3691259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483274, - "label": "REGULATES", - "from": 3708153, - "to": 91443273, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483273, - "label": "REGULATES", - "from": 91443273, - "to": 3702865, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195305, - "label": "IN_PATHWAY", - "from": 3709291, - "to": 3692989, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195310, - "label": "IN_PATHWAY", - "from": 3705256, - "to": 3692991, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483276, - "label": "REGULATES", - "from": 3684006, - "to": 91443274, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195314, - "label": "IN_PATHWAY", - "from": 3692994, - "to": 3692992, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483282, - "label": "REGULATES", - "from": 3712313, - "to": 91443277, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483281, - "label": "REGULATES", - "from": 91443277, - "to": 3712071, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483287, - "label": "REGULATES", - "from": 91443280, - "to": 3707180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483286, - "label": "REGULATES", - "from": 3708153, - "to": 91443279, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195316, - "label": "IN_PATHWAY", - "from": 3705408, - "to": 3692993, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483291, - "label": "REGULATES", - "from": 91443282, - "to": 3712063, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195323, - "label": "IN_PATHWAY", - "from": 3692995, - "to": 3694323, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195320, - "label": "IN_PATHWAY", - "from": 3707751, - "to": 3692994, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483288, - "label": "REGULATES", - "from": 3708153, - "to": 91443280, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483294, - "label": "REGULATES", - "from": 3712313, - "to": 91443283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483293, - "label": "REGULATES", - "from": 91443283, - "to": 3687581, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195325, - "label": "IN_PATHWAY", - "from": 3705403, - "to": 3692995, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483292, - "label": "REGULATES", - "from": 3708153, - "to": 91443282, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195330, - "label": "IN_PATHWAY", - "from": 3693049, - "to": 3692996, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483619, - "label": "REGULATES", - "from": 91443444, - "to": 3717160, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483618, - "label": "REGULATES", - "from": 3708153, - "to": 91443443, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483617, - "label": "REGULATES", - "from": 91443443, - "to": 3712147, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483616, - "label": "REGULATES", - "from": 3711265, - "to": 91443442, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195334, - "label": "IN_PATHWAY", - "from": 3708755, - "to": 3692997, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483622, - "label": "REGULATES", - "from": 3712313, - "to": 91443445, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483621, - "label": "REGULATES", - "from": 91443445, - "to": 3693885, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483620, - "label": "REGULATES", - "from": 3708153, - "to": 91443444, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483625, - "label": "REGULATES", - "from": 3710270, - "to": 91443447, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483624, - "label": "REGULATES", - "from": 91443447, - "to": 3702738, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483631, - "label": "REGULATES", - "from": 3708153, - "to": 91443450, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483630, - "label": "REGULATES", - "from": 91443450, - "to": 3716762, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483629, - "label": "REGULATES", - "from": 3712313, - "to": 91443449, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483628, - "label": "REGULATES", - "from": 91443449, - "to": 3690446, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195346, - "label": "IN_PATHWAY", - "from": 3708935, - "to": 3692999, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483635, - "label": "REGULATES", - "from": 3712313, - "to": 91443452, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483634, - "label": "REGULATES", - "from": 91443452, - "to": 3698835, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260881, - "label": "PRODUCES", - "from": 3709379, - "to": 3672557, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483633, - "label": "REGULATES", - "from": 3712313, - "to": 91443451, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483632, - "label": "REGULATES", - "from": 91443451, - "to": 3712105, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195350, - "label": "IN_PATHWAY", - "from": 3709334, - "to": 3693000, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483637, - "label": "REGULATES", - "from": 3710228, - "to": 91443453, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260891, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3709381, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483643, - "label": "REGULATES", - "from": 3708153, - "to": 91443456, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483647, - "label": "REGULATES", - "from": 3710270, - "to": 91443458, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260894, - "label": "PRODUCES", - "from": 3709381, - "to": 3681951, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483645, - "label": "REGULATES", - "from": 3712313, - "to": 91443457, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195357, - "label": "IN_PATHWAY", - "from": 3700708, - "to": 3693001, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483644, - "label": "REGULATES", - "from": 91443457, - "to": 3716703, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483586, - "label": "REGULATES", - "from": 3712313, - "to": 91443427, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260896, - "label": "CONSUMED_BY", - "from": 3677691, - "to": 3709382, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483584, - "label": "REGULATES", - "from": 3708153, - "to": 91443426, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483590, - "label": "REGULATES", - "from": 3711285, - "to": 91443429, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260902, - "label": "PRODUCES", - "from": 3709383, - "to": 3679099, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483589, - "label": "REGULATES", - "from": 91443429, - "to": 91442563, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260901, - "label": "CONSUMED_BY", - "from": 3679103, - "to": 3709383, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483595, - "label": "REGULATES", - "from": 91443432, - "to": 3698880, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260906, - "label": "PRODUCES", - "from": 3709384, - "to": 3670723, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483594, - "label": "REGULATES", - "from": 3708153, - "to": 91443431, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260911, - "label": "PRODUCES", - "from": 3709385, - "to": 3677394, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260910, - "label": "PRODUCES", - "from": 3709385, - "to": 3671376, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483598, - "label": "REGULATES", - "from": 3712313, - "to": 91443433, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260909, - "label": "CONSUMED_BY", - "from": 3671356, - "to": 3709385, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483597, - "label": "REGULATES", - "from": 91443433, - "to": 3690548, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483596, - "label": "REGULATES", - "from": 3708153, - "to": 91443432, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260915, - "label": "PRODUCES", - "from": 3709386, - "to": 3683881, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260914, - "label": "PRODUCES", - "from": 3709386, - "to": 3681900, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483602, - "label": "REGULATES", - "from": 3710270, - "to": 91443435, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483601, - "label": "REGULATES", - "from": 91443435, - "to": 3702559, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260912, - "label": "CONSUMED_BY", - "from": 3677821, - "to": 3709386, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483600, - "label": "REGULATES", - "from": 3711179, - "to": 91443434, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483607, - "label": "REGULATES", - "from": 91443438, - "to": 3719984, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483606, - "label": "REGULATES", - "from": 3712313, - "to": 91443437, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483605, - "label": "REGULATES", - "from": 91443437, - "to": 3690618, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260916, - "label": "CONSUMED_BY", - "from": 3677497, - "to": 3709387, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260922, - "label": "CONSUMED_BY", - "from": 3684116, - "to": 3709388, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483610, - "label": "REGULATES", - "from": 3712313, - "to": 91443439, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483609, - "label": "REGULATES", - "from": 91443439, - "to": 3690584, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483608, - "label": "REGULATES", - "from": 3708153, - "to": 91443438, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260927, - "label": "CONSUMED_BY", - "from": 3677460, - "to": 3709389, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483615, - "label": "REGULATES", - "from": 91443442, - "to": 91442590, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483614, - "label": "REGULATES", - "from": 3708153, - "to": 91443441, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260924, - "label": "PRODUCES", - "from": 3709388, - "to": 3682175, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483612, - "label": "REGULATES", - "from": 3705945, - "to": 91443440, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260929, - "label": "PRODUCES", - "from": 3709389, - "to": 3669462, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483681, - "label": "REGULATES", - "from": 3712313, - "to": 91443475, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483680, - "label": "REGULATES", - "from": 91443475, - "to": 3711872, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483687, - "label": "REGULATES", - "from": 3708153, - "to": 91443478, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483686, - "label": "REGULATES", - "from": 91443478, - "to": 3716993, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260933, - "label": "CONSUMED_BY", - "from": 3677441, - "to": 3709390, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483685, - "label": "REGULATES", - "from": 3712586, - "to": 91443477, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260938, - "label": "CONSUMED_BY", - "from": 3685580, - "to": 3709391, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483695, - "label": "REGULATES", - "from": 3711179, - "to": 91443482, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260943, - "label": "CONSUMED_BY", - "from": 3675448, - "to": 3709392, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483693, - "label": "REGULATES", - "from": 3712313, - "to": 91443481, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483692, - "label": "REGULATES", - "from": 91443481, - "to": 3693893, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483699, - "label": "REGULATES", - "from": 3708153, - "to": 91443484, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260946, - "label": "PRODUCES", - "from": 3709392, - "to": 3675177, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260945, - "label": "PRODUCES", - "from": 3709392, - "to": 3675065, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260951, - "label": "PRODUCES", - "from": 3709393, - "to": 3684045, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483703, - "label": "REGULATES", - "from": 3712313, - "to": 91443486, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483702, - "label": "REGULATES", - "from": 91443486, - "to": 3717006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483701, - "label": "REGULATES", - "from": 3708153, - "to": 91443485, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260948, - "label": "CONSUMED_BY", - "from": 3670604, - "to": 3709393, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483700, - "label": "REGULATES", - "from": 91443485, - "to": 3701503, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483705, - "label": "REGULATES", - "from": 3712313, - "to": 91443487, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260953, - "label": "CONSUMED_BY", - "from": 3712727, - "to": 3709394, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483704, - "label": "REGULATES", - "from": 91443487, - "to": 3694235, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483711, - "label": "REGULATES", - "from": 3708153, - "to": 91443490, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260958, - "label": "CONSUMED_BY", - "from": 3681364, - "to": 3709395, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483710, - "label": "REGULATES", - "from": 91443490, - "to": 3698667, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260963, - "label": "PRODUCES", - "from": 3709396, - "to": 3682044, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483651, - "label": "REGULATES", - "from": 3712313, - "to": 91443460, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483650, - "label": "REGULATES", - "from": 91443460, - "to": 3687666, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260961, - "label": "CONSUMED_BY", - "from": 3677350, - "to": 3709396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260960, - "label": "PRODUCES", - "from": 3709395, - "to": 3681861, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260967, - "label": "PRODUCES", - "from": 3709397, - "to": 3682000, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483655, - "label": "REGULATES", - "from": 3712313, - "to": 91443462, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483654, - "label": "REGULATES", - "from": 91443462, - "to": 3706857, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483653, - "label": "REGULATES", - "from": 3708153, - "to": 91443461, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260964, - "label": "CONSUMED_BY", - "from": 3682036, - "to": 3709397, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483652, - "label": "REGULATES", - "from": 91443461, - "to": 3701845, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483659, - "label": "REGULATES", - "from": 3708153, - "to": 91443464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483657, - "label": "REGULATES", - "from": 3712313, - "to": 91443463, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483656, - "label": "REGULATES", - "from": 91443463, - "to": 3702933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483663, - "label": "REGULATES", - "from": 3710462, - "to": 91443466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260974, - "label": "PRODUCES", - "from": 3709399, - "to": 3679151, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260973, - "label": "CONSUMED_BY", - "from": 3679169, - "to": 3709399, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483661, - "label": "REGULATES", - "from": 3710270, - "to": 91443465, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483660, - "label": "REGULATES", - "from": 91443465, - "to": 91442517, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260978, - "label": "PRODUCES", - "from": 3709400, - "to": 3677421, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260977, - "label": "PRODUCES", - "from": 3709400, - "to": 3684013, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483671, - "label": "REGULATES", - "from": 3711179, - "to": 91443470, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483670, - "label": "REGULATES", - "from": 91443470, - "to": 3693841, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483669, - "label": "REGULATES", - "from": 3712313, - "to": 91443469, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483668, - "label": "REGULATES", - "from": 91443469, - "to": 3694101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483675, - "label": "REGULATES", - "from": 3708153, - "to": 91443472, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483674, - "label": "REGULATES", - "from": 91443472, - "to": 3712012, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359295, - "label": "BINDS", - "from": 3722161, - "to": 3682940, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483673, - "label": "REGULATES", - "from": 3718538, - "to": 91443471, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483679, - "label": "REGULATES", - "from": 3712313, - "to": 91443474, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260991, - "label": "PRODUCES", - "from": 3709403, - "to": 3672870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483678, - "label": "REGULATES", - "from": 91443474, - "to": 3719971, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260990, - "label": "PRODUCES", - "from": 3709403, - "to": 3668188, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483677, - "label": "REGULATES", - "from": 3708153, - "to": 91443473, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483676, - "label": "REGULATES", - "from": 91443473, - "to": 3693919, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483490, - "label": "REGULATES", - "from": 3712313, - "to": 91443379, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483489, - "label": "REGULATES", - "from": 91443379, - "to": 3698604, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260992, - "label": "CONSUMED_BY", - "from": 3677460, - "to": 3709404, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359297, - "label": "REGULATES", - "from": 3711285, - "to": 3722161, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483495, - "label": "REGULATES", - "from": 91443382, - "to": 3702549, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483494, - "label": "REGULATES", - "from": 3708153, - "to": 91443381, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483493, - "label": "REGULATES", - "from": 91443381, - "to": 3687669, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 260996, - "label": "PRODUCES", - "from": 3709404, - "to": 3679095, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261003, - "label": "CONSUMED_BY", - "from": 3677650, - "to": 3709406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483499, - "label": "REGULATES", - "from": 91443384, - "to": 3698704, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483498, - "label": "REGULATES", - "from": 3708153, - "to": 91443383, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483497, - "label": "REGULATES", - "from": 91443383, - "to": 3720028, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261001, - "label": "PRODUCES", - "from": 3709405, - "to": 3666557, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483496, - "label": "REGULATES", - "from": 3711179, - "to": 91443382, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483502, - "label": "REGULATES", - "from": 3715127, - "to": 91443385, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261005, - "label": "PRODUCES", - "from": 3709406, - "to": 3681322, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483500, - "label": "REGULATES", - "from": 3712313, - "to": 91443384, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483506, - "label": "REGULATES", - "from": 3712586, - "to": 91443387, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359319, - "label": "REGULATES", - "from": 3681868, - "to": 3722167, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483505, - "label": "REGULATES", - "from": 91443387, - "to": 3698913, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359318, - "label": "REGULATES", - "from": 3722167, - "to": 3691016, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483504, - "label": "REGULATES", - "from": 3710270, - "to": 91443386, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483510, - "label": "REGULATES", - "from": 3712313, - "to": 91443389, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483509, - "label": "REGULATES", - "from": 91443389, - "to": 3706834, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359325, - "label": "BINDS", - "from": 3722169, - "to": 3679604, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483514, - "label": "REGULATES", - "from": 3712313, - "to": 91443391, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483513, - "label": "REGULATES", - "from": 91443391, - "to": 3716725, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359327, - "label": "REGULATES", - "from": 3712586, - "to": 3722169, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261023, - "label": "PRODUCES", - "from": 3709409, - "to": 3681801, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483518, - "label": "REGULATES", - "from": 3708153, - "to": 91443393, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483517, - "label": "REGULATES", - "from": 91443393, - "to": 3693880, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359323, - "label": "REGULATES", - "from": 3712313, - "to": 3722168, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261020, - "label": "CONSUMED_BY", - "from": 3681700, - "to": 3709409, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359322, - "label": "REGULATES", - "from": 3722168, - "to": 3726122, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483516, - "label": "REGULATES", - "from": 3710208, - "to": 91443392, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261027, - "label": "CONSUMED_BY", - "from": 3677428, - "to": 3709410, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483459, - "label": "REGULATES", - "from": 91443364, - "to": 91442607, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483456, - "label": "REGULATES", - "from": 3710270, - "to": 91443362, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483463, - "label": "REGULATES", - "from": 91443366, - "to": 3698765, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483462, - "label": "REGULATES", - "from": 3712313, - "to": 91443365, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483461, - "label": "REGULATES", - "from": 91443365, - "to": 3690423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483460, - "label": "REGULATES", - "from": 3710143, - "to": 91443364, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261035, - "label": "CONSUMED_BY", - "from": 3681312, - "to": 3709412, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261032, - "label": "PRODUCES", - "from": 3709410, - "to": 3684293, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359342, - "label": "REGULATES", - "from": 3708153, - "to": 3722173, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483464, - "label": "REGULATES", - "from": 3712313, - "to": 91443366, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483471, - "label": "REGULATES", - "from": 91443370, - "to": 3707295, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483470, - "label": "REGULATES", - "from": 3710270, - "to": 91443369, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261037, - "label": "PRODUCES", - "from": 3709412, - "to": 3666494, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483469, - "label": "REGULATES", - "from": 91443369, - "to": 3702514, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483468, - "label": "REGULATES", - "from": 3710228, - "to": 91443368, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483475, - "label": "REGULATES", - "from": 91443372, - "to": 3687673, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483474, - "label": "REGULATES", - "from": 3708153, - "to": 91443371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261042, - "label": "PRODUCES", - "from": 3709413, - "to": 3681373, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483473, - "label": "REGULATES", - "from": 91443371, - "to": 3711915, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483472, - "label": "REGULATES", - "from": 3708153, - "to": 91443370, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483478, - "label": "REGULATES", - "from": 3710270, - "to": 91443373, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261046, - "label": "PRODUCES", - "from": 3709414, - "to": 3668620, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483477, - "label": "REGULATES", - "from": 91443373, - "to": 91442564, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483476, - "label": "REGULATES", - "from": 3712313, - "to": 91443372, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359359, - "label": "BINDS", - "from": 3722178, - "to": 3685022, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261049, - "label": "CONSUMED_BY", - "from": 3677550, - "to": 3709415, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483480, - "label": "REGULATES", - "from": 3710270, - "to": 91443374, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359353, - "label": "REGULATES", - "from": 3722176, - "to": 3697092, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261055, - "label": "PRODUCES", - "from": 3709416, - "to": 3683899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359352, - "label": "BINDS", - "from": 3722176, - "to": 3687237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483486, - "label": "REGULATES", - "from": 3712313, - "to": 91443377, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261053, - "label": "CONSUMED_BY", - "from": 3674732, - "to": 3709416, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483485, - "label": "REGULATES", - "from": 91443377, - "to": 3687580, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359354, - "label": "REGULATES", - "from": 3711247, - "to": 3722176, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483555, - "label": "REGULATES", - "from": 91443412, - "to": 3711708, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483554, - "label": "REGULATES", - "from": 3710270, - "to": 91443411, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261063, - "label": "CONSUMED_BY", - "from": 3677464, - "to": 3709418, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359361, - "label": "REGULATES", - "from": 3711285, - "to": 3722178, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483559, - "label": "REGULATES", - "from": 91443414, - "to": 3690414, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483556, - "label": "REGULATES", - "from": 3712313, - "to": 91443412, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359373, - "label": "REGULATES", - "from": 3710270, - "to": 3722181, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359372, - "label": "REGULATES", - "from": 3722181, - "to": 3695073, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261065, - "label": "PRODUCES", - "from": 3709418, - "to": 3675464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483560, - "label": "REGULATES", - "from": 3712313, - "to": 91443414, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483567, - "label": "REGULATES", - "from": 91443418, - "to": 3712033, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359369, - "label": "REGULATES", - "from": 3710270, - "to": 3722180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261070, - "label": "PRODUCES", - "from": 3709419, - "to": 3668782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483566, - "label": "REGULATES", - "from": 3677543, - "to": 91443417, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261069, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3709419, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483565, - "label": "REGULATES", - "from": 91443417, - "to": 3689270, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359371, - "label": "BINDS", - "from": 3722181, - "to": 3685420, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483570, - "label": "REGULATES", - "from": 3708153, - "to": 91443419, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359380, - "label": "REGULATES", - "from": 3710270, - "to": 3722183, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483568, - "label": "REGULATES", - "from": 3708153, - "to": 91443418, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483575, - "label": "REGULATES", - "from": 91443422, - "to": 3693713, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483574, - "label": "REGULATES", - "from": 3712313, - "to": 91443421, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483573, - "label": "REGULATES", - "from": 91443421, - "to": 3701620, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359378, - "label": "BINDS", - "from": 3722183, - "to": 3678854, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261083, - "label": "PRODUCES", - "from": 3709422, - "to": 3715259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483578, - "label": "REGULATES", - "from": 3710270, - "to": 91443423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483577, - "label": "REGULATES", - "from": 91443423, - "to": 3698783, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483576, - "label": "REGULATES", - "from": 3711179, - "to": 91443422, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261080, - "label": "CONSUMED_BY", - "from": 3681507, - "to": 3709422, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483583, - "label": "REGULATES", - "from": 91443426, - "to": 3693807, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483582, - "label": "REGULATES", - "from": 3712313, - "to": 91443425, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261085, - "label": "PRODUCES", - "from": 3709423, - "to": 3681453, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261084, - "label": "CONSUMED_BY", - "from": 3685599, - "to": 3709423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483522, - "label": "REGULATES", - "from": 3708153, - "to": 91443395, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261095, - "label": "PRODUCES", - "from": 3709425, - "to": 3677428, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483526, - "label": "REGULATES", - "from": 3712313, - "to": 91443397, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359392, - "label": "REGULATES", - "from": 3712283, - "to": 3722186, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483524, - "label": "REGULATES", - "from": 3712313, - "to": 91443396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483530, - "label": "REGULATES", - "from": 3710270, - "to": 91443399, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261097, - "label": "CONSUMED_BY", - "from": 3681876, - "to": 3709426, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483528, - "label": "REGULATES", - "from": 3710270, - "to": 91443398, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359401, - "label": "BINDS", - "from": 3722189, - "to": 3686263, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483535, - "label": "REGULATES", - "from": 91443402, - "to": 3690668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483534, - "label": "REGULATES", - "from": 3712313, - "to": 91443401, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359403, - "label": "REGULATES", - "from": 3708153, - "to": 3722189, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483533, - "label": "REGULATES", - "from": 91443401, - "to": 3702944, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261100, - "label": "CONSUMED_BY", - "from": 3684298, - "to": 3709427, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 392182, - "label": "ELEMENT_OF", - "from": 3697961, - "to": 3726837, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483536, - "label": "REGULATES", - "from": 3712313, - "to": 91443402, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359409, - "label": "BINDS", - "from": 3722191, - "to": 3678762, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261110, - "label": "CONSUMED_BY", - "from": 3681364, - "to": 3709429, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483542, - "label": "REGULATES", - "from": 3710167, - "to": 91443405, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359411, - "label": "REGULATES", - "from": 3710167, - "to": 3722191, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483541, - "label": "REGULATES", - "from": 91443405, - "to": 91442598, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261108, - "label": "PRODUCES", - "from": 3709428, - "to": 3677483, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483547, - "label": "REGULATES", - "from": 91443408, - "to": 3716946, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483546, - "label": "REGULATES", - "from": 3712313, - "to": 91443407, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483545, - "label": "REGULATES", - "from": 91443407, - "to": 3702580, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261112, - "label": "PRODUCES", - "from": 3709429, - "to": 3677232, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483544, - "label": "REGULATES", - "from": 3708153, - "to": 91443406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 392190, - "label": "ELEMENT_OF", - "from": 3701776, - "to": 3726841, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261118, - "label": "CONSUMED_BY", - "from": 3684206, - "to": 3709431, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483550, - "label": "REGULATES", - "from": 3710270, - "to": 91443409, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483549, - "label": "REGULATES", - "from": 91443409, - "to": 3717046, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178483548, - "label": "REGULATES", - "from": 3712313, - "to": 91443408, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 392186, - "label": "ELEMENT_OF", - "from": 3700125, - "to": 3726840, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484899, - "label": "REGULATES", - "from": 3712313, - "to": 91444094, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484898, - "label": "REGULATES", - "from": 91444094, - "to": 3698926, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484897, - "label": "REGULATES", - "from": 3708153, - "to": 91444093, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484903, - "label": "REGULATES", - "from": 3707928, - "to": 91444096, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359424, - "label": "BINDS", - "from": 3722195, - "to": 3687519, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484901, - "label": "REGULATES", - "from": 3712313, - "to": 91444095, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484900, - "label": "REGULATES", - "from": 91444095, - "to": 3719950, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359426, - "label": "REGULATES", - "from": 3711317, - "to": 3722195, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484907, - "label": "REGULATES", - "from": 3708153, - "to": 91444098, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484905, - "label": "REGULATES", - "from": 3712313, - "to": 91444097, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484904, - "label": "REGULATES", - "from": 91444097, - "to": 3690517, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484911, - "label": "REGULATES", - "from": 3708153, - "to": 91444100, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484910, - "label": "REGULATES", - "from": 91444100, - "to": 3706798, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484915, - "label": "REGULATES", - "from": 91444102, - "to": 3711749, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195602, - "label": "IN_PATHWAY", - "from": 3707570, - "to": 3693003, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359447, - "label": "BINDS", - "from": 3722201, - "to": 3685318, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195600, - "label": "IN_PATHWAY", - "from": 3705411, - "to": 3693002, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 392209, - "label": "ELEMENT_OF", - "from": 3716624, - "to": 3726843, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195607, - "label": "IN_PATHWAY", - "from": 3705662, - "to": 3693004, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484918, - "label": "REGULATES", - "from": 3708153, - "to": 91444103, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484917, - "label": "REGULATES", - "from": 91444103, - "to": 3693883, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484916, - "label": "REGULATES", - "from": 3712313, - "to": 91444102, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484923, - "label": "REGULATES", - "from": 91444106, - "to": 3712232, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484922, - "label": "REGULATES", - "from": 3712313, - "to": 91444105, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359455, - "label": "REGULATES", - "from": 3722203, - "to": 3694450, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484921, - "label": "REGULATES", - "from": 91444105, - "to": 3707218, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 392223, - "label": "ELEMENT_OF", - "from": 3700117, - "to": 3726844, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359454, - "label": "BINDS", - "from": 3722203, - "to": 3679820, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484920, - "label": "REGULATES", - "from": 3707928, - "to": 91444104, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359449, - "label": "REGULATES", - "from": 3711285, - "to": 3722201, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484927, - "label": "REGULATES", - "from": 91444108, - "to": 3694016, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359448, - "label": "REGULATES", - "from": 3722201, - "to": 3694959, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195613, - "label": "IN_PATHWAY", - "from": 3693005, - "to": 3693042, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484924, - "label": "REGULATES", - "from": 3708153, - "to": 91444106, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484867, - "label": "REGULATES", - "from": 3712313, - "to": 91444078, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484866, - "label": "REGULATES", - "from": 91444078, - "to": 3690814, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195616, - "label": "IN_PATHWAY", - "from": 3705662, - "to": 3693005, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 392231, - "label": "ELEMENT_OF", - "from": 3698999, - "to": 3726848, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484865, - "label": "REGULATES", - "from": 3712313, - "to": 91444077, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359462, - "label": "BINDS", - "from": 3722205, - "to": 3686124, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484864, - "label": "REGULATES", - "from": 91444077, - "to": 3698788, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484871, - "label": "REGULATES", - "from": 3711265, - "to": 91444080, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359456, - "label": "REGULATES", - "from": 3712308, - "to": 3722203, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195621, - "label": "IN_PATHWAY", - "from": 3705343, - "to": 3693006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484875, - "label": "REGULATES", - "from": 3707928, - "to": 91444082, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484873, - "label": "REGULATES", - "from": 3708153, - "to": 91444081, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484872, - "label": "REGULATES", - "from": 91444081, - "to": 3719900, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 392233, - "label": "ELEMENT_OF", - "from": 3702038, - "to": 3726850, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484879, - "label": "REGULATES", - "from": 3710270, - "to": 91444084, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359464, - "label": "REGULATES", - "from": 3711285, - "to": 3722205, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484878, - "label": "REGULATES", - "from": 91444084, - "to": 3727236, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484877, - "label": "REGULATES", - "from": 3708153, - "to": 91444083, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195628, - "label": "IN_PATHWAY", - "from": 3706719, - "to": 3693008, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484876, - "label": "REGULATES", - "from": 91444083, - "to": 3716831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359477, - "label": "BINDS", - "from": 3722209, - "to": 3678522, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484883, - "label": "REGULATES", - "from": 3684058, - "to": 91444086, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484882, - "label": "REGULATES", - "from": 91444086, - "to": 3688197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195632, - "label": "IN_PATHWAY", - "from": 3693082, - "to": 3693009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359479, - "label": "REGULATES", - "from": 3705945, - "to": 3722209, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484881, - "label": "REGULATES", - "from": 3712313, - "to": 91444085, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484880, - "label": "REGULATES", - "from": 91444085, - "to": 3698764, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 392241, - "label": "ELEMENT_OF", - "from": 3685016, - "to": 3726851, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359473, - "label": "BINDS", - "from": 3722208, - "to": 3675651, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195636, - "label": "IN_PATHWAY", - "from": 3693010, - "to": 3694306, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484885, - "label": "REGULATES", - "from": 3712313, - "to": 91444087, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359475, - "label": "REGULATES", - "from": 3710228, - "to": 3722208, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195637, - "label": "IN_PATHWAY", - "from": 3693019, - "to": 3693010, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484884, - "label": "REGULATES", - "from": 91444087, - "to": 3702490, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359474, - "label": "REGULATES", - "from": 3722208, - "to": 3694404, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484891, - "label": "REGULATES", - "from": 3708153, - "to": 91444090, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484890, - "label": "REGULATES", - "from": 91444090, - "to": 3711727, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195640, - "label": "IN_PATHWAY", - "from": 3705390, - "to": 3693011, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484889, - "label": "REGULATES", - "from": 3712313, - "to": 91444089, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359481, - "label": "BINDS", - "from": 3722210, - "to": 3682872, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484893, - "label": "REGULATES", - "from": 3718538, - "to": 91444091, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359483, - "label": "REGULATES", - "from": 3710167, - "to": 3722210, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359493, - "label": "REGULATES", - "from": 3722213, - "to": 3700052, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484963, - "label": "REGULATES", - "from": 91444126, - "to": 3707311, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359492, - "label": "BINDS", - "from": 3722213, - "to": 3684973, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 392260, - "label": "ELEMENT_OF", - "from": 3707230, - "to": 3726853, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195648, - "label": "IN_PATHWAY", - "from": 3693076, - "to": 3693013, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359494, - "label": "REGULATES", - "from": 3712602, - "to": 3722213, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484960, - "label": "REGULATES", - "from": 3708153, - "to": 91444124, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484966, - "label": "REGULATES", - "from": 3708153, - "to": 91444127, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484965, - "label": "REGULATES", - "from": 91444127, - "to": 3694165, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484964, - "label": "REGULATES", - "from": 3712313, - "to": 91444126, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484971, - "label": "REGULATES", - "from": 91444130, - "to": 3699002, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484970, - "label": "REGULATES", - "from": 3712313, - "to": 91444129, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484969, - "label": "REGULATES", - "from": 91444129, - "to": 3701744, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484968, - "label": "REGULATES", - "from": 3707928, - "to": 91444128, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484972, - "label": "REGULATES", - "from": 3708153, - "to": 91444130, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 392266, - "label": "ELEMENT_OF", - "from": 3693775, - "to": 3726856, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 392277, - "label": "ELEMENT_OF", - "from": 3697107, - "to": 3726861, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484979, - "label": "REGULATES", - "from": 91444134, - "to": 3702533, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195664, - "label": "IN_PATHWAY", - "from": 3693050, - "to": 3693015, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359511, - "label": "BINDS", - "from": 3722218, - "to": 3678852, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484976, - "label": "REGULATES", - "from": 3708153, - "to": 91444132, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195670, - "label": "IN_PATHWAY", - "from": 3700729, - "to": 3693016, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484983, - "label": "REGULATES", - "from": 91444136, - "to": 3698848, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 392272, - "label": "ELEMENT_OF", - "from": 3687677, - "to": 3726859, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359504, - "label": "BINDS", - "from": 3722216, - "to": 3679691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484980, - "label": "REGULATES", - "from": 3712313, - "to": 91444134, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359506, - "label": "REGULATES", - "from": 3710228, - "to": 3722216, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484987, - "label": "REGULATES", - "from": 91444138, - "to": 3701336, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 392285, - "label": "ELEMENT_OF", - "from": 3701679, - "to": 3726863, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359519, - "label": "BINDS", - "from": 3722220, - "to": 3685308, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484984, - "label": "REGULATES", - "from": 3712313, - "to": 91444136, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195678, - "label": "IN_PATHWAY", - "from": 3706747, - "to": 3693019, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 392281, - "label": "ELEMENT_OF", - "from": 3720001, - "to": 3726862, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359513, - "label": "REGULATES", - "from": 3706006, - "to": 3722218, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484990, - "label": "REGULATES", - "from": 3707928, - "to": 91444139, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359512, - "label": "REGULATES", - "from": 3722218, - "to": 3696318, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484988, - "label": "REGULATES", - "from": 3708153, - "to": 91444138, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484931, - "label": "REGULATES", - "from": 91444110, - "to": 3690571, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484928, - "label": "REGULATES", - "from": 3708153, - "to": 91444108, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195687, - "label": "IN_PATHWAY", - "from": 3705662, - "to": 3693020, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484934, - "label": "REGULATES", - "from": 3708153, - "to": 91444111, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 392288, - "label": "ELEMENT_OF", - "from": 3698992, - "to": 3726865, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484933, - "label": "REGULATES", - "from": 91444111, - "to": 3717112, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484932, - "label": "REGULATES", - "from": 3712313, - "to": 91444110, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484939, - "label": "REGULATES", - "from": 91444114, - "to": 3717103, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484938, - "label": "REGULATES", - "from": 3712313, - "to": 91444113, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484937, - "label": "REGULATES", - "from": 91444113, - "to": 3698657, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195694, - "label": "IN_PATHWAY", - "from": 3707537, - "to": 3693021, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484940, - "label": "REGULATES", - "from": 3708153, - "to": 91444114, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484947, - "label": "REGULATES", - "from": 91444118, - "to": 3693732, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484944, - "label": "REGULATES", - "from": 3708153, - "to": 91444116, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484950, - "label": "REGULATES", - "from": 3708153, - "to": 91444119, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484949, - "label": "REGULATES", - "from": 91444119, - "to": 3719964, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484948, - "label": "REGULATES", - "from": 3712313, - "to": 91444118, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484955, - "label": "REGULATES", - "from": 91444122, - "to": 3716696, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484954, - "label": "REGULATES", - "from": 3708153, - "to": 91444121, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484953, - "label": "REGULATES", - "from": 91444121, - "to": 3711787, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484959, - "label": "REGULATES", - "from": 91444124, - "to": 3690863, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484958, - "label": "REGULATES", - "from": 3710270, - "to": 91444123, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484957, - "label": "REGULATES", - "from": 91444123, - "to": 91442591, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195708, - "label": "IN_PATHWAY", - "from": 3705453, - "to": 3693022, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484956, - "label": "REGULATES", - "from": 3712313, - "to": 91444122, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484769, - "label": "REGULATES", - "from": 3710270, - "to": 91444030, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195713, - "label": "IN_PATHWAY", - "from": 3694314, - "to": 3693023, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484775, - "label": "REGULATES", - "from": 91444034, - "to": 3702608, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 392320, - "label": "ELEMENT_OF", - "from": 3698712, - "to": 3726871, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484773, - "label": "REGULATES", - "from": 3710270, - "to": 91444032, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195717, - "label": "IN_PATHWAY", - "from": 3693076, - "to": 3693024, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484779, - "label": "REGULATES", - "from": 3707928, - "to": 91444036, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 392335, - "label": "ELEMENT_OF", - "from": 3716835, - "to": 3726876, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195721, - "label": "IN_PATHWAY", - "from": 3708649, - "to": 3693025, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484776, - "label": "REGULATES", - "from": 3712313, - "to": 91444034, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195725, - "label": "IN_PATHWAY", - "from": 3693143, - "to": 3693026, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484786, - "label": "REGULATES", - "from": 3712313, - "to": 91444039, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484785, - "label": "REGULATES", - "from": 91444039, - "to": 3716743, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484784, - "label": "REGULATES", - "from": 3711179, - "to": 91444038, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195734, - "label": "IN_PATHWAY", - "from": 3693029, - "to": 3693038, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484791, - "label": "REGULATES", - "from": 91444042, - "to": 3726721, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484790, - "label": "REGULATES", - "from": 3708153, - "to": 91444041, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484795, - "label": "REGULATES", - "from": 91444044, - "to": 3701430, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195739, - "label": "IN_PATHWAY", - "from": 3707768, - "to": 3693030, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484794, - "label": "REGULATES", - "from": 3710270, - "to": 91444043, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195736, - "label": "IN_PATHWAY", - "from": 3693088, - "to": 3693029, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484793, - "label": "REGULATES", - "from": 91444043, - "to": 3730339, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484792, - "label": "REGULATES", - "from": 3714459, - "to": 91444042, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195742, - "label": "IN_PATHWAY", - "from": 3694306, - "to": 3693031, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484798, - "label": "REGULATES", - "from": 3712313, - "to": 91444045, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484797, - "label": "REGULATES", - "from": 91444045, - "to": 3720001, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484796, - "label": "REGULATES", - "from": 3708153, - "to": 91444044, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195746, - "label": "IN_PATHWAY", - "from": 3693060, - "to": 3693033, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484739, - "label": "REGULATES", - "from": 3712313, - "to": 91444014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484738, - "label": "REGULATES", - "from": 91444014, - "to": 3690417, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484737, - "label": "REGULATES", - "from": 3711179, - "to": 91444013, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484736, - "label": "REGULATES", - "from": 91444013, - "to": 3711892, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484741, - "label": "REGULATES", - "from": 3710270, - "to": 91444015, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484740, - "label": "REGULATES", - "from": 91444015, - "to": 3711999, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195749, - "label": "IN_PATHWAY", - "from": 3705307, - "to": 3693034, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195759, - "label": "IN_PATHWAY", - "from": 3693075, - "to": 3693035, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484749, - "label": "REGULATES", - "from": 3712313, - "to": 91444020, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195763, - "label": "IN_PATHWAY", - "from": 3707391, - "to": 3693036, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 392371, - "label": "ELEMENT_OF", - "from": 3706970, - "to": 3726888, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484757, - "label": "REGULATES", - "from": 3712313, - "to": 91444024, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484763, - "label": "REGULATES", - "from": 3708153, - "to": 91444027, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195770, - "label": "IN_PATHWAY", - "from": 3705262, - "to": 3693039, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484761, - "label": "REGULATES", - "from": 3708153, - "to": 91444026, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195774, - "label": "IN_PATHWAY", - "from": 3694321, - "to": 3693040, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484767, - "label": "REGULATES", - "from": 3712313, - "to": 91444029, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484766, - "label": "REGULATES", - "from": 91444029, - "to": 3699132, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484765, - "label": "REGULATES", - "from": 3711179, - "to": 91444028, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484764, - "label": "REGULATES", - "from": 91444028, - "to": 3717079, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484835, - "label": "REGULATES", - "from": 3708153, - "to": 91444063, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484834, - "label": "REGULATES", - "from": 91444063, - "to": 3701531, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484833, - "label": "REGULATES", - "from": 3710270, - "to": 91444062, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 392390, - "label": "ELEMENT_OF", - "from": 3701528, - "to": 3726895, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484842, - "label": "REGULATES", - "from": 3711179, - "to": 91444066, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484841, - "label": "REGULATES", - "from": 91444066, - "to": 3693802, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484840, - "label": "REGULATES", - "from": 3708153, - "to": 91444065, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484847, - "label": "REGULATES", - "from": 3712313, - "to": 91444069, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484846, - "label": "REGULATES", - "from": 91444069, - "to": 3702611, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484844, - "label": "REGULATES", - "from": 3712313, - "to": 91444067, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 392394, - "label": "ELEMENT_OF", - "from": 3698788, - "to": 3726899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195796, - "label": "IN_PATHWAY", - "from": 3707451, - "to": 3693043, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484853, - "label": "REGULATES", - "from": 3708153, - "to": 91444072, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484852, - "label": "REGULATES", - "from": 91444072, - "to": 3694008, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484857, - "label": "REGULATES", - "from": 3711265, - "to": 91444074, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484856, - "label": "REGULATES", - "from": 91444074, - "to": 91442573, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484862, - "label": "REGULATES", - "from": 3711179, - "to": 91444076, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484861, - "label": "REGULATES", - "from": 91444076, - "to": 3712239, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484860, - "label": "REGULATES", - "from": 3708153, - "to": 91444075, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195805, - "label": "IN_PATHWAY", - "from": 3705493, - "to": 3693044, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484802, - "label": "REGULATES", - "from": 3712313, - "to": 91444047, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484801, - "label": "REGULATES", - "from": 91444047, - "to": 3717035, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195809, - "label": "IN_PATHWAY", - "from": 3705219, - "to": 3693045, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484800, - "label": "REGULATES", - "from": 3710270, - "to": 91444046, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484807, - "label": "REGULATES", - "from": 3712313, - "to": 91444049, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484806, - "label": "REGULATES", - "from": 91444049, - "to": 3702668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195813, - "label": "IN_PATHWAY", - "from": 3705523, - "to": 3693046, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484804, - "label": "REGULATES", - "from": 3710270, - "to": 91444048, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484811, - "label": "REGULATES", - "from": 3708153, - "to": 91444051, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484809, - "label": "REGULATES", - "from": 3707928, - "to": 91444050, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195823, - "label": "IN_PATHWAY", - "from": 3705673, - "to": 3693047, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484813, - "label": "REGULATES", - "from": 3712313, - "to": 91444052, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484812, - "label": "REGULATES", - "from": 91444052, - "to": 3690444, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484819, - "label": "REGULATES", - "from": 3704150, - "to": 91444055, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484818, - "label": "REGULATES", - "from": 91444055, - "to": 3702729, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195825, - "label": "IN_PATHWAY", - "from": 3709406, - "to": 3693048, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484823, - "label": "REGULATES", - "from": 3710270, - "to": 91444057, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484821, - "label": "REGULATES", - "from": 3712313, - "to": 91444056, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484820, - "label": "REGULATES", - "from": 91444056, - "to": 3693890, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484825, - "label": "REGULATES", - "from": 3712313, - "to": 91444058, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195833, - "label": "IN_PATHWAY", - "from": 3700703, - "to": 3693049, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 195838, - "label": "IN_PATHWAY", - "from": 3709361, - "to": 3693050, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484829, - "label": "REGULATES", - "from": 3712313, - "to": 91444060, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484828, - "label": "REGULATES", - "from": 91444060, - "to": 3702836, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485153, - "label": "REGULATES", - "from": 3712313, - "to": 91444218, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485159, - "label": "REGULATES", - "from": 3708153, - "to": 91444221, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485158, - "label": "REGULATES", - "from": 91444221, - "to": 3717010, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485163, - "label": "REGULATES", - "from": 3710270, - "to": 91444223, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485161, - "label": "REGULATES", - "from": 3711179, - "to": 91444222, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485160, - "label": "REGULATES", - "from": 91444222, - "to": 3701460, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485165, - "label": "REGULATES", - "from": 3712313, - "to": 91444224, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485164, - "label": "REGULATES", - "from": 91444224, - "to": 3698868, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485169, - "label": "REGULATES", - "from": 3712313, - "to": 91444226, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485175, - "label": "REGULATES", - "from": 91444229, - "to": 3702607, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485178, - "label": "REGULATES", - "from": 3711179, - "to": 91444230, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485177, - "label": "REGULATES", - "from": 91444230, - "to": 3701530, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485176, - "label": "REGULATES", - "from": 3708153, - "to": 91444229, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485182, - "label": "REGULATES", - "from": 3712313, - "to": 91444232, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485181, - "label": "REGULATES", - "from": 91444232, - "to": 3701493, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485180, - "label": "REGULATES", - "from": 3710270, - "to": 91444231, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485123, - "label": "REGULATES", - "from": 91444204, - "to": 3707096, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485122, - "label": "REGULATES", - "from": 3708153, - "to": 91444203, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485121, - "label": "REGULATES", - "from": 91444203, - "to": 3716684, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485126, - "label": "REGULATES", - "from": 3710270, - "to": 91444205, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485125, - "label": "REGULATES", - "from": 91444205, - "to": 3707067, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485124, - "label": "REGULATES", - "from": 3708153, - "to": 91444204, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485131, - "label": "REGULATES", - "from": 91444208, - "to": 3690442, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485130, - "label": "REGULATES", - "from": 3712313, - "to": 91444207, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485129, - "label": "REGULATES", - "from": 91444207, - "to": 3701533, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485128, - "label": "REGULATES", - "from": 3710270, - "to": 91444206, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485132, - "label": "REGULATES", - "from": 3712313, - "to": 91444208, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485138, - "label": "REGULATES", - "from": 3710194, - "to": 91444211, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485137, - "label": "REGULATES", - "from": 91444211, - "to": 91442570, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485143, - "label": "REGULATES", - "from": 3708153, - "to": 91444213, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485142, - "label": "REGULATES", - "from": 91444213, - "to": 3707214, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485147, - "label": "REGULATES", - "from": 3710270, - "to": 91444215, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485146, - "label": "REGULATES", - "from": 91444215, - "to": 3701550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485145, - "label": "REGULATES", - "from": 3710270, - "to": 91444214, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485144, - "label": "REGULATES", - "from": 91444214, - "to": 3707139, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485149, - "label": "REGULATES", - "from": 3712313, - "to": 91444216, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485148, - "label": "REGULATES", - "from": 91444216, - "to": 3719933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485219, - "label": "REGULATES", - "from": 91444251, - "to": 91442574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485218, - "label": "REGULATES", - "from": 3710274, - "to": 91444250, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485216, - "label": "REGULATES", - "from": 3712313, - "to": 91444249, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485222, - "label": "REGULATES", - "from": 3708153, - "to": 91444252, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485221, - "label": "REGULATES", - "from": 91444252, - "to": 3698840, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485220, - "label": "REGULATES", - "from": 3705945, - "to": 91444251, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485226, - "label": "REGULATES", - "from": 3711179, - "to": 91444254, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485225, - "label": "REGULATES", - "from": 91444254, - "to": 3707313, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485224, - "label": "REGULATES", - "from": 3710208, - "to": 91444253, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485231, - "label": "REGULATES", - "from": 91444257, - "to": 3693985, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485230, - "label": "REGULATES", - "from": 3712313, - "to": 91444256, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485228, - "label": "REGULATES", - "from": 3708153, - "to": 91444255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485234, - "label": "REGULATES", - "from": 3711265, - "to": 91444258, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485233, - "label": "REGULATES", - "from": 91444258, - "to": 91442580, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485232, - "label": "REGULATES", - "from": 3712313, - "to": 91444257, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485238, - "label": "REGULATES", - "from": 3708153, - "to": 91444260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485237, - "label": "REGULATES", - "from": 91444260, - "to": 3687592, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485236, - "label": "REGULATES", - "from": 3710194, - "to": 91444259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485243, - "label": "REGULATES", - "from": 91444263, - "to": 3717115, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485242, - "label": "REGULATES", - "from": 3711179, - "to": 91444262, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485241, - "label": "REGULATES", - "from": 91444262, - "to": 3693906, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485240, - "label": "REGULATES", - "from": 3704560, - "to": 91444261, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485247, - "label": "REGULATES", - "from": 91444265, - "to": 3690944, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485246, - "label": "REGULATES", - "from": 3712313, - "to": 91444264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485245, - "label": "REGULATES", - "from": 91444264, - "to": 3717020, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485244, - "label": "REGULATES", - "from": 3708153, - "to": 91444263, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485186, - "label": "REGULATES", - "from": 3712313, - "to": 91444234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485185, - "label": "REGULATES", - "from": 91444234, - "to": 3711981, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485184, - "label": "REGULATES", - "from": 3708153, - "to": 91444233, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485190, - "label": "REGULATES", - "from": 3707928, - "to": 91444236, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485188, - "label": "REGULATES", - "from": 3712313, - "to": 91444235, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485194, - "label": "REGULATES", - "from": 3710270, - "to": 91444238, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485192, - "label": "REGULATES", - "from": 3712586, - "to": 91444237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485199, - "label": "REGULATES", - "from": 91444241, - "to": 3690815, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485198, - "label": "REGULATES", - "from": 3712313, - "to": 91444240, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485197, - "label": "REGULATES", - "from": 91444240, - "to": 3702445, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485196, - "label": "REGULATES", - "from": 3710270, - "to": 91444239, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485202, - "label": "REGULATES", - "from": 3712313, - "to": 91444242, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485201, - "label": "REGULATES", - "from": 91444242, - "to": 3706984, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485200, - "label": "REGULATES", - "from": 3712313, - "to": 91444241, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485206, - "label": "REGULATES", - "from": 3718538, - "to": 91444244, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485211, - "label": "REGULATES", - "from": 91444247, - "to": 3720026, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485210, - "label": "REGULATES", - "from": 3710270, - "to": 91444246, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485215, - "label": "REGULATES", - "from": 91444249, - "to": 3706991, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485214, - "label": "REGULATES", - "from": 3712313, - "to": 91444248, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485213, - "label": "REGULATES", - "from": 91444248, - "to": 3690779, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485212, - "label": "REGULATES", - "from": 3712313, - "to": 91444247, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485024, - "label": "REGULATES", - "from": 3708153, - "to": 91444156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485031, - "label": "REGULATES", - "from": 91444160, - "to": 3719911, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485030, - "label": "REGULATES", - "from": 3712313, - "to": 91444159, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485035, - "label": "REGULATES", - "from": 91444162, - "to": 3702949, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485034, - "label": "REGULATES", - "from": 3718384, - "to": 91444161, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485032, - "label": "REGULATES", - "from": 3712313, - "to": 91444160, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485039, - "label": "REGULATES", - "from": 91444164, - "to": 3690738, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485038, - "label": "REGULATES", - "from": 3718538, - "to": 91444163, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485036, - "label": "REGULATES", - "from": 3708153, - "to": 91444162, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485043, - "label": "REGULATES", - "from": 3710270, - "to": 91444165, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485042, - "label": "REGULATES", - "from": 91444165, - "to": 3716717, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485040, - "label": "REGULATES", - "from": 3708153, - "to": 91444164, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485047, - "label": "REGULATES", - "from": 91444167, - "to": 3698921, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485050, - "label": "REGULATES", - "from": 3712313, - "to": 91444168, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485049, - "label": "REGULATES", - "from": 91444168, - "to": 3701486, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485048, - "label": "REGULATES", - "from": 3712313, - "to": 91444167, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485054, - "label": "REGULATES", - "from": 3708153, - "to": 91444170, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484995, - "label": "REGULATES", - "from": 91444142, - "to": 3701683, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484992, - "label": "REGULATES", - "from": 3708153, - "to": 91444140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484999, - "label": "REGULATES", - "from": 91444144, - "to": 3698772, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484996, - "label": "REGULATES", - "from": 3712313, - "to": 91444142, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485003, - "label": "REGULATES", - "from": 91444146, - "to": 3720012, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485000, - "label": "REGULATES", - "from": 3712313, - "to": 91444144, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485007, - "label": "REGULATES", - "from": 91444148, - "to": 3701395, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485006, - "label": "REGULATES", - "from": 3712313, - "to": 91444147, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485005, - "label": "REGULATES", - "from": 91444147, - "to": 91442510, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485004, - "label": "REGULATES", - "from": 3708153, - "to": 91444146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485008, - "label": "REGULATES", - "from": 3708153, - "to": 91444148, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485015, - "label": "REGULATES", - "from": 91444152, - "to": 3693955, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485012, - "label": "REGULATES", - "from": 3712313, - "to": 91444150, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485019, - "label": "REGULATES", - "from": 91444154, - "to": 3717122, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485016, - "label": "REGULATES", - "from": 3712313, - "to": 91444152, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485023, - "label": "REGULATES", - "from": 91444156, - "to": 3712159, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485020, - "label": "REGULATES", - "from": 3708153, - "to": 91444154, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485095, - "label": "REGULATES", - "from": 3710270, - "to": 91444190, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485093, - "label": "REGULATES", - "from": 3708153, - "to": 91444189, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485092, - "label": "REGULATES", - "from": 91444189, - "to": 3701407, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485099, - "label": "REGULATES", - "from": 3712313, - "to": 91444192, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485098, - "label": "REGULATES", - "from": 91444192, - "to": 3702483, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485103, - "label": "REGULATES", - "from": 3712313, - "to": 91444194, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485102, - "label": "REGULATES", - "from": 91444194, - "to": 3701453, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485105, - "label": "REGULATES", - "from": 3708153, - "to": 91444195, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485104, - "label": "REGULATES", - "from": 91444195, - "to": 3687576, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485111, - "label": "REGULATES", - "from": 3710270, - "to": 91444198, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485109, - "label": "REGULATES", - "from": 3710270, - "to": 91444197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485113, - "label": "REGULATES", - "from": 3712313, - "to": 91444199, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485112, - "label": "REGULATES", - "from": 91444199, - "to": 3702807, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485118, - "label": "REGULATES", - "from": 3712313, - "to": 91444201, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485117, - "label": "REGULATES", - "from": 91444201, - "to": 3716948, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261603, - "label": "CONSUMED_BY", - "from": 3713899, - "to": 3709432, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485058, - "label": "REGULATES", - "from": 3708153, - "to": 91444172, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485057, - "label": "REGULATES", - "from": 91444172, - "to": 3707260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261600, - "label": "PRODUCES", - "from": 3709431, - "to": 3677536, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485056, - "label": "REGULATES", - "from": 3712586, - "to": 91444171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261607, - "label": "PRODUCES", - "from": 3709432, - "to": 3711601, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261606, - "label": "PRODUCES", - "from": 3709432, - "to": 3710297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261605, - "label": "PRODUCES", - "from": 3709432, - "to": 3715337, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485061, - "label": "REGULATES", - "from": 3710270, - "to": 91444173, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485060, - "label": "REGULATES", - "from": 91444173, - "to": 3690575, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485067, - "label": "REGULATES", - "from": 3712313, - "to": 91444176, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261610, - "label": "CONSUMED_BY", - "from": 3677711, - "to": 3709433, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485066, - "label": "REGULATES", - "from": 91444176, - "to": 3693776, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485065, - "label": "REGULATES", - "from": 3712313, - "to": 91444175, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485064, - "label": "REGULATES", - "from": 91444175, - "to": 3701875, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261615, - "label": "CONSUMED_BY", - "from": 3683891, - "to": 3709434, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196082, - "label": "IN_PATHWAY", - "from": 3705438, - "to": 3693051, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485075, - "label": "REGULATES", - "from": 3708153, - "to": 91444180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485074, - "label": "REGULATES", - "from": 91444180, - "to": 3720008, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485073, - "label": "REGULATES", - "from": 3708153, - "to": 91444179, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485072, - "label": "REGULATES", - "from": 91444179, - "to": 3690955, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485077, - "label": "REGULATES", - "from": 3710270, - "to": 91444181, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196085, - "label": "IN_PATHWAY", - "from": 3709485, - "to": 3693052, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196090, - "label": "IN_PATHWAY", - "from": 3708532, - "to": 3693053, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485083, - "label": "REGULATES", - "from": 3712313, - "to": 91444184, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485081, - "label": "REGULATES", - "from": 3712313, - "to": 91444183, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485080, - "label": "REGULATES", - "from": 91444183, - "to": 3719980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261631, - "label": "PRODUCES", - "from": 3709437, - "to": 3684324, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485087, - "label": "REGULATES", - "from": 3708153, - "to": 91444186, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485086, - "label": "REGULATES", - "from": 91444186, - "to": 3707087, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196093, - "label": "IN_PATHWAY", - "from": 3709215, - "to": 3693054, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261635, - "label": "PRODUCES", - "from": 3709438, - "to": 3670300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196098, - "label": "IN_PATHWAY", - "from": 3705486, - "to": 3693055, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261633, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3709438, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484385, - "label": "REGULATES", - "from": 3712313, - "to": 91443831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484391, - "label": "REGULATES", - "from": 3707928, - "to": 91443834, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484389, - "label": "REGULATES", - "from": 3708153, - "to": 91443833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484388, - "label": "REGULATES", - "from": 91443833, - "to": 3687660, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196101, - "label": "IN_PATHWAY", - "from": 3708723, - "to": 3693056, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484395, - "label": "REGULATES", - "from": 3708153, - "to": 91443836, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196106, - "label": "IN_PATHWAY", - "from": 3708555, - "to": 3693057, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484394, - "label": "REGULATES", - "from": 91443836, - "to": 3698985, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484393, - "label": "REGULATES", - "from": 3712313, - "to": 91443835, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261640, - "label": "CONSUMED_BY", - "from": 3677445, - "to": 3709439, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484392, - "label": "REGULATES", - "from": 91443835, - "to": 3690893, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196110, - "label": "IN_PATHWAY", - "from": 3706677, - "to": 3693058, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484397, - "label": "REGULATES", - "from": 3712313, - "to": 91443837, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484396, - "label": "REGULATES", - "from": 91443837, - "to": 3701384, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261651, - "label": "CONSUMED_BY", - "from": 3681652, - "to": 3709441, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484403, - "label": "REGULATES", - "from": 91443841, - "to": 3701613, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196115, - "label": "IN_PATHWAY", - "from": 3705508, - "to": 3693060, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484402, - "label": "REGULATES", - "from": 3720077, - "to": 91443840, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484401, - "label": "REGULATES", - "from": 3708153, - "to": 91443839, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484400, - "label": "REGULATES", - "from": 91443839, - "to": 3716882, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196113, - "label": "IN_PATHWAY", - "from": 3707507, - "to": 3693059, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261652, - "label": "PRODUCES", - "from": 3709441, - "to": 3681180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484404, - "label": "REGULATES", - "from": 3712313, - "to": 91443841, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196117, - "label": "IN_PATHWAY", - "from": 3705296, - "to": 3693061, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196122, - "label": "IN_PATHWAY", - "from": 3700733, - "to": 3693063, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484409, - "label": "REGULATES", - "from": 3705945, - "to": 91443844, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261656, - "label": "PRODUCES", - "from": 3709442, - "to": 3666570, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484408, - "label": "REGULATES", - "from": 91443844, - "to": 91442616, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484415, - "label": "REGULATES", - "from": 3712313, - "to": 91443847, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484414, - "label": "REGULATES", - "from": 91443847, - "to": 3698873, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261661, - "label": "PRODUCES", - "from": 3709443, - "to": 3681568, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484413, - "label": "REGULATES", - "from": 3708153, - "to": 91443846, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196125, - "label": "IN_PATHWAY", - "from": 3706336, - "to": 3693064, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484412, - "label": "REGULATES", - "from": 91443846, - "to": 3711888, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261667, - "label": "PRODUCES", - "from": 3709444, - "to": 3675470, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484355, - "label": "REGULATES", - "from": 3712313, - "to": 91443815, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484354, - "label": "REGULATES", - "from": 91443815, - "to": 3701481, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261665, - "label": "CONSUMED_BY", - "from": 3677478, - "to": 3709444, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484357, - "label": "REGULATES", - "from": 3708153, - "to": 91443816, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196133, - "label": "IN_PATHWAY", - "from": 3705312, - "to": 3693065, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484356, - "label": "REGULATES", - "from": 91443816, - "to": 3701490, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484363, - "label": "REGULATES", - "from": 3712313, - "to": 91443819, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484362, - "label": "REGULATES", - "from": 91443819, - "to": 3701833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484361, - "label": "REGULATES", - "from": 3710270, - "to": 91443818, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484360, - "label": "REGULATES", - "from": 91443818, - "to": 3726275, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261679, - "label": "CONSUMED_BY", - "from": 3677613, - "to": 3709447, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484367, - "label": "REGULATES", - "from": 3712313, - "to": 91443821, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196143, - "label": "IN_PATHWAY", - "from": 3700733, - "to": 3693066, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484366, - "label": "REGULATES", - "from": 91443821, - "to": 3707176, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484365, - "label": "REGULATES", - "from": 3708153, - "to": 91443820, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484364, - "label": "REGULATES", - "from": 91443820, - "to": 3701679, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261683, - "label": "CONSUMED_BY", - "from": 3681241, - "to": 3709448, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484371, - "label": "REGULATES", - "from": 91443824, - "to": 3698851, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484370, - "label": "REGULATES", - "from": 3720073, - "to": 91443823, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261680, - "label": "PRODUCES", - "from": 3709447, - "to": 3677330, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196150, - "label": "IN_PATHWAY", - "from": 3709182, - "to": 3693068, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484375, - "label": "REGULATES", - "from": 91443826, - "to": 3701377, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196148, - "label": "IN_PATHWAY", - "from": 3708966, - "to": 3693067, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261685, - "label": "PRODUCES", - "from": 3709448, - "to": 3677068, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484372, - "label": "REGULATES", - "from": 3708153, - "to": 91443824, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196154, - "label": "IN_PATHWAY", - "from": 3707537, - "to": 3693069, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484378, - "label": "REGULATES", - "from": 3718538, - "to": 91443827, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484376, - "label": "REGULATES", - "from": 3712313, - "to": 91443826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484381, - "label": "REGULATES", - "from": 3679440, - "to": 91443829, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484451, - "label": "REGULATES", - "from": 91443867, - "to": 3712020, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261699, - "label": "PRODUCES", - "from": 3709451, - "to": 3681206, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484448, - "label": "REGULATES", - "from": 3712313, - "to": 91443865, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261703, - "label": "CONSUMED_BY", - "from": 3683881, - "to": 3709452, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484455, - "label": "REGULATES", - "from": 91443869, - "to": 3720004, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484454, - "label": "REGULATES", - "from": 3712586, - "to": 91443868, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196165, - "label": "IN_PATHWAY", - "from": 3708766, - "to": 3693070, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484452, - "label": "REGULATES", - "from": 3712313, - "to": 91443867, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484458, - "label": "REGULATES", - "from": 3708153, - "to": 91443870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261705, - "label": "PRODUCES", - "from": 3709452, - "to": 3682122, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484457, - "label": "REGULATES", - "from": 91443870, - "to": 3717106, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484456, - "label": "REGULATES", - "from": 3708153, - "to": 91443869, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484463, - "label": "REGULATES", - "from": 91443873, - "to": 91442565, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484462, - "label": "REGULATES", - "from": 3708153, - "to": 91443872, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484461, - "label": "REGULATES", - "from": 91443872, - "to": 3702581, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196173, - "label": "IN_PATHWAY", - "from": 3706709, - "to": 3693071, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484466, - "label": "REGULATES", - "from": 3712313, - "to": 91443874, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261714, - "label": "PRODUCES", - "from": 3709454, - "to": 3675450, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484465, - "label": "REGULATES", - "from": 91443874, - "to": 3699081, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261712, - "label": "CONSUMED_BY", - "from": 3677466, - "to": 3709454, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484464, - "label": "REGULATES", - "from": 3679440, - "to": 91443873, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261718, - "label": "CONSUMED_BY", - "from": 3667436, - "to": 3709455, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484468, - "label": "REGULATES", - "from": 3711269, - "to": 91443875, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196184, - "label": "IN_PATHWAY", - "from": 3708951, - "to": 3693074, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261720, - "label": "PRODUCES", - "from": 3709455, - "to": 3684088, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484479, - "label": "REGULATES", - "from": 3708153, - "to": 91443881, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196191, - "label": "IN_PATHWAY", - "from": 3708951, - "to": 3693075, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484478, - "label": "REGULATES", - "from": 91443881, - "to": 3702749, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484419, - "label": "REGULATES", - "from": 91443850, - "to": 3707228, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484418, - "label": "REGULATES", - "from": 3679440, - "to": 91443849, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196193, - "label": "IN_PATHWAY", - "from": 3709546, - "to": 3693076, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196199, - "label": "IN_PATHWAY", - "from": 3700725, - "to": 3693077, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484420, - "label": "REGULATES", - "from": 3712313, - "to": 91443850, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261739, - "label": "CONSUMED_BY", - "from": 3684001, - "to": 3709459, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484427, - "label": "REGULATES", - "from": 91443854, - "to": 91442604, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196203, - "label": "IN_PATHWAY", - "from": 3708489, - "to": 3693078, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484426, - "label": "REGULATES", - "from": 3708153, - "to": 91443853, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484425, - "label": "REGULATES", - "from": 91443853, - "to": 3716624, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484424, - "label": "REGULATES", - "from": 3679440, - "to": 91443852, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196206, - "label": "IN_PATHWAY", - "from": 3706375, - "to": 3693079, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484430, - "label": "REGULATES", - "from": 3708153, - "to": 91443855, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261741, - "label": "PRODUCES", - "from": 3709459, - "to": 3677818, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484429, - "label": "REGULATES", - "from": 91443855, - "to": 3698905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484428, - "label": "REGULATES", - "from": 3679440, - "to": 91443854, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484435, - "label": "REGULATES", - "from": 91443858, - "to": 3707149, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484434, - "label": "REGULATES", - "from": 3708153, - "to": 91443857, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196211, - "label": "IN_PATHWAY", - "from": 3706254, - "to": 3693080, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484433, - "label": "REGULATES", - "from": 91443857, - "to": 3698680, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261749, - "label": "CONSUMED_BY", - "from": 3677496, - "to": 3709461, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484436, - "label": "REGULATES", - "from": 3712313, - "to": 91443858, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196218, - "label": "IN_PATHWAY", - "from": 3707654, - "to": 3693082, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484443, - "label": "REGULATES", - "from": 91443863, - "to": 3712068, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196216, - "label": "IN_PATHWAY", - "from": 3706375, - "to": 3693081, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261752, - "label": "PRODUCES", - "from": 3709461, - "to": 3677605, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484447, - "label": "REGULATES", - "from": 91443865, - "to": 3702754, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196223, - "label": "IN_PATHWAY", - "from": 3705214, - "to": 3693083, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484444, - "label": "REGULATES", - "from": 3708153, - "to": 91443863, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261763, - "label": "CONSUMED_BY", - "from": 3682200, - "to": 3709464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484258, - "label": "REGULATES", - "from": 3708153, - "to": 91443765, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484257, - "label": "REGULATES", - "from": 91443765, - "to": 3719941, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484263, - "label": "REGULATES", - "from": 91443768, - "to": 3719976, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484262, - "label": "REGULATES", - "from": 3679440, - "to": 91443767, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484260, - "label": "REGULATES", - "from": 3711269, - "to": 91443766, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261771, - "label": "CONSUMED_BY", - "from": 3684317, - "to": 3709466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484267, - "label": "REGULATES", - "from": 91443770, - "to": 3698632, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484266, - "label": "REGULATES", - "from": 3711269, - "to": 91443769, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484264, - "label": "REGULATES", - "from": 3712313, - "to": 91443768, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484270, - "label": "REGULATES", - "from": 3710228, - "to": 91443771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196236, - "label": "IN_PATHWAY", - "from": 3705477, - "to": 3693085, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261773, - "label": "PRODUCES", - "from": 3709466, - "to": 3668637, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484269, - "label": "REGULATES", - "from": 91443771, - "to": 91442617, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261772, - "label": "PRODUCES", - "from": 3709466, - "to": 3676163, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484268, - "label": "REGULATES", - "from": 3712313, - "to": 91443770, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484275, - "label": "REGULATES", - "from": 91443774, - "to": 3693923, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196242, - "label": "IN_PATHWAY", - "from": 3706617, - "to": 3693086, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484274, - "label": "REGULATES", - "from": 3712313, - "to": 91443773, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484273, - "label": "REGULATES", - "from": 91443773, - "to": 3698747, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484272, - "label": "REGULATES", - "from": 3710270, - "to": 91443772, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261776, - "label": "PRODUCES", - "from": 3709467, - "to": 3681756, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484278, - "label": "REGULATES", - "from": 3712313, - "to": 91443775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484277, - "label": "REGULATES", - "from": 91443775, - "to": 3719931, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484276, - "label": "REGULATES", - "from": 3708153, - "to": 91443774, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196249, - "label": "IN_PATHWAY", - "from": 3708876, - "to": 3693087, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196258, - "label": "IN_PATHWAY", - "from": 3709056, - "to": 3693088, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484226, - "label": "REGULATES", - "from": 3712313, - "to": 91443749, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484231, - "label": "REGULATES", - "from": 91443752, - "to": 3712185, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261798, - "label": "CONSUMED_BY", - "from": 3677428, - "to": 3709471, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484230, - "label": "REGULATES", - "from": 3711179, - "to": 91443751, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196260, - "label": "IN_PATHWAY", - "from": 3708876, - "to": 3693089, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484228, - "label": "REGULATES", - "from": 3712283, - "to": 91443750, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196267, - "label": "IN_PATHWAY", - "from": 3705327, - "to": 3693091, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484234, - "label": "REGULATES", - "from": 3708153, - "to": 91443753, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484233, - "label": "REGULATES", - "from": 91443753, - "to": 3694173, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484232, - "label": "REGULATES", - "from": 3708153, - "to": 91443752, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484239, - "label": "REGULATES", - "from": 91443756, - "to": 3706981, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484238, - "label": "REGULATES", - "from": 3712313, - "to": 91443755, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484237, - "label": "REGULATES", - "from": 91443755, - "to": 3712143, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484236, - "label": "REGULATES", - "from": 3710270, - "to": 91443754, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484243, - "label": "REGULATES", - "from": 91443758, - "to": 3717090, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484242, - "label": "REGULATES", - "from": 3715027, - "to": 91443757, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484240, - "label": "REGULATES", - "from": 3712313, - "to": 91443756, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196273, - "label": "IN_PATHWAY", - "from": 3705331, - "to": 3693092, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261815, - "label": "CONSUMED_BY", - "from": 3673162, - "to": 3709474, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484247, - "label": "REGULATES", - "from": 91443760, - "to": 3699071, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196279, - "label": "IN_PATHWAY", - "from": 3707471, - "to": 3693094, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484246, - "label": "REGULATES", - "from": 3712313, - "to": 91443759, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484245, - "label": "REGULATES", - "from": 91443759, - "to": 3719993, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196277, - "label": "IN_PATHWAY", - "from": 3707728, - "to": 3693093, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484244, - "label": "REGULATES", - "from": 3710270, - "to": 91443758, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261819, - "label": "PRODUCES", - "from": 3709474, - "to": 3669741, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484250, - "label": "REGULATES", - "from": 3712313, - "to": 91443761, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261817, - "label": "PRODUCES", - "from": 3709474, - "to": 3683895, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484248, - "label": "REGULATES", - "from": 3708153, - "to": 91443760, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484254, - "label": "REGULATES", - "from": 3708153, - "to": 91443763, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261821, - "label": "PRODUCES", - "from": 3709474, - "to": 3668044, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484253, - "label": "REGULATES", - "from": 91443763, - "to": 91442555, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261820, - "label": "PRODUCES", - "from": 3709474, - "to": 3668522, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484252, - "label": "REGULATES", - "from": 3707928, - "to": 91443762, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196290, - "label": "IN_PATHWAY", - "from": 3706549, - "to": 3693095, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484323, - "label": "REGULATES", - "from": 3712313, - "to": 91443798, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484322, - "label": "REGULATES", - "from": 91443798, - "to": 3717029, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261824, - "label": "CONSUMED_BY", - "from": 3711387, - "to": 3709475, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327360, - "label": "REGULATES", - "from": 3710270, - "to": 3717857, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484325, - "label": "REGULATES", - "from": 3708153, - "to": 91443799, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484324, - "label": "REGULATES", - "from": 91443799, - "to": 3701535, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484331, - "label": "REGULATES", - "from": 3712313, - "to": 91443802, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484330, - "label": "REGULATES", - "from": 91443802, - "to": 3702787, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484329, - "label": "REGULATES", - "from": 3711179, - "to": 91443801, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196296, - "label": "IN_PATHWAY", - "from": 3709304, - "to": 3693096, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484328, - "label": "REGULATES", - "from": 91443801, - "to": 3717094, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 261838, - "label": "CONSUMED_BY", - "from": 3671804, - "to": 3709478, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484334, - "label": "REGULATES", - "from": 3720077, - "to": 91443804, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484333, - "label": "REGULATES", - "from": 3708153, - "to": 91443803, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484332, - "label": "REGULATES", - "from": 91443803, - "to": 3701363, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484338, - "label": "REGULATES", - "from": 3712313, - "to": 91443806, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484337, - "label": "REGULATES", - "from": 91443806, - "to": 3702957, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196305, - "label": "IN_PATHWAY", - "from": 3706445, - "to": 3693099, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484343, - "label": "REGULATES", - "from": 3708153, - "to": 91443809, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327376, - "label": "BINDS", - "from": 3717862, - "to": 3683165, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484342, - "label": "REGULATES", - "from": 91443809, - "to": 3701414, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327378, - "label": "REGULATES", - "from": 3712313, - "to": 3717862, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484341, - "label": "REGULATES", - "from": 3679440, - "to": 91443808, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196314, - "label": "IN_PATHWAY", - "from": 3700786, - "to": 3693101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484347, - "label": "REGULATES", - "from": 3708153, - "to": 91443811, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484346, - "label": "REGULATES", - "from": 91443811, - "to": 91442539, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484345, - "label": "REGULATES", - "from": 3711269, - "to": 91443810, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 196318, - "label": "IN_PATHWAY", - "from": 3694283, - "to": 3693102, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484351, - "label": "REGULATES", - "from": 3707928, - "to": 91443813, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327385, - "label": "REGULATES", - "from": 3717864, - "to": 3697827, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327386, - "label": "REGULATES", - "from": 3712401, - "to": 3717864, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484291, - "label": "REGULATES", - "from": 3712313, - "to": 91443781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484290, - "label": "REGULATES", - "from": 91443781, - "to": 3698833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484294, - "label": "REGULATES", - "from": 3679440, - "to": 91443783, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484293, - "label": "REGULATES", - "from": 3708153, - "to": 91443782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484292, - "label": "REGULATES", - "from": 91443782, - "to": 3707338, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484299, - "label": "REGULATES", - "from": 91443786, - "to": 3711838, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484298, - "label": "REGULATES", - "from": 3711269, - "to": 91443785, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327406, - "label": "BINDS", - "from": 3717870, - "to": 3685340, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484296, - "label": "REGULATES", - "from": 3710143, - "to": 91443784, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327400, - "label": "REGULATES", - "from": 3708153, - "to": 3717868, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484303, - "label": "REGULATES", - "from": 91443788, - "to": 3717089, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484302, - "label": "REGULATES", - "from": 3712313, - "to": 91443787, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484301, - "label": "REGULATES", - "from": 91443787, - "to": 3717167, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484300, - "label": "REGULATES", - "from": 3711179, - "to": 91443786, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484304, - "label": "REGULATES", - "from": 3708153, - "to": 91443788, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327408, - "label": "REGULATES", - "from": 3711285, - "to": 3717870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484311, - "label": "REGULATES", - "from": 3712313, - "to": 91443792, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484315, - "label": "REGULATES", - "from": 3708153, - "to": 91443794, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484314, - "label": "REGULATES", - "from": 91443794, - "to": 3687602, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484319, - "label": "REGULATES", - "from": 3711265, - "to": 91443796, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484640, - "label": "REGULATES", - "from": 3712313, - "to": 91443964, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484646, - "label": "REGULATES", - "from": 3708153, - "to": 91443967, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484645, - "label": "REGULATES", - "from": 91443967, - "to": 3693960, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484644, - "label": "REGULATES", - "from": 3708153, - "to": 91443966, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484650, - "label": "REGULATES", - "from": 3708153, - "to": 91443969, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327437, - "label": "REGULATES", - "from": 3704560, - "to": 3717878, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484649, - "label": "REGULATES", - "from": 91443969, - "to": 3693979, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484648, - "label": "REGULATES", - "from": 3718538, - "to": 91443968, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484654, - "label": "REGULATES", - "from": 3712586, - "to": 91443971, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327433, - "label": "REGULATES", - "from": 3677336, - "to": 3717877, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484653, - "label": "REGULATES", - "from": 91443971, - "to": 3701575, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484652, - "label": "REGULATES", - "from": 3710270, - "to": 91443970, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327435, - "label": "BINDS", - "from": 3717878, - "to": 3683174, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327444, - "label": "REGULATES", - "from": 3711285, - "to": 3717880, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484657, - "label": "REGULATES", - "from": 3712313, - "to": 91443973, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484656, - "label": "REGULATES", - "from": 91443973, - "to": 3690600, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484662, - "label": "REGULATES", - "from": 3708153, - "to": 91443975, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484667, - "label": "REGULATES", - "from": 91443978, - "to": 3702545, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484666, - "label": "REGULATES", - "from": 3712313, - "to": 91443977, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327454, - "label": "REGULATES", - "from": 3717883, - "to": 3689710, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484665, - "label": "REGULATES", - "from": 91443977, - "to": 3716770, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327455, - "label": "REGULATES", - "from": 3685537, - "to": 3717883, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484671, - "label": "REGULATES", - "from": 91443980, - "to": 3707233, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327448, - "label": "REGULATES", - "from": 3710228, - "to": 3717881, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484668, - "label": "REGULATES", - "from": 3712313, - "to": 91443978, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484611, - "label": "REGULATES", - "from": 3712313, - "to": 91443949, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327461, - "label": "REGULATES", - "from": 3717885, - "to": 3691424, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484610, - "label": "REGULATES", - "from": 91443949, - "to": 3693718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327462, - "label": "REGULATES", - "from": 3677464, - "to": 3717885, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484615, - "label": "REGULATES", - "from": 3708153, - "to": 91443951, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484614, - "label": "REGULATES", - "from": 91443951, - "to": 3694011, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484613, - "label": "REGULATES", - "from": 3710228, - "to": 91443950, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327459, - "label": "REGULATES", - "from": 3718538, - "to": 3717884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484617, - "label": "REGULATES", - "from": 3708153, - "to": 91443952, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484616, - "label": "REGULATES", - "from": 91443952, - "to": 3719903, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484623, - "label": "REGULATES", - "from": 3710270, - "to": 91443955, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327466, - "label": "REGULATES", - "from": 3711285, - "to": 3717886, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484621, - "label": "REGULATES", - "from": 3708153, - "to": 91443954, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484620, - "label": "REGULATES", - "from": 91443954, - "to": 3698684, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484630, - "label": "REGULATES", - "from": 3712313, - "to": 91443959, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484629, - "label": "REGULATES", - "from": 91443959, - "to": 3711812, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484639, - "label": "REGULATES", - "from": 91443964, - "to": 3707112, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484638, - "label": "REGULATES", - "from": 3712313, - "to": 91443963, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484637, - "label": "REGULATES", - "from": 91443963, - "to": 3716835, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484636, - "label": "REGULATES", - "from": 3714081, - "to": 91443962, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484707, - "label": "REGULATES", - "from": 91443998, - "to": 3698712, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484706, - "label": "REGULATES", - "from": 3708153, - "to": 91443997, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327493, - "label": "BINDS", - "from": 3717894, - "to": 3683182, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327495, - "label": "REGULATES", - "from": 3714706, - "to": 3717894, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484710, - "label": "REGULATES", - "from": 3710270, - "to": 91443999, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484708, - "label": "REGULATES", - "from": 3708153, - "to": 91443998, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484714, - "label": "REGULATES", - "from": 3710270, - "to": 91444001, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484712, - "label": "REGULATES", - "from": 3712313, - "to": 91444000, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327508, - "label": "REGULATES", - "from": 3717898, - "to": 3694556, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484723, - "label": "REGULATES", - "from": 3712313, - "to": 91444006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327509, - "label": "REGULATES", - "from": 3711285, - "to": 3717898, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484725, - "label": "REGULATES", - "from": 3712313, - "to": 91444007, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327507, - "label": "BINDS", - "from": 3717898, - "to": 3686228, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327517, - "label": "REGULATES", - "from": 3708153, - "to": 3717900, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484729, - "label": "REGULATES", - "from": 3711265, - "to": 91444009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484728, - "label": "REGULATES", - "from": 91444009, - "to": 91442578, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484735, - "label": "REGULATES", - "from": 3708153, - "to": 91444012, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484734, - "label": "REGULATES", - "from": 91444012, - "to": 3701526, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484733, - "label": "REGULATES", - "from": 3708153, - "to": 91444011, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484732, - "label": "REGULATES", - "from": 91444011, - "to": 3701382, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484674, - "label": "REGULATES", - "from": 3708153, - "to": 91443981, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484673, - "label": "REGULATES", - "from": 91443981, - "to": 3712193, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484672, - "label": "REGULATES", - "from": 3708153, - "to": 91443980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484678, - "label": "REGULATES", - "from": 3708153, - "to": 91443983, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484677, - "label": "REGULATES", - "from": 91443983, - "to": 3707269, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484682, - "label": "REGULATES", - "from": 3710270, - "to": 91443985, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484681, - "label": "REGULATES", - "from": 91443985, - "to": 3698677, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484680, - "label": "REGULATES", - "from": 3710270, - "to": 91443984, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484685, - "label": "REGULATES", - "from": 3712313, - "to": 91443986, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484690, - "label": "REGULATES", - "from": 3712313, - "to": 91443989, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484689, - "label": "REGULATES", - "from": 91443989, - "to": 3702821, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327537, - "label": "BINDS", - "from": 3717906, - "to": 3687173, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484692, - "label": "REGULATES", - "from": 3708153, - "to": 91443990, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327539, - "label": "REGULATES", - "from": 3708153, - "to": 3717906, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484698, - "label": "REGULATES", - "from": 3712313, - "to": 91443993, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484697, - "label": "REGULATES", - "from": 91443993, - "to": 3702733, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484702, - "label": "REGULATES", - "from": 3708153, - "to": 91443995, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484701, - "label": "REGULATES", - "from": 91443995, - "to": 3701387, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484512, - "label": "REGULATES", - "from": 3711269, - "to": 91443898, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484518, - "label": "REGULATES", - "from": 3712313, - "to": 91443901, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484517, - "label": "REGULATES", - "from": 91443901, - "to": 3701489, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484516, - "label": "REGULATES", - "from": 3712313, - "to": 91443900, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327564, - "label": "REGULATES", - "from": 3677336, - "to": 3717913, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484522, - "label": "REGULATES", - "from": 3708153, - "to": 91443903, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484521, - "label": "REGULATES", - "from": 91443903, - "to": 3720037, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484527, - "label": "REGULATES", - "from": 91443906, - "to": 3690683, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484526, - "label": "REGULATES", - "from": 3707928, - "to": 91443905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484524, - "label": "REGULATES", - "from": 3708153, - "to": 91443904, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327563, - "label": "REGULATES", - "from": 3717913, - "to": 3688947, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327573, - "label": "BINDS", - "from": 3717916, - "to": 3678657, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484530, - "label": "REGULATES", - "from": 3708153, - "to": 91443907, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327574, - "label": "REGULATES", - "from": 3717916, - "to": 3697107, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327575, - "label": "REGULATES", - "from": 3711285, - "to": 3717916, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484528, - "label": "REGULATES", - "from": 3712313, - "to": 91443906, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484535, - "label": "REGULATES", - "from": 91443910, - "to": 3693804, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484534, - "label": "REGULATES", - "from": 3708153, - "to": 91443909, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484533, - "label": "REGULATES", - "from": 91443909, - "to": 3690807, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327571, - "label": "REGULATES", - "from": 3677384, - "to": 3717915, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484537, - "label": "REGULATES", - "from": 3720117, - "to": 91443911, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327583, - "label": "REGULATES", - "from": 3711285, - "to": 3717918, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484536, - "label": "REGULATES", - "from": 3712586, - "to": 91443910, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484543, - "label": "REGULATES", - "from": 91443914, - "to": 3706858, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484483, - "label": "REGULATES", - "from": 3712313, - "to": 91443883, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484482, - "label": "REGULATES", - "from": 91443883, - "to": 3706919, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 327590, - "label": "REGULATES", - "from": 3711445, - "to": 3717920, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484487, - "label": "REGULATES", - "from": 3712313, - "to": 91443885, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393120, - "label": "ELEMENT_OF", - "from": 3697149, - "to": 3726900, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484486, - "label": "REGULATES", - "from": 91443885, - "to": 3693744, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484491, - "label": "REGULATES", - "from": 3708153, - "to": 91443887, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484490, - "label": "REGULATES", - "from": 91443887, - "to": 3711860, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484489, - "label": "REGULATES", - "from": 3710228, - "to": 91443886, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484493, - "label": "REGULATES", - "from": 3708153, - "to": 91443888, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484492, - "label": "REGULATES", - "from": 91443888, - "to": 3719959, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484499, - "label": "REGULATES", - "from": 3712313, - "to": 91443891, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484498, - "label": "REGULATES", - "from": 91443891, - "to": 3690717, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484497, - "label": "REGULATES", - "from": 3708153, - "to": 91443890, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484496, - "label": "REGULATES", - "from": 91443890, - "to": 3690792, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393142, - "label": "ELEMENT_OF", - "from": 3702535, - "to": 3726907, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393138, - "label": "ELEMENT_OF", - "from": 3698880, - "to": 3726904, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484506, - "label": "REGULATES", - "from": 3708153, - "to": 91443895, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484505, - "label": "REGULATES", - "from": 91443895, - "to": 3693984, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393151, - "label": "ELEMENT_OF", - "from": 3687579, - "to": 3726912, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484579, - "label": "REGULATES", - "from": 3708153, - "to": 91443932, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484578, - "label": "REGULATES", - "from": 91443932, - "to": 3712139, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484583, - "label": "REGULATES", - "from": 3712313, - "to": 91443934, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484582, - "label": "REGULATES", - "from": 91443934, - "to": 3711766, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484581, - "label": "REGULATES", - "from": 3677368, - "to": 91443933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484587, - "label": "REGULATES", - "from": 3708153, - "to": 91443936, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484586, - "label": "REGULATES", - "from": 91443936, - "to": 3690664, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484585, - "label": "REGULATES", - "from": 3710208, - "to": 91443935, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484589, - "label": "REGULATES", - "from": 3708153, - "to": 91443937, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484595, - "label": "REGULATES", - "from": 3710270, - "to": 91443940, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484593, - "label": "REGULATES", - "from": 3708153, - "to": 91443939, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484592, - "label": "REGULATES", - "from": 91443939, - "to": 3702542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393181, - "label": "ELEMENT_OF", - "from": 3716624, - "to": 3726918, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484603, - "label": "REGULATES", - "from": 3712313, - "to": 91443945, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484602, - "label": "REGULATES", - "from": 91443945, - "to": 3693834, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484605, - "label": "REGULATES", - "from": 3712313, - "to": 91443946, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484604, - "label": "REGULATES", - "from": 91443946, - "to": 3712109, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484546, - "label": "REGULATES", - "from": 3712313, - "to": 91443915, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393188, - "label": "ELEMENT_OF", - "from": 3694404, - "to": 3726921, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484545, - "label": "REGULATES", - "from": 91443915, - "to": 3702543, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484544, - "label": "REGULATES", - "from": 3712313, - "to": 91443914, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484551, - "label": "REGULATES", - "from": 91443918, - "to": 3712101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393196, - "label": "ELEMENT_OF", - "from": 3695089, - "to": 3726923, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484554, - "label": "REGULATES", - "from": 3712313, - "to": 91443919, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393199, - "label": "ELEMENT_OF", - "from": 3697719, - "to": 3726925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484552, - "label": "REGULATES", - "from": 3708153, - "to": 91443918, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393198, - "label": "ELEMENT_OF", - "from": 3694198, - "to": 3726924, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484558, - "label": "REGULATES", - "from": 3708153, - "to": 91443921, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484557, - "label": "REGULATES", - "from": 91443921, - "to": 3698937, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484563, - "label": "REGULATES", - "from": 91443924, - "to": 3701511, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484562, - "label": "REGULATES", - "from": 3710270, - "to": 91443923, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484560, - "label": "REGULATES", - "from": 3707928, - "to": 91443922, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484564, - "label": "REGULATES", - "from": 3708153, - "to": 91443924, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393202, - "label": "ELEMENT_OF", - "from": 3700173, - "to": 3726926, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393213, - "label": "ELEMENT_OF", - "from": 3687582, - "to": 3726929, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484569, - "label": "REGULATES", - "from": 3712313, - "to": 91443927, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484568, - "label": "REGULATES", - "from": 91443927, - "to": 3702535, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484575, - "label": "REGULATES", - "from": 3712313, - "to": 91443930, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178484574, - "label": "REGULATES", - "from": 91443930, - "to": 3707270, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/nagAC.json b/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/nagAC.json deleted file mode 100644 index 6b716fe3be..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/nagAC.json +++ /dev/null @@ -1,714 +0,0 @@ -{ - "nodes": [ - { - "id": 3706423, - "label": "RXN0-4661", - "databaseLabel": "Reaction", - "value": 2, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3710566, - "label": "NagC-NAcGlc-6-P", - "databaseLabel": "Protein", - "value": 2, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3720436, - "label": "eutM-eutD-eutT-eutQ-eutP-eutS TU", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726181, - "label": "nagBACD TU", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726281, - "label": "nanCMS TU", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726504, - "label": "chbBCARFG TU", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3726534, - "label": "manXYZ TU", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727090, - "label": "fimB TU", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727240, - "label": "ydeNM TU", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694564, - "label": "feoAp", - "databaseLabel": "Promoter", - "value": 2, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3694620, - "label": "ydePp", - "databaseLabel": "Promoter", - "value": 2, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3729072, - "label": "creABCD TU", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729062, - "label": "feoABC TU", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3729294, - "label": "ydeP TU", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3696980, - "label": "chbBp", - "databaseLabel": "Promoter", - "value": 2, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3730324, - "label": "nanCM TU", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3699259, - "label": "ydeNp", - "databaseLabel": "Promoter", - "value": 2, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699394, - "label": "fimBp2", - "databaseLabel": "Promoter", - "value": 2, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - } - ], - "edges": [ - { - "id": 394441, - "label": "ELEMENT_OF", - "from": 3699394, - "to": 3727090, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231729, - "label": "CONSUMED_BY", - "from": 3705956, - "to": 3706423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231728, - "label": "CONSUMED_BY", - "from": 3670725, - "to": 3706423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395831, - "label": "ELEMENT_OF", - "from": 3699259, - "to": 3727240, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395832, - "label": "ELEMENT_OF", - "from": 3698851, - "to": 3727240, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 365521, - "label": "REGULATES", - "from": 3722600, - "to": 3699394, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203289, - "label": "COMPONENT_OF", - "from": 3705956, - "to": 3710566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203288, - "label": "COMPONENT_OF", - "from": 3670725, - "to": 3710566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369216, - "label": "REGULATES", - "from": 3722878, - "to": 3720436, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 370681, - "label": "REGULATES", - "from": 3723011, - "to": 3694564, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 371754, - "label": "REGULATES", - "from": 3723104, - "to": 3699259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405330, - "label": "ELEMENT_OF", - "from": 3694564, - "to": 3729062, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405351, - "label": "ELEMENT_OF", - "from": 3697541, - "to": 3729072, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405352, - "label": "ELEMENT_OF", - "from": 3699145, - "to": 3729072, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372731, - "label": "REGULATES", - "from": 3723172, - "to": 3694620, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373541, - "label": "REGULATES", - "from": 3723805, - "to": 3696980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407006, - "label": "ELEMENT_OF", - "from": 3694620, - "to": 3729294, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407007, - "label": "ELEMENT_OF", - "from": 3694101, - "to": 3729294, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376255, - "label": "REGULATES", - "from": 3724015, - "to": 3699259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 377524, - "label": "REGULATES", - "from": 3724096, - "to": 3696980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411402, - "label": "ELEMENT_OF", - "from": 3702438, - "to": 3730324, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411403, - "label": "ELEMENT_OF", - "from": 3697211, - "to": 3730324, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 383947, - "label": "ELEMENT_OF", - "from": 3701530, - "to": 3720436, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351563, - "label": "REGULATES", - "from": 3721447, - "to": 3699394, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 352140, - "label": "REGULATES", - "from": 3721538, - "to": 3694620, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386109, - "label": "ELEMENT_OF", - "from": 3694068, - "to": 3726181, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386110, - "label": "ELEMENT_OF", - "from": 3694066, - "to": 3726181, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386889, - "label": "ELEMENT_OF", - "from": 3702438, - "to": 3726281, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386890, - "label": "ELEMENT_OF", - "from": 3697211, - "to": 3726281, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388277, - "label": "ELEMENT_OF", - "from": 3696980, - "to": 3726504, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388827, - "label": "ELEMENT_OF", - "from": 3694444, - "to": 3726534, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388834, - "label": "ELEMENT_OF", - "from": 3702729, - "to": 3726534, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324999, - "label": "REGULATES", - "from": 3717671, - "to": 3694564, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/nagAC_shortestpaths.json b/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/nagAC_shortestpaths.json deleted file mode 100644 index 05c74efd34..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/nagAC_shortestpaths.json +++ /dev/null @@ -1,3670 +0,0 @@ -{ - "nodes": [ - { - "id": 11088, - "label": "nagA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 1812, - "label": "N-acetylglucosamine-6-phosphate deacetylase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 4419, - "label": "nag6pdeacet-cplx", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 6905, - "label": "N-acetylglucosamine-6-phosphate deacetylase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 2466, - "label": "EC-3.5.1.25", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 88, - "label": "D-glucosamine 6-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 444, - "label": "EC-3.1.3", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 13226, - "label": "D-glucosamine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 1108, - "label": "EC-2.7.1.191", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3208, - "label": "phosphocarrier protein HPr", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 4714, - "label": "phosphocarrier HPr-Nπ-phospho-L-histidine", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 2047, - "label": "EC-2.7.1.193", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 87, - "label": "N-acetyl-D-glucosamine 6-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 874, - "label": "RXN0-4661", - "databaseLabel": "Reaction", - "value": 2, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 11089, - "label": "nagC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 718, - "label": "DNA-binding transcriptional dual regulator NagC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3146, - "label": "NagC-NAcGlc-6-P", - "databaseLabel": "Protein", - "value": 2, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3113, - "label": "acetate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 933, - "label": "EC-6.2.1.1", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3036, - "label": "acetyl-CoA", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 1345, - "label": "EC-2.3.3.16|EC-2.3.3.1", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3150, - "label": "citrate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 2376, - "label": "EC-4.1.3.6", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 5107, - "label": "oxaloacetate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 2506, - "label": "EC-2.6.1.31", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 2899, - "label": "L-aspartate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 401, - "label": "EC-6.3.4.5", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3617, - "label": "L-arginino-succinate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 2576, - "label": "EC-4.3.2.1", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 2895, - "label": "L-arginine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3229, - "label": "ArgR-L-arginine DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 9185, - "label": "Transcription-Factor-Binding (+)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 13058, - "label": "eutS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 6784, - "label": "eutM-eutD-eutT-eutQ-eutP-eutS TU", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 8367, - "label": "Transcription-Factor-Binding", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 10799, - "label": "nagBACD TU", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 7595, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 6544, - "label": "lrp", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 1746, - "label": "DNA-binding transcriptional dual regulator Lrp", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 10269, - "label": "Transcription-Factor-Binding (+)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 12644, - "label": "nac", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3724, - "label": "DNA-binding transcriptional dual regulator Nac", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 10283, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 13286, - "label": "spf", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 6626, - "label": "small regulatory RNA Spot 42", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 2837, - "label": "RNA-Mediated-Translation-Regulation (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 13258, - "label": "nanC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 10861, - "label": "nanCMS TU", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 7822, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 12380, - "label": "nanCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 1085, - "label": "EC-2.7.1.196", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 5268, - "label": "N,N'-diacetylchitobiose 6'-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 1310, - "label": "EC-3.5.1.105", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 5266, - "label": "N-monoacetylchitobiose 6'-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3203, - "label": "ChbR-N-monoacetylchitobiose 6'-phosphate", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 9588, - "label": "Transcription-Factor-Binding (+)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 12354, - "label": "chbBp", - "databaseLabel": "Promoter", - "value": 2, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 10929, - "label": "chbBCARFG TU", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 9351, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 9786, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 13103, - "label": "hfq", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 113, - "label": "RNA-binding protein Hfq", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 10009, - "label": "Protein-Mediated-Translation-Regulation (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 13328, - "label": "manX", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 10987, - "label": "manXYZ TU", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 7069, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 11345, - "label": "manXp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 10250, - "label": "Transcription-Factor-Binding (+)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 12598, - "label": "relA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 1830, - "label": "GDP/GTP pyrophosphokinase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 9421, - "label": "GDP pyrophosphokinase", - "databaseLabel": "EnzReaction", - "value": 1, - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": 2198, - "label": "EC-2.7.6.5", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3713, - "label": "ppGpp", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3269, - "label": "DksA-ppGpp", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 4951, - "label": "Allosteric-Regulation-of-RNAP (+)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 12761, - "label": "fimBp2", - "databaseLabel": "Promoter", - "value": 2, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 11232, - "label": "fimB TU", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 7135, - "label": "Transcription-Factor-Binding (+)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 10163, - "label": "Transcription-Factor-Binding (+)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 12635, - "label": "ydeN", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 11388, - "label": "ydeNM TU", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 9448, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 12705, - "label": "ydeNp", - "databaseLabel": "Promoter", - "value": 2, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 2407, - "label": "RXN0-6375", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 2939, - "label": "pyruvate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 1918, - "label": "EC-1.2.7.1", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 724, - "label": "a reduced ferredoxin [iron-sulfur] cluster", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 1619, - "label": "EC-2.8.1.8", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 2921, - "label": "Fe2+", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3256, - "label": "Fur-Fe2+ DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 8661, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 11418, - "label": "feoAp", - "databaseLabel": "Promoter", - "value": 2, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 5403, - "label": "Transcription-Factor-Binding", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 9083, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 13074, - "label": "uvrY", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 4661, - "label": "DNA-binding transcriptional activator UvrY", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 2908, - "label": "Phosphorylated DNA-binding transcriptional activator UvrY", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 7331, - "label": "Transcription-Factor-Binding (+)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 11464, - "label": "ydePp", - "databaseLabel": "Promoter", - "value": 2, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 8772, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 9810, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 12703, - "label": "creA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 12034, - "label": "creABCD TU", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 6095, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 12476, - "label": "creAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 12043, - "label": "feoABC TU", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 9729, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 11128, - "label": "ydeP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 12174, - "label": "ydeP TU", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 12466, - "label": "nanCM TU", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 10088, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 13060, - "label": "gadX", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 1709, - "label": "DNA-binding transcriptional dual regulator GadX", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 8695, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - } - ], - "edges": [ - { - "id": 1609, - "label": "ENCODES", - "from": 11088, - "to": 1812, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 4665, - "label": "COMPONENT_OF", - "from": 1812, - "to": 4419, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 11411, - "label": "CATALYZES", - "from": 4419, - "to": 6905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 11412, - "label": "CATALYZES", - "from": 6905, - "to": 2466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 10566, - "label": "PRODUCES", - "from": 2466, - "to": 88, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 8712, - "label": "CONSUMED_BY", - "from": 88, - "to": 444, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 8709, - "label": "PRODUCES", - "from": 444, - "to": 13226, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 2443, - "label": "CONSUMED_BY", - "from": 13226, - "to": 1108, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 2442, - "label": "PRODUCES", - "from": 1108, - "to": 3208, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 2203, - "label": "MODIFIED_TO", - "from": 3208, - "to": 4714, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 5791, - "label": "CONSUMED_BY", - "from": 4714, - "to": 2047, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 5794, - "label": "PRODUCES", - "from": 2047, - "to": 87, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 660, - "label": "CONSUMED_BY", - "from": 87, - "to": 874, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 1082, - "label": "ENCODES", - "from": 11089, - "to": 718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 657, - "label": "CONSUMED_BY", - "from": 718, - "to": 874, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 2123, - "label": "COMPONENT_OF", - "from": 87, - "to": 3146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 2122, - "label": "COMPONENT_OF", - "from": 718, - "to": 3146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 10563, - "label": "PRODUCES", - "from": 2466, - "to": 3113, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 955, - "label": "CONSUMED_BY", - "from": 3113, - "to": 933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 961, - "label": "PRODUCES", - "from": 933, - "to": 3036, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 2936, - "label": "CONSUMED_BY", - "from": 3036, - "to": 1345, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 2938, - "label": "PRODUCES", - "from": 1345, - "to": 3150, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 7933, - "label": "CONSUMED_BY", - "from": 3150, - "to": 2376, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 7941, - "label": "PRODUCES", - "from": 2376, - "to": 5107, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 11470, - "label": "CONSUMED_BY", - "from": 5107, - "to": 2506, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 11475, - "label": "PRODUCES", - "from": 2506, - "to": 2899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 8102, - "label": "CONSUMED_BY", - "from": 2899, - "to": 401, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 8108, - "label": "PRODUCES", - "from": 401, - "to": 3617, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 11576, - "label": "CONSUMED_BY", - "from": 3617, - "to": 2576, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 11575, - "label": "PRODUCES", - "from": 2576, - "to": 2895, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 2185, - "label": "COMPONENT_OF", - "from": 2895, - "to": 3229, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 12801, - "label": "REGULATES", - "from": 3229, - "to": 9185, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 12802, - "label": "REGULATES", - "from": 9185, - "to": 13058, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 7447, - "label": "ELEMENT_OF", - "from": 13058, - "to": 6784, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 2791, - "label": "REGULATES", - "from": 718, - "to": 8367, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 2792, - "label": "REGULATES", - "from": 8367, - "to": 6784, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 8711, - "label": "ELEMENT_OF", - "from": 11088, - "to": 10799, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 8708, - "label": "ELEMENT_OF", - "from": 11089, - "to": 10799, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 9074, - "label": "REGULATES", - "from": 3229, - "to": 7595, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 9065, - "label": "REGULATES", - "from": 7595, - "to": 6544, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 1473, - "label": "ENCODES", - "from": 6544, - "to": 1746, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 13333, - "label": "REGULATES", - "from": 1746, - "to": 10269, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 13334, - "label": "REGULATES", - "from": 10269, - "to": 12644, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 2813, - "label": "ENCODES", - "from": 12644, - "to": 3724, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 13323, - "label": "REGULATES", - "from": 3724, - "to": 10283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 13325, - "label": "REGULATES", - "from": 10283, - "to": 13286, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 6987, - "label": "ENCODES", - "from": 13286, - "to": 6626, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 4358, - "label": "REGULATES", - "from": 6626, - "to": 2837, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 4361, - "label": "REGULATES", - "from": 2837, - "to": 13258, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 9444, - "label": "ELEMENT_OF", - "from": 13258, - "to": 10861, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 12556, - "label": "REGULATES", - "from": 718, - "to": 7822, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 12551, - "label": "REGULATES", - "from": 7822, - "to": 12380, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 9447, - "label": "ELEMENT_OF", - "from": 12380, - "to": 10861, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 1708, - "label": "CONSUMED_BY", - "from": 4714, - "to": 1085, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 1711, - "label": "PRODUCES", - "from": 1085, - "to": 5268, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 3183, - "label": "CONSUMED_BY", - "from": 5268, - "to": 1310, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 3182, - "label": "PRODUCES", - "from": 1310, - "to": 5266, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 2207, - "label": "COMPONENT_OF", - "from": 5266, - "to": 3203, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 5796, - "label": "REGULATES", - "from": 3203, - "to": 9588, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 5797, - "label": "REGULATES", - "from": 9588, - "to": 12354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 9874, - "label": "ELEMENT_OF", - "from": 12354, - "to": 10929, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 4495, - "label": "REGULATES", - "from": 718, - "to": 9351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 4492, - "label": "REGULATES", - "from": 9351, - "to": 12354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 12044, - "label": "REGULATES", - "from": 3724, - "to": 9786, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 12037, - "label": "REGULATES", - "from": 9786, - "to": 13103, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 553, - "label": "ENCODES", - "from": 13103, - "to": 113, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 12780, - "label": "REGULATES", - "from": 113, - "to": 10009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 12781, - "label": "REGULATES", - "from": 10009, - "to": 13328, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 10064, - "label": "ELEMENT_OF", - "from": 13328, - "to": 10987, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 6968, - "label": "REGULATES", - "from": 718, - "to": 7069, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 6965, - "label": "REGULATES", - "from": 7069, - "to": 11345, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 10063, - "label": "ELEMENT_OF", - "from": 11345, - "to": 10987, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 13220, - "label": "REGULATES", - "from": 1746, - "to": 10250, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 13221, - "label": "REGULATES", - "from": 10250, - "to": 12598, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 1638, - "label": "ENCODES", - "from": 12598, - "to": 1830, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 5648, - "label": "CATALYZES", - "from": 1830, - "to": 9421, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 5645, - "label": "CATALYZES", - "from": 9421, - "to": 2198, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 6678, - "label": "PRODUCES", - "from": 2198, - "to": 3713, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 2291, - "label": "COMPONENT_OF", - "from": 3713, - "to": 3269, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 3443, - "label": "REGULATES", - "from": 3269, - "to": 4951, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 3442, - "label": "REGULATES", - "from": 4951, - "to": 12761, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 357, - "label": "ELEMENT_OF", - "from": 12761, - "to": 11232, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 7586, - "label": "REGULATES", - "from": 718, - "to": 7135, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 7588, - "label": "REGULATES", - "from": 7135, - "to": 12761, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 13017, - "label": "REGULATES", - "from": 1746, - "to": 10163, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 13009, - "label": "REGULATES", - "from": 10163, - "to": 12635, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 789, - "label": "ELEMENT_OF", - "from": 12635, - "to": 11388, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 5411, - "label": "REGULATES", - "from": 718, - "to": 9448, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 5409, - "label": "REGULATES", - "from": 9448, - "to": 12705, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 781, - "label": "ELEMENT_OF", - "from": 12705, - "to": 11388, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 9452, - "label": "CONSUMED_BY", - "from": 3113, - "to": 2407, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 9456, - "label": "PRODUCES", - "from": 2407, - "to": 2939, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 5483, - "label": "CONSUMED_BY", - "from": 2939, - "to": 1918, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 5488, - "label": "PRODUCES", - "from": 1918, - "to": 724, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 4776, - "label": "CONSUMED_BY", - "from": 724, - "to": 1619, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 4782, - "label": "PRODUCES", - "from": 1619, - "to": 2921, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 2301, - "label": "COMPONENT_OF", - "from": 2921, - "to": 3256, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 3283, - "label": "REGULATES", - "from": 3256, - "to": 8661, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 3281, - "label": "REGULATES", - "from": 8661, - "to": 11418, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 11363, - "label": "REGULATES", - "from": 718, - "to": 5403, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 11362, - "label": "REGULATES", - "from": 5403, - "to": 11418, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 10333, - "label": "REGULATES", - "from": 3724, - "to": 9083, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 10332, - "label": "REGULATES", - "from": 9083, - "to": 13074, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 5598, - "label": "ENCODES", - "from": 13074, - "to": 4661, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 5595, - "label": "MODIFIED_TO", - "from": 4661, - "to": 2908, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 7797, - "label": "REGULATES", - "from": 2908, - "to": 7331, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 7798, - "label": "REGULATES", - "from": 7331, - "to": 11464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 4068, - "label": "REGULATES", - "from": 718, - "to": 8772, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 4070, - "label": "REGULATES", - "from": 8772, - "to": 11464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 12122, - "label": "REGULATES", - "from": 1746, - "to": 9810, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 12116, - "label": "REGULATES", - "from": 9810, - "to": 12703, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 4010, - "label": "ELEMENT_OF", - "from": 12703, - "to": 12034, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 1832, - "label": "REGULATES", - "from": 718, - "to": 6095, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 1835, - "label": "REGULATES", - "from": 6095, - "to": 12476, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 4006, - "label": "ELEMENT_OF", - "from": 12476, - "to": 12034, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 4002, - "label": "ELEMENT_OF", - "from": 11418, - "to": 12043, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 12419, - "label": "REGULATES", - "from": 3724, - "to": 9729, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 12420, - "label": "REGULATES", - "from": 9729, - "to": 11128, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 4800, - "label": "ELEMENT_OF", - "from": 11128, - "to": 12174, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 4799, - "label": "ELEMENT_OF", - "from": 11464, - "to": 12174, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 6257, - "label": "ELEMENT_OF", - "from": 13258, - "to": 12466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 6258, - "label": "ELEMENT_OF", - "from": 12380, - "to": 12466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 12814, - "label": "REGULATES", - "from": 3724, - "to": 10088, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 12815, - "label": "REGULATES", - "from": 10088, - "to": 13060, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 1354, - "label": "ENCODES", - "from": 13060, - "to": 1709, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 3667, - "label": "REGULATES", - "from": 1709, - "to": 8695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 3669, - "label": "REGULATES", - "from": 8695, - "to": 12705, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/nagC.json b/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/nagC.json deleted file mode 100644 index d749c51b50..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/nagC.json +++ /dev/null @@ -1,3003 +0,0 @@ -{ - "nodes": [ - { - "id": 3679801, - "label": "DNA-binding transcriptional dual regulator NagC BS", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3699259, - "label": "ydeNp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697211, - "label": "nanCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3706423, - "label": "RXN0-4661", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3696171, - "label": "galPp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3726371, - "label": "glmUS TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3685157, - "label": "DNA-binding transcriptional dual regulator NagC BS", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717671, - "label": "Transcription-Factor-Binding", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3687463, - "label": "DNA-binding transcriptional dual regulator NagC BS", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3694620, - "label": "ydePp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3723805, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3727645, - "label": "galP TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3694857, - "label": "ptsHp4", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3718922, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718926, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3729155, - "label": "nagC TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3680003, - "label": "DNA-binding transcriptional dual regulator NagC BS", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3717637, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3697671, - "label": "ptsHp5", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 91444812, - "label": "ptsHI-crr TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3687547, - "label": "DNA-binding transcriptional dual regulator NagC BS", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3722878, - "label": "Transcription-Factor-Binding", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3727487, - "label": "nagC TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3700080, - "label": "ptsHp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3678834, - "label": "DNA-binding transcriptional dual regulator NagC BS", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678583, - "label": "DNA-binding transcriptional dual regulator NagC BS", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3723112, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3694444, - "label": "manXp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3683180, - "label": "DNA-binding transcriptional dual regulator NagC BS", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3729504, - "label": "glmUS TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3705956, - "label": "DNA-binding transcriptional dual regulator NagC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3726181, - "label": "nagBACD TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3721317, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686245, - "label": "DNA-binding transcriptional dual regulator NagC BS", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3710566, - "label": "NagC-NAcGlc-6-P", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 3728720, - "label": "ptsHI-crr TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3716433, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3685459, - "label": "DNA-binding transcriptional dual regulator NagC BS", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3696980, - "label": "chbBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3719500, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717953, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3678786, - "label": "DNA-binding transcriptional dual regulator NagC BS", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721400, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3719867, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723966, - "label": "Transcription-Factor-Binding (+)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3686320, - "label": "DNA-binding transcriptional dual regulator NagC BS", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3729072, - "label": "creABCD TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3716531, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3717300, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3678903, - "label": "DNA-binding transcriptional dual regulator NagC BS", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3726504, - "label": "chbBCARFG TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3728810, - "label": "chiP-ybfN TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727531, - "label": "dinI TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3719597, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3723172, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3700134, - "label": "chiPp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3729062, - "label": "feoABC TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3721895, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3728019, - "label": "nagE TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3730324, - "label": "nanCM TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727240, - "label": "ydeNM TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3718025, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3699342, - "label": "glmUp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3729294, - "label": "ydeP TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3722383, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3687552, - "label": "DNA-binding transcriptional dual regulator NagC BS", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3697027, - "label": "glmUp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3697541, - "label": "creAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3685254, - "label": "DNA-binding transcriptional dual regulator NagC BS", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3678456, - "label": "DNA-binding transcriptional dual regulator NagC BS", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3685372, - "label": "DNA-binding transcriptional dual regulator NagC BS", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 91444155, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718128, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 91442618, - "label": "ptsHp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3721714, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3727090, - "label": "fimB TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3678707, - "label": "DNA-binding transcriptional dual regulator NagC BS", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3694068, - "label": "nagC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 3720436, - "label": "eutM-eutD-eutT-eutQ-eutP-eutS TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3724011, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3724015, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3697121, - "label": "dinIp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3686369, - "label": "DNA-binding transcriptional dual regulator NagC BS", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3699682, - "label": "nagEp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3694564, - "label": "feoAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3686118, - "label": "DNA-binding transcriptional dual regulator NagC BS", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3721447, - "label": "Transcription-Factor-Binding (+)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3722194, - "label": "Transcription-Factor-Binding (-)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3718868, - "label": "Transcription-Factor-Binding (+)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3730390, - "label": "ptsHI-crr TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3685335, - "label": "DNA-binding transcriptional dual regulator NagC BS", - "databaseLabel": "DNABindingSite", - "value": 1, - "font": { - "color": "#2dc643" - }, - "color": { - "background": "#FFFFFF", - "border": "#2dc643", - "hover": { - "background": "#FFFFFF", - "border": "#2dc643" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#2dc643" - } - } - }, - { - "id": 3726281, - "label": "nanCMS TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3727050, - "label": "ptsHI-crr TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 3718080, - "label": "Transcription-Factor-Binding (+)", - "databaseLabel": "Regulation", - "value": 1, - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": 3699904, - "label": "nagBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3699394, - "label": "fimBp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 3726534, - "label": "manXYZ TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - } - ], - "edges": [ - { - "id": 328455, - "label": "REGULATES", - "from": 3705956, - "to": 3718025, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324998, - "label": "BINDS", - "from": 3717671, - "to": 3679801, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328454, - "label": "REGULATES", - "from": 3718025, - "to": 3694857, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324999, - "label": "REGULATES", - "from": 3717671, - "to": 3694564, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328833, - "label": "REGULATES", - "from": 3705956, - "to": 3718128, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309504, - "label": "BINDS", - "from": 3716433, - "to": 3686320, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 309506, - "label": "REGULATES", - "from": 3705956, - "to": 3716433, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356367, - "label": "REGULATES", - "from": 3721895, - "to": 3700134, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356366, - "label": "BINDS", - "from": 3721895, - "to": 3678834, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 325000, - "label": "REGULATES", - "from": 3705956, - "to": 3717671, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 313225, - "label": "REGULATES", - "from": 3705956, - "to": 3716531, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324873, - "label": "BINDS", - "from": 3717637, - "to": 3685335, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402315, - "label": "ELEMENT_OF", - "from": 3699682, - "to": 3728019, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411403, - "label": "ELEMENT_OF", - "from": 3697211, - "to": 3730324, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324874, - "label": "REGULATES", - "from": 3717637, - "to": 3696171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 324875, - "label": "REGULATES", - "from": 3705956, - "to": 3717637, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178486707, - "label": "ELEMENT_OF", - "from": 91442618, - "to": 91444812, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362775, - "label": "BINDS", - "from": 3722383, - "to": 3685254, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 356368, - "label": "REGULATES", - "from": 3705956, - "to": 3721895, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348189, - "label": "REGULATES", - "from": 3721317, - "to": 3694444, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348188, - "label": "BINDS", - "from": 3721317, - "to": 3685157, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 203289, - "label": "COMPONENT_OF", - "from": 3705956, - "to": 3710566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 348190, - "label": "REGULATES", - "from": 3705956, - "to": 3721317, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362777, - "label": "REGULATES", - "from": 3705956, - "to": 3722383, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351385, - "label": "REGULATES", - "from": 3721400, - "to": 3700080, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318360, - "label": "BINDS", - "from": 3717300, - "to": 3687547, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 362776, - "label": "REGULATES", - "from": 3722383, - "to": 3699682, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 318362, - "label": "REGULATES", - "from": 3705956, - "to": 3717300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351386, - "label": "REGULATES", - "from": 3705956, - "to": 3721400, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375589, - "label": "REGULATES", - "from": 3723966, - "to": 3697027, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373541, - "label": "REGULATES", - "from": 3723805, - "to": 3696980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375588, - "label": "BINDS", - "from": 3723966, - "to": 3685459, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373540, - "label": "BINDS", - "from": 3723805, - "to": 3678707, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178482433, - "label": "BINDS", - "from": 91444155, - "to": 3686118, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372263, - "label": "REGULATES", - "from": 3723112, - "to": 3699342, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 375590, - "label": "REGULATES", - "from": 3705956, - "to": 3723966, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 373542, - "label": "REGULATES", - "from": 3705956, - "to": 3723805, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 408869, - "label": "ELEMENT_OF", - "from": 3697027, - "to": 3729504, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340257, - "label": "REGULATES", - "from": 3705956, - "to": 3719500, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333100, - "label": "REGULATES", - "from": 3705956, - "to": 3718922, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 402989, - "label": "ELEMENT_OF", - "from": 3697671, - "to": 3728720, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372264, - "label": "REGULATES", - "from": 3705956, - "to": 3723112, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333099, - "label": "REGULATES", - "from": 3718922, - "to": 3697541, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333098, - "label": "BINDS", - "from": 3718922, - "to": 3678456, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388277, - "label": "ELEMENT_OF", - "from": 3696980, - "to": 3726504, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 395831, - "label": "ELEMENT_OF", - "from": 3699259, - "to": 3727240, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 231729, - "label": "CONSUMED_BY", - "from": 3705956, - "to": 3706423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376241, - "label": "REGULATES", - "from": 3705956, - "to": 3724011, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376240, - "label": "REGULATES", - "from": 3724011, - "to": 3697671, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386109, - "label": "ELEMENT_OF", - "from": 3694068, - "to": 3726181, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 411582, - "label": "ELEMENT_OF", - "from": 3700080, - "to": 3730390, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376255, - "label": "REGULATES", - "from": 3724015, - "to": 3699259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369215, - "label": "BINDS", - "from": 3722878, - "to": 3687463, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 398652, - "label": "ELEMENT_OF", - "from": 3697121, - "to": 3727531, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376254, - "label": "BINDS", - "from": 3724015, - "to": 3678903, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333113, - "label": "BINDS", - "from": 3718926, - "to": 3683180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485022, - "label": "REGULATES", - "from": 3705956, - "to": 91444155, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 333115, - "label": "REGULATES", - "from": 3705956, - "to": 3718926, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 178485021, - "label": "REGULATES", - "from": 91444155, - "to": 91442618, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369217, - "label": "REGULATES", - "from": 3705956, - "to": 3722878, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354241, - "label": "REGULATES", - "from": 3705956, - "to": 3721714, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 376256, - "label": "REGULATES", - "from": 3705956, - "to": 3724015, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 369216, - "label": "REGULATES", - "from": 3722878, - "to": 3720436, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 354240, - "label": "REGULATES", - "from": 3721714, - "to": 3697121, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351564, - "label": "REGULATES", - "from": 3705956, - "to": 3721447, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 353999, - "label": "BINDS", - "from": 3721714, - "to": 3680003, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351563, - "label": "REGULATES", - "from": 3721447, - "to": 3699394, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 351562, - "label": "BINDS", - "from": 3721447, - "to": 3678583, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 387402, - "label": "ELEMENT_OF", - "from": 3685459, - "to": 3726371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 386890, - "label": "ELEMENT_OF", - "from": 3697211, - "to": 3726281, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 394441, - "label": "ELEMENT_OF", - "from": 3699394, - "to": 3727090, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 403286, - "label": "ELEMENT_OF", - "from": 3700134, - "to": 3728810, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328657, - "label": "REGULATES", - "from": 3705956, - "to": 3718080, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405330, - "label": "ELEMENT_OF", - "from": 3694564, - "to": 3729062, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 399953, - "label": "ELEMENT_OF", - "from": 3696171, - "to": 3727645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 407006, - "label": "ELEMENT_OF", - "from": 3694620, - "to": 3729294, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 388827, - "label": "ELEMENT_OF", - "from": 3694444, - "to": 3726534, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332900, - "label": "BINDS", - "from": 3718868, - "to": 3687552, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 405351, - "label": "ELEMENT_OF", - "from": 3697541, - "to": 3729072, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 332902, - "label": "REGULATES", - "from": 3705956, - "to": 3718868, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 393829, - "label": "ELEMENT_OF", - "from": 3694857, - "to": 3727050, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 406114, - "label": "ELEMENT_OF", - "from": 3694068, - "to": 3729155, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 200421, - "label": "ENCODES", - "from": 3694068, - "to": 3705956, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340853, - "label": "REGULATES", - "from": 3705956, - "to": 3719597, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 340852, - "label": "REGULATES", - "from": 3719597, - "to": 3699904, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 397810, - "label": "ELEMENT_OF", - "from": 3694068, - "to": 3727487, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345201, - "label": "BINDS", - "from": 3719867, - "to": 3678786, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 345203, - "label": "REGULATES", - "from": 3705956, - "to": 3719867, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359421, - "label": "REGULATES", - "from": 3722194, - "to": 3697211, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372732, - "label": "REGULATES", - "from": 3705956, - "to": 3723172, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359420, - "label": "BINDS", - "from": 3722194, - "to": 3686245, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328191, - "label": "REGULATES", - "from": 3705956, - "to": 3717953, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 328831, - "label": "BINDS", - "from": 3718128, - "to": 3686369, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 359422, - "label": "REGULATES", - "from": 3705956, - "to": 3722194, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372731, - "label": "REGULATES", - "from": 3723172, - "to": 3694620, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 372730, - "label": "BINDS", - "from": 3723172, - "to": 3685372, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/putrescine.json b/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/putrescine.json deleted file mode 100644 index e1babc1398..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/putrescine.json +++ /dev/null @@ -1,8952 +0,0 @@ -{ - "nodes": [ - { - "id": 90282339, - "label": "bglH-yieLK", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90282850, - "label": "yjcF", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90276709, - "label": "ybgC-tolQRA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372455, - "label": "flhDC", - "databaseLabel": "TranscriptionUnit", - "value": 7, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351463, - "label": "CsgD", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90363236, - "label": "ycgB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90287979, - "label": "ybcK", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90245997, - "label": "DNA-binding transcriptional repressor LexA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90371437, - "label": "yjhIHG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372467, - "label": "yobF-cspC", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90360179, - "label": "rirA-waaQGPSBOJYZU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90360182, - "label": "waaQGPSBOJYZU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90071880, - "label": "pstS", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90279286, - "label": "argG", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90370421, - "label": "yfjW", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90274680, - "label": "InsAB' transposase", - "databaseLabel": "GeneProduct", - "value": 7, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90291066, - "label": "nagBAC-umpH", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90269562, - "label": "DUF1971 domain-containing protein YeaR", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90277754, - "label": "tyrB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90369870, - "label": "insA-5AB-5B-5", - "databaseLabel": "TranscriptionUnit", - "value": 28, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90271568, - "label": "putative ABC transporter periplasmic binding protein YphF", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90185042, - "label": "iscR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90281817, - "label": "ytfQRT-yjfF", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90356570, - "label": "edd-eda", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350939, - "label": "MprA", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90301272, - "label": "pstCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90350943, - "label": "ArgR", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90276702, - "label": "sspAB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90356515, - "label": "pstSCAB-phoU", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90277664, - "label": "lexA-dinF", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90371875, - "label": "mreB", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90071325, - "label": "nusG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90371873, - "label": "mreB", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90366758, - "label": "ymfH-xisE-intE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90275109, - "label": "ygaC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90369831, - "label": "yobF-cspC", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90260772, - "label": "protein YgaC", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90274596, - "label": "OppA5'", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350884, - "label": "PhoP", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90371876, - "label": "mreB", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90370344, - "label": "yphFED", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371369, - "label": "ytfQRT-yjfF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351406, - "label": "LeuO", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90071314, - "label": "nusA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90260781, - "label": "stress protein, member of the CspA family", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350899, - "label": "NarL", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90276658, - "label": "secE-nusG", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90287925, - "label": "sfmHF", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90351927, - "label": "MlrA", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90275127, - "label": "cmk-rpsA-ihfB", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90350904, - "label": "NarP", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90253626, - "label": "Tol-Pal system protein TolA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90072323, - "label": "pstA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90175295, - "label": "yobF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90276609, - "label": "rpoZ-spoT-trmH-recG", - "databaseLabel": "Operon", - "value": 4, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372355, - "label": "pstSCA", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90290947, - "label": "ibaG-murA", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372352, - "label": "pstS", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90102076, - "label": "yjcF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90369793, - "label": "yeaR-yoaG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90299141, - "label": "insA-5p", - "databaseLabel": "Promoter", - "value": 7, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90372358, - "label": "rph", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90265861, - "label": "DLP12 prophage; putative recombinase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90248968, - "label": "DNA-binding transcriptional dual regulator NagC", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90351371, - "label": "Cra", - "databaseLabel": "TranscriptionFactor", - "value": 3, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90279695, - "label": "rplKAJL-rpoBC", - "databaseLabel": "Operon", - "value": 6, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90276628, - "label": "rpsLG-fusA-tufA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90353940, - "label": "metY-rimP-nusA-infB-rbfA-truB-rpsO-pnp", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90073896, - "label": "sspA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351390, - "label": "GatR", - "databaseLabel": "TranscriptionFactor", - "value": 7, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90371870, - "label": "mreBCD", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371871, - "label": "mreBCD", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90284515, - "label": "yphFED", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90359782, - "label": "rplKAJL-rpoBC", - "databaseLabel": "TranscriptionUnit", - "value": 6, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90128858, - "label": "gatC", - "databaseLabel": "Gene", - "value": 7, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90074072, - "label": "tolA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372581, - "label": "ybgC-tolQRA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90259438, - "label": "pentapeptide repeat-containing protein YjcF", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90284016, - "label": "ygiF-glnE", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90084812, - "label": "leuL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351095, - "label": "GntR", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90109896, - "label": "ygaC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90371064, - "label": "yicC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90352124, - "label": "YjjQ", - "databaseLabel": "TranscriptionFactor", - "value": 21, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90252739, - "label": "glycine betaine ABC transporter periplasmic binding protein ProX", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90359233, - "label": "glpR", - "databaseLabel": "TranscriptionUnit", - "value": 7, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90283458, - "label": "yicC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90355657, - "label": "flhDC", - "databaseLabel": "TranscriptionUnit", - "value": 14, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90257869, - "label": "putative glucosamine-6-phosphate deaminase YieK", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90255820, - "label": "leu operon leader peptide", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90279375, - "label": "gatYZABCD", - "databaseLabel": "Operon", - "value": 7, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90249169, - "label": "transcription termination/antitermination protein NusA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90351570, - "label": "KdgR", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90356691, - "label": "fliFGHIJK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90357204, - "label": "rpoD", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90274775, - "label": "IS1 transposase B", - "databaseLabel": "GeneProduct", - "value": 7, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90095081, - "label": "yieK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90357205, - "label": "rpoD", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90276310, - "label": "edd-eda", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90356693, - "label": "fliLMNOPQR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90109924, - "label": "cspC", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90274781, - "label": "IS5 transposase and trans-activator", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90274780, - "label": "IS1 repressor TnpA", - "databaseLabel": "GeneProduct", - "value": 7, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90249182, - "label": "transcription termination factor NusG", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90359202, - "label": "nmpC", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90246561, - "label": "SEDS family protein MrdB", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90274722, - "label": "IS1 protein InsA", - "databaseLabel": "GeneProduct", - "value": 7, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90275234, - "label": "proVWX", - "databaseLabel": "Operon", - "value": 4, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90351014, - "label": "NagC", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90269607, - "label": "DUF2527 domain-containing protein YobF", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90359210, - "label": "cmk-rpsA", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90357166, - "label": "rpsU-dnaG-rpoD", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90249134, - "label": "DLP12 prophage; outer membrane porin NmpC (pseudogene)", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90296238, - "label": "essDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90357170, - "label": "rpsU-dnaG-rpoD", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90273205, - "label": "KpLE2 phage-like element; D-xylonate dehydratase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90290613, - "label": "insAB-5A-5B-5", - "databaseLabel": "Operon", - "value": 28, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90359222, - "label": "glpEGR", - "databaseLabel": "TranscriptionUnit", - "value": 7, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90246581, - "label": "dynamic cytoskeletal protein MreB", - "databaseLabel": "GeneProduct", - "value": 5, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90277301, - "label": "stpA", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90090379, - "label": "glnE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90252727, - "label": "glycine betaine ABC transporter ATP binding subunit ProV", - "databaseLabel": "GeneProduct", - "value": 3, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372538, - "label": "pstCAB-phoU", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90072967, - "label": "rph", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90359225, - "label": "glpGR", - "databaseLabel": "TranscriptionUnit", - "value": 7, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90209211, - "label": "insAB-5", - "databaseLabel": "Gene", - "value": 7, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90359230, - "label": "glpR", - "databaseLabel": "TranscriptionUnit", - "value": 7, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90357180, - "label": "rpoD", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90352006, - "label": "MatA", - "databaseLabel": "TranscriptionFactor", - "value": 21, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90136506, - "label": "fliK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90352009, - "label": "FliZ", - "databaseLabel": "TranscriptionFactor", - "value": 21, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90359186, - "label": "metY-rimP-nusA-infB-rbfA-truB-rpsO-pnp", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371986, - "label": "rpoD", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90253712, - "label": "tyrosine aminotransferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90286999, - "label": "mdtJI", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90280343, - "label": "ycgB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90290582, - "label": "metY-rimP-nusA-infB-rbfA-truB-rpsO-pnp", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90072486, - "label": "pykF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372507, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90300824, - "label": "flhDp2", - "databaseLabel": "Promoter", - "value": 7, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90185116, - "label": "yphF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90352542, - "label": "fliLMNOPQR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90276255, - "label": "pykF", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90234977, - "label": "DNA-binding transcriptional repressor GlpR", - "databaseLabel": "GeneProduct", - "value": 7, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350688, - "label": "CRP", - "databaseLabel": "TranscriptionFactor", - "value": 41, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90356833, - "label": "rplJL-rpoBC", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90365537, - "label": "rsfS-rlmH-mrdAB-rlpA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90358375, - "label": "metY-rimP-nusA-infB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90085976, - "label": "murA", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90286701, - "label": "yeaR-yoaG", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372717, - "label": "leuLABCD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356848, - "label": "rpoZ-spoT-trmH-recG", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90354807, - "label": "lexA-dinF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356853, - "label": "rpsLG-fusA-tufA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90271350, - "label": "DNA-binding transcriptional dual regulator IscR", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90080325, - "label": "tyrB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90350718, - "label": "H-NS", - "databaseLabel": "TranscriptionFactor", - "value": 28, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90286716, - "label": "yobF-cspC", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90356863, - "label": "secE-nusG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356860, - "label": "rpsU-dnaG-rpoD", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90253381, - "label": "30S ribosomal subunit protein S1", - "databaseLabel": "GeneProduct", - "value": 3, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90352197, - "label": "Fur", - "databaseLabel": "TranscriptionFactor", - "value": 22, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90276425, - "label": "glpEGR", - "databaseLabel": "Operon", - "value": 7, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90073203, - "label": "rpoC", - "databaseLabel": "Gene", - "value": 3, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90288723, - "label": "ymfH-xisE-intE", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90253395, - "label": "30S ribosomal subunit protein S7", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90073197, - "label": "rpoB", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90138731, - "label": "ybcK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90102378, - "label": "fliR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90293844, - "label": "rphp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90256471, - "label": "PF04293 family protein YcgB", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90294870, - "label": "nmpCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90277464, - "label": "pstSCAB-phoU", - "databaseLabel": "Operon", - "value": 4, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90369625, - "label": "mdtJI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350687, - "label": "FNR", - "databaseLabel": "TranscriptionFactor", - "value": 4, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90356831, - "label": "rph-pyrE", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90251871, - "label": "phosphate ABC transporter periplasmic binding protein", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90277408, - "label": "leuLABCD", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90262560, - "label": "galactitol-specific PTS enzyme IIC component", - "databaseLabel": "GeneProduct", - "value": 7, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90175517, - "label": "insA-5", - "databaseLabel": "Gene", - "value": 7, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90085914, - "label": "waaS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351652, - "label": "NsrR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90356773, - "label": "rimP-nusA-infB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90175512, - "label": "insB-5", - "databaseLabel": "Gene", - "value": 7, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90081305, - "label": "crl", - "databaseLabel": "Gene", - "value": 7, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351146, - "label": "HdfR", - "databaseLabel": "TranscriptionFactor", - "value": 21, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90352171, - "label": "IHF", - "databaseLabel": "TranscriptionFactor", - "value": 34, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90275371, - "label": "rpsU-dnaG-rpoD", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90359350, - "label": "proVWX", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371127, - "label": "bglH-yieLK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350645, - "label": "Fis", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90359349, - "label": "proVWX", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351162, - "label": "QseB", - "databaseLabel": "TranscriptionFactor", - "value": 21, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90353720, - "label": "argG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90253371, - "label": "RNA polymerase subunit β'", - "databaseLabel": "GeneProduct", - "value": 3, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90359352, - "label": "proVWX", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90253370, - "label": "RNA polymerase subunit β", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350654, - "label": "TyrR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90253372, - "label": "RNA polymerase, sigma 70 (sigma D) factor", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90256959, - "label": "fused glutamine synthetase deadenylase/glutamine synthetase adenylyltransferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90253312, - "label": "truncated RNase PH", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90276355, - "label": "nmpC", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90252805, - "label": "phosphate ABC transporter membrane subunit PstA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90138683, - "label": "sfmH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90359302, - "label": "rpsA-ihfB", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90359301, - "label": "rpsA-ihfB", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90365450, - "label": "sfmHF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90271755, - "label": "CP4-57 prophage; uncharacterized protein YfjW", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372110, - "label": "nagC", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90277905, - "label": "flhDC", - "databaseLabel": "Operon", - "value": 21, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90365458, - "label": "ybcK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90352656, - "label": "iscRSUA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90282002, - "label": "yjhIHG", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90351633, - "label": "AcrR", - "databaseLabel": "TranscriptionFactor", - "value": 21, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90356759, - "label": "mreBCD", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372116, - "label": "nagC", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90294297, - "label": "stpAp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90294296, - "label": "stpAp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90071075, - "label": "nagC", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90355229, - "label": "tyrB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90290919, - "label": "rsfS-rlmH-mrdAB-rlpA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90265833, - "label": "putative fimbrial adhesin protein SfmH", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350826, - "label": "MarA", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90359529, - "label": "ygaC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90361582, - "label": "fliFGHIJK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350829, - "label": "IscR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90073809, - "label": "spoT", - "databaseLabel": "Gene", - "value": 4, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90259694, - "label": "flagellar biosynthesis protein FliR", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90217203, - "label": "argininosuccinate synthetase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90264821, - "label": "flagellar hook-length control protein", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90356471, - "label": "leuLABCD", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90253556, - "label": "stringent starvation protein A", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90354423, - "label": "rpoBC", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90370804, - "label": "murA", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90361588, - "label": "essD-rrrD-rzpD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90256118, - "label": "UDP-N-acetylglucosamine 1-carboxyvinyltransferase", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90276604, - "label": "rph-pyrE", - "databaseLabel": "Operon", - "value": 4, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90212034, - "label": "oppA5'", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351808, - "label": "StpA", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90277574, - "label": "fliFGHIJK", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90275016, - "label": "iscRSUA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90129139, - "label": "ytfR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90073328, - "label": "rpsG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90350797, - "label": "Lrp", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90088689, - "label": "ycgB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90070762, - "label": "mreB", - "databaseLabel": "Gene", - "value": 5, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 66467905, - "label": "argG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90290390, - "label": "mreBCD", - "databaseLabel": "Operon", - "value": 5, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90071270, - "label": "nmpC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90256089, - "label": "lipopolysaccharide core biosynthesis protein", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90299609, - "label": "yicCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90070759, - "label": "mrdB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90371294, - "label": "yjcF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356958, - "label": "stpA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356959, - "label": "stpA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90253535, - "label": "bifunctional (p)ppGpp synthase/hydrolase SpoT", - "databaseLabel": "GeneProduct", - "value": 4, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372770, - "label": "leuL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356898, - "label": "ybgC-tolQRA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90261664, - "label": "e14 prophage; putative integrase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90175134, - "label": "yeaR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90185382, - "label": "yfjW", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90073241, - "label": "rpoD", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90290856, - "label": "essD-rrrD-rzpD", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90215083, - "label": "insB9", - "databaseLabel": "Gene", - "value": 7, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90215084, - "label": "insA9", - "databaseLabel": "Gene", - "value": 7, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90350767, - "label": "LrhA", - "databaseLabel": "TranscriptionFactor", - "value": 21, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90350771, - "label": "ArcA", - "databaseLabel": "TranscriptionFactor", - "value": 7, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90215089, - "label": "insH21", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90203314, - "label": "yjhG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90072203, - "label": "proV", - "databaseLabel": "Gene", - "value": 3, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90068104, - "label": "glpR", - "databaseLabel": "Gene", - "value": 7, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90355899, - "label": "gatYZABCD", - "databaseLabel": "TranscriptionUnit", - "value": 7, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90128517, - "label": "intE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90262659, - "label": "galactofuranose ABC transporter putative ATP binding subunit", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350726, - "label": "SoxS", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90284679, - "label": "yfjW", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90352260, - "label": "FlhDC", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90372234, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90354827, - "label": "nagBAC-umpH", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90352264, - "label": "RcsAB", - "databaseLabel": "TranscriptionFactor", - "value": 21, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90252938, - "label": "pyruvate kinase I", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372237, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372755, - "label": "ibaG-murA", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90073263, - "label": "rpsA", - "databaseLabel": "Gene", - "value": 3, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90291344, - "label": "rirA-waaQGPSBOJYZU", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90350736, - "label": "PhoB", - "databaseLabel": "TranscriptionFactor", - "value": 6, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90352273, - "label": "OmpR", - "databaseLabel": "TranscriptionFactor", - "value": 23, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90070182, - "label": "lexA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90356891, - "label": "sspAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351259, - "label": "LexA", - "databaseLabel": "TranscriptionFactor", - "value": 3, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90358424, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372249, - "label": "gatZABCD", - "databaseLabel": "TranscriptionUnit", - "value": 7, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90253978, - "label": "RNA polymerase holoenzyme assembly factor Crl", - "databaseLabel": "GeneProduct", - "value": 7, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90370718, - "label": "ygiF-glnE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90072227, - "label": "proX", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90274975, - "label": "fliLMNOPQR", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - } - ], - "edges": [ - { - "id": 177511573, - "label": "ELEMENT_OF", - "from": 90356471, - "to": 90277408, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513104, - "label": "ELEMENT_OF", - "from": 90366758, - "to": 90288723, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532560, - "label": "ELEMENT_OF", - "from": 90175517, - "to": 90369870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532561, - "label": "ELEMENT_OF", - "from": 90209211, - "to": 90369870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534620, - "label": "ELEMENT_OF", - "from": 90085976, - "to": 90372755, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522841, - "label": "REGULATES", - "from": 90276355, - "to": 90350939, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518235, - "label": "ENCODES", - "from": 90175517, - "to": 90274722, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533575, - "label": "ELEMENT_OF", - "from": 90129139, - "to": 90371369, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513600, - "label": "ELEMENT_OF", - "from": 90370421, - "to": 90284679, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515650, - "label": "ENCODES", - "from": 90073896, - "to": 90253556, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512077, - "label": "ELEMENT_OF", - "from": 90359529, - "to": 90275109, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534606, - "label": "ELEMENT_OF", - "from": 90084812, - "to": 90372717, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523343, - "label": "REGULATES", - "from": 90277905, - "to": 90351146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532559, - "label": "ELEMENT_OF", - "from": 90175512, - "to": 90369870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529994, - "label": "ELEMENT_OF", - "from": 90074072, - "to": 90356898, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509514, - "label": "ELEMENT_OF", - "from": 90293844, - "to": 90356831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511563, - "label": "ELEMENT_OF", - "from": 90355899, - "to": 90279375, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530549, - "label": "ELEMENT_OF", - "from": 90072203, - "to": 90359350, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530550, - "label": "ELEMENT_OF", - "from": 90072227, - "to": 90359350, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530545, - "label": "ELEMENT_OF", - "from": 90072203, - "to": 90359349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530547, - "label": "ELEMENT_OF", - "from": 90072227, - "to": 90359349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534140, - "label": "ELEMENT_OF", - "from": 90071075, - "to": 90372116, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509564, - "label": "ELEMENT_OF", - "from": 90294297, - "to": 90356959, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530552, - "label": "ELEMENT_OF", - "from": 90072203, - "to": 90359352, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523385, - "label": "REGULATES", - "from": 90277905, - "to": 90351162, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530553, - "label": "ELEMENT_OF", - "from": 90072227, - "to": 90359352, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534139, - "label": "ELEMENT_OF", - "from": 90071075, - "to": 90372110, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519291, - "label": "REGULATES", - "from": 90286701, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509563, - "label": "ELEMENT_OF", - "from": 90294296, - "to": 90356958, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524388, - "label": "REGULATES", - "from": 90286701, - "to": 90351652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512614, - "label": "ELEMENT_OF", - "from": 90363236, - "to": 90280343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515680, - "label": "ENCODES", - "from": 90074072, - "to": 90253626, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529505, - "label": "ELEMENT_OF", - "from": 90072323, - "to": 90356515, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529507, - "label": "ELEMENT_OF", - "from": 90071880, - "to": 90356515, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522851, - "label": "REGULATES", - "from": 90279286, - "to": 90350943, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511596, - "label": "ELEMENT_OF", - "from": 90356515, - "to": 90277464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534632, - "label": "ELEMENT_OF", - "from": 90084812, - "to": 90372770, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522856, - "label": "REGULATES", - "from": 90290582, - "to": 90350943, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533609, - "label": "ELEMENT_OF", - "from": 90203314, - "to": 90371437, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533141, - "label": "ELEMENT_OF", - "from": 90090379, - "to": 90370718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521370, - "label": "REGULATES", - "from": 90277905, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511620, - "label": "ELEMENT_OF", - "from": 90356570, - "to": 90276310, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510596, - "label": "ELEMENT_OF", - "from": 90299609, - "to": 90371064, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519297, - "label": "REGULATES", - "from": 90290582, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515713, - "label": "ENCODES", - "from": 90080325, - "to": 90253712, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522370, - "label": "REGULATES", - "from": 90275016, - "to": 90350829, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523917, - "label": "REGULATES", - "from": 90276255, - "to": 90351371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523918, - "label": "REGULATES", - "from": 90276310, - "to": 90351371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521359, - "label": "REGULATES", - "from": 90277301, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521352, - "label": "REGULATES", - "from": 90275234, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516233, - "label": "ENCODES", - "from": 90090379, - "to": 90256959, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524938, - "label": "REGULATES", - "from": 90277905, - "to": 90352124, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515210, - "label": "ENCODES", - "from": 90070182, - "to": 90245997, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530100, - "label": "ELEMENT_OF", - "from": 90073241, - "to": 90357180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515764, - "label": "ENCODES", - "from": 90081305, - "to": 90253978, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511668, - "label": "ELEMENT_OF", - "from": 90356693, - "to": 90274975, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530101, - "label": "ELEMENT_OF", - "from": 90073241, - "to": 90357204, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530102, - "label": "ELEMENT_OF", - "from": 90073241, - "to": 90357205, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514231, - "label": "ELEMENT_OF", - "from": 90371876, - "to": 90290390, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530097, - "label": "ELEMENT_OF", - "from": 90073241, - "to": 90357170, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525502, - "label": "REGULATES", - "from": 90277905, - "to": 90352197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521401, - "label": "REGULATES", - "from": 90286999, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532155, - "label": "ELEMENT_OF", - "from": 90128517, - "to": 90366758, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514747, - "label": "ENCODES", - "from": 66467905, - "to": 90217203, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516774, - "label": "ENCODES", - "from": 90109924, - "to": 90260781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529056, - "label": "ELEMENT_OF", - "from": 90073203, - "to": 90354423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529057, - "label": "ELEMENT_OF", - "from": 90073197, - "to": 90354423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516771, - "label": "ENCODES", - "from": 90109896, - "to": 90260772, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525475, - "label": "REGULATES", - "from": 90275109, - "to": 90352197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512163, - "label": "ELEMENT_OF", - "from": 90359782, - "to": 90279695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530095, - "label": "ELEMENT_OF", - "from": 90073241, - "to": 90357166, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511953, - "label": "ELEMENT_OF", - "from": 90359222, - "to": 90276425, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515538, - "label": "ENCODES", - "from": 90072967, - "to": 90253312, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534483, - "label": "ELEMENT_OF", - "from": 90072323, - "to": 90372538, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514525, - "label": "ELEMENT_OF", - "from": 90372581, - "to": 90276709, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524767, - "label": "REGULATES", - "from": 90277905, - "to": 90352006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514015, - "label": "ELEMENT_OF", - "from": 90371369, - "to": 90281817, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510939, - "label": "ELEMENT_OF", - "from": 90300824, - "to": 90372455, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530884, - "label": "ELEMENT_OF", - "from": 90085914, - "to": 90360182, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530374, - "label": "ELEMENT_OF", - "from": 90071270, - "to": 90359202, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511943, - "label": "ELEMENT_OF", - "from": 90359202, - "to": 90276355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519111, - "label": "ENCODES", - "from": 90209211, - "to": 90274680, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532929, - "label": "ELEMENT_OF", - "from": 90185382, - "to": 90370421, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525763, - "label": "REGULATES", - "from": 90276355, - "to": 90352273, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524227, - "label": "REGULATES", - "from": 90276310, - "to": 90351570, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512974, - "label": "ELEMENT_OF", - "from": 90365537, - "to": 90290919, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525263, - "label": "REGULATES", - "from": 90277905, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525768, - "label": "REGULATES", - "from": 90277905, - "to": 90352273, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516552, - "label": "ENCODES", - "from": 90102076, - "to": 90259438, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511433, - "label": "ELEMENT_OF", - "from": 90354807, - "to": 90277664, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514506, - "label": "ELEMENT_OF", - "from": 90372538, - "to": 90277464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530379, - "label": "ELEMENT_OF", - "from": 90073263, - "to": 90359210, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520183, - "label": "REGULATES", - "from": 90277464, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515575, - "label": "ENCODES", - "from": 90073263, - "to": 90253381, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522737, - "label": "REGULATES", - "from": 90286701, - "to": 90350904, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515569, - "label": "ENCODES", - "from": 90073197, - "to": 90253370, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515570, - "label": "ENCODES", - "from": 90073203, - "to": 90253371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511986, - "label": "ELEMENT_OF", - "from": 90359301, - "to": 90275127, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524787, - "label": "REGULATES", - "from": 90277905, - "to": 90352009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515571, - "label": "ENCODES", - "from": 90073241, - "to": 90253372, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515581, - "label": "ENCODES", - "from": 90073328, - "to": 90253395, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531454, - "label": "ELEMENT_OF", - "from": 90088689, - "to": 90363236, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529919, - "label": "ELEMENT_OF", - "from": 90073809, - "to": 90356848, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514040, - "label": "ELEMENT_OF", - "from": 90371437, - "to": 90282002, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534010, - "label": "ELEMENT_OF", - "from": 90073241, - "to": 90371986, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534523, - "label": "ELEMENT_OF", - "from": 90074072, - "to": 90372581, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511483, - "label": "ELEMENT_OF", - "from": 90355229, - "to": 90277754, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529892, - "label": "ELEMENT_OF", - "from": 90073203, - "to": 90356833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531941, - "label": "ELEMENT_OF", - "from": 90070759, - "to": 90365537, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530406, - "label": "ELEMENT_OF", - "from": 90068104, - "to": 90359225, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530407, - "label": "ELEMENT_OF", - "from": 90068104, - "to": 90359230, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529889, - "label": "ELEMENT_OF", - "from": 90072967, - "to": 90356831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530403, - "label": "ELEMENT_OF", - "from": 90068104, - "to": 90359222, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529891, - "label": "ELEMENT_OF", - "from": 90073197, - "to": 90356833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519651, - "label": "REGULATES", - "from": 90277754, - "to": 90350654, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528876, - "label": "ELEMENT_OF", - "from": 66467905, - "to": 90353720, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520685, - "label": "REGULATES", - "from": 90291066, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530408, - "label": "ELEMENT_OF", - "from": 90068104, - "to": 90359233, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516585, - "label": "ENCODES", - "from": 90102378, - "to": 90259694, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529941, - "label": "ELEMENT_OF", - "from": 90073328, - "to": 90356853, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533521, - "label": "ELEMENT_OF", - "from": 90102076, - "to": 90371294, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532511, - "label": "ELEMENT_OF", - "from": 90175134, - "to": 90369793, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524294, - "label": "REGULATES", - "from": 90277905, - "to": 90351633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515078, - "label": "ENCODES", - "from": 90068104, - "to": 90234977, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510470, - "label": "ELEMENT_OF", - "from": 90299141, - "to": 90369870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510977, - "label": "ELEMENT_OF", - "from": 90301272, - "to": 90372538, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519182, - "label": "ENCODES", - "from": 90212034, - "to": 90274596, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529416, - "label": "ELEMENT_OF", - "from": 90128858, - "to": 90355899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512008, - "label": "ELEMENT_OF", - "from": 90359349, - "to": 90275234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512010, - "label": "ELEMENT_OF", - "from": 90359352, - "to": 90275234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529974, - "label": "ELEMENT_OF", - "from": 90073896, - "to": 90356891, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515639, - "label": "ENCODES", - "from": 90073809, - "to": 90253535, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532528, - "label": "ELEMENT_OF", - "from": 90175295, - "to": 90369831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528944, - "label": "ELEMENT_OF", - "from": 90071314, - "to": 90353940, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519216, - "label": "ENCODES", - "from": 90215083, - "to": 90274775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532529, - "label": "ELEMENT_OF", - "from": 90109924, - "to": 90369831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519217, - "label": "ENCODES", - "from": 90215084, - "to": 90274780, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519218, - "label": "ENCODES", - "from": 90215089, - "to": 90274781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530493, - "label": "ELEMENT_OF", - "from": 90073263, - "to": 90359302, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518206, - "label": "ENCODES", - "from": 90175295, - "to": 90269607, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516154, - "label": "ENCODES", - "from": 90088689, - "to": 90256471, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530491, - "label": "ELEMENT_OF", - "from": 90073263, - "to": 90359301, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520740, - "label": "REGULATES", - "from": 90290582, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529445, - "label": "ELEMENT_OF", - "from": 90084812, - "to": 90356471, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529959, - "label": "ELEMENT_OF", - "from": 90071325, - "to": 90356863, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521760, - "label": "REGULATES", - "from": 90277905, - "to": 90350767, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529953, - "label": "ELEMENT_OF", - "from": 90073241, - "to": 90356860, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513571, - "label": "ELEMENT_OF", - "from": 90370344, - "to": 90284515, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522275, - "label": "REGULATES", - "from": 90291344, - "to": 90350826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518189, - "label": "ENCODES", - "from": 90175134, - "to": 90269562, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511531, - "label": "ELEMENT_OF", - "from": 90355657, - "to": 90277905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515409, - "label": "ENCODES", - "from": 90071880, - "to": 90251871, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513873, - "label": "ELEMENT_OF", - "from": 90371064, - "to": 90283458, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511324, - "label": "ELEMENT_OF", - "from": 90353940, - "to": 90290582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516958, - "label": "ENCODES", - "from": 90128858, - "to": 90262560, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513375, - "label": "ELEMENT_OF", - "from": 90369870, - "to": 90290613, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530266, - "label": "ELEMENT_OF", - "from": 90071314, - "to": 90358375, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521050, - "label": "REGULATES", - "from": 90277905, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511815, - "label": "ELEMENT_OF", - "from": 90357180, - "to": 90275371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522575, - "label": "REGULATES", - "from": 90286701, - "to": 90350899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518987, - "label": "ENCODES", - "from": 90203314, - "to": 90273205, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518516, - "label": "ENCODES", - "from": 90185116, - "to": 90271568, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521078, - "label": "REGULATES", - "from": 90279375, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523638, - "label": "REGULATES", - "from": 90277664, - "to": 90351259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515446, - "label": "ENCODES", - "from": 90072203, - "to": 90252727, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523634, - "label": "REGULATES", - "from": 90275371, - "to": 90351259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521075, - "label": "REGULATES", - "from": 90279286, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530291, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90358424, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530808, - "label": "ELEMENT_OF", - "from": 90073197, - "to": 90359782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515448, - "label": "ENCODES", - "from": 90072227, - "to": 90252739, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530809, - "label": "ELEMENT_OF", - "from": 90073203, - "to": 90359782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518502, - "label": "ENCODES", - "from": 90185042, - "to": 90271350, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515936, - "label": "ENCODES", - "from": 90084812, - "to": 90255820, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529248, - "label": "ELEMENT_OF", - "from": 90080325, - "to": 90355229, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513898, - "label": "ELEMENT_OF", - "from": 90371127, - "to": 90282339, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525675, - "label": "REGULATES", - "from": 90277574, - "to": 90352260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532886, - "label": "ELEMENT_OF", - "from": 90185116, - "to": 90370344, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525206, - "label": "REGULATES", - "from": 90275234, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515479, - "label": "ENCODES", - "from": 90072486, - "to": 90252938, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533392, - "label": "ELEMENT_OF", - "from": 90095081, - "to": 90371127, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518546, - "label": "ENCODES", - "from": 90185382, - "to": 90271755, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525203, - "label": "REGULATES", - "from": 90275127, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511901, - "label": "ELEMENT_OF", - "from": 90358424, - "to": 90276255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534424, - "label": "ELEMENT_OF", - "from": 90175295, - "to": 90372467, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534425, - "label": "ELEMENT_OF", - "from": 90109924, - "to": 90372467, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515457, - "label": "ENCODES", - "from": 90072323, - "to": 90252805, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529793, - "label": "ELEMENT_OF", - "from": 90070762, - "to": 90356759, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516995, - "label": "ENCODES", - "from": 90129139, - "to": 90262659, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533900, - "label": "ELEMENT_OF", - "from": 90070762, - "to": 90371873, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512396, - "label": "ELEMENT_OF", - "from": 90361582, - "to": 90277574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533901, - "label": "ELEMENT_OF", - "from": 90070762, - "to": 90371875, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533902, - "label": "ELEMENT_OF", - "from": 90070762, - "to": 90371876, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512399, - "label": "ELEMENT_OF", - "from": 90361588, - "to": 90290856, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533896, - "label": "ELEMENT_OF", - "from": 90070762, - "to": 90371870, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533897, - "label": "ELEMENT_OF", - "from": 90070762, - "to": 90371871, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510900, - "label": "ELEMENT_OF", - "from": 90293844, - "to": 90372358, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525237, - "label": "REGULATES", - "from": 90276355, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523189, - "label": "REGULATES", - "from": 90276310, - "to": 90351095, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530869, - "label": "ELEMENT_OF", - "from": 90085914, - "to": 90360179, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531888, - "label": "ELEMENT_OF", - "from": 90138683, - "to": 90365450, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525246, - "label": "REGULATES", - "from": 90277464, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534463, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90372507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530361, - "label": "ELEMENT_OF", - "from": 90071314, - "to": 90359186, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531897, - "label": "ELEMENT_OF", - "from": 90138731, - "to": 90365458, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513978, - "label": "ELEMENT_OF", - "from": 90371294, - "to": 90282850, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521636, - "label": "REGULATES", - "from": 90277464, - "to": 90350736, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514470, - "label": "ELEMENT_OF", - "from": 90372467, - "to": 90286716, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517542, - "label": "ENCODES", - "from": 90138731, - "to": 90265861, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525728, - "label": "REGULATES", - "from": 90274975, - "to": 90352260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517538, - "label": "ENCODES", - "from": 90138683, - "to": 90265833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521634, - "label": "REGULATES", - "from": 90276310, - "to": 90350736, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514466, - "label": "ELEMENT_OF", - "from": 90372455, - "to": 90277905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516002, - "label": "ENCODES", - "from": 90085914, - "to": 90256089, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529838, - "label": "ELEMENT_OF", - "from": 90071314, - "to": 90356773, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512942, - "label": "ELEMENT_OF", - "from": 90365458, - "to": 90287979, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524719, - "label": "REGULATES", - "from": 90290947, - "to": 90351927, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525736, - "label": "REGULATES", - "from": 90277905, - "to": 90352264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512937, - "label": "ELEMENT_OF", - "from": 90365450, - "to": 90287925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516010, - "label": "ENCODES", - "from": 90085976, - "to": 90256118, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522154, - "label": "REGULATES", - "from": 90277301, - "to": 90350797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515284, - "label": "ENCODES", - "from": 90070759, - "to": 90246561, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515285, - "label": "ENCODES", - "from": 90070762, - "to": 90246581, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512213, - "label": "ELEMENT_OF", - "from": 90360182, - "to": 90291344, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528599, - "label": "ELEMENT_OF", - "from": 90185042, - "to": 90352656, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520913, - "label": "REGULATES", - "from": 90276425, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521438, - "label": "REGULATES", - "from": 90291344, - "to": 90350726, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517343, - "label": "ENCODES", - "from": 90136506, - "to": 90264821, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534232, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90372234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534233, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90372237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513734, - "label": "ELEMENT_OF", - "from": 90370718, - "to": 90284016, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528576, - "label": "ELEMENT_OF", - "from": 90102378, - "to": 90352542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523971, - "label": "REGULATES", - "from": 90279375, - "to": 90351390, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511171, - "label": "ELEMENT_OF", - "from": 90352656, - "to": 90275016, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520909, - "label": "REGULATES", - "from": 90276355, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533193, - "label": "ELEMENT_OF", - "from": 90085976, - "to": 90370804, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510153, - "label": "ELEMENT_OF", - "from": 90296238, - "to": 90361588, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511732, - "label": "ELEMENT_OF", - "from": 90356853, - "to": 90276628, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531190, - "label": "ELEMENT_OF", - "from": 90136506, - "to": 90361582, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511728, - "label": "ELEMENT_OF", - "from": 90356848, - "to": 90276609, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515313, - "label": "ENCODES", - "from": 90071075, - "to": 90248968, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516350, - "label": "ENCODES", - "from": 90095081, - "to": 90257869, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513278, - "label": "ELEMENT_OF", - "from": 90369625, - "to": 90286999, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511737, - "label": "ELEMENT_OF", - "from": 90356863, - "to": 90276658, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530681, - "label": "ELEMENT_OF", - "from": 90109896, - "to": 90359529, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534244, - "label": "ELEMENT_OF", - "from": 90128858, - "to": 90372249, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521956, - "label": "REGULATES", - "from": 90279375, - "to": 90350771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524006, - "label": "REGULATES", - "from": 90277408, - "to": 90351406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511720, - "label": "ELEMENT_OF", - "from": 90356831, - "to": 90276604, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511721, - "label": "ELEMENT_OF", - "from": 90356833, - "to": 90279695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513770, - "label": "ELEMENT_OF", - "from": 90370804, - "to": 90290947, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514326, - "label": "ELEMENT_OF", - "from": 90372116, - "to": 90291066, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515344, - "label": "ENCODES", - "from": 90071325, - "to": 90249182, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511775, - "label": "ELEMENT_OF", - "from": 90356958, - "to": 90277301, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529176, - "label": "ELEMENT_OF", - "from": 90071075, - "to": 90354827, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511744, - "label": "ELEMENT_OF", - "from": 90356891, - "to": 90276702, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523009, - "label": "REGULATES", - "from": 90291066, - "to": 90351014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529164, - "label": "ELEMENT_OF", - "from": 90070182, - "to": 90354807, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515342, - "label": "ENCODES", - "from": 90071314, - "to": 90249169, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515336, - "label": "ENCODES", - "from": 90071270, - "to": 90249134, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534324, - "label": "ELEMENT_OF", - "from": 90072967, - "to": 90372358, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524086, - "label": "REGULATES", - "from": 90277574, - "to": 90351463, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534321, - "label": "ELEMENT_OF", - "from": 90071880, - "to": 90372355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511294, - "label": "ELEMENT_OF", - "from": 90353720, - "to": 90279286, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516920, - "label": "ENCODES", - "from": 90128517, - "to": 90261664, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513339, - "label": "ELEMENT_OF", - "from": 90369793, - "to": 90286701, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524583, - "label": "REGULATES", - "from": 90277301, - "to": 90351808, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509728, - "label": "ELEMENT_OF", - "from": 90294870, - "to": 90359202, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511776, - "label": "ELEMENT_OF", - "from": 90356959, - "to": 90277301, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529697, - "label": "ELEMENT_OF", - "from": 90136506, - "to": 90356691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522530, - "label": "REGULATES", - "from": 90291066, - "to": 90350884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529708, - "label": "ELEMENT_OF", - "from": 90102378, - "to": 90356693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534318, - "label": "ELEMENT_OF", - "from": 90071880, - "to": 90372352, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534319, - "label": "ELEMENT_OF", - "from": 90072323, - "to": 90372355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/serine.json b/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/serine.json deleted file mode 100644 index 1b0143df20..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/serine.json +++ /dev/null @@ -1,3700 +0,0 @@ -{ - "nodes": [ - { - "id": 90281315, - "label": "ytfB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90350688, - "label": "CRP", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90356833, - "label": "rplJL-rpoBC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351201, - "label": "GcvA", - "databaseLabel": "TranscriptionFactor", - "value": 3, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90350693, - "label": "Mlc", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90271080, - "label": "formyl-CoA transferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 68117253, - "label": "aroP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90359408, - "label": "aroKB-damX-dam-rpe-gph-trpS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90359415, - "label": "aroKB-damX-dam-rpe-gph-trpS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356853, - "label": "rpsLG-fusA-tufA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90359419, - "label": "damX-dam-rpe-gph-trpS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90359422, - "label": "dam-rpe-gph-trpS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350718, - "label": "H-NS", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90069314, - "label": "gshA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90291068, - "label": "yfdX-frc-oxc-yfdVE", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90359420, - "label": "dam-rpe-gph-trpS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90262654, - "label": "serine/alanine/glycine/cycloserine:H+symporter", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90281281, - "label": "yodD", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90371904, - "label": "eno", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90135675, - "label": "gcvB", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90371911, - "label": "eno", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90246214, - "label": "DNA-binding transcriptional activator MalT", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350661, - "label": "ArgP", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90281803, - "label": "cycA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90229325, - "label": "aromatic amino acid:H+ symporter AroP", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90355283, - "label": "malT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90292560, - "label": "lrpp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90278227, - "label": "gcvR", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90073197, - "label": "rpoB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90245973, - "label": "maltose outer membrane porin / phage lambda receptor protein", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90275159, - "label": "aroP", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90350933, - "label": "EvgA", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90274902, - "label": "argP", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90274905, - "label": "lrp", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90264413, - "label": "GcvB", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90253601, - "label": "fused aspartate kinase/homoserine dehydrogenase 1", - "databaseLabel": "GeneProduct", - "value": 3, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90294048, - "label": "rhoLp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90104605, - "label": "yojI", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90359329, - "label": "aroP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351142, - "label": "MalT", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90363172, - "label": "ytfB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351652, - "label": "NsrR", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90370090, - "label": "yojI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90275369, - "label": "aroKB-damX-dam-rpe-gph-trpS", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90281514, - "label": "pyrG-eno", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90292532, - "label": "gcvAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90290999, - "label": "ybhP-clsB-ybhN", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90273335, - "label": "ribulose-phosphate 3-epimerase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90267195, - "label": "conserved inner membrane protein YbhN", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90253370, - "label": "RNA polymerase subunit β", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90080261, - "label": "tufA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372153, - "label": "tufA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350654, - "label": "TyrR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90371903, - "label": "eno", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90284805, - "label": "gshA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90235142, - "label": "glutamate—cysteine ligase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90361354, - "label": "yfdX-frc-oxc-yfdVE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351371, - "label": "Cra", - "databaseLabel": "TranscriptionFactor", - "value": 3, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90353935, - "label": "gcvB", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90279692, - "label": "rhoL-rho", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90279695, - "label": "rplKAJL-rpoBC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90232337, - "label": "enolase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90371350, - "label": "cycA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90276628, - "label": "rpsLG-fusA-tufA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90260503, - "label": "ABC transporter family protein / microcin J25 efflux protein", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90360084, - "label": "gcvR", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90277399, - "label": "gcvA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90294809, - "label": "gcvRp", - "databaseLabel": "Promoter", - "value": 2, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90285852, - "label": "yojI", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90277404, - "label": "thrLABC", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90354658, - "label": "aroP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356449, - "label": "gcvA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90359782, - "label": "rplKAJL-rpoBC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90205932, - "label": "rpe", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351086, - "label": "GadE", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90145488, - "label": "ybhN", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 87173283, - "label": "eno", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90356470, - "label": "thrLABC", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90354423, - "label": "rpoBC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90363131, - "label": "yodD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356473, - "label": "lrp", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90299388, - "label": "ytfBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90361340, - "label": "frc", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90365639, - "label": "ybhP-clsB-ybhN", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90070262, - "label": "lrp", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90072816, - "label": "rho", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90350797, - "label": "Lrp", - "databaseLabel": "TranscriptionFactor", - "value": 4, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90372557, - "label": "tufA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90129129, - "label": "cycA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90269910, - "label": "stress-induced protein", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90246106, - "label": "DNA-binding transcriptional dual regulator Lrp", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90074011, - "label": "thrA", - "databaseLabel": "Gene", - "value": 3, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90278055, - "label": "gcvB", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90070168, - "label": "lamB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90359717, - "label": "rhoL-rho", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90277807, - "label": "malK-lamB-malM", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90070410, - "label": "malT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90069899, - "label": "argP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90236854, - "label": "DNA-binding transcriptional dual regulator ArgP", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372793, - "label": "rhoL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372286, - "label": "pyrG-eno", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372284, - "label": "eno", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90253246, - "label": "transcription termination factor Rho", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90355586, - "label": "malK-lamB-malM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90359424, - "label": "rpe-gph-trpS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372234, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90277768, - "label": "malT", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90253704, - "label": "translation elongation factor Tu 1", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90252938, - "label": "pyruvate kinase I", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90370447, - "label": "gshA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90359436, - "label": "argP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372237, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90359698, - "label": "pyrG-eno", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90359699, - "label": "pyrG-eno", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350736, - "label": "PhoB", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90175656, - "label": "yodD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372506, - "label": "eno", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90072486, - "label": "pykF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372507, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90358424, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372505, - "label": "eno", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90353566, - "label": "fusA-tufA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90181021, - "label": "frc", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90276255, - "label": "pykF", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - } - ], - "edges": [ - { - "id": 177511572, - "label": "ELEMENT_OF", - "from": 90356470, - "to": 90277404, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531029, - "label": "ELEMENT_OF", - "from": 90181021, - "to": 90361354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511575, - "label": "ELEMENT_OF", - "from": 90356473, - "to": 90274905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515671, - "label": "ENCODES", - "from": 90074011, - "to": 90253601, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522833, - "label": "REGULATES", - "from": 90291068, - "to": 90350933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512594, - "label": "ELEMENT_OF", - "from": 90363172, - "to": 90281315, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531027, - "label": "ELEMENT_OF", - "from": 90181021, - "to": 90361340, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530520, - "label": "ELEMENT_OF", - "from": 68117253, - "to": 90359329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511323, - "label": "ELEMENT_OF", - "from": 90353935, - "to": 90278055, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512580, - "label": "ELEMENT_OF", - "from": 90363131, - "to": 90281281, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521031, - "label": "REGULATES", - "from": 90277768, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511565, - "label": "ELEMENT_OF", - "from": 90356449, - "to": 90277399, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521038, - "label": "REGULATES", - "from": 90277807, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524366, - "label": "REGULATES", - "from": 90274905, - "to": 90351652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513614, - "label": "ELEMENT_OF", - "from": 90370447, - "to": 90284805, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511048, - "label": "ELEMENT_OF", - "from": 90294048, - "to": 90372793, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523127, - "label": "REGULATES", - "from": 90274905, - "to": 90351086, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530291, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90358424, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515709, - "label": "ENCODES", - "from": 90080261, - "to": 90253704, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521342, - "label": "REGULATES", - "from": 90274905, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530808, - "label": "ELEMENT_OF", - "from": 90073197, - "to": 90359782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514937, - "label": "ENCODES", - "from": 87173283, - "to": 90232337, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529252, - "label": "ELEMENT_OF", - "from": 90070410, - "to": 90355283, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530788, - "label": "ELEMENT_OF", - "from": 87173283, - "to": 90359699, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518247, - "label": "ENCODES", - "from": 90175656, - "to": 90269910, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515168, - "label": "ENCODES", - "from": 90069899, - "to": 90236854, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530786, - "label": "ELEMENT_OF", - "from": 87173283, - "to": 90359698, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530799, - "label": "ELEMENT_OF", - "from": 90072816, - "to": 90359717, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515479, - "label": "ENCODES", - "from": 90072486, - "to": 90252938, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522131, - "label": "REGULATES", - "from": 90285852, - "to": 90350797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534163, - "label": "ELEMENT_OF", - "from": 90080261, - "to": 90372153, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511901, - "label": "ELEMENT_OF", - "from": 90358424, - "to": 90276255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512157, - "label": "ELEMENT_OF", - "from": 90359717, - "to": 90279692, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529311, - "label": "ELEMENT_OF", - "from": 90070168, - "to": 90355586, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515224, - "label": "ENCODES", - "from": 90070262, - "to": 90246106, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521627, - "label": "REGULATES", - "from": 90274902, - "to": 90350736, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522139, - "label": "REGULATES", - "from": 90274905, - "to": 90350797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515205, - "label": "ENCODES", - "from": 90070168, - "to": 90245973, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519040, - "label": "ENCODES", - "from": 90205932, - "to": 90273335, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523904, - "label": "REGULATES", - "from": 90281514, - "to": 90351371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516993, - "label": "ENCODES", - "from": 90129129, - "to": 90262654, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517260, - "label": "ENCODES", - "from": 90135675, - "to": 90264413, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523917, - "label": "REGULATES", - "from": 90276255, - "to": 90351371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521102, - "label": "REGULATES", - "from": 90277768, - "to": 90350693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523912, - "label": "REGULATES", - "from": 90275159, - "to": 90351371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522165, - "label": "REGULATES", - "from": 90277768, - "to": 90350797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530615, - "label": "ELEMENT_OF", - "from": 90205932, - "to": 90359420, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530610, - "label": "ELEMENT_OF", - "from": 90205932, - "to": 90359419, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530621, - "label": "ELEMENT_OF", - "from": 90205932, - "to": 90359424, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534461, - "label": "ELEMENT_OF", - "from": 87173283, - "to": 90372505, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534462, - "label": "ELEMENT_OF", - "from": 87173283, - "to": 90372506, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528830, - "label": "ELEMENT_OF", - "from": 90080261, - "to": 90353566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534463, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90372507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530618, - "label": "ELEMENT_OF", - "from": 90205932, - "to": 90359422, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515239, - "label": "ENCODES", - "from": 90070410, - "to": 90246214, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533920, - "label": "ELEMENT_OF", - "from": 87173283, - "to": 90371903, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529057, - "label": "ELEMENT_OF", - "from": 90073197, - "to": 90354423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533921, - "label": "ELEMENT_OF", - "from": 87173283, - "to": 90371904, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530594, - "label": "ELEMENT_OF", - "from": 90205932, - "to": 90359408, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533922, - "label": "ELEMENT_OF", - "from": 87173283, - "to": 90371911, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530605, - "label": "ELEMENT_OF", - "from": 90205932, - "to": 90359415, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532950, - "label": "ELEMENT_OF", - "from": 90069314, - "to": 90370447, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529104, - "label": "ELEMENT_OF", - "from": 68117253, - "to": 90354658, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514512, - "label": "ELEMENT_OF", - "from": 90372557, - "to": 90276628, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509395, - "label": "ELEMENT_OF", - "from": 90292560, - "to": 90356473, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531420, - "label": "ELEMENT_OF", - "from": 90175656, - "to": 90363131, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534492, - "label": "ELEMENT_OF", - "from": 90080261, - "to": 90372557, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534232, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90372234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514009, - "label": "ELEMENT_OF", - "from": 90371350, - "to": 90281803, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534233, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90372237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530629, - "label": "ELEMENT_OF", - "from": 90069899, - "to": 90359436, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512198, - "label": "ELEMENT_OF", - "from": 90360084, - "to": 90278227, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515520, - "label": "ENCODES", - "from": 90072816, - "to": 90253246, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513475, - "label": "ELEMENT_OF", - "from": 90370090, - "to": 90285852, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514243, - "label": "ELEMENT_OF", - "from": 90371904, - "to": 90281514, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509385, - "label": "ELEMENT_OF", - "from": 90292532, - "to": 90356449, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514763, - "label": "ENCODES", - "from": 68117253, - "to": 90229325, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534261, - "label": "ELEMENT_OF", - "from": 87173283, - "to": 90372286, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532720, - "label": "ELEMENT_OF", - "from": 90104605, - "to": 90370090, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515569, - "label": "ENCODES", - "from": 90073197, - "to": 90253370, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513010, - "label": "ELEMENT_OF", - "from": 90365639, - "to": 90290999, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534259, - "label": "ELEMENT_OF", - "from": 87173283, - "to": 90372284, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511487, - "label": "ELEMENT_OF", - "from": 90355283, - "to": 90277768, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511999, - "label": "ELEMENT_OF", - "from": 90359329, - "to": 90275159, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519648, - "label": "REGULATES", - "from": 90275159, - "to": 90350654, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523489, - "label": "REGULATES", - "from": 90278055, - "to": 90351201, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523490, - "label": "REGULATES", - "from": 90277399, - "to": 90351201, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529891, - "label": "ELEMENT_OF", - "from": 90073197, - "to": 90356833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509935, - "label": "ELEMENT_OF", - "from": 90294048, - "to": 90359717, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511721, - "label": "ELEMENT_OF", - "from": 90356833, - "to": 90279695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529942, - "label": "ELEMENT_OF", - "from": 90080261, - "to": 90356853, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518416, - "label": "ENCODES", - "from": 90181021, - "to": 90271080, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531997, - "label": "ELEMENT_OF", - "from": 90145488, - "to": 90365639, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511518, - "label": "ELEMENT_OF", - "from": 90355586, - "to": 90277807, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512031, - "label": "ELEMENT_OF", - "from": 90359415, - "to": 90275369, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510232, - "label": "ELEMENT_OF", - "from": 90299388, - "to": 90363172, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509976, - "label": "ELEMENT_OF", - "from": 90294809, - "to": 90360084, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515096, - "label": "ENCODES", - "from": 90069314, - "to": 90235142, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517637, - "label": "ENCODES", - "from": 90145488, - "to": 90267195, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519681, - "label": "REGULATES", - "from": 90274902, - "to": 90350661, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523273, - "label": "REGULATES", - "from": 90277807, - "to": 90351142, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516662, - "label": "ENCODES", - "from": 90104605, - "to": 90260503, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533564, - "label": "ELEMENT_OF", - "from": 90129129, - "to": 90371350, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529440, - "label": "ELEMENT_OF", - "from": 90074011, - "to": 90356470, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514604, - "label": "ELEMENT_OF", - "from": 90372793, - "to": 90279692, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528941, - "label": "ELEMENT_OF", - "from": 90135675, - "to": 90353935, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512296, - "label": "ELEMENT_OF", - "from": 90361340, - "to": 90291068, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512040, - "label": "ELEMENT_OF", - "from": 90359436, - "to": 90274902, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529448, - "label": "ELEMENT_OF", - "from": 90070262, - "to": 90356473, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/tpiA.json b/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/tpiA.json deleted file mode 100644 index 2983ae9b2d..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/tpiA.json +++ /dev/null @@ -1,3861 +0,0 @@ -{ - "nodes": [ - { - "id": 90350688, - "label": "CRP", - "databaseLabel": "TranscriptionFactor", - "value": 15, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90356833, - "label": "rplJL-rpoBC", - "databaseLabel": "TranscriptionUnit", - "value": 7, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90295138, - "label": "phoBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90350693, - "label": "Mlc", - "databaseLabel": "TranscriptionFactor", - "value": 7, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90256498, - "label": "o-succinylbenzoate synthase", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90291066, - "label": "nagBAC-umpH", - "databaseLabel": "Operon", - "value": 5, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90350718, - "label": "H-NS", - "databaseLabel": "TranscriptionFactor", - "value": 4, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90088768, - "label": "menC", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90234751, - "label": "DNA-binding transcriptional dual regulator GalR", - "databaseLabel": "GeneProduct", - "value": 3, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90067839, - "label": "galR", - "databaseLabel": "Gene", - "value": 3, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90270789, - "label": "putative colanic acid biosynthesis glycosyl transferase", - "databaseLabel": "GeneProduct", - "value": 5, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90132344, - "label": "rrfB", - "databaseLabel": "Gene", - "value": 4, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90073203, - "label": "rpoC", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90263889, - "label": "5S ribosomal RNA", - "databaseLabel": "GeneProduct", - "value": 4, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90073197, - "label": "rpoB", - "databaseLabel": "Gene", - "value": 5, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90251858, - "label": "sensory histidine kinase PhoR", - "databaseLabel": "GeneProduct", - "value": 3, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90277464, - "label": "pstSCAB-phoU", - "databaseLabel": "Operon", - "value": 8, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90350687, - "label": "FNR", - "databaseLabel": "TranscriptionFactor", - "value": 8, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90356831, - "label": "rph-pyrE", - "databaseLabel": "TranscriptionUnit", - "value": 10, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90291039, - "label": "nemRA-gloA", - "databaseLabel": "Operon", - "value": 6, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90277470, - "label": "wza-wzb-wzc-wcaAB", - "databaseLabel": "Operon", - "value": 5, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90352418, - "label": "ptsG", - "databaseLabel": "TranscriptionUnit", - "value": 7, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356515, - "label": "pstSCAB-phoU", - "databaseLabel": "TranscriptionUnit", - "value": 8, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90353184, - "label": "nagE", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90071067, - "label": "nagE", - "databaseLabel": "Gene", - "value": 3, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90350884, - "label": "PhoP", - "databaseLabel": "TranscriptionFactor", - "value": 5, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90252839, - "label": "YnfM3'", - "databaseLabel": "GeneProduct", - "value": 7, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90352421, - "label": "ptsG", - "databaseLabel": "TranscriptionUnit", - "value": 7, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90071833, - "label": "phoB", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90290473, - "label": "menFDHBCE", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90352171, - "label": "IHF", - "databaseLabel": "TranscriptionFactor", - "value": 9, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90356524, - "label": "wza-wzb-wzc-wcaAB", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90071057, - "label": "nagA", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90354477, - "label": "galR", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90360882, - "label": "glk", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90072335, - "label": "pstC", - "databaseLabel": "Gene", - "value": 4, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90277683, - "label": "phoBR", - "databaseLabel": "Operon", - "value": 7, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90299187, - "label": "glkp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90350645, - "label": "Fis", - "databaseLabel": "TranscriptionFactor", - "value": 11, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90352442, - "label": "rrsB-gltT-rrlB-rrfB", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90253371, - "label": "RNA polymerase subunit β'", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90253370, - "label": "RNA polymerase subunit β", - "databaseLabel": "GeneProduct", - "value": 5, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372158, - "label": "menDHBCE", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90072323, - "label": "pstA", - "databaseLabel": "Gene", - "value": 4, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372355, - "label": "pstSCA", - "databaseLabel": "TranscriptionUnit", - "value": 8, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90253312, - "label": "truncated RNase PH", - "databaseLabel": "GeneProduct", - "value": 5, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90248962, - "label": "N-acetylglucosamine specific PTS enzyme IIABC component", - "databaseLabel": "GeneProduct", - "value": 3, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90252805, - "label": "phosphate ABC transporter membrane subunit PstA", - "databaseLabel": "GeneProduct", - "value": 4, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372358, - "label": "rph", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90297348, - "label": "nagCp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90248968, - "label": "DNA-binding transcriptional dual regulator NagC", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90251784, - "label": "DNA-binding transcriptional dual regulator PhoB", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90351371, - "label": "Cra", - "databaseLabel": "TranscriptionFactor", - "value": 4, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90087220, - "label": "corA", - "databaseLabel": "Gene", - "value": 5, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90356744, - "label": "menFDHBCE", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90071858, - "label": "phoR", - "databaseLabel": "Gene", - "value": 3, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372110, - "label": "nagC", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90102323, - "label": "htrE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90270732, - "label": "CP4-44 prophage; IS5 transposase and trans-activator", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90279695, - "label": "rplKAJL-rpoBC", - "databaseLabel": "Operon", - "value": 7, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372116, - "label": "nagC", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371605, - "label": "insH-6", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90252825, - "label": "phosphate ABC transporter membrane subunit PstC", - "databaseLabel": "GeneProduct", - "value": 4, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90361369, - "label": "nagA", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90071075, - "label": "nagC", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90072353, - "label": "ptsG", - "databaseLabel": "Gene", - "value": 7, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90352925, - "label": "rrsB-gltT-rrlB-rrfB", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351842, - "label": "NemR", - "databaseLabel": "TranscriptionFactor", - "value": 6, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90278369, - "label": "galR", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372067, - "label": "rrlB-rrfB", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371808, - "label": "nemR", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90359782, - "label": "rplKAJL-rpoBC", - "databaseLabel": "TranscriptionUnit", - "value": 7, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371814, - "label": "nemA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90256359, - "label": "Ni2+/Co2+/Mg2+ transporter", - "databaseLabel": "GeneProduct", - "value": 5, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90277360, - "label": "corA", - "databaseLabel": "Operon", - "value": 5, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90356982, - "label": "yadV-htrE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90354423, - "label": "rpoBC", - "databaseLabel": "TranscriptionUnit", - "value": 7, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372343, - "label": "nemRA", - "databaseLabel": "TranscriptionUnit", - "value": 6, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356983, - "label": "yadV-htrE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90276604, - "label": "rph-pyrE", - "databaseLabel": "Operon", - "value": 10, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90295292, - "label": "glkp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90354880, - "label": "phoBR", - "databaseLabel": "TranscriptionUnit", - "value": 7, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90259655, - "label": "putative fimbrial usher protein HtrE", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90175990, - "label": "insH-6", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90236622, - "label": "type I restriction enzyme EcoKI endonuclease component", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90176241, - "label": "wcaA", - "databaseLabel": "Gene", - "value": 5, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90350797, - "label": "Lrp", - "databaseLabel": "TranscriptionFactor", - "value": 4, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90372822, - "label": "nemRA-gloA", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90248916, - "label": "N-acetylglucosamine-6-phosphate deacetylase", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90290910, - "label": "yadV-htrE", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90288544, - "label": "insH-6", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90269346, - "label": "DNA-binding transcriptional repressor NemR", - "databaseLabel": "GeneProduct", - "value": 3, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90351014, - "label": "NagC", - "databaseLabel": "TranscriptionFactor", - "value": 8, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90269349, - "label": "N-ethylmaleimide reductase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90174356, - "label": "nemA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90174355, - "label": "nemR", - "databaseLabel": "Gene", - "value": 3, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351794, - "label": "RutR", - "databaseLabel": "TranscriptionFactor", - "value": 6, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90350771, - "label": "ArcA", - "databaseLabel": "TranscriptionFactor", - "value": 7, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90069644, - "label": "hsdR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90289330, - "label": "hsdRMS", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90279095, - "label": "nagE", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372538, - "label": "pstCAB-phoU", - "databaseLabel": "TranscriptionUnit", - "value": 8, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90072967, - "label": "rph", - "databaseLabel": "Gene", - "value": 5, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90356667, - "label": "yadV-htrE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90299581, - "label": "nemRp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90353854, - "label": "menBCE", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90279555, - "label": "glk", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90351233, - "label": "GalS", - "databaseLabel": "TranscriptionFactor", - "value": 3, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90350726, - "label": "SoxS", - "databaseLabel": "TranscriptionFactor", - "value": 7, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90351238, - "label": "GalR", - "databaseLabel": "TranscriptionFactor", - "value": 3, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90357383, - "label": "corA", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372234, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90354827, - "label": "nagBAC-umpH", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90352264, - "label": "RcsAB", - "databaseLabel": "TranscriptionFactor", - "value": 5, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90252938, - "label": "pyruvate kinase I", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90274956, - "label": "ptsG", - "databaseLabel": "Operon", - "value": 7, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372237, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350736, - "label": "PhoB", - "databaseLabel": "TranscriptionFactor", - "value": 15, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90281367, - "label": "rrsB-gltT-rrlB-rrfB", - "databaseLabel": "Operon", - "value": 4, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90072486, - "label": "pykF", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372507, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90358424, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372255, - "label": "glk", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90276255, - "label": "pykF", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90371741, - "label": "hsdRMS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - } - ], - "edges": [ - { - "id": 177509269, - "label": "ELEMENT_OF", - "from": 90295138, - "to": 90354880, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515408, - "label": "ENCODES", - "from": 90071858, - "to": 90251858, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511057, - "label": "ELEMENT_OF", - "from": 90299581, - "to": 90372822, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510802, - "label": "ELEMENT_OF", - "from": 90297348, - "to": 90372116, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523858, - "label": "REGULATES", - "from": 90279555, - "to": 90351371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531038, - "label": "ELEMENT_OF", - "from": 90071057, - "to": 90361369, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511833, - "label": "ELEMENT_OF", - "from": 90357383, - "to": 90277360, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521024, - "label": "REGULATES", - "from": 90279095, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515137, - "label": "ENCODES", - "from": 90069644, - "to": 90236622, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533836, - "label": "ELEMENT_OF", - "from": 90174355, - "to": 90371808, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533837, - "label": "ELEMENT_OF", - "from": 90174356, - "to": 90371814, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514382, - "label": "ELEMENT_OF", - "from": 90372255, - "to": 90279555, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516169, - "label": "ENCODES", - "from": 90088768, - "to": 90256498, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524619, - "label": "REGULATES", - "from": 90291039, - "to": 90351842, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515403, - "label": "ENCODES", - "from": 90071833, - "to": 90251784, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517195, - "label": "ENCODES", - "from": 90132344, - "to": 90263889, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519285, - "label": "REGULATES", - "from": 90281367, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528496, - "label": "ELEMENT_OF", - "from": 90072353, - "to": 90352418, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528497, - "label": "ELEMENT_OF", - "from": 90072353, - "to": 90352421, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511601, - "label": "ELEMENT_OF", - "from": 90356524, - "to": 90277470, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514418, - "label": "ELEMENT_OF", - "from": 90372343, - "to": 90291039, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529522, - "label": "ELEMENT_OF", - "from": 90176241, - "to": 90356524, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530291, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90358424, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514172, - "label": "ELEMENT_OF", - "from": 90371741, - "to": 90289330, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534140, - "label": "ELEMENT_OF", - "from": 90071075, - "to": 90372116, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530808, - "label": "ELEMENT_OF", - "from": 90073197, - "to": 90359782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530809, - "label": "ELEMENT_OF", - "from": 90073203, - "to": 90359782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534139, - "label": "ELEMENT_OF", - "from": 90071075, - "to": 90372110, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528507, - "label": "ELEMENT_OF", - "from": 90132344, - "to": 90352442, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529505, - "label": "ELEMENT_OF", - "from": 90072323, - "to": 90356515, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529506, - "label": "ELEMENT_OF", - "from": 90072335, - "to": 90356515, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511596, - "label": "ELEMENT_OF", - "from": 90356515, - "to": 90277464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529773, - "label": "ELEMENT_OF", - "from": 90088768, - "to": 90356744, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528746, - "label": "ELEMENT_OF", - "from": 90071067, - "to": 90353184, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515479, - "label": "ENCODES", - "from": 90072486, - "to": 90252938, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534172, - "label": "ELEMENT_OF", - "from": 90088768, - "to": 90372158, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518300, - "label": "ENCODES", - "from": 90176241, - "to": 90270789, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519325, - "label": "REGULATES", - "from": 90274956, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511389, - "label": "ELEMENT_OF", - "from": 90354477, - "to": 90278369, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511901, - "label": "ELEMENT_OF", - "from": 90358424, - "to": 90276255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511135, - "label": "ELEMENT_OF", - "from": 90352421, - "to": 90274956, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534660, - "label": "ELEMENT_OF", - "from": 90174356, - "to": 90372822, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534661, - "label": "ELEMENT_OF", - "from": 90174355, - "to": 90372822, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515462, - "label": "ENCODES", - "from": 90072353, - "to": 90252839, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518272, - "label": "ENCODES", - "from": 90175990, - "to": 90270732, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515457, - "label": "ENCODES", - "from": 90072323, - "to": 90252805, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530049, - "label": "ELEMENT_OF", - "from": 90102323, - "to": 90356982, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530050, - "label": "ELEMENT_OF", - "from": 90102323, - "to": 90356983, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515459, - "label": "ENCODES", - "from": 90072335, - "to": 90252825, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522124, - "label": "REGULATES", - "from": 90281367, - "to": 90350797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523917, - "label": "REGULATES", - "from": 90276255, - "to": 90351371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521098, - "label": "REGULATES", - "from": 90274956, - "to": 90350693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510858, - "label": "ELEMENT_OF", - "from": 90299187, - "to": 90372255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525246, - "label": "REGULATES", - "from": 90277464, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534463, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90372507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521636, - "label": "REGULATES", - "from": 90277464, - "to": 90350736, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521639, - "label": "REGULATES", - "from": 90277683, - "to": 90350736, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529063, - "label": "ELEMENT_OF", - "from": 90067839, - "to": 90354477, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525735, - "label": "REGULATES", - "from": 90277470, - "to": 90352264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529056, - "label": "ELEMENT_OF", - "from": 90073203, - "to": 90354423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529057, - "label": "ELEMENT_OF", - "from": 90073197, - "to": 90354423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510894, - "label": "ELEMENT_OF", - "from": 90299581, - "to": 90372343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521390, - "label": "REGULATES", - "from": 90281367, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518098, - "label": "ENCODES", - "from": 90174355, - "to": 90269346, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534482, - "label": "ELEMENT_OF", - "from": 90072335, - "to": 90372538, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515538, - "label": "ENCODES", - "from": 90072967, - "to": 90253312, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518099, - "label": "ENCODES", - "from": 90174356, - "to": 90269349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534483, - "label": "ELEMENT_OF", - "from": 90072323, - "to": 90372538, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520920, - "label": "REGULATES", - "from": 90274956, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534232, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90372234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511449, - "label": "ELEMENT_OF", - "from": 90354880, - "to": 90277683, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530137, - "label": "ELEMENT_OF", - "from": 90087220, - "to": 90357383, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534233, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90372237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511687, - "label": "ELEMENT_OF", - "from": 90356744, - "to": 90290473, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511439, - "label": "ELEMENT_OF", - "from": 90354827, - "to": 90291066, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533704, - "label": "ELEMENT_OF", - "from": 90175990, - "to": 90371605, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514506, - "label": "ELEMENT_OF", - "from": 90372538, - "to": 90277464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520183, - "label": "REGULATES", - "from": 90277464, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515312, - "label": "ENCODES", - "from": 90071067, - "to": 90248962, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515569, - "label": "ENCODES", - "from": 90073197, - "to": 90253370, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515313, - "label": "ENCODES", - "from": 90071075, - "to": 90248968, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515570, - "label": "ENCODES", - "from": 90073203, - "to": 90253371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524541, - "label": "REGULATES", - "from": 90291039, - "to": 90351794, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529661, - "label": "ELEMENT_OF", - "from": 90102323, - "to": 90356667, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523003, - "label": "REGULATES", - "from": 90279095, - "to": 90351014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529892, - "label": "ELEMENT_OF", - "from": 90073203, - "to": 90356833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516580, - "label": "ENCODES", - "from": 90102323, - "to": 90259655, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525286, - "label": "REGULATES", - "from": 90290910, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529889, - "label": "ELEMENT_OF", - "from": 90072967, - "to": 90356831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515042, - "label": "ENCODES", - "from": 90067839, - "to": 90234751, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529891, - "label": "ELEMENT_OF", - "from": 90073197, - "to": 90356833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520685, - "label": "REGULATES", - "from": 90291066, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515309, - "label": "ENCODES", - "from": 90071057, - "to": 90248916, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512238, - "label": "ELEMENT_OF", - "from": 90360882, - "to": 90279555, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511720, - "label": "ELEMENT_OF", - "from": 90356831, - "to": 90276604, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511721, - "label": "ELEMENT_OF", - "from": 90356833, - "to": 90279695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514326, - "label": "ELEMENT_OF", - "from": 90372116, - "to": 90291066, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528918, - "label": "ELEMENT_OF", - "from": 90088768, - "to": 90353854, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529174, - "label": "ELEMENT_OF", - "from": 90071057, - "to": 90354827, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521490, - "label": "REGULATES", - "from": 90274956, - "to": 90350726, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529176, - "label": "ELEMENT_OF", - "from": 90071075, - "to": 90354827, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528665, - "label": "ELEMENT_OF", - "from": 90132344, - "to": 90352925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511233, - "label": "ELEMENT_OF", - "from": 90353184, - "to": 90279095, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523009, - "label": "REGULATES", - "from": 90291066, - "to": 90351014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514305, - "label": "ELEMENT_OF", - "from": 90372067, - "to": 90281367, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516108, - "label": "ENCODES", - "from": 90087220, - "to": 90256359, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521999, - "label": "REGULATES", - "from": 90274956, - "to": 90350771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534324, - "label": "ELEMENT_OF", - "from": 90072967, - "to": 90372358, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523572, - "label": "REGULATES", - "from": 90278369, - "to": 90351233, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514613, - "label": "ELEMENT_OF", - "from": 90372822, - "to": 90291039, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534320, - "label": "ELEMENT_OF", - "from": 90072335, - "to": 90372355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514110, - "label": "ELEMENT_OF", - "from": 90371605, - "to": 90288544, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510014, - "label": "ELEMENT_OF", - "from": 90295292, - "to": 90360882, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523583, - "label": "REGULATES", - "from": 90278369, - "to": 90351238, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534074, - "label": "ELEMENT_OF", - "from": 90132344, - "to": 90372067, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534309, - "label": "ELEMENT_OF", - "from": 90174355, - "to": 90372343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534310, - "label": "ELEMENT_OF", - "from": 90174356, - "to": 90372343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522530, - "label": "REGULATES", - "from": 90291066, - "to": 90350884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529196, - "label": "ELEMENT_OF", - "from": 90071833, - "to": 90354880, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529197, - "label": "ELEMENT_OF", - "from": 90071858, - "to": 90354880, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533807, - "label": "ELEMENT_OF", - "from": 90069644, - "to": 90371741, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534319, - "label": "ELEMENT_OF", - "from": 90072323, - "to": 90372355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511784, - "label": "ELEMENT_OF", - "from": 90356982, - "to": 90290910, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/xylose.json b/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/xylose.json deleted file mode 100644 index d803fa279b..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/ale_mutation_data/xylose.json +++ /dev/null @@ -1,28230 +0,0 @@ -{ - "nodes": [ - { - "id": 90365282, - "label": "ecpBCDE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90088799, - "label": "kup", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90281312, - "label": "ysgA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90369376, - "label": "ydeK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90271075, - "label": "multidrug efflux pump membrane fusion protein EmrK", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90279269, - "label": "ydiQRST-fadK", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90088794, - "label": "pyrH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90266980, - "label": "chitobiose outer membrane channel", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90271076, - "label": "acetyl-CoA:oxalate CoA-transferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90127704, - "label": "bcsQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90180968, - "label": "emrK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90371433, - "label": "yjhU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90262890, - "label": "putative ABC transporter ATP-binding subunit YhdZ", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350959, - "label": "SdiA", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90365295, - "label": "rclR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90129743, - "label": "yhdZ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90180978, - "label": "yfdE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90283378, - "label": "yhjY", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90365297, - "label": "ykgEFG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90199417, - "label": "mscM", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90273147, - "label": "DUF386 domain-containing toxin-antitoxin biofilm protein TabA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90352962, - "label": "yhdWXYZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90260803, - "label": "putative queuosine precursor transporter", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90273093, - "label": "FKBP-type peptidyl-prolyl cis-trans isomerase FklB", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90365252, - "label": "insN-1I-1O-1", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90154359, - "label": "yciV", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90365259, - "label": "yagAB-insX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90275147, - "label": "yiaKLMNO-lyxK-sgbHUE", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90260813, - "label": "ribosome-associated ATPase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90357074, - "label": "hypBCDE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90148205, - "label": "ycaO", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90275156, - "label": "aspA-dcuA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90350933, - "label": "EvgA", - "databaseLabel": "TranscriptionFactor", - "value": 3, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90350939, - "label": "MprA", - "databaseLabel": "TranscriptionFactor", - "value": 7, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90264922, - "label": "CP4-6 prophage; putative GTP-binding protein YkfA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350943, - "label": "ArgR", - "databaseLabel": "TranscriptionFactor", - "value": 3, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90365279, - "label": "paoABCD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90264926, - "label": "IS30 transposase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90256675, - "label": "lipopolysaccharide assembly protein LptD", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90072349, - "label": "ptrA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90350884, - "label": "PhoP", - "databaseLabel": "TranscriptionFactor", - "value": 9, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90365221, - "label": "yafL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90174743, - "label": "astC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90264876, - "label": "2-oxoglutaramate amidase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350899, - "label": "NarL", - "databaseLabel": "TranscriptionFactor", - "value": 9, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90174732, - "label": "astA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90185015, - "label": "yfgM", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90350904, - "label": "NarP", - "databaseLabel": "TranscriptionFactor", - "value": 5, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90352953, - "label": "argT-hisJQMP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371385, - "label": "tabA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90365246, - "label": "ykfA-yafZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90283327, - "label": "yhjC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90264895, - "label": "NlpC/P60 family protein YafL", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90154300, - "label": "dhaK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90350853, - "label": "GadW", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90107188, - "label": "hisJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90195210, - "label": "kdsD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90246412, - "label": "cobalamin-dependent methionine synthase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90371347, - "label": "fklB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90291475, - "label": "rluD-pgeF", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90363159, - "label": "rsmI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90232086, - "label": "DNA-binding transcriptional repressor DeoR", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90283291, - "label": "rhsB", - "databaseLabel": "Operon", - "value": 5, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90363166, - "label": "ysgA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90291681, - "label": "pthp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90181091, - "label": "fryA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351073, - "label": "Zur", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90275302, - "label": "zraSR", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90256873, - "label": "putative LysR-type DNA-binding transcriptional regulator YbeF", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90281451, - "label": "yahDEFG", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90351086, - "label": "GadE", - "databaseLabel": "TranscriptionFactor", - "value": 3, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90363374, - "label": "ygfZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90097107, - "label": "intA", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90303980, - "label": "litp8", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90246639, - "label": "tryptohan:H+ symporter Mtr", - "databaseLabel": "GeneProduct", - "value": 4, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90359276, - "label": "relA-mazEF", - "databaseLabel": "TranscriptionUnit", - "value": 6, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90084817, - "label": "mutL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90365426, - "label": "rhsD-ybbC-ylbH-ybbD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90359283, - "label": "ilvLXG_1G_2MEDA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90097100, - "label": "nrfA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90084810, - "label": "thrL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90301945, - "label": "ydfKp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90236409, - "label": "protein HemY", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90359289, - "label": "rnpB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90246652, - "label": "UDP-N-acetylmuramate—L-alanine ligase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90072512, - "label": "pyrC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90265028, - "label": "DNA-binding transcriptional activator RclR", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90351050, - "label": "CdaR", - "databaseLabel": "TranscriptionFactor", - "value": 4, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90252744, - "label": "phosphatidylserine decarboxylase proenzyme", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90265035, - "label": "putative amino acid dehydrogenase with NAD(P)-binding domain and ferridoxin-like domain", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90084850, - "label": "glrR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90363346, - "label": "yfeR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90359248, - "label": "garPLRK-rnpB", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90058220, - "label": "fimF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90265052, - "label": "putative acyl-CoA synthetase YahF", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90359202, - "label": "nmpC", - "databaseLabel": "TranscriptionUnit", - "value": 7, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90355106, - "label": "cysB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351014, - "label": "NagC", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90281383, - "label": "rrsD-ileU-alaU-rrlD-rrfD-thrV-rrfF", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90265001, - "label": "putative fimbrial usher protein EcpC", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90058132, - "label": "fhuB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351017, - "label": "NorR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90275244, - "label": "grxA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90138002, - "label": "ybbW", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90281388, - "label": "ydgK-rsxABCDGE-nth", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90359215, - "label": "napFDAGHBC-ccmABCDEFGH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371506, - "label": "radA-nadR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90088844, - "label": "gadE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90058124, - "label": "fhlA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90273204, - "label": "KpLE2 phage-like element; putative DNA-binding transcriptional regulator YjhU", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90232246, - "label": "primosomal protein DnaT", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90127753, - "label": "yhjY", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90281403, - "label": "yjjB-dnaTC-yjjA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90283452, - "label": "htrL", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90301884, - "label": "grxBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90260926, - "label": "cellulose biosynthesis protein, pseudogene lacking N-terminal amino acids", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90271105, - "label": "putative PTS multiphosphoryl transfer protein FryA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90303873, - "label": "grxBp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90365314, - "label": "yahDEFG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90303874, - "label": "grxBp4", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90264964, - "label": "CP4-6 prophage; protein YagJ", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90359178, - "label": "tauABCD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90262925, - "label": "RNA chaperone ProQ", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90271119, - "label": "putative IS186/IS421 transposase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90129837, - "label": "proQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90264978, - "label": "aldehyde dehydrogenase: molybdenum cofactor-binding subunit", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90260884, - "label": "putative DNA-binding transcriptional regulator YhjC", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90271127, - "label": "putative LysR-type DNA-binding transcriptional regulator YfeR", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90072486, - "label": "pykF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90359198, - "label": "arcA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90188896, - "label": "ygeR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90174559, - "label": "ydiR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90274913, - "label": "norR", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90072159, - "label": "priA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90350688, - "label": "CRP", - "databaseLabel": "TranscriptionFactor", - "value": 35, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90262627, - "label": "lysophospholipid transporter", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90356833, - "label": "rplJL-rpoBC", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90295396, - "label": "borDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90260590, - "label": "DNA-binding transcriptional dual regulator NorR", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90356849, - "label": "tff-rpsB-tsf", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356852, - "label": "rpsJ-rplCDWB-rpsS-rplV-rpsC-rplP-rpmC-rpsQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90274936, - "label": "astCADBE", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90129477, - "label": "ttdR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90291323, - "label": "recET-ralR-ydaC-xisR-intR", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90256507, - "label": "UMP kinase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90356857, - "label": "rpsMKD-rpoA-rplQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90274938, - "label": "pyrH", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90350718, - "label": "H-NS", - "databaseLabel": "TranscriptionFactor", - "value": 19, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90270845, - "label": "putative hydrolase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90371196, - "label": "yihQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90107005, - "label": "pgeF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90350663, - "label": "CpxR", - "databaseLabel": "TranscriptionFactor", - "value": 4, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90371141, - "label": "rhlB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90272845, - "label": "Type II secretion system protein GspJ", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350668, - "label": "ModE", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90195023, - "label": "yraJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90268752, - "label": "putative outer membrane protein, N-terminal fragment", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90260563, - "label": "polyphenol oxidase YfiH", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90195030, - "label": "rsmI", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90352734, - "label": "metNIQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350687, - "label": "FNR", - "databaseLabel": "TranscriptionFactor", - "value": 24, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90356831, - "label": "rph-pyrE", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90369058, - "label": "ydbA_1", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90283051, - "label": "gspCDEFGHIJKLMO", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90309676, - "label": "yhcCp6", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90354738, - "label": "galETKM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90354736, - "label": "galETKM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90256435, - "label": "DNA adenine methyltransferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90309681, - "label": "yhcCp8", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90135563, - "label": "gadA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90350645, - "label": "Fis", - "databaseLabel": "TranscriptionFactor", - "value": 17, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90350648, - "label": "Rob", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90350654, - "label": "TyrR", - "databaseLabel": "TranscriptionFactor", - "value": 5, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90371132, - "label": "kup", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90270782, - "label": "putative colanic acid biosynthesis glycosyl transferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90354688, - "label": "fhuACDB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90186758, - "label": "pphB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90283026, - "label": "yhdJ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90356753, - "label": "modABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90135594, - "label": "glcF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90356757, - "label": "moeAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90352665, - "label": "glcDEFGBA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356761, - "label": "napFDAGHBC-ccmABCDEFGH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90068002, - "label": "glnB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90291231, - "label": "pdeG", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90057948, - "label": "fdhF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90072281, - "label": "pssA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90350826, - "label": "MarA", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90275048, - "label": "metNIQ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90350830, - "label": "GlcC", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90369263, - "label": "rhsE-ydcD", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350829, - "label": "IscR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90262775, - "label": "DNA-binding transcriptional activator TtdR", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90354932, - "label": "pyrC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90289398, - "label": "yjaH", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90275065, - "label": "fiu", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90137799, - "label": "ybaP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90350843, - "label": "GadX", - "databaseLabel": "TranscriptionFactor", - "value": 3, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90283258, - "label": "yhhQ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90275008, - "label": "pth-ychF", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90186945, - "label": "gudD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90264770, - "label": "putative periplasmic binding protein SapA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90281158, - "label": "yfeR", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90350794, - "label": "NhaR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90275021, - "label": "glcDEFGBA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90350797, - "label": "Lrp", - "databaseLabel": "TranscriptionFactor", - "value": 4, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90279122, - "label": "gudPXD", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90361046, - "label": "dhaKLM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90281175, - "label": "ygfZ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90258646, - "label": "sulfoquinovosidase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90291416, - "label": "chiPQ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90199259, - "label": "ysgA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90350812, - "label": "FhlA", - "databaseLabel": "TranscriptionFactor", - "value": 4, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90272991, - "label": "putative dienelactone hydrolase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90272928, - "label": "putative hydrolase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90350752, - "label": "RcsB", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 61192802, - "label": "garL", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90291369, - "label": "istR", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90203308, - "label": "yjhU", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90371247, - "label": "nudC-hemE-nfi", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90350771, - "label": "ArcA", - "databaseLabel": "TranscriptionFactor", - "value": 10, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90174602, - "label": "arpB_1", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90262714, - "label": "dipeptide ABC transporter membrane subunit DppB", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90371263, - "label": "yjbFGH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90088576, - "label": "yhdJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90264766, - "label": "putrescine ABC exporter membrane subunit SapB", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90107070, - "label": "norR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90299522, - "label": "ybhQp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90350726, - "label": "SoxS", - "databaseLabel": "TranscriptionFactor", - "value": 3, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90350727, - "label": "OxyR", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90256518, - "label": "K+ transporter Kup", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90279048, - "label": "argT-hisJQMP", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90354827, - "label": "nagBAC-umpH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90354825, - "label": "metH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90360974, - "label": "gcl-hyi-glxR-ybbW-allB-ybbY-glxK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356878, - "label": "selAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90279055, - "label": "yhdWXYZ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90256526, - "label": "DNA-binding transcriptional activator GadE", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90291345, - "label": "gadEF-mdtEF", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90350736, - "label": "PhoB", - "databaseLabel": "TranscriptionFactor", - "value": 4, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90260627, - "label": "histidine ABC transporter periplasmic binding protein", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90283154, - "label": "yhfXW-php-yhfUTS", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90356881, - "label": "serC-aroA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90154155, - "label": "pdeG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90072232, - "label": "psd", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90291354, - "label": "yagAB-insX", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90350748, - "label": "CysB", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90132319, - "label": "rnpB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90095455, - "label": "ydeK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90230626, - "label": "adenylate cyclase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90234732, - "label": "UDP-glucose 4-epimerase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90363762, - "label": "yjjB-dnaTC-yjjA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90197872, - "label": "php", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90261363, - "label": "chloride:H+ antiporter ClcA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90253170, - "label": "GDP/GTP pyrophosphokinase", - "databaseLabel": "GeneProduct", - "value": 6, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90279800, - "label": "purT", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90269562, - "label": "DUF1971 domain-containing protein YeaR", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90095429, - "label": "trmI", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90371966, - "label": "ftsLI-murEF-mraY-murD-ftsW-murGC-ddlB-ftsQAZ-lpxC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90363772, - "label": "dnaTC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371964, - "label": "rsmH-ftsLI-murEF-mraY-murD-ftsW-murGC-ddlB-ftsQAZ-lpxC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90359618, - "label": "gadEF-mdtEF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90277699, - "label": "pyrC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90359617, - "label": "ccmABCDEFGH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90128250, - "label": "clcA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90281796, - "label": "fklB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90206021, - "label": "istR", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90253124, - "label": "Rac prophage; exonuclease VIII, ds DNA exonuclease, 5' --> 3' specific", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90070904, - "label": "mtr", - "databaseLabel": "Gene", - "value": 4, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90279755, - "label": "ybhQ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90206027, - "label": "istR-1", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90371920, - "label": "cyaA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371921, - "label": "cyaA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90312534, - "label": "yjtDp6", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90351446, - "label": "SoxR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90312535, - "label": "yjtDp8", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90259287, - "label": "YjbH family protein", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90277721, - "label": "cysB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90361688, - "label": "purT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371935, - "label": "hisJQMP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90359587, - "label": "lptD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90072860, - "label": "rhsD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90359590, - "label": "lptD-surA-pdxA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90369831, - "label": "yobF-cspC", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90083096, - "label": "htrL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351396, - "label": "GutM", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90277670, - "label": "metH", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90351400, - "label": "SrlR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90369837, - "label": "proQ-prc", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90072836, - "label": "rhsB", - "databaseLabel": "Gene", - "value": 5, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90369849, - "label": "ptrB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90369854, - "label": "yebG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90359614, - "label": "gadEF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90369794, - "label": "dmlR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90175295, - "label": "yobF", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90277632, - "label": "cyaA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90275587, - "label": "argX-hisR-leuT-proM", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90369793, - "label": "yeaR-yoaG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90279682, - "label": "ftnB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90369799, - "label": "yeaVW", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90277638, - "label": "fhuACDB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90361610, - "label": "ydgK-rsxABCDGE-nth", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371850, - "label": "gspCDEFGHIJKLMO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351371, - "label": "Cra", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90248968, - "label": "DNA-binding transcriptional dual regulator NagC", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90279691, - "label": "hisLGDCBHAFI", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90371849, - "label": "gspCDEFGHIJKLMO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351374, - "label": "FucR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90357519, - "label": "glnB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90279695, - "label": "rplKAJL-rpoBC", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90361612, - "label": "rsxABCDGE-nth", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90359564, - "label": "skp-lpxD-fabZ-lpxA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90361619, - "label": "pgaABCD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90277651, - "label": "galETKM", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90269459, - "label": "arginine N-succinyltransferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90357521, - "label": "glnB", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90279700, - "label": "pgaABCD", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90269463, - "label": "succinylornithine transaminase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90279707, - "label": "fimAICDFGH", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90371865, - "label": "yjaH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90359581, - "label": "lptD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90359782, - "label": "rplKAJL-rpoBC", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90288109, - "label": "citCDEFXG", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90351597, - "label": "AllR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90353650, - "label": "ydiQRST-fadK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90267633, - "label": "sensory histidine kinase TorS", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90284016, - "label": "ygiF-glnE", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90370043, - "label": "dusC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90361855, - "label": "ybhQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90099709, - "label": "yjaH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90288066, - "label": "insL-2", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90361799, - "label": "yafV", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90361803, - "label": "yagJ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372046, - "label": "fucR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90369996, - "label": "yegX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90355666, - "label": "hns", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90277840, - "label": "fucPIKUR", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90132461, - "label": "rrsD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90099693, - "label": "nfi", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90283990, - "label": "tolC-ygiABC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90253273, - "label": "RhsB protein in rhs element", - "databaseLabel": "GeneProduct", - "value": 5, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90279897, - "label": "yafV", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90253275, - "label": "RhsD protein in rhs element", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90367960, - "label": "pdeG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90279899, - "label": "yagJ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90279902, - "label": "tar-tap-cheRBYZ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90288032, - "label": "ybcW", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90361760, - "label": "ybaP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90269607, - "label": "DUF2527 domain-containing protein YobF", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90351530, - "label": "CaiF", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 85909460, - "label": "dnaT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90236842, - "label": "hydrogenase maturation protein, carbamoyl dehydratase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90279853, - "label": "ybaP", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90249134, - "label": "DLP12 prophage; outer membrane porin NmpC (pseudogene)", - "databaseLabel": "GeneProduct", - "value": 6, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90296238, - "label": "essDp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90369965, - "label": "wcaCDEF-gmd-fcl-gmm-wcaI-cpsBG-wcaJ-wzxC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90271664, - "label": "CP4-57 prophage; protein YfjI", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90355635, - "label": "srlAEBD-gutM-srlR-gutQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90070923, - "label": "murC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351540, - "label": "YiaJ", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90271671, - "label": "CP4-57 prophage; anti-bacteriophage protein", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90097544, - "label": "yihQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90351547, - "label": "ZraR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90206137, - "label": "rzoD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90255291, - "label": "protein HtrL", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90351550, - "label": "AdiY", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90230716, - "label": "DNA-binding transcriptional dual regulator CysB", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90253244, - "label": "RhlB, ATP-dependent RNA helicase of the RNA degradosome", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90269569, - "label": "DNA-binding transcriptional regulator DmlR", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90371970, - "label": "ftsLI-murEF-mraY-murD-ftsW-murGC-ddlB-ftsQAZ-lpxC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90128317, - "label": "yagA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90236804, - "label": "DNA-binding transcriptional activator ZraR", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90269572, - "label": "putative transporter YeaV", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90371975, - "label": "yiaKLMNO-lyxK-sgbHUE", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90369925, - "label": "yeeJ", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90363785, - "label": "yjjB-dnaTC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90277773, - "label": "mtr", - "databaseLabel": "Operon", - "value": 5, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90351503, - "label": "Cbl", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90267534, - "label": "ribosomal protein S12 methylthiotransferase accessory factor YcaO", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90288020, - "label": "rzoD", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90169252, - "label": "ydbA_1", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90288031, - "label": "ybcV", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90261407, - "label": "CP4-6 prophage; protein YagA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90355613, - "label": "fucPIKUR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351202, - "label": "TorR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90070623, - "label": "metH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90371687, - "label": "ftnB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371684, - "label": "modABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371691, - "label": "yjbEFGH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90072661, - "label": "recE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90363497, - "label": "norR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371694, - "label": "yrbG-kdsD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90265196, - "label": "conserved protein YbaP", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90371692, - "label": "mtr", - "databaseLabel": "TranscriptionUnit", - "value": 4, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90361458, - "label": "hypBCDE-fhlA", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90361456, - "label": "hypABCDE-fhlA", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90211959, - "label": "yqfG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90267256, - "label": "putative iron siderophore outer membrane transporter", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90261112, - "label": "L-xylulose kinase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90269309, - "label": "SoxR [2Fe-2S] reducing system protein RsxC", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90365567, - "label": "chiPQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90273406, - "label": "DLP12 prophage; putative prophage lysis lipoprotein RzoD", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90185280, - "label": "abpA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90285639, - "label": "yegX", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90351179, - "label": "YdeO", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90359368, - "label": "zraSR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371656, - "label": "norR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90199629, - "label": "fklB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90361423, - "label": "zinT", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90271317, - "label": "ancillary SecYEG translocon subunit", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90365526, - "label": "ybeF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90273367, - "label": "small regulatory RNA IstR-1", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90277463, - "label": "nrfABCDEFG", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90273366, - "label": "small RNA IstR-2", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90230359, - "label": "chemotaxis response regulator protein-glutamate methylesterase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90359386, - "label": "yjeF-tsaE-amiB-mutL-miaA-hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371675, - "label": "relA-mazEF", - "databaseLabel": "TranscriptionUnit", - "value": 6, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90359385, - "label": "yjeF-tsaE-amiB-mutL-miaA-hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90363486, - "label": "ompW", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90355295, - "label": "mtr", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90273374, - "label": "miniconductance mechanosensitive channel MscM", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90365472, - "label": "ybcW", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351137, - "label": "TrpR", - "databaseLabel": "TranscriptionFactor", - "value": 5, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90351143, - "label": "PdhR", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 78876660, - "label": "cyaA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90252838, - "label": "protease 3", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90095126, - "label": "metI", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90365486, - "label": "insL-2", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90185261, - "label": "yfjI", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90355245, - "label": "glnB", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90279470, - "label": "dhaKLM", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90351149, - "label": "SlyA", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90353203, - "label": "gudPXD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90308151, - "label": "lplTp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90371641, - "label": "priA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90359353, - "label": "grxA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90365502, - "label": "citCDEFXG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90256959, - "label": "fused glutamine synthetase deadenylase/glutamine synthetase adenylyltransferase", - "databaseLabel": "GeneProduct", - "value": 3, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90277377, - "label": "fruBKA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90371587, - "label": "torS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90363393, - "label": "ttdR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90252802, - "label": "phosphatidylserine synthase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90361354, - "label": "yfdX-frc-oxc-yfdVE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90127924, - "label": "sgbE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90359309, - "label": "gadAX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90361357, - "label": "borD", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90279440, - "label": "borD", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90261011, - "label": "conserved protein YhjY", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90275350, - "label": "adiY", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90359317, - "label": "yiaKLMNO-lyxK-sgbHUE", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90369557, - "label": "ydfK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90265114, - "label": "taurine ABC transporter membrane subunit", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90365470, - "label": "ybcV", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90277404, - "label": "thrLABC", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90127906, - "label": "lyxK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90281503, - "label": "ygaZH", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90365469, - "label": "rzoD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90279649, - "label": "emrKY", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90281697, - "label": "ptrA-recBD", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90277602, - "label": "modABC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90175194, - "label": "yeaV", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90269416, - "label": "putative ankyrin repeat protein B, N-terminal fragment", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90361579, - "label": "ftnB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90277608, - "label": "moeAB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90365679, - "label": "deoR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90359535, - "label": "psd-mscM", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90287852, - "label": "rhsD-ybbC-ylbH-ybbD", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90259185, - "label": "DUF1481 domain-containing protein YjaH", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90279668, - "label": "yejO", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90361588, - "label": "essD-rrrD-rzpD", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351355, - "label": "CspA", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90236608, - "label": "DNA-binding transcriptional dual regulator H-NS", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90136318, - "label": "sapA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90136311, - "label": "sapB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90277580, - "label": "hemCDXY", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90361548, - "label": "bamA-skp-lpxD-fabZ-lpxAB-rnhB-dnaE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90072815, - "label": "rhlB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90359504, - "label": "fiu", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90281685, - "label": "yhiI-rbbA-yhhJ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90359508, - "label": "emrKY", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90269401, - "label": "putative electron transfer flavoprotein subunit YdiR", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90197720, - "label": "gspJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90361560, - "label": "yejO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90259167, - "label": "endonuclease V", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90279585, - "label": "hypABCDE-fhlA", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90175134, - "label": "yeaR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90281635, - "label": "serB-radA-nadR", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90371748, - "label": "glrR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90289834, - "label": "kup", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90355369, - "label": "fumC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90267309, - "label": "phosphoethanolamine transferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90351279, - "label": "PurR", - "databaseLabel": "TranscriptionFactor", - "value": 5, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90351276, - "label": "MetR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90097294, - "label": "purT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90369715, - "label": "arpB_1B_2", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90097292, - "label": "yebG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90277556, - "label": "dppABCDF", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90236598, - "label": "periplasmic chaperone Skp", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90285753, - "label": "dusC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90361534, - "label": "ygiM-cca", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 60104778, - "label": "modB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90359427, - "label": "pyrH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351233, - "label": "GalS", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90351238, - "label": "GalR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90261127, - "label": "L-ribulose-5-phosphate 4-epimerase SgbE", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90175161, - "label": "dmlR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90252938, - "label": "pyruvate kinase I", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90283663, - "label": "ygeR", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90236558, - "label": "putative bifunctional phosphoribosyl-AMP cyclohydrolase/phosphoribosyl-ATP pyrophosphatase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90353292, - "label": "galETKM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90281614, - "label": "sapABCDF", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90252942, - "label": "dihydroorotase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90230416, - "label": "molybdopterin-synthase adenylyltransferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90361488, - "label": "bcsQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90087083, - "label": "prlC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90287767, - "label": "yciVOQ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90351259, - "label": "LexA", - "databaseLabel": "TranscriptionFactor", - "value": 3, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90072741, - "label": "relA", - "databaseLabel": "Gene", - "value": 6, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90132131, - "label": "leuT", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90359454, - "label": "tar-tap-cheRBYZ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90265244, - "label": "putative allantoin transporter", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90370406, - "label": "abpAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351973, - "label": "HypT", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90233192, - "label": "iron(III) hydroxamate ABC transporter membrane subunit", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372458, - "label": "mqsRA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90136914, - "label": "insI-1", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372467, - "label": "yobF-cspC", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90360176, - "label": "adiY", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90138955, - "label": "insL-2", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90360183, - "label": "istR", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90157381, - "label": "mppA", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90270075, - "label": "cadmium-induced cadmium binding protein", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90253632, - "label": "outer membrane channel TolC", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90351943, - "label": "MazE", - "databaseLabel": "TranscriptionFactor", - "value": 6, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90368325, - "label": "recET-ralR-ydaC-xisR-intR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372427, - "label": "ivbL-ilvBN-uhpABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90290507, - "label": "iraM", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372431, - "label": "gadEF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372428, - "label": "tsaE-amiB-mutL-miaA-hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90265934, - "label": "DLP12 prophage; putative phage lysis protein", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90290513, - "label": "tff-rpsB-tsf", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90370387, - "label": "intA", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90265939, - "label": "DLP12 prophage; lysozyme", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90366288, - "label": "ycaO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90233171, - "label": "DNA-binding transcriptional activator FhlA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90265941, - "label": "DLP12 prophage; prophage lipoprotein BorD", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90265940, - "label": "DLP12 prophage; putative prophage endopeptidase RzpD", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90370388, - "label": "yfjI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90265942, - "label": "DLP12 prophage; protein YbcV", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90216793, - "label": "α-dehydro-β-deoxy-D-glucarate aldolase", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90265951, - "label": "DLP12 prophage; protein YbcW", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90368293, - "label": "mppA", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90267950, - "label": "murein tripeptide ABC transporter periplasmic binding protein", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90290480, - "label": "yfgM", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372400, - "label": "gadEF-mdtEF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90253621, - "label": "oligopeptidase B", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 76230867, - "label": "cheB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90370363, - "label": "rluD-pgeF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90370360, - "label": "pssA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90263866, - "label": "RnpB", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372415, - "label": "citCDEFXG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90272003, - "label": "LysM domain-containing putative peptidase lipoprotein YgeR", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90351879, - "label": "MetJ", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90069302, - "label": "grxA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90294538, - "label": "glnBp3", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90372366, - "label": "tolC-ygiABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90136882, - "label": "ykfA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372370, - "label": "tolC-ygiABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90267921, - "label": "putative glycosyl hydrolase YcjT", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372374, - "label": "tolC-ygiABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90216726, - "label": "RhsE protein in rhs element", - "databaseLabel": "GeneProduct", - "value": 3, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90290455, - "label": "zinT", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90351899, - "label": "TtdR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90351903, - "label": "MqsA", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90073376, - "label": "rpsJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90290662, - "label": "mraZ-rsmH-ftsLI-murEF-mraY-murD-ftsW-murGC-ddlB-ftsQAZ-lpxC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90352101, - "label": "MraZ", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90255849, - "label": "DNA-binding transcriptional activator GlrR", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90137044, - "label": "paoC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90264044, - "label": "16S ribosomal RNA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90290668, - "label": "mqsRA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90276339, - "label": "tauABCD", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90229238, - "label": "3-phosphoshikimate 1-carboxyvinyltransferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90288631, - "label": "torS", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90276342, - "label": "arcA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90290683, - "label": "rsmI", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90298875, - "label": "iraMp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90251770, - "label": "aminoalkylphosphonate N-acetyltransferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90294781, - "label": "arcAp7", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90276295, - "label": "fixABCX", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90151416, - "label": "pgaB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90137079, - "label": "ecpC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90370507, - "label": "ptrA-recBD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372558, - "label": "yrbG-kdsDC-lptCAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90255823, - "label": "DNA mismatch repair protein MutL", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 66748235, - "label": "aroA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90290645, - "label": "sdhCDAB-sucABCD", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90370517, - "label": "aas-lplT", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372568, - "label": "yjbEFGH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90278367, - "label": "srlAEBD-gutM-srlR-gutQ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90290595, - "label": "bcsQ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90360224, - "label": "istR", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90300839, - "label": "mqsRp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90139032, - "label": "citG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90288553, - "label": "ttdR", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90270128, - "label": "inverse autotransporter adhesin", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90288565, - "label": "priA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90233272, - "label": "type 1 fimbriae minor subunit FimF", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90290617, - "label": "ivbL-ilvBN-uhpABC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90255807, - "label": "thr operon leader peptide", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90085822, - "label": "nadR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 80255019, - "label": "cysB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90069434, - "label": "hemY", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90145206, - "label": "chiP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90290568, - "label": "tabA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90352009, - "label": "FliZ", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90370446, - "label": "ygaZH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90175922, - "label": "yeeJ", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90137010, - "label": "yagJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90282385, - "label": "rhlB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90288533, - "label": "clcA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90151338, - "label": "torS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90290585, - "label": "ilvLXG_1G_2MEDA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372507, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90370456, - "label": "pphB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90175907, - "label": "zinT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90276255, - "label": "pykF", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372509, - "label": "glrR-glnB", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90271840, - "label": "L-valine exporter subunit YgaZ", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90277990, - "label": "fdhF", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90099798, - "label": "yjbH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372201, - "label": "ecpBCDE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90110034, - "label": "rbbA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90355821, - "label": "aspA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90257520, - "label": "acyltransferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90355825, - "label": "fruBKA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90284146, - "label": "yraIJK", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90269817, - "label": "putative ferritin-like protein", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90271864, - "label": "phosphoprotein phosphatase 2", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90175557, - "label": "ftnB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90280058, - "label": "ompW", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90292346, - "label": "glnBp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90372169, - "label": "phnLMNOP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90073203, - "label": "rpoC", - "databaseLabel": "Gene", - "value": 3, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90263634, - "label": "tRNA-Leu(CAG)", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372182, - "label": "mutL-miaA-hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351700, - "label": "HipB", - "databaseLabel": "TranscriptionFactor", - "value": 6, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90372186, - "label": "mutL-miaA-hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90073191, - "label": "rpoA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90253402, - "label": "30S ribosomal subunit protein S10", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90136675, - "label": "yafV", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90284126, - "label": "yhaKL", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90351652, - "label": "NsrR", - "databaseLabel": "TranscriptionFactor", - "value": 5, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90355754, - "label": "fdhF", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90253366, - "label": "RNA polymerase subunit α", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90363957, - "label": "cra", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90355770, - "label": "hypABCDE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90253371, - "label": "RNA polymerase subunit β'", - "databaseLabel": "GeneProduct", - "value": 3, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90110013, - "label": "yhhQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90288132, - "label": "ybeF", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90361860, - "label": "opgE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90234888, - "label": "nitrogen regulatory protein PII-1", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90281992, - "label": "yjhU", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 60645110, - "label": "rhsE", - "databaseLabel": "Gene", - "value": 3, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372110, - "label": "nagC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351631, - "label": "DhaR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90267666, - "label": "poly-β-1,6-N-acetyl-D-glucosamine N-deacetylase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 69996889, - "label": "aspA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90372116, - "label": "nagC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90277915, - "label": "hns", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90071075, - "label": "nagC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90110171, - "label": "yhjC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90267878, - "label": "RNA/ssDNA 5'→3' exonuclease", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90138839, - "label": "ybcV", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90138837, - "label": "borD", - "databaseLabel": "Gene", - "value": 2, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90138833, - "label": "rzpD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90253552, - "label": "D-arabinose 5-phosphate isomerase GutQ", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90290420, - "label": "gadAXW", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90183925, - "label": "insL-3", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90368247, - "label": "ycjMNOPQRSTUV-ymjB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90216695, - "label": "molybdate ABC transporter membrane subunit", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90288377, - "label": "ykgEFG", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90353915, - "label": "aspA-dcuA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90138821, - "label": "rrrD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90235130, - "label": "reduced glutaredoxin 1", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90157252, - "label": "ycjT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90138819, - "label": "essD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90081475, - "label": "rluC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90183935, - "label": "yfeR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90233087, - "label": "formate dehydrogenase H", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90368194, - "label": "yciVOQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90288324, - "label": "yafL", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90081528, - "label": "ompW", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90370244, - "label": "insL-3", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372293, - "label": "rpsMKD-rpoA-rplQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372298, - "label": "kup", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90288333, - "label": "ykfA-yafZ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372300, - "label": "kup", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90288337, - "label": "insN-1I-1O-1", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90071270, - "label": "nmpC", - "databaseLabel": "Gene", - "value": 6, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90368219, - "label": "sapABCDF", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90138852, - "label": "ybcW", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90267866, - "label": "dihydroxyacetone kinase subunit K", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90290399, - "label": "ycjMNOPQRSTUV-ymjB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90370212, - "label": "yfdE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372266, - "label": "yfgM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372270, - "label": "yfgM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90271919, - "label": "D-glucarate dehydratase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372269, - "label": "yfgM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90351794, - "label": "RutR", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90136717, - "label": "yafL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90370230, - "label": "fryBC-ypdFE-fryA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90267829, - "label": "putative c-di-GMP phosphodiesterase PdeG", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90351800, - "label": "DpiA", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90253442, - "label": "succinate:quinone oxidoreductase, FAD binding protein", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90288260, - "label": "deoR", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90364039, - "label": "clcA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372234, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 76736890, - "label": "moeB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90259599, - "label": "DNA-binding transcriptional activator AdiY", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372237, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90288282, - "label": "ycaO", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90284186, - "label": "insL-3", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90253471, - "label": "selenocysteyl-tRNA-specific translation elongation factor", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90366819, - "label": "iraM", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90067800, - "label": "fumC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90299238, - "label": "ygfZp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90145619, - "label": "opgE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90069840, - "label": "hypE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90252146, - "label": "primosome factor N'", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90286962, - "label": "ydfK", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90356597, - "label": "yjeF-tsaE-amiB-mutL-miaA-hfq-hflXKC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90254200, - "label": "23S rRNA pseudouridine955/2504/2580 synthase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90291066, - "label": "nagBAC-umpH", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90291068, - "label": "yfdX-frc-oxc-yfdVE", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90067777, - "label": "fucR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90129278, - "label": "dppB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90215239, - "label": "ysaD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90276681, - "label": "serC-aroA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90354509, - "label": "mraZ-rsmH-ftsLI-murEF-mraY-murD-ftsW-murGC-ddlB-ftsQAZ-lpxC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90067823, - "label": "galE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90352475, - "label": "rrsD-ileU-alaU-rrlD-rrfD-thrV-rrfF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90291032, - "label": "yrbG-kdsDC-lptCAB-rpoN-hpf-ptsN-rapZ-npr", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90370904, - "label": "yhfXW-php-yhfUTS", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90090341, - "label": "ybeF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90286940, - "label": "ydeK", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90352477, - "label": "rrsD-ileU-alaU-rrlD-rrfD-thrV-rrfF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372898, - "label": "galE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90356514, - "label": "phnCDE_1E_2FGHIJKLMNOP", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372899, - "label": "galET", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90370851, - "label": "yhdJ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372896, - "label": "galE", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90258213, - "label": "autotransporter family protein YdeK", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372902, - "label": "galETK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90258212, - "label": "tRNA m7G46 methyltransferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90145561, - "label": "fiu", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90258214, - "label": "cytochrome c552 nitrite reductase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372901, - "label": "galET", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90258219, - "label": "CP4-57 prophage; integrase", - "databaseLabel": "GeneProduct", - "value": 2, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372905, - "label": "galETK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90286895, - "label": "rhsE-ydcD", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372908, - "label": "relA", - "databaseLabel": "TranscriptionUnit", - "value": 6, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90372914, - "label": "relA", - "databaseLabel": "TranscriptionUnit", - "value": 6, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90264374, - "label": "glycolate dehydrogenase, putative iron-sulfur subunit", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90276664, - "label": "selAB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90073860, - "label": "gutQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90370876, - "label": "gspCDEFGHIJKLMO", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90272522, - "label": "D-arabinose 5-phosphate isomerase KdsD", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90274570, - "label": "uncharacterized protein YqfG", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90290957, - "label": "psd-mscM", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90276624, - "label": "rpsJ-rplCDWB-rpsS-rplV-rpsC-rplP-rpmC-rpsQ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90290970, - "label": "ecpBCDE", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90356508, - "label": "nrfABCDEFG", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90276638, - "label": "rpsMKD-rpoA-rplQ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90284830, - "label": "pphB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90069793, - "label": "zraR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90074076, - "label": "tolC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90352609, - "label": "pth-ychF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90291170, - "label": "abpAB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90229738, - "label": "fused tRNA nucleotidyltransferase / 2',3'-cyclic phosphodiesterase / 2' nucleotidase and phosphatase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90287083, - "label": "grxB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90260461, - "label": "adhesin-like autotransporter YejO", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90354668, - "label": "cyaA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 84396950, - "label": "deoR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90356723, - "label": "hisLGDCBHAFI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90194929, - "label": "yhaL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90287091, - "label": "rluC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90356721, - "label": "hemCDXY", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90371063, - "label": "htrL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90260476, - "label": "heme trafficking system membrane protein CcmB", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90291145, - "label": "bamA-skp-lpxD-fabZ-lpxAB-rnhB-dnaE", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90371016, - "label": "yhjY", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90176496, - "label": "yegX", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90203088, - "label": "tabA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90295200, - "label": "mtrp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90287011, - "label": "mppA", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90256296, - "label": "oligopeptidase A", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90356655, - "label": "dnaTC-yjjA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90258351, - "label": "DNA damage-inducible protein YebG", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90295214, - "label": "fdhFp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90258352, - "label": "phosphoribosylglycinamide formyltransferase 2", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90186675, - "label": "ygaZ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90090379, - "label": "glnE", - "databaseLabel": "Gene", - "value": 3, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90370996, - "label": "yhjC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90260409, - "label": "tRNA-dihydrouridine16 synthase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90356665, - "label": "dppABCDF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90291133, - "label": "opgE", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90074047, - "label": "ptrB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90370944, - "label": "yhhQ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90370955, - "label": "rhsB", - "databaseLabel": "TranscriptionUnit", - "value": 5, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90291086, - "label": "rclR", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90254225, - "label": "outer membrane protein W", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90370966, - "label": "yhiI-rbbA-yhhJ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90274714, - "label": "IS186/IS421 transposase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90137507, - "label": "tauC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90370972, - "label": "prlC-rsmJ", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90272353, - "label": "16S rRNA 2'-O-ribose C1402 methyltransferase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90372706, - "label": "metH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90352231, - "label": "NtrC", - "databaseLabel": "TranscriptionFactor", - "value": 10, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90276452, - "label": "garPLRK-rnpB", - "databaseLabel": "Operon", - "value": 3, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90233448, - "label": "DNA-binding transcriptional dual regulator Cra", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90284651, - "label": "yfjI", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90137172, - "label": "ykgF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90286701, - "label": "yeaR-yoaG", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90069582, - "label": "hisI", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90286706, - "label": "yeaVW", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372725, - "label": "fumC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90104390, - "label": "dusC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90073670, - "label": "selB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90137155, - "label": "rclR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90286716, - "label": "yobF-cspC", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90290812, - "label": "phnCDE_1E_2FGHIJKLMNOP", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90354301, - "label": "ptrA", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90286718, - "label": "proQ-prc", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90288707, - "label": "relA-mazEFG", - "databaseLabel": "Operon", - "value": 6, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90069626, - "label": "hns", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90352197, - "label": "Fur", - "databaseLabel": "TranscriptionFactor", - "value": 11, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90069616, - "label": "skp", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90233428, - "label": "fructose-specific PTS multiphosphoryl transfer protein FruA", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90370646, - "label": "trmI-yggL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90294870, - "label": "nmpCp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90354270, - "label": "hisBHAFI", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90272349, - "label": "putative fimbrial usher protein YraJ", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90284638, - "label": "intA", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90282533, - "label": "yihQ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90290727, - "label": "glrR-glnB", - "databaseLabel": "Operon", - "value": 4, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90092054, - "label": "aas", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90352171, - "label": "IHF", - "databaseLabel": "TranscriptionFactor", - "value": 23, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90257963, - "label": "L-methionine/D-methionine ABC transporter membrane subunit", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90352174, - "label": "HU", - "databaseLabel": "TranscriptionFactor", - "value": 6, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90102290, - "label": "adiY", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90272300, - "label": "uncharacterized protein YhaL", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90276399, - "label": "napFDAGHBC-ccmABCDEFGH", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90288690, - "label": "trmI-yggL", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90288692, - "label": "fryBC-ypdFE-fryA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90286647, - "label": "arpB_1B_2", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90266168, - "label": "triphosphoribosyl-dephospho-CoA synthase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90288696, - "label": "wcaCDEF-gmd-fcl-gmm-wcaI-cpsBG-wcaJ-wzxC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90073600, - "label": "sdhA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90276355, - "label": "nmpC", - "databaseLabel": "Operon", - "value": 7, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90370564, - "label": "ygeR", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90288646, - "label": "aas-lplT", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90284567, - "label": "pssA", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90290710, - "label": "dmlR", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90288665, - "label": "yjbEFGH", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 74478346, - "label": "cca", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90290717, - "label": "lptD-surA-pdxA-rsmA-apaGH", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90358300, - "label": "argX-hisR-leuT-proM", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90290718, - "label": "ygiM-cca", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90104542, - "label": "ccmB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90352352, - "label": "astCADBE", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90303203, - "label": "ybcWp4", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90352362, - "label": "astCADBE", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90358505, - "label": "fimAICDFGH", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90303210, - "label": "ybcWp7", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90352364, - "label": "astCADBE", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90067664, - "label": "cra", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90286833, - "label": "ydbA_1", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90233586, - "label": "fumarase C", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90356470, - "label": "thrLABC", - "databaseLabel": "TranscriptionUnit", - "value": 2, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90354423, - "label": "rpoBC", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90067652, - "label": "fruA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90264315, - "label": "glutamate decarboxylase A", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90276604, - "label": "rph-pyrE", - "databaseLabel": "Operon", - "value": 4, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90071807, - "label": "phnO", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90352327, - "label": "HipAB", - "databaseLabel": "TranscriptionFactor", - "value": 6, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90370756, - "label": "yhaKL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90174196, - "label": "rsxC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90370766, - "label": "yraIJK", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90303184, - "label": "insHp4", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 90290906, - "label": "fumAC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90233563, - "label": "DNA-binding transcriptional activator FucR", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90176227, - "label": "wcaC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90290908, - "label": "yjeF-tsaE-amiB-mutL-miaA-hfq-hflXKC", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90352351, - "label": "GadE-RcsB", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90366685, - "label": "rluC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90090143, - "label": "lptD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90282662, - "label": "nudC-hemE-nfi", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90290856, - "label": "essD-rrrD-rzpD", - "databaseLabel": "Operon", - "value": 5, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90290858, - "label": "cra", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90256047, - "label": "DNA-binding transcriptional repressor/NMN adenylyltransferase NadR", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90290862, - "label": "paoABCD", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90137231, - "label": "yahF", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90229427, - "label": "aspartate ammonia-lyase", - "databaseLabel": "GeneProduct", - "value": 1, - "font": { - "color": "#eb333d" - }, - "color": { - "background": "#FFFFFF", - "border": "#eb333d", - "hover": { - "background": "#FFFFFF", - "border": "#eb333d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#eb333d" - } - } - }, - { - "id": 90358455, - "label": "fixABCX", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90366645, - "label": "grxB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90286776, - "label": "yeeJ", - "databaseLabel": "Operon", - "value": 2, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90352319, - "label": "MazE-MazF", - "databaseLabel": "TranscriptionFactor", - "value": 6, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90372738, - "label": "thrL", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90129082, - "label": "lplT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90352260, - "label": "FlhDC", - "databaseLabel": "TranscriptionFactor", - "value": 2, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90358411, - "label": "sdhCDAB-sucABCD", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90352264, - "label": "RcsAB", - "databaseLabel": "TranscriptionFactor", - "value": 1, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90286733, - "label": "ptrB", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90370702, - "label": "tolC-ygiABC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90290830, - "label": "prlC-rsmJ", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90290833, - "label": "gcl-hyi-glxR-ybbW-allB-ybbY-glxK", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90352273, - "label": "OmpR", - "databaseLabel": "TranscriptionFactor", - "value": 8, - "font": { - "color": "#ea3cf7" - }, - "color": { - "background": "#FFFFFF", - "border": "#ea3cf7", - "hover": { - "background": "#FFFFFF", - "border": "#ea3cf7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ea3cf7" - } - } - }, - { - "id": 90286740, - "label": "yebG", - "databaseLabel": "Operon", - "value": 1, - "font": { - "color": "#439641" - }, - "color": { - "background": "#FFFFFF", - "border": "#439641", - "hover": { - "background": "#FFFFFF", - "border": "#439641" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#439641" - } - } - }, - { - "id": 90372762, - "label": "fumAC", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90104484, - "label": "yejO", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 90358424, - "label": "pykF", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90370718, - "label": "ygiF-glnE", - "databaseLabel": "TranscriptionUnit", - "value": 3, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 90354332, - "label": "sdhDAB", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - } - ], - "edges": [ - { - "id": 177529489, - "label": "ELEMENT_OF", - "from": 90071807, - "to": 90356514, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515165, - "label": "ENCODES", - "from": 90069840, - "to": 90236842, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513119, - "label": "ELEMENT_OF", - "from": 90367960, - "to": 90291231, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515160, - "label": "ENCODES", - "from": 90069793, - "to": 90236804, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513112, - "label": "ELEMENT_OF", - "from": 90366819, - "to": 90290507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517211, - "label": "ENCODES", - "from": 90132461, - "to": 90264044, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513092, - "label": "ELEMENT_OF", - "from": 90366685, - "to": 90287091, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513088, - "label": "ELEMENT_OF", - "from": 90366645, - "to": 90287083, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531522, - "label": "ELEMENT_OF", - "from": 90129477, - "to": 90363393, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533582, - "label": "ELEMENT_OF", - "from": 90203088, - "to": 90371385, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517193, - "label": "ENCODES", - "from": 90132319, - "to": 90263866, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529481, - "label": "ELEMENT_OF", - "from": 90097100, - "to": 90356508, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521330, - "label": "REGULATES", - "from": 90290420, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531570, - "label": "ELEMENT_OF", - "from": 90107070, - "to": 90363497, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521341, - "label": "REGULATES", - "from": 90291345, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519294, - "label": "REGULATES", - "from": 90288707, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523391, - "label": "REGULATES", - "from": 90291345, - "to": 90351179, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519288, - "label": "REGULATES", - "from": 90281383, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513144, - "label": "ELEMENT_OF", - "from": 90368194, - "to": 90287767, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525433, - "label": "REGULATES", - "from": 90283051, - "to": 90352197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519291, - "label": "REGULATES", - "from": 90286701, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523387, - "label": "REGULATES", - "from": 90290420, - "to": 90351179, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533607, - "label": "ELEMENT_OF", - "from": 90203308, - "to": 90371433, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519264, - "label": "REGULATES", - "from": 90277463, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521326, - "label": "REGULATES", - "from": 90288707, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531567, - "label": "ELEMENT_OF", - "from": 90081528, - "to": 90363486, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519273, - "label": "REGULATES", - "from": 90277915, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523369, - "label": "REGULATES", - "from": 90283051, - "to": 90351149, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511124, - "label": "ELEMENT_OF", - "from": 90352352, - "to": 90274936, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525460, - "label": "REGULATES", - "from": 90290645, - "to": 90352197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521365, - "label": "REGULATES", - "from": 90277651, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511125, - "label": "ELEMENT_OF", - "from": 90352362, - "to": 90274936, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513170, - "label": "ELEMENT_OF", - "from": 90368325, - "to": 90291323, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525459, - "label": "REGULATES", - "from": 90290455, - "to": 90352197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521374, - "label": "REGULATES", - "from": 90278367, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525471, - "label": "REGULATES", - "from": 90275065, - "to": 90352197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521375, - "label": "REGULATES", - "from": 90279048, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525465, - "label": "REGULATES", - "from": 90290906, - "to": 90352197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533657, - "label": "ELEMENT_OF", - "from": 90085822, - "to": 90371506, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521371, - "label": "REGULATES", - "from": 90277915, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513157, - "label": "ELEMENT_OF", - "from": 90368247, - "to": 90290399, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517253, - "label": "ENCODES", - "from": 90135594, - "to": 90264374, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519296, - "label": "REGULATES", - "from": 90290420, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517249, - "label": "ENCODES", - "from": 90135563, - "to": 90264315, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513153, - "label": "ELEMENT_OF", - "from": 90368219, - "to": 90281614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519299, - "label": "REGULATES", - "from": 90290717, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521356, - "label": "REGULATES", - "from": 90276452, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521353, - "label": "REGULATES", - "from": 90275350, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513163, - "label": "ELEMENT_OF", - "from": 90368293, - "to": 90287011, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525493, - "label": "REGULATES", - "from": 90277638, - "to": 90352197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521399, - "label": "REGULATES", - "from": 90283051, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521392, - "label": "REGULATES", - "from": 90281383, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519345, - "label": "REGULATES", - "from": 90275587, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533692, - "label": "ELEMENT_OF", - "from": 90151338, - "to": 90371587, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519358, - "label": "REGULATES", - "from": 90276452, - "to": 90350645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511167, - "label": "ELEMENT_OF", - "from": 90352609, - "to": 90275008, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525496, - "label": "REGULATES", - "from": 90277670, - "to": 90352197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525499, - "label": "REGULATES", - "from": 90277699, - "to": 90352197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531620, - "label": "ELEMENT_OF", - "from": 85909460, - "to": 90363785, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525479, - "label": "REGULATES", - "from": 90276452, - "to": 90352197, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521383, - "label": "REGULATES", - "from": 90279707, - "to": 90350718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531616, - "label": "ELEMENT_OF", - "from": 85909460, - "to": 90363762, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531618, - "label": "ELEMENT_OF", - "from": 85909460, - "to": 90363772, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513187, - "label": "ELEMENT_OF", - "from": 90369058, - "to": 90286833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529579, - "label": "ELEMENT_OF", - "from": 90084817, - "to": 90356597, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511147, - "label": "ELEMENT_OF", - "from": 90352475, - "to": 90281383, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517076, - "label": "ENCODES", - "from": 90129743, - "to": 90262890, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533456, - "label": "ELEMENT_OF", - "from": 90097544, - "to": 90371196, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525276, - "label": "REGULATES", - "from": 90279585, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515036, - "label": "ENCODES", - "from": 90067800, - "to": 90233586, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510940, - "label": "ELEMENT_OF", - "from": 90300839, - "to": 90372458, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525277, - "label": "REGULATES", - "from": 90279707, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529373, - "label": "ELEMENT_OF", - "from": 90057948, - "to": 90355754, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512984, - "label": "ELEMENT_OF", - "from": 90365567, - "to": 90291416, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515032, - "label": "ENCODES", - "from": 90067777, - "to": 90233563, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529348, - "label": "ELEMENT_OF", - "from": 90069626, - "to": 90355666, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515015, - "label": "ENCODES", - "from": 90067652, - "to": 90233428, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525249, - "label": "REGULATES", - "from": 90277556, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525260, - "label": "REGULATES", - "from": 90277773, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515017, - "label": "ENCODES", - "from": 90067664, - "to": 90233448, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512970, - "label": "ELEMENT_OF", - "from": 90365526, - "to": 90288132, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529396, - "label": "ELEMENT_OF", - "from": 69996889, - "to": 90355821, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529397, - "label": "ELEMENT_OF", - "from": 90067652, - "to": 90355825, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515062, - "label": "ENCODES", - "from": 90068002, - "to": 90234888, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523255, - "label": "REGULATES", - "from": 90277773, - "to": 90351137, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525309, - "label": "REGULATES", - "from": 90277651, - "to": 90352174, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525311, - "label": "REGULATES", - "from": 90277773, - "to": 90352174, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533497, - "label": "ELEMENT_OF", - "from": 90099693, - "to": 90371247, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525284, - "label": "REGULATES", - "from": 90290585, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525285, - "label": "REGULATES", - "from": 90290645, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531430, - "label": "ELEMENT_OF", - "from": 90195030, - "to": 90363159, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515040, - "label": "ENCODES", - "from": 90067823, - "to": 90234732, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525281, - "label": "REGULATES", - "from": 90288665, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517091, - "label": "ENCODES", - "from": 90129837, - "to": 90262925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531432, - "label": "ELEMENT_OF", - "from": 90199259, - "to": 90363166, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529387, - "label": "ELEMENT_OF", - "from": 90069840, - "to": 90355770, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513044, - "label": "ELEMENT_OF", - "from": 90366288, - "to": 90288282, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515095, - "label": "ENCODES", - "from": 90069302, - "to": 90235130, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529437, - "label": "ELEMENT_OF", - "from": 90084810, - "to": 90356470, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519175, - "label": "ENCODES", - "from": 90211959, - "to": 90274570, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533506, - "label": "ELEMENT_OF", - "from": 90099798, - "to": 90371263, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513027, - "label": "ELEMENT_OF", - "from": 90365679, - "to": 90288260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517173, - "label": "ENCODES", - "from": 90132131, - "to": 90263634, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515133, - "label": "ENCODES", - "from": 90069616, - "to": 90236598, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515135, - "label": "ENCODES", - "from": 90069626, - "to": 90236608, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515129, - "label": "ENCODES", - "from": 90069582, - "to": 90236558, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533563, - "label": "ELEMENT_OF", - "from": 90199629, - "to": 90371347, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523303, - "label": "REGULATES", - "from": 90275021, - "to": 90351143, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523310, - "label": "REGULATES", - "from": 90290662, - "to": 90351143, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531503, - "label": "ELEMENT_OF", - "from": 90183935, - "to": 90363346, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515112, - "label": "ENCODES", - "from": 90069434, - "to": 90236409, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513365, - "label": "ELEMENT_OF", - "from": 90369849, - "to": 90286733, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531794, - "label": "ELEMENT_OF", - "from": 90137231, - "to": 90365314, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513368, - "label": "ELEMENT_OF", - "from": 90369854, - "to": 90286740, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521541, - "label": "REGULATES", - "from": 90275008, - "to": 90350727, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517445, - "label": "ENCODES", - "from": 90137231, - "to": 90265052, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531783, - "label": "ELEMENT_OF", - "from": 90137155, - "to": 90365295, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529729, - "label": "ELEMENT_OF", - "from": 90069582, - "to": 90356723, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515400, - "label": "ENCODES", - "from": 90071807, - "to": 90251770, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521545, - "label": "REGULATES", - "from": 90275244, - "to": 90350727, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531785, - "label": "ELEMENT_OF", - "from": 90137172, - "to": 90365297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513355, - "label": "ELEMENT_OF", - "from": 90369837, - "to": 90286718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533876, - "label": "ELEMENT_OF", - "from": 90197720, - "to": 90371850, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513397, - "label": "ELEMENT_OF", - "from": 90369925, - "to": 90286776, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529783, - "label": "ELEMENT_OF", - "from": 60104778, - "to": 90356753, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509309, - "label": "ELEMENT_OF", - "from": 90295200, - "to": 90355295, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509305, - "label": "ELEMENT_OF", - "from": 90292346, - "to": 90355245, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515450, - "label": "ENCODES", - "from": 90072232, - "to": 90252744, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529786, - "label": "ELEMENT_OF", - "from": 76736890, - "to": 90356757, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523623, - "label": "REGULATES", - "from": 90286740, - "to": 90351259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517473, - "label": "ENCODES", - "from": 90137507, - "to": 90265114, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533857, - "label": "ELEMENT_OF", - "from": 90197720, - "to": 90371849, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523619, - "label": "REGULATES", - "from": 90281697, - "to": 90351259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523628, - "label": "REGULATES", - "from": 90290662, - "to": 90351259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515438, - "label": "ENCODES", - "from": 90072159, - "to": 90252146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525673, - "label": "REGULATES", - "from": 90277463, - "to": 90352260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521621, - "label": "REGULATES", - "from": 90283327, - "to": 90350736, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517525, - "label": "ENCODES", - "from": 90138002, - "to": 90265244, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513431, - "label": "ELEMENT_OF", - "from": 90369996, - "to": 90285639, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515479, - "label": "ENCODES", - "from": 90072486, - "to": 90252938, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177249245, - "label": "ELEMENT_OF", - "from": 90291681, - "to": 90352609, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515481, - "label": "ENCODES", - "from": 90072512, - "to": 90252942, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533892, - "label": "ELEMENT_OF", - "from": 90099709, - "to": 90371865, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515461, - "label": "ENCODES", - "from": 90072349, - "to": 90252838, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517504, - "label": "ENCODES", - "from": 90137799, - "to": 90265196, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515456, - "label": "ENCODES", - "from": 90072281, - "to": 90252802, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511362, - "label": "ELEMENT_OF", - "from": 90354270, - "to": 90279691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513420, - "label": "ELEMENT_OF", - "from": 90369965, - "to": 90288696, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511374, - "label": "ELEMENT_OF", - "from": 90354332, - "to": 90290645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529800, - "label": "ELEMENT_OF", - "from": 90104542, - "to": 90356761, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519604, - "label": "REGULATES", - "from": 90283990, - "to": 90350648, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517556, - "label": "ENCODES", - "from": 90138852, - "to": 90265951, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509366, - "label": "ELEMENT_OF", - "from": 90295214, - "to": 90355754, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515510, - "label": "ENCODES", - "from": 90072741, - "to": 90253170, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519607, - "label": "REGULATES", - "from": 90290906, - "to": 90350648, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517552, - "label": "ENCODES", - "from": 90138821, - "to": 90265939, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517553, - "label": "ENCODES", - "from": 90138833, - "to": 90265940, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517554, - "label": "ENCODES", - "from": 90138837, - "to": 90265941, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517555, - "label": "ENCODES", - "from": 90138839, - "to": 90265942, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515519, - "label": "ENCODES", - "from": 90072815, - "to": 90253244, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511416, - "label": "ELEMENT_OF", - "from": 90354688, - "to": 90277638, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521656, - "label": "REGULATES", - "from": 90290420, - "to": 90350736, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521658, - "label": "REGULATES", - "from": 90290812, - "to": 90350736, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521659, - "label": "REGULATES", - "from": 90290858, - "to": 90350736, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533925, - "label": "ELEMENT_OF", - "from": 78876660, - "to": 90371920, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533926, - "label": "ELEMENT_OF", - "from": 78876660, - "to": 90371921, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531873, - "label": "ELEMENT_OF", - "from": 90072860, - "to": 90365426, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525731, - "label": "REGULATES", - "from": 90276399, - "to": 90352260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513453, - "label": "ELEMENT_OF", - "from": 90370043, - "to": 90285753, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515502, - "label": "ENCODES", - "from": 90072661, - "to": 90253124, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517551, - "label": "ENCODES", - "from": 90138819, - "to": 90265934, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525737, - "label": "REGULATES", - "from": 90288665, - "to": 90352264, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533930, - "label": "ELEMENT_OF", - "from": 90107188, - "to": 90371935, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521431, - "label": "REGULATES", - "from": 90283990, - "to": 90350726, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513235, - "label": "ELEMENT_OF", - "from": 90369376, - "to": 90286940, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515294, - "label": "ENCODES", - "from": 90070904, - "to": 90246639, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533720, - "label": "ELEMENT_OF", - "from": 90072159, - "to": 90371641, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531674, - "label": "ELEMENT_OF", - "from": 90128250, - "to": 90364039, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521434, - "label": "REGULATES", - "from": 90290455, - "to": 90350726, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521435, - "label": "REGULATES", - "from": 90290906, - "to": 90350726, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511173, - "label": "ELEMENT_OF", - "from": 90352665, - "to": 90275021, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513216, - "label": "ELEMENT_OF", - "from": 90369263, - "to": 90286895, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515264, - "label": "ENCODES", - "from": 90070623, - "to": 90246412, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517324, - "label": "ENCODES", - "from": 90136311, - "to": 90264766, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517325, - "label": "ENCODES", - "from": 90136318, - "to": 90264770, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511181, - "label": "ELEMENT_OF", - "from": 90352734, - "to": 90275048, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531658, - "label": "ELEMENT_OF", - "from": 90067664, - "to": 90363957, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529653, - "label": "ELEMENT_OF", - "from": 85909460, - "to": 90356655, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517366, - "label": "ENCODES", - "from": 90136675, - "to": 90264876, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533751, - "label": "ELEMENT_OF", - "from": 60104778, - "to": 90371684, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525553, - "label": "REGULATES", - "from": 90288707, - "to": 90352231, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515313, - "label": "ENCODES", - "from": 90071075, - "to": 90248968, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523506, - "label": "REGULATES", - "from": 90290420, - "to": 90351202, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531709, - "label": "ELEMENT_OF", - "from": 90136717, - "to": 90365221, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517374, - "label": "ENCODES", - "from": 90136717, - "to": 90264895, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533759, - "label": "ELEMENT_OF", - "from": 90099798, - "to": 90371691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529656, - "label": "ELEMENT_OF", - "from": 90129278, - "to": 90356665, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533755, - "label": "ELEMENT_OF", - "from": 90175557, - "to": 90371687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513253, - "label": "ELEMENT_OF", - "from": 90369557, - "to": 90286962, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511207, - "label": "ELEMENT_OF", - "from": 90352953, - "to": 90279048, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533735, - "label": "ELEMENT_OF", - "from": 90107070, - "to": 90371656, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515296, - "label": "ENCODES", - "from": 90070923, - "to": 90246652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525538, - "label": "REGULATES", - "from": 90274936, - "to": 90352231, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525548, - "label": "REGULATES", - "from": 90279048, - "to": 90352231, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533742, - "label": "ELEMENT_OF", - "from": 90072741, - "to": 90371675, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525550, - "label": "REGULATES", - "from": 90279055, - "to": 90352231, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511209, - "label": "ELEMENT_OF", - "from": 90352962, - "to": 90279055, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531733, - "label": "ELEMENT_OF", - "from": 90136882, - "to": 90365246, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517394, - "label": "ENCODES", - "from": 90136914, - "to": 90264926, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531736, - "label": "ELEMENT_OF", - "from": 90136914, - "to": 90365252, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533764, - "label": "ELEMENT_OF", - "from": 90195210, - "to": 90371694, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511236, - "label": "ELEMENT_OF", - "from": 90353203, - "to": 90279122, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533762, - "label": "ELEMENT_OF", - "from": 90070904, - "to": 90371692, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517391, - "label": "ENCODES", - "from": 90136882, - "to": 90264922, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515336, - "label": "ENCODES", - "from": 90071270, - "to": 90249134, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531764, - "label": "ELEMENT_OF", - "from": 90137044, - "to": 90365279, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517424, - "label": "ENCODES", - "from": 90137079, - "to": 90265001, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533809, - "label": "ELEMENT_OF", - "from": 90084850, - "to": 90371748, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523571, - "label": "REGULATES", - "from": 90277651, - "to": 90351233, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517436, - "label": "ENCODES", - "from": 90137155, - "to": 90265028, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513340, - "label": "ELEMENT_OF", - "from": 90369794, - "to": 90290710, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513342, - "label": "ELEMENT_OF", - "from": 90369799, - "to": 90286706, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517438, - "label": "ENCODES", - "from": 90137172, - "to": 90265035, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511289, - "label": "ELEMENT_OF", - "from": 90353650, - "to": 90279269, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531770, - "label": "ELEMENT_OF", - "from": 90137079, - "to": 90365282, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513339, - "label": "ELEMENT_OF", - "from": 90369793, - "to": 90286701, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529723, - "label": "ELEMENT_OF", - "from": 90069434, - "to": 90356721, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523579, - "label": "REGULATES", - "from": 90277651, - "to": 90351238, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513313, - "label": "ELEMENT_OF", - "from": 90369715, - "to": 90286647, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517409, - "label": "ENCODES", - "from": 90137010, - "to": 90264964, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531746, - "label": "ELEMENT_OF", - "from": 90128317, - "to": 90365259, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517417, - "label": "ENCODES", - "from": 90137044, - "to": 90264978, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516695, - "label": "ENCODES", - "from": 90107070, - "to": 90260590, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512592, - "label": "ELEMENT_OF", - "from": 90363166, - "to": 90281312, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522833, - "label": "REGULATES", - "from": 90291068, - "to": 90350933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522834, - "label": "REGULATES", - "from": 90291345, - "to": 90350933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514642, - "label": "ELEMENT_OF", - "from": 90372898, - "to": 90277651, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533086, - "label": "ELEMENT_OF", - "from": 90095429, - "to": 90370646, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524895, - "label": "REGULATES", - "from": 90290662, - "to": 90352101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531032, - "label": "ELEMENT_OF", - "from": 90180978, - "to": 90361354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522841, - "label": "REGULATES", - "from": 90276355, - "to": 90350939, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531033, - "label": "ELEMENT_OF", - "from": 90138837, - "to": 90361357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516685, - "label": "ENCODES", - "from": 90107005, - "to": 90260563, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512590, - "label": "ELEMENT_OF", - "from": 90363159, - "to": 90290683, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522831, - "label": "REGULATES", - "from": 90279649, - "to": 90350933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522864, - "label": "REGULATES", - "from": 90279048, - "to": 90350943, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518781, - "label": "ENCODES", - "from": 90195030, - "to": 90272353, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514685, - "label": "ENCODES", - "from": 60104778, - "to": 90216695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529022, - "label": "ELEMENT_OF", - "from": 90069582, - "to": 90354270, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531066, - "label": "ELEMENT_OF", - "from": 90175907, - "to": 90361423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518779, - "label": "ENCODES", - "from": 90195023, - "to": 90272349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516709, - "label": "ENCODES", - "from": 90107188, - "to": 90260627, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522849, - "label": "REGULATES", - "from": 90274936, - "to": 90350943, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518764, - "label": "ENCODES", - "from": 90194929, - "to": 90272300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533141, - "label": "ELEMENT_OF", - "from": 90090379, - "to": 90370718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512663, - "label": "ELEMENT_OF", - "from": 90363346, - "to": 90281158, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518800, - "label": "ENCODES", - "from": 90195210, - "to": 90272522, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531090, - "label": "ELEMENT_OF", - "from": 90069840, - "to": 90361458, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531091, - "label": "ELEMENT_OF", - "from": 90058124, - "to": 90361458, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533125, - "label": "ELEMENT_OF", - "from": 90074076, - "to": 90370702, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514691, - "label": "ENCODES", - "from": 60645110, - "to": 90216726, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531086, - "label": "ELEMENT_OF", - "from": 90058124, - "to": 90361456, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531087, - "label": "ELEMENT_OF", - "from": 90069840, - "to": 90361456, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529039, - "label": "ELEMENT_OF", - "from": 90073600, - "to": 90354332, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514697, - "label": "ENCODES", - "from": 61192802, - "to": 90216793, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529033, - "label": "ELEMENT_OF", - "from": 90072349, - "to": 90354301, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516790, - "label": "ENCODES", - "from": 90110034, - "to": 90260813, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533175, - "label": "ELEMENT_OF", - "from": 90195023, - "to": 90370766, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516786, - "label": "ENCODES", - "from": 90110013, - "to": 90260803, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518843, - "label": "ENCODES", - "from": 90197720, - "to": 90272845, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529056, - "label": "ELEMENT_OF", - "from": 90073203, - "to": 90354423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512675, - "label": "ELEMENT_OF", - "from": 90363374, - "to": 90281175, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533165, - "label": "ELEMENT_OF", - "from": 90194929, - "to": 90370756, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512682, - "label": "ELEMENT_OF", - "from": 90363393, - "to": 90288553, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529066, - "label": "ELEMENT_OF", - "from": 90070923, - "to": 90354509, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531115, - "label": "ELEMENT_OF", - "from": 90127704, - "to": 90361488, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532949, - "label": "ELEMENT_OF", - "from": 90186675, - "to": 90370446, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532956, - "label": "ELEMENT_OF", - "from": 90186758, - "to": 90370456, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512476, - "label": "ELEMENT_OF", - "from": 90361799, - "to": 90279897, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512477, - "label": "ELEMENT_OF", - "from": 90361803, - "to": 90279899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516575, - "label": "ENCODES", - "from": 90102290, - "to": 90259599, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528863, - "label": "ELEMENT_OF", - "from": 90174559, - "to": 90353650, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530906, - "label": "ELEMENT_OF", - "from": 90206021, - "to": 90360224, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524737, - "label": "REGULATES", - "from": 90288707, - "to": 90351943, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524750, - "label": "REGULATES", - "from": 90275048, - "to": 90351973, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512456, - "label": "ELEMENT_OF", - "from": 90361760, - "to": 90279853, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530889, - "label": "ELEMENT_OF", - "from": 90206021, - "to": 90360183, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518603, - "label": "ENCODES", - "from": 90186945, - "to": 90271919, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512500, - "label": "ELEMENT_OF", - "from": 90361860, - "to": 90291133, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520692, - "label": "REGULATES", - "from": 90291345, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520694, - "label": "REGULATES", - "from": 90291416, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518641, - "label": "ENCODES", - "from": 90188896, - "to": 90272003, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522737, - "label": "REGULATES", - "from": 90286701, - "to": 90350904, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512497, - "label": "ELEMENT_OF", - "from": 90361855, - "to": 90279755, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524792, - "label": "REGULATES", - "from": 90291345, - "to": 90352009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510434, - "label": "ELEMENT_OF", - "from": 90301945, - "to": 90369557, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522732, - "label": "REGULATES", - "from": 90277990, - "to": 90350904, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520685, - "label": "REGULATES", - "from": 90291066, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520680, - "label": "REGULATES", - "from": 90290906, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522728, - "label": "REGULATES", - "from": 90276399, - "to": 90350904, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520681, - "label": "REGULATES", - "from": 90290908, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533008, - "label": "ELEMENT_OF", - "from": 90092054, - "to": 90370517, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533009, - "label": "ELEMENT_OF", - "from": 90129082, - "to": 90370517, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520733, - "label": "REGULATES", - "from": 90290420, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514590, - "label": "ELEMENT_OF", - "from": 90372762, - "to": 90290906, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520729, - "label": "REGULATES", - "from": 90288707, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532996, - "label": "ELEMENT_OF", - "from": 90072349, - "to": 90370507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530944, - "label": "ELEMENT_OF", - "from": 90138002, - "to": 90360974, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516622, - "label": "ENCODES", - "from": 90104390, - "to": 90260409, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520719, - "label": "REGULATES", - "from": 90288109, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530981, - "label": "ELEMENT_OF", - "from": 90154300, - "to": 90361046, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520741, - "label": "REGULATES", - "from": 90290617, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520742, - "label": "REGULATES", - "from": 90290645, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522790, - "label": "REGULATES", - "from": 90277463, - "to": 90350904, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516647, - "label": "ENCODES", - "from": 90104484, - "to": 90260461, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516653, - "label": "ENCODES", - "from": 90104542, - "to": 90260476, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528937, - "label": "ELEMENT_OF", - "from": 69996889, - "to": 90353915, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533034, - "label": "ELEMENT_OF", - "from": 90188896, - "to": 90370564, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514901, - "label": "ENCODES", - "from": 84396950, - "to": 90232086, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529232, - "label": "ELEMENT_OF", - "from": 80255019, - "to": 90355106, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512849, - "label": "ELEMENT_OF", - "from": 90365259, - "to": 90291354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521043, - "label": "REGULATES", - "from": 90277840, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512861, - "label": "ELEMENT_OF", - "from": 90365282, - "to": 90290970, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523102, - "label": "REGULATES", - "from": 90290455, - "to": 90351073, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531289, - "label": "ELEMENT_OF", - "from": 90137799, - "to": 90361760, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512859, - "label": "ELEMENT_OF", - "from": 90365279, - "to": 90290862, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523077, - "label": "REGULATES", - "from": 90279122, - "to": 90351050, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533313, - "label": "ELEMENT_OF", - "from": 90110171, - "to": 90370996, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512833, - "label": "ELEMENT_OF", - "from": 90365221, - "to": 90288324, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523075, - "label": "REGULATES", - "from": 90276452, - "to": 90351050, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533324, - "label": "ELEMENT_OF", - "from": 90127753, - "to": 90371016, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512845, - "label": "ELEMENT_OF", - "from": 90365252, - "to": 90288337, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518986, - "label": "ENCODES", - "from": 90203308, - "to": 90273204, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512843, - "label": "ELEMENT_OF", - "from": 90365246, - "to": 90288333, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523124, - "label": "REGULATES", - "from": 90291345, - "to": 90351086, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529279, - "label": "ELEMENT_OF", - "from": 90067800, - "to": 90355369, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516986, - "label": "ENCODES", - "from": 90129082, - "to": 90262627, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512868, - "label": "ELEMENT_OF", - "from": 90365295, - "to": 90291086, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512869, - "label": "ELEMENT_OF", - "from": 90365297, - "to": 90288377, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529254, - "label": "ELEMENT_OF", - "from": 90070904, - "to": 90355295, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529250, - "label": "ELEMENT_OF", - "from": 90068002, - "to": 90355245, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521059, - "label": "REGULATES", - "from": 90280058, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531309, - "label": "ELEMENT_OF", - "from": 90136675, - "to": 90361799, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531310, - "label": "ELEMENT_OF", - "from": 90137010, - "to": 90361803, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533354, - "label": "ELEMENT_OF", - "from": 90083096, - "to": 90371063, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514922, - "label": "ENCODES", - "from": 85909460, - "to": 90232246, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512874, - "label": "ELEMENT_OF", - "from": 90365314, - "to": 90281451, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525204, - "label": "REGULATES", - "from": 90275147, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514964, - "label": "ENCODES", - "from": 90057948, - "to": 90233087, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533398, - "label": "ELEMENT_OF", - "from": 90088799, - "to": 90371132, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519062, - "label": "ENCODES", - "from": 90206137, - "to": 90273406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533405, - "label": "ELEMENT_OF", - "from": 90072815, - "to": 90371141, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517019, - "label": "ENCODES", - "from": 90129278, - "to": 90262714, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531333, - "label": "ELEMENT_OF", - "from": 90145619, - "to": 90361860, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525190, - "label": "REGULATES", - "from": 90275021, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519052, - "label": "ENCODES", - "from": 90206021, - "to": 90273366, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519051, - "label": "ENCODES", - "from": 90206021, - "to": 90273367, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512948, - "label": "ELEMENT_OF", - "from": 90365472, - "to": 90288032, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525237, - "label": "REGULATES", - "from": 90276355, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514992, - "label": "ENCODES", - "from": 90058220, - "to": 90233272, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517041, - "label": "ENCODES", - "from": 90129477, - "to": 90262775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512946, - "label": "ELEMENT_OF", - "from": 90365469, - "to": 90288020, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512947, - "label": "ELEMENT_OF", - "from": 90365470, - "to": 90288031, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512956, - "label": "ELEMENT_OF", - "from": 90365486, - "to": 90288066, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529340, - "label": "ELEMENT_OF", - "from": 90073860, - "to": 90355635, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525245, - "label": "REGULATES", - "from": 90277463, - "to": 90352171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514980, - "label": "ENCODES", - "from": 90058124, - "to": 90233171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514982, - "label": "ENCODES", - "from": 90058132, - "to": 90233192, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523168, - "label": "REGULATES", - "from": 90290420, - "to": 90351086, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512929, - "label": "ELEMENT_OF", - "from": 90365426, - "to": 90287852, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523170, - "label": "REGULATES", - "from": 90291145, - "to": 90351086, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529324, - "label": "ELEMENT_OF", - "from": 90067777, - "to": 90355613, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529108, - "label": "ELEMENT_OF", - "from": 78876660, - "to": 90354668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514774, - "label": "ENCODES", - "from": 69996889, - "to": 90229427, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512727, - "label": "ELEMENT_OF", - "from": 90363486, - "to": 90280058, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516824, - "label": "ENCODES", - "from": 90127704, - "to": 90260926, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531161, - "label": "ELEMENT_OF", - "from": 90069616, - "to": 90361548, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514752, - "label": "ENCODES", - "from": 66748235, - "to": 90229238, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516812, - "label": "ENCODES", - "from": 90110171, - "to": 90260884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520909, - "label": "REGULATES", - "from": 90276355, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518863, - "label": "ENCODES", - "from": 90197872, - "to": 90272928, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522952, - "label": "REGULATES", - "from": 90290420, - "to": 90350959, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531145, - "label": "ELEMENT_OF", - "from": 74478346, - "to": 90361534, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522953, - "label": "REGULATES", - "from": 90290662, - "to": 90350959, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520906, - "label": "REGULATES", - "from": 90276295, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533236, - "label": "ELEMENT_OF", - "from": 90197720, - "to": 90370876, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518901, - "label": "ENCODES", - "from": 90199259, - "to": 90272991, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531184, - "label": "ELEMENT_OF", - "from": 90175557, - "to": 90361579, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516850, - "label": "ENCODES", - "from": 90127924, - "to": 90261127, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520946, - "label": "REGULATES", - "from": 90277651, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529139, - "label": "ELEMENT_OF", - "from": 90067823, - "to": 90354738, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514815, - "label": "ENCODES", - "from": 74478346, - "to": 90229738, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531199, - "label": "ELEMENT_OF", - "from": 90138819, - "to": 90361588, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533221, - "label": "ELEMENT_OF", - "from": 90088576, - "to": 90370851, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516832, - "label": "ENCODES", - "from": 90127753, - "to": 90261011, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531168, - "label": "ELEMENT_OF", - "from": 90104484, - "to": 90361560, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529122, - "label": "ELEMENT_OF", - "from": 90058132, - "to": 90354688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516847, - "label": "ENCODES", - "from": 90127906, - "to": 90261112, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529135, - "label": "ELEMENT_OF", - "from": 90067823, - "to": 90354736, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531221, - "label": "ELEMENT_OF", - "from": 90174196, - "to": 90361610, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529173, - "label": "ELEMENT_OF", - "from": 90070623, - "to": 90354825, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520977, - "label": "REGULATES", - "from": 90277602, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514834, - "label": "ENCODES", - "from": 76736890, - "to": 90230416, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520979, - "label": "REGULATES", - "from": 90277632, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512797, - "label": "ELEMENT_OF", - "from": 90363957, - "to": 90290858, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516895, - "label": "ENCODES", - "from": 90128317, - "to": 90261407, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516888, - "label": "ENCODES", - "from": 90128250, - "to": 90261363, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520984, - "label": "REGULATES", - "from": 90276681, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529176, - "label": "ELEMENT_OF", - "from": 90071075, - "to": 90354827, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523012, - "label": "REGULATES", - "from": 90291416, - "to": 90351014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531200, - "label": "ELEMENT_OF", - "from": 90138821, - "to": 90361588, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531201, - "label": "ELEMENT_OF", - "from": 90138833, - "to": 90361588, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523009, - "label": "REGULATES", - "from": 90291066, - "to": 90351014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512771, - "label": "ELEMENT_OF", - "from": 90363785, - "to": 90281403, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533257, - "label": "ELEMENT_OF", - "from": 90197872, - "to": 90370904, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518923, - "label": "ENCODES", - "from": 90199417, - "to": 90273374, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514827, - "label": "ENCODES", - "from": 76230867, - "to": 90230359, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529207, - "label": "ELEMENT_OF", - "from": 90072512, - "to": 90354932, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533298, - "label": "ELEMENT_OF", - "from": 90110034, - "to": 90370966, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518963, - "label": "ENCODES", - "from": 90203088, - "to": 90273147, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533304, - "label": "ELEMENT_OF", - "from": 90087083, - "to": 90370972, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521018, - "label": "REGULATES", - "from": 90278367, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531259, - "label": "ELEMENT_OF", - "from": 90097294, - "to": 90361688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520997, - "label": "REGULATES", - "from": 90275147, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520998, - "label": "REGULATES", - "from": 90275156, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531239, - "label": "ELEMENT_OF", - "from": 90151416, - "to": 90361619, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520994, - "label": "REGULATES", - "from": 90275065, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514850, - "label": "ENCODES", - "from": 78876660, - "to": 90230626, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531234, - "label": "ELEMENT_OF", - "from": 90174196, - "to": 90361612, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523042, - "label": "REGULATES", - "from": 90274913, - "to": 90351017, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518947, - "label": "ENCODES", - "from": 90199629, - "to": 90273093, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533293, - "label": "ELEMENT_OF", - "from": 90072836, - "to": 90370955, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514863, - "label": "ENCODES", - "from": 80255019, - "to": 90230716, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512808, - "label": "ELEMENT_OF", - "from": 90364039, - "to": 90288533, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533289, - "label": "ELEMENT_OF", - "from": 90110013, - "to": 90370944, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521001, - "label": "REGULATES", - "from": 90275302, - "to": 90350688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528468, - "label": "ELEMENT_OF", - "from": 90174743, - "to": 90352362, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534612, - "label": "ELEMENT_OF", - "from": 90067800, - "to": 90372725, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514132, - "label": "ELEMENT_OF", - "from": 90371656, - "to": 90274913, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516181, - "label": "ENCODES", - "from": 90088844, - "to": 90256526, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528469, - "label": "ELEMENT_OF", - "from": 90174732, - "to": 90352362, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524374, - "label": "REGULATES", - "from": 90277463, - "to": 90351652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516176, - "label": "ENCODES", - "from": 90088794, - "to": 90256507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512081, - "label": "ELEMENT_OF", - "from": 90359535, - "to": 90290957, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516178, - "label": "ENCODES", - "from": 90088799, - "to": 90256518, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520274, - "label": "REGULATES", - "from": 90276624, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528466, - "label": "ELEMENT_OF", - "from": 90174732, - "to": 90352352, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528467, - "label": "ELEMENT_OF", - "from": 90174743, - "to": 90352352, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528476, - "label": "ELEMENT_OF", - "from": 90174732, - "to": 90352364, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522332, - "label": "REGULATES", - "from": 90276399, - "to": 90350829, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528477, - "label": "ELEMENT_OF", - "from": 90174743, - "to": 90352364, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520285, - "label": "REGULATES", - "from": 90290420, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518237, - "label": "ENCODES", - "from": 90175557, - "to": 90269817, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514141, - "label": "ELEMENT_OF", - "from": 90371684, - "to": 90277602, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520287, - "label": "REGULATES", - "from": 90290507, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534617, - "label": "ELEMENT_OF", - "from": 90084810, - "to": 90372738, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524378, - "label": "REGULATES", - "from": 90279585, - "to": 90351652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520282, - "label": "REGULATES", - "from": 90288109, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520260, - "label": "REGULATES", - "from": 90275156, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532549, - "label": "ELEMENT_OF", - "from": 90097292, - "to": 90369854, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512064, - "label": "ELEMENT_OF", - "from": 90359504, - "to": 90275065, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530498, - "label": "ELEMENT_OF", - "from": 90135563, - "to": 90359309, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532546, - "label": "ELEMENT_OF", - "from": 90074047, - "to": 90369849, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512067, - "label": "ELEMENT_OF", - "from": 90359508, - "to": 90279649, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520268, - "label": "REGULATES", - "from": 90276342, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514125, - "label": "ELEMENT_OF", - "from": 90371641, - "to": 90288565, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520269, - "label": "REGULATES", - "from": 90276399, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520270, - "label": "REGULATES", - "from": 90276452, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524367, - "label": "REGULATES", - "from": 90274913, - "to": 90351652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530504, - "label": "ELEMENT_OF", - "from": 90127906, - "to": 90359317, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534601, - "label": "ELEMENT_OF", - "from": 90070623, - "to": 90372706, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530507, - "label": "ELEMENT_OF", - "from": 90127924, - "to": 90359317, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520267, - "label": "REGULATES", - "from": 90276295, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518260, - "label": "ENCODES", - "from": 90175907, - "to": 90270075, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510071, - "label": "ELEMENT_OF", - "from": 90295396, - "to": 90361357, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518263, - "label": "ENCODES", - "from": 90175922, - "to": 90270128, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532593, - "label": "ELEMENT_OF", - "from": 90175922, - "to": 90369925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512114, - "label": "ELEMENT_OF", - "from": 90359618, - "to": 90291345, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530554, - "label": "ELEMENT_OF", - "from": 90069302, - "to": 90359353, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524388, - "label": "REGULATES", - "from": 90286701, - "to": 90351652, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512103, - "label": "ELEMENT_OF", - "from": 90359587, - "to": 90290717, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514145, - "label": "ELEMENT_OF", - "from": 90371691, - "to": 90288665, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514146, - "label": "ELEMENT_OF", - "from": 90371692, - "to": 90277773, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534626, - "label": "ELEMENT_OF", - "from": 90067800, - "to": 90372762, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514147, - "label": "ELEMENT_OF", - "from": 90371694, - "to": 90291032, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516204, - "label": "ENCODES", - "from": 90090143, - "to": 90256675, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532629, - "label": "ELEMENT_OF", - "from": 90176227, - "to": 90369965, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530582, - "label": "ELEMENT_OF", - "from": 90084817, - "to": 90359386, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522387, - "label": "REGULATES", - "from": 90277915, - "to": 90350843, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522397, - "label": "REGULATES", - "from": 90291345, - "to": 90350843, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522393, - "label": "REGULATES", - "from": 90290420, - "to": 90350843, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518298, - "label": "ENCODES", - "from": 90176227, - "to": 90270782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530561, - "label": "ELEMENT_OF", - "from": 90069793, - "to": 90359368, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516225, - "label": "ENCODES", - "from": 90090341, - "to": 90256873, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522371, - "label": "REGULATES", - "from": 90275021, - "to": 90350830, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530568, - "label": "ELEMENT_OF", - "from": 90084817, - "to": 90359385, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516233, - "label": "ENCODES", - "from": 90090379, - "to": 90256959, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534708, - "label": "ELEMENT_OF", - "from": 90067823, - "to": 90372902, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518325, - "label": "ENCODES", - "from": 90176496, - "to": 90270845, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534710, - "label": "ELEMENT_OF", - "from": 90067823, - "to": 90372905, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514225, - "label": "ELEMENT_OF", - "from": 90371865, - "to": 90289398, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534706, - "label": "ELEMENT_OF", - "from": 90067823, - "to": 90372901, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534714, - "label": "ELEMENT_OF", - "from": 90072741, - "to": 90372908, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534715, - "label": "ELEMENT_OF", - "from": 90072741, - "to": 90372914, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528544, - "label": "ELEMENT_OF", - "from": 90132461, - "to": 90352475, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528546, - "label": "ELEMENT_OF", - "from": 90132461, - "to": 90352477, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524460, - "label": "REGULATES", - "from": 90288707, - "to": 90351700, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534701, - "label": "ELEMENT_OF", - "from": 90067823, - "to": 90372896, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534702, - "label": "ELEMENT_OF", - "from": 90067823, - "to": 90372898, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532655, - "label": "ELEMENT_OF", - "from": 90176496, - "to": 90369996, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534703, - "label": "ELEMENT_OF", - "from": 90067823, - "to": 90372899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530384, - "label": "ELEMENT_OF", - "from": 90104542, - "to": 90359215, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511964, - "label": "ELEMENT_OF", - "from": 90359248, - "to": 90276452, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534493, - "label": "ELEMENT_OF", - "from": 90195210, - "to": 90372558, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514008, - "label": "ELEMENT_OF", - "from": 90371347, - "to": 90281796, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511940, - "label": "ELEMENT_OF", - "from": 90359198, - "to": 90276342, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520133, - "label": "REGULATES", - "from": 90279902, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530374, - "label": "ELEMENT_OF", - "from": 90071270, - "to": 90359202, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511943, - "label": "ELEMENT_OF", - "from": 90359202, - "to": 90276355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524231, - "label": "REGULATES", - "from": 90290833, - "to": 90351597, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534465, - "label": "ELEMENT_OF", - "from": 90068002, - "to": 90372509, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518082, - "label": "ENCODES", - "from": 90174196, - "to": 90269309, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534466, - "label": "ELEMENT_OF", - "from": 90084850, - "to": 90372509, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520140, - "label": "REGULATES", - "from": 90281312, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520136, - "label": "REGULATES", - "from": 90280058, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522230, - "label": "REGULATES", - "from": 90279585, - "to": 90350812, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518134, - "label": "ENCODES", - "from": 90174602, - "to": 90269416, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520182, - "label": "REGULATES", - "from": 90277463, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514038, - "label": "ELEMENT_OF", - "from": 90371433, - "to": 90281992, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511991, - "label": "ELEMENT_OF", - "from": 90359309, - "to": 90290420, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530423, - "label": "ELEMENT_OF", - "from": 90132319, - "to": 90359248, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518129, - "label": "ENCODES", - "from": 90174559, - "to": 90269401, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520190, - "label": "REGULATES", - "from": 90277556, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520191, - "label": "REGULATES", - "from": 90277608, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532472, - "label": "ELEMENT_OF", - "from": 90174602, - "to": 90369715, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516088, - "label": "ENCODES", - "from": 90087083, - "to": 90256296, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522233, - "label": "REGULATES", - "from": 90277990, - "to": 90350812, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530426, - "label": "ELEMENT_OF", - "from": 61192802, - "to": 90359248, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514022, - "label": "ELEMENT_OF", - "from": 90371385, - "to": 90290568, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520172, - "label": "REGULATES", - "from": 90290906, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511982, - "label": "ELEMENT_OF", - "from": 90359289, - "to": 90276452, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534511, - "label": "ELEMENT_OF", - "from": 90099798, - "to": 90372568, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524271, - "label": "REGULATES", - "from": 90279470, - "to": 90351631, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511976, - "label": "ELEMENT_OF", - "from": 90359276, - "to": 90288707, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520169, - "label": "REGULATES", - "from": 90290645, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511979, - "label": "ELEMENT_OF", - "from": 90359283, - "to": 90290585, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514069, - "label": "ELEMENT_OF", - "from": 90371506, - "to": 90281635, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530454, - "label": "ELEMENT_OF", - "from": 90072741, - "to": 90359276, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512016, - "label": "ELEMENT_OF", - "from": 90359368, - "to": 90275302, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532511, - "label": "ELEMENT_OF", - "from": 90175134, - "to": 90369793, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522267, - "label": "REGULATES", - "from": 90283990, - "to": 90350826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518150, - "label": "ENCODES", - "from": 90174732, - "to": 90269459, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518151, - "label": "ENCODES", - "from": 90174743, - "to": 90269463, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520206, - "label": "REGULATES", - "from": 90277990, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512011, - "label": "ELEMENT_OF", - "from": 90359353, - "to": 90275244, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514100, - "label": "ELEMENT_OF", - "from": 90371587, - "to": 90288631, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532528, - "label": "ELEMENT_OF", - "from": 90175295, - "to": 90369831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512048, - "label": "ELEMENT_OF", - "from": 90359454, - "to": 90279902, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518193, - "label": "ENCODES", - "from": 90175194, - "to": 90269572, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530482, - "label": "ELEMENT_OF", - "from": 90132319, - "to": 90359289, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532531, - "label": "ELEMENT_OF", - "from": 90129837, - "to": 90369837, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518206, - "label": "ENCODES", - "from": 90175295, - "to": 90269607, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512037, - "label": "ELEMENT_OF", - "from": 90359427, - "to": 90274938, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522272, - "label": "REGULATES", - "from": 90290906, - "to": 90350826, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532512, - "label": "ELEMENT_OF", - "from": 90175161, - "to": 90369794, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532514, - "label": "ELEMENT_OF", - "from": 90175194, - "to": 90369799, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518189, - "label": "ENCODES", - "from": 90175134, - "to": 90269562, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518191, - "label": "ENCODES", - "from": 90175161, - "to": 90269569, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516137, - "label": "ENCODES", - "from": 90088576, - "to": 90256435, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532820, - "label": "ELEMENT_OF", - "from": 90183925, - "to": 90370244, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514389, - "label": "ELEMENT_OF", - "from": 90372270, - "to": 90290480, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512342, - "label": "ELEMENT_OF", - "from": 90361458, - "to": 90279585, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522577, - "label": "REGULATES", - "from": 90288109, - "to": 90350899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522588, - "label": "REGULATES", - "from": 90275156, - "to": 90350899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514397, - "label": "ELEMENT_OF", - "from": 90372293, - "to": 90276638, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522591, - "label": "REGULATES", - "from": 90276399, - "to": 90350899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532805, - "label": "ELEMENT_OF", - "from": 90180978, - "to": 90370212, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522567, - "label": "REGULATES", - "from": 90277990, - "to": 90350899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522574, - "label": "REGULATES", - "from": 90280058, - "to": 90350899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532814, - "label": "ELEMENT_OF", - "from": 90181091, - "to": 90370230, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522575, - "label": "REGULATES", - "from": 90286701, - "to": 90350899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512328, - "label": "ELEMENT_OF", - "from": 90361423, - "to": 90290455, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516425, - "label": "ENCODES", - "from": 90097292, - "to": 90258351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516426, - "label": "ENCODES", - "from": 90097294, - "to": 90258352, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512373, - "label": "ELEMENT_OF", - "from": 90361534, - "to": 90290718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528752, - "label": "ELEMENT_OF", - "from": 90186945, - "to": 90353203, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512383, - "label": "ELEMENT_OF", - "from": 90361560, - "to": 90279668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514431, - "label": "ELEMENT_OF", - "from": 90372374, - "to": 90283990, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530809, - "label": "ELEMENT_OF", - "from": 90073203, - "to": 90359782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512378, - "label": "ELEMENT_OF", - "from": 90361548, - "to": 90291145, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522597, - "label": "REGULATES", - "from": 90277463, - "to": 90350899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514400, - "label": "ELEMENT_OF", - "from": 90372300, - "to": 90289834, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512353, - "label": "ELEMENT_OF", - "from": 90361488, - "to": 90290595, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518497, - "label": "ENCODES", - "from": 90185015, - "to": 90271317, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524653, - "label": "REGULATES", - "from": 90275048, - "to": 90351879, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516457, - "label": "ENCODES", - "from": 90097544, - "to": 90258646, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522602, - "label": "REGULATES", - "from": 90277608, - "to": 90350899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524691, - "label": "REGULATES", - "from": 90290668, - "to": 90351903, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514451, - "label": "ELEMENT_OF", - "from": 90372427, - "to": 90290617, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512409, - "label": "ELEMENT_OF", - "from": 90361612, - "to": 90281388, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512411, - "label": "ELEMENT_OF", - "from": 90361619, - "to": 90279700, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518534, - "label": "ENCODES", - "from": 90185280, - "to": 90271671, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528775, - "label": "ELEMENT_OF", - "from": 90067823, - "to": 90353292, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518531, - "label": "ENCODES", - "from": 90185261, - "to": 90271664, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512399, - "label": "ELEMENT_OF", - "from": 90361588, - "to": 90290856, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514447, - "label": "ELEMENT_OF", - "from": 90372415, - "to": 90288109, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524681, - "label": "REGULATES", - "from": 90288553, - "to": 90351899, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512394, - "label": "ELEMENT_OF", - "from": 90361579, - "to": 90279682, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532916, - "label": "ELEMENT_OF", - "from": 90185280, - "to": 90370406, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516528, - "label": "ENCODES", - "from": 90099709, - "to": 90259185, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532913, - "label": "ELEMENT_OF", - "from": 90097107, - "to": 90370387, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532914, - "label": "ELEMENT_OF", - "from": 90185261, - "to": 90370388, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530867, - "label": "ELEMENT_OF", - "from": 90102290, - "to": 90360176, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510397, - "label": "ELEMENT_OF", - "from": 90301884, - "to": 90366645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514494, - "label": "ELEMENT_OF", - "from": 90372509, - "to": 90290727, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510399, - "label": "ELEMENT_OF", - "from": 90298875, - "to": 90366819, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516537, - "label": "ENCODES", - "from": 90099798, - "to": 90259287, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514470, - "label": "ELEMENT_OF", - "from": 90372467, - "to": 90286716, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518567, - "label": "ENCODES", - "from": 90186675, - "to": 90271840, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532896, - "label": "ELEMENT_OF", - "from": 90072281, - "to": 90370360, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532899, - "label": "ELEMENT_OF", - "from": 90107005, - "to": 90370363, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514467, - "label": "ELEMENT_OF", - "from": 90372458, - "to": 90290668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512429, - "label": "ELEMENT_OF", - "from": 90361688, - "to": 90279800, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516526, - "label": "ENCODES", - "from": 90099693, - "to": 90259167, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518575, - "label": "ENCODES", - "from": 90186758, - "to": 90271864, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514261, - "label": "ELEMENT_OF", - "from": 90371964, - "to": 90290662, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532688, - "label": "ELEMENT_OF", - "from": 90104390, - "to": 90370043, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530640, - "label": "ELEMENT_OF", - "from": 76230867, - "to": 90359454, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516305, - "label": "ENCODES", - "from": 90092054, - "to": 90257520, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512211, - "label": "ELEMENT_OF", - "from": 90360176, - "to": 90275350, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528606, - "label": "ELEMENT_OF", - "from": 90135594, - "to": 90352665, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512223, - "label": "ELEMENT_OF", - "from": 90360224, - "to": 90291369, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514266, - "label": "ELEMENT_OF", - "from": 90371975, - "to": 90275147, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522437, - "label": "REGULATES", - "from": 90291345, - "to": 90350853, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522434, - "label": "REGULATES", - "from": 90290420, - "to": 90350853, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530626, - "label": "ELEMENT_OF", - "from": 90088794, - "to": 90359427, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514248, - "label": "ELEMENT_OF", - "from": 90371921, - "to": 90277632, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510153, - "label": "ELEMENT_OF", - "from": 90296238, - "to": 90361588, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514295, - "label": "ELEMENT_OF", - "from": 90372046, - "to": 90277840, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528625, - "label": "ELEMENT_OF", - "from": 90095126, - "to": 90352734, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510205, - "label": "ELEMENT_OF", - "from": 90299522, - "to": 90361855, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530686, - "label": "ELEMENT_OF", - "from": 90072232, - "to": 90359535, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530687, - "label": "ELEMENT_OF", - "from": 90199417, - "to": 90359535, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512248, - "label": "ELEMENT_OF", - "from": 90360974, - "to": 90290833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524539, - "label": "REGULATES", - "from": 90290420, - "to": 90351794, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530662, - "label": "ELEMENT_OF", - "from": 90145561, - "to": 90359504, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530666, - "label": "ELEMENT_OF", - "from": 90180968, - "to": 90359508, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514326, - "label": "ELEMENT_OF", - "from": 90372116, - "to": 90291066, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530705, - "label": "ELEMENT_OF", - "from": 90069616, - "to": 90359564, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522515, - "label": "REGULATES", - "from": 90279440, - "to": 90350884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522525, - "label": "REGULATES", - "from": 90290507, - "to": 90350884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530719, - "label": "ELEMENT_OF", - "from": 90090143, - "to": 90359581, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518425, - "label": "ENCODES", - "from": 90181091, - "to": 90271105, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524570, - "label": "REGULATES", - "from": 90288109, - "to": 90351800, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522522, - "label": "REGULATES", - "from": 90283990, - "to": 90350884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522523, - "label": "REGULATES", - "from": 90290420, - "to": 90350884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512262, - "label": "ELEMENT_OF", - "from": 90361046, - "to": 90279470, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516359, - "label": "ENCODES", - "from": 90095126, - "to": 90257963, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518412, - "label": "ENCODES", - "from": 90180968, - "to": 90271075, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518413, - "label": "ENCODES", - "from": 90180978, - "to": 90271076, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522507, - "label": "REGULATES", - "from": 90277721, - "to": 90350884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530743, - "label": "ELEMENT_OF", - "from": 90088844, - "to": 90359618, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516400, - "label": "ENCODES", - "from": 90097107, - "to": 90258219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530736, - "label": "ELEMENT_OF", - "from": 90104542, - "to": 90359617, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177510257, - "label": "ELEMENT_OF", - "from": 90299238, - "to": 90363374, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528679, - "label": "ELEMENT_OF", - "from": 90129743, - "to": 90352962, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177528672, - "label": "ELEMENT_OF", - "from": 90107188, - "to": 90352953, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530720, - "label": "ELEMENT_OF", - "from": 90090143, - "to": 90359587, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518433, - "label": "ENCODES", - "from": 90183925, - "to": 90271119, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530722, - "label": "ELEMENT_OF", - "from": 90090143, - "to": 90359590, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522530, - "label": "REGULATES", - "from": 90291066, - "to": 90350884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177518435, - "label": "ENCODES", - "from": 90183935, - "to": 90271127, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522531, - "label": "REGULATES", - "from": 90291345, - "to": 90350884, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516396, - "label": "ENCODES", - "from": 90095429, - "to": 90258212, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530732, - "label": "ELEMENT_OF", - "from": 90088844, - "to": 90359614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177514349, - "label": "ELEMENT_OF", - "from": 90372182, - "to": 90290908, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516397, - "label": "ENCODES", - "from": 90095455, - "to": 90258213, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177516398, - "label": "ENCODES", - "from": 90097100, - "to": 90258214, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512297, - "label": "ELEMENT_OF", - "from": 90361354, - "to": 90291068, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177512298, - "label": "ELEMENT_OF", - "from": 90361357, - "to": 90279440, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511572, - "label": "ELEMENT_OF", - "from": 90356470, - "to": 90277404, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519767, - "label": "REGULATES", - "from": 90279682, - "to": 90350663, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532050, - "label": "ELEMENT_OF", - "from": 90148205, - "to": 90366288, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513619, - "label": "ELEMENT_OF", - "from": 90370456, - "to": 90284830, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515677, - "label": "ENCODES", - "from": 90074047, - "to": 90253621, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511554, - "label": "ELEMENT_OF", - "from": 90355821, - "to": 90275156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511555, - "label": "ELEMENT_OF", - "from": 90355825, - "to": 90277377, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517699, - "label": "ENCODES", - "from": 90148205, - "to": 90267534, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513613, - "label": "ELEMENT_OF", - "from": 90370446, - "to": 90281503, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513649, - "label": "ELEMENT_OF", - "from": 90370517, - "to": 90288646, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517745, - "label": "ENCODES", - "from": 90151338, - "to": 90267633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534140, - "label": "ELEMENT_OF", - "from": 90071075, - "to": 90372116, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517758, - "label": "ENCODES", - "from": 90151416, - "to": 90267666, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534139, - "label": "ELEMENT_OF", - "from": 90071075, - "to": 90372110, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519777, - "label": "REGULATES", - "from": 90290957, - "to": 90350663, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515682, - "label": "ENCODES", - "from": 90074076, - "to": 90253632, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519779, - "label": "REGULATES", - "from": 90291145, - "to": 90350663, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511593, - "label": "ELEMENT_OF", - "from": 90356508, - "to": 90277463, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513642, - "label": "ELEMENT_OF", - "from": 90370507, - "to": 90281697, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511595, - "label": "ELEMENT_OF", - "from": 90356514, - "to": 90290812, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523922, - "label": "REGULATES", - "from": 90277377, - "to": 90351371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532126, - "label": "ELEMENT_OF", - "from": 90081475, - "to": 90366685, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513667, - "label": "ELEMENT_OF", - "from": 90370564, - "to": 90283663, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523917, - "label": "REGULATES", - "from": 90276255, - "to": 90351371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523958, - "label": "REGULATES", - "from": 90277840, - "to": 90351374, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534199, - "label": "ELEMENT_OF", - "from": 90084817, - "to": 90372186, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534193, - "label": "ELEMENT_OF", - "from": 90084817, - "to": 90372182, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511675, - "label": "ELEMENT_OF", - "from": 90356721, - "to": 90277580, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511655, - "label": "ELEMENT_OF", - "from": 90356665, - "to": 90277556, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534183, - "label": "ELEMENT_OF", - "from": 90071807, - "to": 90372169, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530081, - "label": "ELEMENT_OF", - "from": 90069840, - "to": 90357074, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513699, - "label": "ELEMENT_OF", - "from": 90370646, - "to": 90288690, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519853, - "label": "REGULATES", - "from": 90276399, - "to": 90350668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519855, - "label": "REGULATES", - "from": 90277602, - "to": 90350668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523735, - "label": "REGULATES", - "from": 90290727, - "to": 90351279, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523729, - "label": "REGULATES", - "from": 90277699, - "to": 90351279, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533970, - "label": "ELEMENT_OF", - "from": 90070923, - "to": 90371966, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533980, - "label": "ELEMENT_OF", - "from": 90070923, - "to": 90371970, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531928, - "label": "ELEMENT_OF", - "from": 90139032, - "to": 90365502, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515524, - "label": "ENCODES", - "from": 90072860, - "to": 90253275, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531908, - "label": "ELEMENT_OF", - "from": 90138852, - "to": 90365472, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523716, - "label": "REGULATES", - "from": 90277670, - "to": 90351276, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517569, - "label": "ENCODES", - "from": 90138955, - "to": 90274714, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515522, - "label": "ENCODES", - "from": 90072836, - "to": 90253273, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531906, - "label": "ELEMENT_OF", - "from": 90206137, - "to": 90365469, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525763, - "label": "REGULATES", - "from": 90276355, - "to": 90352273, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531907, - "label": "ELEMENT_OF", - "from": 90138839, - "to": 90365470, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533955, - "label": "ELEMENT_OF", - "from": 90070923, - "to": 90371964, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531916, - "label": "ELEMENT_OF", - "from": 90138955, - "to": 90365486, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511438, - "label": "ELEMENT_OF", - "from": 90354825, - "to": 90277670, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525770, - "label": "REGULATES", - "from": 90279700, - "to": 90352273, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517579, - "label": "ENCODES", - "from": 90139032, - "to": 90266168, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525813, - "label": "REGULATES", - "from": 90288707, - "to": 90352327, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177519664, - "label": "REGULATES", - "from": 90277773, - "to": 90350654, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515568, - "label": "ENCODES", - "from": 90073191, - "to": 90253366, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511473, - "label": "ELEMENT_OF", - "from": 90355106, - "to": 90277721, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534001, - "label": "ELEMENT_OF", - "from": 90127924, - "to": 90371975, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515570, - "label": "ENCODES", - "from": 90073203, - "to": 90253371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531964, - "label": "ELEMENT_OF", - "from": 90145206, - "to": 90365567, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511485, - "label": "ELEMENT_OF", - "from": 90355245, - "to": 90290727, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521727, - "label": "REGULATES", - "from": 90290420, - "to": 90350752, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513528, - "label": "ELEMENT_OF", - "from": 90370230, - "to": 90288692, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513531, - "label": "ELEMENT_OF", - "from": 90370244, - "to": 90284186, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529892, - "label": "ELEMENT_OF", - "from": 90073203, - "to": 90356833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517606, - "label": "ENCODES", - "from": 90145206, - "to": 90266980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511456, - "label": "ELEMENT_OF", - "from": 90354932, - "to": 90277699, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177531937, - "label": "ELEMENT_OF", - "from": 90090341, - "to": 90365526, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177533998, - "label": "ELEMENT_OF", - "from": 90127906, - "to": 90371975, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525800, - "label": "REGULATES", - "from": 90288707, - "to": 90352319, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521705, - "label": "REGULATES", - "from": 90276339, - "to": 90350748, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521706, - "label": "REGULATES", - "from": 90277721, - "to": 90350748, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515604, - "label": "ENCODES", - "from": 90073600, - "to": 90253442, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517650, - "label": "ENCODES", - "from": 90145619, - "to": 90267309, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529939, - "label": "ELEMENT_OF", - "from": 90073376, - "to": 90356852, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515615, - "label": "ENCODES", - "from": 90073670, - "to": 90253471, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529947, - "label": "ELEMENT_OF", - "from": 90073191, - "to": 90356857, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177525828, - "label": "REGULATES", - "from": 90290420, - "to": 90352351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515584, - "label": "ENCODES", - "from": 90073376, - "to": 90253402, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511489, - "label": "ELEMENT_OF", - "from": 90355295, - "to": 90277773, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521729, - "label": "REGULATES", - "from": 90290662, - "to": 90350752, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517646, - "label": "ENCODES", - "from": 90145561, - "to": 90267256, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513591, - "label": "ELEMENT_OF", - "from": 90370387, - "to": 90284638, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511548, - "label": "ELEMENT_OF", - "from": 90355770, - "to": 90279585, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515646, - "label": "ENCODES", - "from": 90073860, - "to": 90253552, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513592, - "label": "ELEMENT_OF", - "from": 90370388, - "to": 90284651, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511546, - "label": "ELEMENT_OF", - "from": 90355754, - "to": 90277990, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513594, - "label": "ELEMENT_OF", - "from": 90370406, - "to": 90291170, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532027, - "label": "ELEMENT_OF", - "from": 84396950, - "to": 90365679, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523814, - "label": "REGULATES", - "from": 90277915, - "to": 90351355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513581, - "label": "ELEMENT_OF", - "from": 90370363, - "to": 90291475, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529965, - "label": "ELEMENT_OF", - "from": 66748235, - "to": 90356881, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511534, - "label": "ELEMENT_OF", - "from": 90355666, - "to": 90277915, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511528, - "label": "ELEMENT_OF", - "from": 90355635, - "to": 90278367, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177529961, - "label": "ELEMENT_OF", - "from": 90073670, - "to": 90356878, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513578, - "label": "ELEMENT_OF", - "from": 90370360, - "to": 90284567, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534059, - "label": "ELEMENT_OF", - "from": 90067777, - "to": 90372046, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534358, - "label": "ELEMENT_OF", - "from": 90088844, - "to": 90372400, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513872, - "label": "ELEMENT_OF", - "from": 90371063, - "to": 90283452, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532304, - "label": "ELEMENT_OF", - "from": 90169252, - "to": 90369058, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534366, - "label": "ELEMENT_OF", - "from": 90139032, - "to": 90372415, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515934, - "label": "ENCODES", - "from": 90084810, - "to": 90255807, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534340, - "label": "ELEMENT_OF", - "from": 90074076, - "to": 90372374, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532341, - "label": "ELEMENT_OF", - "from": 60645110, - "to": 90369263, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534386, - "label": "ELEMENT_OF", - "from": 90084817, - "to": 90372428, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513907, - "label": "ELEMENT_OF", - "from": 90371141, - "to": 90282385, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530291, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90358424, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534396, - "label": "ELEMENT_OF", - "from": 90088844, - "to": 90372431, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515941, - "label": "ENCODES", - "from": 90084850, - "to": 90255849, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515937, - "label": "ENCODES", - "from": 90084817, - "to": 90255823, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530285, - "label": "ELEMENT_OF", - "from": 90073600, - "to": 90358411, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511850, - "label": "ELEMENT_OF", - "from": 90357521, - "to": 90290727, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524138, - "label": "REGULATES", - "from": 90276339, - "to": 90351503, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515989, - "label": "ENCODES", - "from": 90085822, - "to": 90256047, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522135, - "label": "REGULATES", - "from": 90290585, - "to": 90350797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524188, - "label": "REGULATES", - "from": 90275147, - "to": 90351540, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511901, - "label": "ELEMENT_OF", - "from": 90358424, - "to": 90276255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534424, - "label": "ELEMENT_OF", - "from": 90175295, - "to": 90372467, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511879, - "label": "ELEMENT_OF", - "from": 90358300, - "to": 90275587, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524161, - "label": "REGULATES", - "from": 90276295, - "to": 90351530, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532365, - "label": "ELEMENT_OF", - "from": 90095455, - "to": 90369376, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513933, - "label": "ELEMENT_OF", - "from": 90371196, - "to": 90282533, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522126, - "label": "REGULATES", - "from": 90281383, - "to": 90350797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530314, - "label": "ELEMENT_OF", - "from": 90058220, - "to": 90358505, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520127, - "label": "REGULATES", - "from": 90279649, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534463, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90372507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522168, - "label": "REGULATES", - "from": 90279707, - "to": 90350797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511930, - "label": "ELEMENT_OF", - "from": 90359178, - "to": 90276339, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177520123, - "label": "REGULATES", - "from": 90279585, - "to": 90350687, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511910, - "label": "ELEMENT_OF", - "from": 90358455, - "to": 90276295, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513959, - "label": "ELEMENT_OF", - "from": 90371247, - "to": 90282662, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524192, - "label": "REGULATES", - "from": 90275302, - "to": 90351547, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530350, - "label": "ELEMENT_OF", - "from": 90137507, - "to": 90359178, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524201, - "label": "REGULATES", - "from": 90290420, - "to": 90351550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522153, - "label": "REGULATES", - "from": 90276681, - "to": 90350797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511915, - "label": "ELEMENT_OF", - "from": 90358505, - "to": 90279707, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532181, - "label": "ELEMENT_OF", - "from": 90154155, - "to": 90367960, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523990, - "label": "REGULATES", - "from": 90278367, - "to": 90351400, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515792, - "label": "ENCODES", - "from": 90081528, - "to": 90254225, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513758, - "label": "ELEMENT_OF", - "from": 90370766, - "to": 90284146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534232, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90372234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513752, - "label": "ELEMENT_OF", - "from": 90370756, - "to": 90284126, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534233, - "label": "ELEMENT_OF", - "from": 90072486, - "to": 90372237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517849, - "label": "ENCODES", - "from": 90154300, - "to": 90267866, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509636, - "label": "ELEMENT_OF", - "from": 90294538, - "to": 90357521, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534213, - "label": "ELEMENT_OF", - "from": 90137079, - "to": 90372201, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513734, - "label": "ELEMENT_OF", - "from": 90370718, - "to": 90284016, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517831, - "label": "ENCODES", - "from": 90154155, - "to": 90267829, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177523980, - "label": "REGULATES", - "from": 90278367, - "to": 90351396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511694, - "label": "ELEMENT_OF", - "from": 90356761, - "to": 90276399, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515786, - "label": "ENCODES", - "from": 90081475, - "to": 90254200, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511691, - "label": "ELEMENT_OF", - "from": 90356757, - "to": 90277608, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517876, - "label": "ENCODES", - "from": 90157252, - "to": 90267921, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521973, - "label": "REGULATES", - "from": 90290906, - "to": 90350771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532213, - "label": "ELEMENT_OF", - "from": 90154359, - "to": 90368194, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521968, - "label": "REGULATES", - "from": 90290420, - "to": 90350771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511729, - "label": "ELEMENT_OF", - "from": 90356849, - "to": 90290513, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521969, - "label": "REGULATES", - "from": 90290507, - "to": 90350771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521970, - "label": "REGULATES", - "from": 90290645, - "to": 90350771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511731, - "label": "ELEMENT_OF", - "from": 90356852, - "to": 90276624, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511740, - "label": "ELEMENT_OF", - "from": 90356881, - "to": 90276681, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517887, - "label": "ENCODES", - "from": 90157381, - "to": 90267950, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530168, - "label": "ELEMENT_OF", - "from": 90068002, - "to": 90357519, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534265, - "label": "ELEMENT_OF", - "from": 90073191, - "to": 90372293, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530169, - "label": "ELEMENT_OF", - "from": 90068002, - "to": 90357521, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521978, - "label": "REGULATES", - "from": 90291345, - "to": 90350771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511738, - "label": "ELEMENT_OF", - "from": 90356878, - "to": 90276664, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513787, - "label": "ELEMENT_OF", - "from": 90370851, - "to": 90283026, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521979, - "label": "REGULATES", - "from": 90277608, - "to": 90350771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517856, - "label": "ENCODES", - "from": 90154359, - "to": 90267878, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534252, - "label": "ELEMENT_OF", - "from": 90185015, - "to": 90372266, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534253, - "label": "ELEMENT_OF", - "from": 90185015, - "to": 90372269, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521965, - "label": "REGULATES", - "from": 90288109, - "to": 90350771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534254, - "label": "ELEMENT_OF", - "from": 90185015, - "to": 90372270, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511720, - "label": "ELEMENT_OF", - "from": 90356831, - "to": 90276604, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177521960, - "label": "REGULATES", - "from": 90280058, - "to": 90350771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177511721, - "label": "ELEMENT_OF", - "from": 90356833, - "to": 90279695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522003, - "label": "REGULATES", - "from": 90275021, - "to": 90350771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513820, - "label": "ELEMENT_OF", - "from": 90370944, - "to": 90283258, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509725, - "label": "ELEMENT_OF", - "from": 90294781, - "to": 90359198, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532249, - "label": "ELEMENT_OF", - "from": 90157252, - "to": 90368247, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522010, - "label": "REGULATES", - "from": 90276624, - "to": 90350771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177524059, - "label": "REGULATES", - "from": 90290906, - "to": 90351446, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532230, - "label": "ELEMENT_OF", - "from": 90136311, - "to": 90368219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532231, - "label": "ELEMENT_OF", - "from": 90136318, - "to": 90368219, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534273, - "label": "ELEMENT_OF", - "from": 90088799, - "to": 90372298, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534274, - "label": "ELEMENT_OF", - "from": 90088799, - "to": 90372300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513794, - "label": "ELEMENT_OF", - "from": 90370876, - "to": 90283051, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177515853, - "label": "ENCODES", - "from": 90083096, - "to": 90255291, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513803, - "label": "ELEMENT_OF", - "from": 90370904, - "to": 90283154, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177530229, - "label": "ELEMENT_OF", - "from": 90132131, - "to": 90358300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513840, - "label": "ELEMENT_OF", - "from": 90370996, - "to": 90283327, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177517939, - "label": "ENCODES", - "from": 90169252, - "to": 90268752, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534334, - "label": "ELEMENT_OF", - "from": 90074076, - "to": 90372370, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513849, - "label": "ELEMENT_OF", - "from": 90371016, - "to": 90283378, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177534331, - "label": "ELEMENT_OF", - "from": 90074076, - "to": 90372366, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513828, - "label": "ELEMENT_OF", - "from": 90370966, - "to": 90281685, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177509728, - "label": "ELEMENT_OF", - "from": 90294870, - "to": 90359202, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513824, - "label": "ELEMENT_OF", - "from": 90370955, - "to": 90283291, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532259, - "label": "ELEMENT_OF", - "from": 90157381, - "to": 90368293, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177532269, - "label": "ELEMENT_OF", - "from": 90072661, - "to": 90368325, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177522024, - "label": "REGULATES", - "from": 90279700, - "to": 90350794, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": 177513833, - "label": "ELEMENT_OF", - "from": 90370972, - "to": 90290830, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/Auxilin recruits HSPA8.json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/Auxilin recruits HSPA8.json deleted file mode 100644 index 60e8fb7a31..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/Auxilin recruits HSPA8.json +++ /dev/null @@ -1,20536 +0,0 @@ -{ - "nodes": [ - { - "id": "9947", - "label": "DecS-GHRL-1(24-50) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9946", - "label": "RAB4:GTP promotes recycling of activated MET receptor to the plasma membrane", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9945", - "label": "PolyUb-Misfolded PCNT [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9944", - "label": "DecS-GHRL-1(24-51) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9943", - "label": "CASP8(385-479) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9942", - "label": "O-octanoyl-L-serine-GHRL-1(24-51) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9941", - "label": "p-S423,S425-SMAD3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9940", - "label": "Bradykinin receptor:Bradykinin [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9939", - "label": "GGC-RAB7B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9938", - "label": "Retinoic acid activates HOXB4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9937", - "label": "Ubiquitinated IkB is degraded", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9936", - "label": "NF-kappaB p50,p65,c-Rel:ub-p-IKB [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "9935", - "label": "NF-kappaB p65:p65:ub-p-IkB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9934", - "label": "TFIIH [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9933", - "label": "5HT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9932", - "label": "trans-Golgi Network Derived Vesicle Uncoating", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9931", - "label": "TGFB1:TGFBR2:p-TGFBR1 [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9930", - "label": "ERBB2 promotes PTK6 autophosphorylation", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9929", - "label": "CBL neddylates TGFBR2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9928", - "label": "TGFBR2 phosphorylates TGFBR1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9927", - "label": "PLCG1 phosphorylation by p-EGFR:p-ERBB2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9926", - "label": "TGFB1:TGFBR2:TGFBR1 [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9925", - "label": "NEDD8-AcM-UBE2M [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9924", - "label": "APC is K63-polyubiquitinated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9923", - "label": "PolyUb-Misfolded PARK7 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9922", - "label": "NANOG [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9921", - "label": "Hist [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9920", - "label": "G-protein alpha (13):GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9919", - "label": "spherical HDL and SR-BI receptor form a complex at the cell surface", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9918", - "label": "Aggresome dissociates from dynein and microtubule", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9917", - "label": "Microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9916", - "label": "alpha-beta tubulin dimer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9915", - "label": "MAPK3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9914", - "label": "RNF152 [lysosomal membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9913", - "label": "Hypophosphorylation of RNA Pol II CTD by FCP1P protein", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9912", - "label": "TGFBR2 recruits TGFBR1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9911", - "label": "PP2A (A:C) [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9910", - "label": "NF-kappaB p65:p65 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9909", - "label": "FKBP1A [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9908", - "label": "RASA1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9907", - "label": "FGF18 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9906", - "label": "NF-kappaB p50:c-Rel:ub-p-IKB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9905", - "label": "Exocytosis of ficolin-rich granule lumen proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9904", - "label": "CCNH [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9903", - "label": "Transfer of SUMO2 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9902", - "label": "PTPNs gene transcription and translation", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9901", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "9900", - "label": "The receptor:G-protein complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9899", - "label": "Dissociation of RAS:RAF complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9898", - "label": "trans-Golgi Network Derived Lysosomal Vesicle Uncoating", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9897", - "label": "Expression of PERIOD-1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "9896", - "label": "DNAJC6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9895", - "label": "OPRM1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9894", - "label": "Active NIK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9893", - "label": "HERC5 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9892", - "label": "PAXIP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9891", - "label": "LACT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9890", - "label": "UMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9889", - "label": "Transfer of SUMO3 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9888", - "label": "Activated FGFR2:p-FRS:p-PTPN11 activates RAS nucleotide exchange", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9887", - "label": "Expression of STAT3-upregulated extracellular proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9886", - "label": "Thy-dRib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9885", - "label": "Ura-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9884", - "label": "(d)CMP, TMP, or (d)UMP + H2O => (deoxy)cytidine, thymidine, or (deoxy)uridine + orthophosphate (NT5C3)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9883", - "label": "RNF111 ubiquitinates SUMOylated XPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9882", - "label": "Dissociation of moderate activity BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9881", - "label": "Ub,SUMO:XPC:RAD23:CETN2:Open bubble-dsDNA:PAR-UV-DDB:TFIIH Core:XPA:PAR-PARP1, PAR-PARP2:CHD1L [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9880", - "label": "Cyt-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9879", - "label": "Expression of CEBPB in adipogenesis", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9878", - "label": "CREM isoform 6 (ICER1) [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9877", - "label": "NF-kappaB p50:c-Rel [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9876", - "label": "RAB1:GDP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9875", - "label": "PTPN11 dephosphorylates RUNX1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9874", - "label": "p-Y701-STAT1, p-Y705-STAT3, p-Y649-STAT5 dissociates from IL9:p-Y116-IL9R:JAK1:IL2RG:p-904,939-JAK3:p-Y705-STAT3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9873", - "label": "hp-IRAK1:3xK63-polyUb-TRAF6:3xUBE2N:UBE2V1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9872", - "label": "SLC24A1 exchanges 4Na+ for Ca2+, K+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9871", - "label": "PPARGC1A [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9870", - "label": "RUNX1:CBFB [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9869", - "label": "RUNX1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9868", - "label": "Expression of Leptin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9867", - "label": "K+-independent Li+/Ca2+ exchanger transport", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9866", - "label": "NF-KappaB p50:p50:ub-p-IKBA [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9865", - "label": "NF-kappaB p50:p50 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9864", - "label": "SAR1B:GTP [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9863", - "label": "p-4Y-PLCG1 dissociates from activated FGFR3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9862", - "label": "NF-kappaB p50:p65:ub-p-IKB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9861", - "label": "Ade-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9860", - "label": "KDM1A [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9859", - "label": "IL1B [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9858", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon ALPK1:ADP-heptose stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "9857", - "label": "NF-kappaB p50,p65,c-Rel dimer [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "9856", - "label": "CCND1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9855", - "label": "PPTN11 dephosphorylates SPRY2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9854", - "label": "PLCG1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9853", - "label": "Release of L-Glutamate at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9852", - "label": "AVP(20-28) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9851", - "label": "Disassembly of COPII coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9850", - "label": "SCF-beta-TrCP ubiquitinylates IkB", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9849", - "label": "EP300 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9848", - "label": "COPII vesicle with MHC class I [ER to Golgi transport vesicle membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9847", - "label": "Activated FGFR3:p-FRS:p-PTPN11 activates RAS nucleotide exchange", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9846", - "label": "CCPs deglutamylate tubulin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9845", - "label": "HCMV Nuclear Pore Docking", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9844", - "label": "Thrombin-mediated activation of Proteinase-activated receptors", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9843", - "label": "PTPN11 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9842", - "label": "p-4Y-PLCG1 dissociates from activated FGFR1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9841", - "label": "Estrogen-responsive MYC gene expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9840", - "label": "Budding of COPII coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9839", - "label": "p-T235, S321-CEBPB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9838", - "label": "SOCS2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9837", - "label": "RAB6:GTP displaces PAFAH1B1 from dynein:dynactin complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9836", - "label": "OPRM1 gene expression is repressed by MECP2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9835", - "label": "PYR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9834", - "label": "Phosphorylation of 4E-BP1 by activated mTORC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9833", - "label": "ATP2B1-4 transport cytosolic Ca2+ to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9832", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon TLR3 stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "9831", - "label": "Deacetylation of cleaved cohesin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9830", - "label": "Cleaved Cohesin:PDS5:WAPAL [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9829", - "label": "SIK1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9828", - "label": "phosphoenolpyruvate + ADP => pyruvate + ATP", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9827", - "label": "PGE2 [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9826", - "label": "RHOA:GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9825", - "label": "The Ligand:GPCR:Gq complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9824", - "label": "CASR:Ca2+ [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9823", - "label": "OTUD5 deubiquitinates TRAF3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9822", - "label": "Active PLC-gamma1 dissociates from EGFR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9821", - "label": "ARHGDIA [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9820", - "label": "p-4Y-PLCG1 dissociates from activated FGFR2 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9819", - "label": "AcCho [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9818", - "label": "PRC2 (EZH2) Core [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9817", - "label": "Cho is acetylated to AcCho by CHAT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9816", - "label": "(d)CMP, TMP, or (d)UMP + H2O => (deoxy)cytidine, thymidine, or (deoxy)uridine + orthophosphate (NT5C1A)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9815", - "label": "MCHR1,MCHR2:PMCH(147-165) [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9814", - "label": "NMUR1,NMUR2:NMU [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9813", - "label": "Expression of GATA3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9812", - "label": "TMP, uridine 2', 3', or 5' monophosphates, or deoxyuridine 3' or 5' monophosphates + H2O => thymidine or (deoxy)uridine + orthophosphate [NT5C]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9811", - "label": "G-protein beta-gamma complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9810", - "label": "G-alpha(t):G-beta-gamma:Opsins complex dissociates to active G-alpha(t)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9809", - "label": "GATA3 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9808", - "label": "FOXA1 and GATA3 bind to CCND1 promoter", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9807", - "label": "CIN85 dissociates from EGF:p-6Y-EGFR:CBL:Beta-Pix:CDC42:GTP:CIN85", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9806", - "label": "BTRC [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9805", - "label": "ISGylation of E2 conjugating enzymes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9804", - "label": "E2-mediated FOS gene expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9803", - "label": "RAB1:GTP:USO1:coatomer:PalmC-YKT6:p24 dimers:cargo:spectrin:anykrin [transport vesicle]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9802", - "label": "Dissociation of oncogenic RAS:RAF complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9801", - "label": "Vesicle is tethered through binding GOLGA2:GORASP1, GOLGB1 and the COG complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9800", - "label": "G-protein alpha (i):GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9799", - "label": "p-4Y-PLCG1 dissociates from activated FGFR2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9798", - "label": "Negative regulation of DDX58/IFIH1 signaling by RNF216", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9797", - "label": "Phosphorylated heterodimers of ERBB2 KD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9796", - "label": "Activation of Latent HCMV Genome", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9795", - "label": "PPARG:Fatty Acid:RXRA:Mediator:Coactivator Complex [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9794", - "label": "GDI1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9793", - "label": "NF-kappaB translocates from the cytosol to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9792", - "label": "K63polyUb [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "9791", - "label": "HDAC3 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9790", - "label": "FGF2(10-155) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9789", - "label": "Separation of sister chromatids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9788", - "label": "Fatty acid ligands activate PPARA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9787", - "label": "Equilibrative transport (export) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9786", - "label": "HSP90:ATP:p23:FKBP52:SHR:SH translocates to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9785", - "label": "HSP90:ATP:PTGES3:FKBP52:SHR:SH [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9784", - "label": "HBEGF(63-148) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9783", - "label": "p-Y-STATs translocate to nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9782", - "label": "p-4Y-PLCG1 dissociates from activated FGFR4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9781", - "label": "Expression of NANOG", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9780", - "label": "SLC8A1,2,3 exchange 3Na+ for Ca2+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9779", - "label": "p-Y1105-ARHGAP35 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9778", - "label": "LACT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9777", - "label": "SLC22A12 exchanges extracellular urate for cytosolic LACT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9776", - "label": "CBFB binds RUNX1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9775", - "label": "Phosphorylation of CTLA-4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9774", - "label": "p-Y705-STAT3 dimer translocates from cytosol to nucleoplasm", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9773", - "label": "Fusion of viral membrane with host cell membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9772", - "label": "Viral core surrounded by Matrix layer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9771", - "label": "p-Y-STATs dissociate", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9770", - "label": "SLC7A11-mediated exchange of extracellular cysteine and cytosolic glutamate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9769", - "label": "EXO1 interacting with MSH2:MSH3 excises DNA strand containing an insertion/deletion loop (IDL)", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9768", - "label": "p-4Y-PLCG1 dissociates from activated FGFR4 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9767", - "label": "CIN85:endophilin [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9766", - "label": "BMAL1:CLOCK,NPAS2 heterodimer is phosphorylated and translocates to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9765", - "label": "myristoylated nef [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9764", - "label": "HSP90:ATP:PTGES3:FKBP52:NR3C1:SH [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9763", - "label": "SPRY2 binds CBL", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9762", - "label": "Expression of BMAL1 (ARNTL).", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9761", - "label": "p115-RhoGEF activation of RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9760", - "label": "ARFGAPs stimulate ARF GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9759", - "label": "Phosphorylated heterodimers of ERBB2 ECD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9758", - "label": "OAT1-3 transport organic anions with antiport of dicarboxylic acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9757", - "label": "GDI2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9756", - "label": "PI(3,4,5)P3 [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9755", - "label": "RUNX1 mRNA translation is inhibited by miR-17, miR-18a, miR-20a, miR-27a, miR-106a, miR-215, miR-302b, miR-378 and miR-675", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9754", - "label": "RUNX1 mRNA [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9753", - "label": "Dynamin-mediated GTP hydrolysis promotes vesicle scission", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9752", - "label": "cholesterol + phosphatidylcholine (lecithin) => cholesterol ester + 2-lysophosphatidylcholine (lysolecithin)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9751", - "label": "2OG [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9750", - "label": "PI(4)P:p-T156 AP-2:clathrin:ITSNs:EPS15:REPS1:SGIP1:NECAPs:AAK1:CLASP proteins:cargo:F-BAR proteins:BAR domain proteins:ARP2/3 complex:WASL:f-actin:HIP dimers:DNM:GDP:SYNJs [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9749", - "label": "MyrG-p-Y419-SRC [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9748", - "label": "MYC [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9747", - "label": "The Ligand:GPCR:Gs complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "9746", - "label": "PTHLH [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9745", - "label": "Recovery of RNA synthesis after TC-NER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9744", - "label": "LDL:LDLR complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9743", - "label": "SAR1 Activation And Membrane Binding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9742", - "label": "SAR1B:GDP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9741", - "label": "SAR1B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9740", - "label": "FPR2:FPR2 ligands [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9739", - "label": "FPR2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9738", - "label": "VCPKMT (METTL21D) transfers 3xCH3 from 3xAdoMet to VCP", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9737", - "label": "PIAS4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9736", - "label": "GPR39 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9735", - "label": "Processing of caspases", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9734", - "label": "ARRB1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9733", - "label": "MET phosphorylates STAT3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9732", - "label": "ATP hydrolysis by HSP90", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9731", - "label": "LDL + LDLR => LDL:LDLR complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9730", - "label": "Loss of SAR1B GTPase", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9729", - "label": "Dissociation of the Gi alpha:G olf complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9728", - "label": "Activated NTRK3 stimulates PI3K activity", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9727", - "label": "RPS6KA1/2/3 phosphorylates CEBPB on S321", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9726", - "label": "GNAL [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9725", - "label": "ARHGAP35 stimulates RHOA GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9724", - "label": "PIAS4 SUMOylates NR4A2 with SUMO2,3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9723", - "label": "ISGylation of host proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9722", - "label": "p-S102-WHSC1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9721", - "label": "HGF:p-Y1234,Y1235,Y1349,Y1356-MET dimer [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9720", - "label": "RhoA is activated by nucleotide exchange and inhibits axonal growth", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9719", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9718", - "label": "CTNNB1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9717", - "label": "RHOA:GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9716", - "label": "SEC13 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9715", - "label": "TRAF3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9714", - "label": "GPR4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9713", - "label": "NCOR1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9712", - "label": "PolyUb-Misfolded Proteins:HDAC6 dissociate from complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9711", - "label": "HSP90 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9710", - "label": "p-SPHK1 phosphorylates sphingosine to sphingosine 1-phosphate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9709", - "label": "Beta-catenin displaces TLE:HDAC1 from TCF/LEF", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9708", - "label": "RASA1 stimulates RAS GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9707", - "label": "p-Y705-STAT3 dimer, p-Y641-STAT6 dimer translocate to nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9706", - "label": "Dissociation of paradoxically activated RAS:BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9705", - "label": "p-Y641-STAT6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9704", - "label": "Retinoic acid activates HOXA4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9703", - "label": "SEC22B:STX18:USE1L:BNIP1 [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9702", - "label": "CHEST [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9701", - "label": "CGA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9700", - "label": "TRPs transport extracellular Ca2+ to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9699", - "label": "GCG(53-81) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9698", - "label": "CHOL [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9697", - "label": "Cap Binding Complex (CBC) [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9696", - "label": "p-T235-CEBPB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9695", - "label": "NCBP2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9694", - "label": "The p75NTR:NgR:MDGI complex reduces RHOA-GDI activity, displacing RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9693", - "label": "Retrograde vesicle is tethered at the ER by the NRZ complex and t-SNAREs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9692", - "label": "NCBP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9691", - "label": "Nef mediated disruption of CD4:Lck Complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9690", - "label": "Degradation of CD4", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9689", - "label": "Release of acetylcholine at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9688", - "label": "BTRC:CUL1:SKP1 (SCF-beta-TrCP1) ubiquitinylates PER proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9687", - "label": "Acetylcholine Loaded Synaptic Vesicle [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9686", - "label": "Expression of STAT3-upregulated nuclear proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9685", - "label": "SUMO1:C93-UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9684", - "label": "G-proteins dissociate from plasma-membrane estrogen receptors", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9683", - "label": "RNF168 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9682", - "label": "Retinoic acid activates HOXA1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9681", - "label": "CSNK1D phosphorylates SEC23", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9680", - "label": "cIAP1,2 ubiquitinates NIK in cIAP1,2:TRAF2::TRAF3:NIK", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9679", - "label": "beta-TRCP ubiquitinates IkB-alpha in p-S32,33-IkB-alpha:NF-kB complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9678", - "label": "TNFRSF1B [specific granule membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9677", - "label": "SCF-beta-TRCP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9676", - "label": "RUNX3 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9675", - "label": "Exocytosis of platelet alpha granule contents", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9674", - "label": "COPII cargo:receptors:SEC23:SEC24:SEC13:SEC31:SEC23IP:v-SNAREs:TRAPPCII:RAB1:GTP [COPII-coated ER to Golgi transport vesicle]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9673", - "label": "BMP1-3:Zn2+ cleaves pro-APOA1 to APOA1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9672", - "label": "NCOR2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9671", - "label": "mature mRNA (eukaryotic, capped and deadenylated) [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "9670", - "label": "Exosome Complex hydrolyzes mRNA by 3' to 5' exoribonuclease digestion", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9669", - "label": "LCK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9668", - "label": "SUMOylation of XPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9667", - "label": "F2RL2(22-374) [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9666", - "label": "Dissociation of phosphorylated 4EBP1 from eIF4E", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9665", - "label": "P2RY11 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9664", - "label": "EIF4E [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9663", - "label": "eIF4E:4E-BP1-P [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9662", - "label": "F2RL3(18-385) [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9661", - "label": "Ade-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9660", - "label": "AHCY:NAD+ tetramer hydrolyses AdoHcy", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9659", - "label": "CDC42:GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9658", - "label": "F2R(27-425) [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9657", - "label": "APOA1(25-266) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9656", - "label": "PARN deadenylates mRNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9655", - "label": "Release of PLCG from FCGR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9654", - "label": "A2M [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9653", - "label": "AdoHcy [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9652", - "label": "clustered IgG-Ag:p-FCGRs:p-6Y-SYK:p-3Y-PLCG [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9651", - "label": "p-Y641-STAT6 dimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9650", - "label": "Disintegration of matrix layer", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "9649", - "label": "Phosphorylation and activation of PLCG", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9648", - "label": "Degradation of CD8", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9647", - "label": "Exocytosis of Insulin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9646", - "label": "SUMO1:p-T4827-HERC2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9645", - "label": "TGFA(24-98) [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9644", - "label": "IL1B(117-269) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9643", - "label": "Docking of Mature Histone mRNA complex:TAP at the NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9642", - "label": "p-S25,S1778-TP53BP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9641", - "label": "AREG(101-187) [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9640", - "label": "Dissociation of BRAF/RAF fusion complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9639", - "label": "Beta-catenin translocates to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9638", - "label": "CTNNB1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9637", - "label": "NPS [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9636", - "label": "PP2A [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9635", - "label": "SIN3A [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9634", - "label": "TTLLs polyglutamylate tubulin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9633", - "label": "Ac-K94,K171-RUNX3:CBFB:EP300 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9632", - "label": "Loading of acetylcholine in synaptic vesicles", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9631", - "label": "p-T185,Y187-MAPK1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9630", - "label": "COP9 signalosome deneddylates cytosolic CRL E3 ubiquitin ligase complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9629", - "label": "RPA heterotrimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9628", - "label": "(d)AMP, (d)GMP, or (d)IMP + H2O => (deoxy)adenosine, (deoxy)guanosine, or (deoxy)inosine + orthophosphate (NT5C1A)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9627", - "label": "PPP1R3C [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9626", - "label": "Expression of PPARGC1A (PGC-1alpha)", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9625", - "label": "AGTR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9624", - "label": "Expression of AVP", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9623", - "label": "KLF4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9622", - "label": "NPSR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9621", - "label": "Ligation of newly synthesized repair patch to incised DNA in TC-NER", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9620", - "label": "p-S166-RIPK1:p-S199,227-RIPK3 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9619", - "label": "PP1 dephosphorylates TGFBR1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9618", - "label": "Docking of Mature Replication Dependent Histone mRNA with the NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9617", - "label": "ARRB2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9616", - "label": "Regulation of protein ISGylation by ISG15 deconjugating enzyme USP18", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9615", - "label": "UBE2I [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9614", - "label": "SEC31A:SEC13:SEC23IP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9613", - "label": "DA [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9612", - "label": "Interleukin-1 family are secreted", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "9611", - "label": "Interleukin-1 family [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "9610", - "label": "Expression of CLOCK", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9609", - "label": "APC promotes disassembly of beta-catenin transactivation complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9608", - "label": "IL18 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9607", - "label": "KMT2D [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9606", - "label": "EP300 acetylates RUNX3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9605", - "label": "AR:androgen [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9604", - "label": "PPIA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9603", - "label": "SUMO3:UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9602", - "label": "IL8 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9601", - "label": "Dissociation of RAS:RAF1 mutant complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9600", - "label": "RAB1:GTP [endoplasmic reticulum-Golgi intermediate compartment membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9599", - "label": "p-4Y-PLCG1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9598", - "label": "Dynein:Dynactin:microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9597", - "label": "NSF and SNAPs bind cis-SNARE at the ER membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9596", - "label": "L-Glu [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9595", - "label": "SEC22B:STX18:USE1:BNIP1L:3xSNAPs:NSF hexamer [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9594", - "label": "PTK6 phosphorylates STAT3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9593", - "label": "Expression of NPAS2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9592", - "label": "FOSB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9591", - "label": "Docking of the Mature intronless derived transcript derived mRNA, TAP and Aly/Ref at the NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9590", - "label": "Interleukin-1 family precursors are cleaved by caspase-1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9589", - "label": "CCR4-NOT complex deadenylates mRNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9588", - "label": "p21 RAS:GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9587", - "label": "p-T202,Y204-MAPK3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9586", - "label": "MSH2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9585", - "label": "NFKB1(1-433):RELA [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9584", - "label": "Active PAK1 and Active CDC42 dissociates from GNB/GNG:PAK1:ARHGEF6:CDC42 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9583", - "label": "CCND1 binds RUNX3 and displaces EP300", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9582", - "label": "NSF ATPase activity dissociates cis-SNARE at the ER", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9581", - "label": "p-Y342-PTK6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9580", - "label": "Beta-catenin is released from the destruction complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9579", - "label": "K63polyUb-APC [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9578", - "label": "VCP [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9577", - "label": "ASH2L [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9576", - "label": "PIP3:BTK:G beta-gamma complex dissociates to Active BTK, PIP3 and G beta-gamma complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9575", - "label": "HDAC1:2-containing complex deacetylate histones", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9574", - "label": "IL1B(1-269) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9573", - "label": "PTK6 phosphorylates CDKN1B", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9572", - "label": "Auto-ubiquitination of TRAF6", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9571", - "label": "p-T,Y MAPKs [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "9570", - "label": "ADR, NAd [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "9569", - "label": "NAd [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9568", - "label": "ISGylated host proteins [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9567", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9566", - "label": "JAK1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9565", - "label": "THBS1 gene transcription is stimulated by the complex containing RUNX1, PRMT1 and GATA1 and inhibited by the complex of RUNX1, SIN3A and PRMT6", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9564", - "label": "THBS1 trimer [platelet alpha granule lumen]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9563", - "label": "TGFA(24-98) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9562", - "label": "S1P [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9561", - "label": "MMPs cleave HB-EGF", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9560", - "label": "NEDD8 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9559", - "label": "Ac-CoA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9558", - "label": "p-4Y-PLCG1 dissociates from activated FGFR3 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9557", - "label": "Nucleotide exchange on RAB1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9556", - "label": "GRB2-1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9555", - "label": "Glucagon-like Peptide 1 is secreted from intestinal L cells", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9554", - "label": "STAT1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9553", - "label": "OAT2 and OAT4 mediate transport of sulphate conjugates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9552", - "label": "LPAR1,2,3,5:LPA [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9551", - "label": "PolyUb-Misfolded Proteins [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "9550", - "label": "PolyUb-misfolded nascent CFTR [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9549", - "label": "NF-kB migrates to the nucleus and turns on transcription", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9548", - "label": "ISG15 E3 ligases [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "9547", - "label": "RUNX3 translocates to the nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9546", - "label": "ARIH1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9545", - "label": "Dissociation of phosphorylated PLCG1 from ligand-responsive p-6Y-EGFR mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9544", - "label": "PXLP-K314-GPT transaminates PYR to form L-Ala", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9543", - "label": "AGTR1 [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9542", - "label": "G-protein alpha (q/11): GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9541", - "label": "RIPK3 is phosphorylated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9540", - "label": "RIPK1:RIPK3 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9539", - "label": "Phosphorylated SMAD2/3 dissociates from TGFBR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9538", - "label": "p-T325,T331,S362,S374-FOS [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9537", - "label": "MAPK3 (ERK1) and MAPK1 (ERK2) phosphorylate CEBPB", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9536", - "label": "CEBPB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9535", - "label": "BSG:MCTs cotransport LACT, H+ from cytosol to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9534", - "label": "FGFR1OP-FGFR1 phosphorylates STAT1 and STAT3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9533", - "label": "GYS1 catalyzes the incorporation of phosphoglucose into glycogen-GYG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9532", - "label": "Phosphorylated STAT3 Dimer Translocates to the Nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9531", - "label": "SAA1(19-122) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9530", - "label": "PF4 gene transcription is stimulated by RUNX1:CBFB", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9529", - "label": "PF4(48-101) [platelet alpha granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9528", - "label": "p-Y705-STAT3 dimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9527", - "label": "Vesicle budding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "9526", - "label": "COPI vesicle uncoating at the ER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9525", - "label": "RAB1:GTP:coatomer:p24 dimers:SEC22B:cargo:NBAS:RINT1:ZW10:STX18:USE1L:BNIP1 [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9524", - "label": "C3AR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9523", - "label": "2OG [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9522", - "label": "PF4(32-101) [platelet alpha granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9521", - "label": "The Ligand:GPCR:G12/13 complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9520", - "label": "L-Glu [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9519", - "label": "RIPK3 binds RIPK1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9518", - "label": "TGFA precursor [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9517", - "label": "ADORA2B:Ade-Rib:GsGTP dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9516", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9515", - "label": "p-Y705-STAT3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9514", - "label": "Dissociation of the PAR:Gq complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9513", - "label": "Dissociation of Rho GTP:GDP from GDI complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9512", - "label": "AREG precursor [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9511", - "label": "PPARG [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9510", - "label": "MON1:CCZ1 exchanges GTP for GDP on RAB7", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9509", - "label": "Release of GABA at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9508", - "label": "c-FOS activation by phospho ERK1/2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9507", - "label": "CXCR4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9506", - "label": "GPR84 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9505", - "label": "RNF4 ubiquitinates MDC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9504", - "label": "AREG(101-187) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9503", - "label": "TMED2:TMED10 tetramer:GPI-CD59, GPI-FOLR1 [endoplasmic reticulum-Golgi intermediate compartment membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9502", - "label": "PolyUb:misfolded proteins dissociate from PRKN:UBE2N:UBE2V1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9501", - "label": "SEC22B [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9500", - "label": "p-BMAL1:p-CLOCK,NPAS2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9499", - "label": "RHO [photoreceptor disc membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9498", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon TLR stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "9497", - "label": "Exocytosis of specific granule membrane proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9496", - "label": "Auxilin recruits HSPA8:ATP to the clathrin-coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "9495", - "label": "PI(4)P:p-T156 AP-2:clathrin:ITSNs:EPS15:REPS1:SGIP1:NECAPs:AAK1:CLASP proteins:cargo:F-BAR proteins:BAR domain proteins:ARP2/3 complex:WASL:f-actin:HIP dimers:DNM:GDP:SYNJs:auxilin [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9494", - "label": "FGL2 [ficolin-1-rich granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9493", - "label": "The Ligand:GPCR:Gz complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9492", - "label": "DNA DNA DSBs:p-MRN:p-S1981,Ac-K3016-ATM:KAT5:K63PolyUb-K14,K16,p-S139-H2AFX,Me2K21-HIST1H4A-Nucleosome:SUMO2:K1840,p-5T-MDC1:p-S102-WHSC1:RNF8:Zn2+:SUMO1:p-T4827-HERC2:UBE2N:UBE2V2:RNF168:PIAS4:p-S25,S1778-TP53BP1:p-5S,2T-BRCA1-A complex [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9491", - "label": "Release of p-PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9490", - "label": "Stimulation of IL8 transcription in senescent cells", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9489", - "label": "TACR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9488", - "label": "Dissociation of phosphorylated PLC-gamma 1 from p-EGFRvIII mutant", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9487", - "label": "PPBP(35-128) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9486", - "label": "PolyUb-Misfolded cilia proteins [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "9485", - "label": "PolyUb-Misfolded CETN1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9484", - "label": "Retinoic acid activates HOXB1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9483", - "label": "Dissociation of the PAR:G12/13 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9482", - "label": "RNF8:Zn2+ [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9481", - "label": "KIFC1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9480", - "label": "K48PolyUb-K21,22-p-S32,36-IkBA:NF-kB complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9479", - "label": "TP53 and AP-1 stimulate MSH2 expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9478", - "label": "Phosphorylation and activation of PLCG due to FCGR3A effect", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9477", - "label": "Hypophosphorylation of RNA Pol II CTD by FCP1P protein", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9476", - "label": "Clathrin recruits auxilins to the clathrin-coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9475", - "label": "Dissociation of high activity BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9474", - "label": "AcCho [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9473", - "label": "LDH tetramer reduces PYR to LACT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9472", - "label": "Acyl Ghrelin and C-Ghrelin are secreted", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9471", - "label": "p190RhoGEF exchanges GTP for GDP on RHOA, activating it", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9470", - "label": "DNA polymerase delta polymerizes DNA across single stranded gap", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9469", - "label": "RPA:DNA containing single strand gap [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9468", - "label": "RBBP5 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9467", - "label": "ZFYVE9-1 [early endosome membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9466", - "label": "Activation of NIK", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9465", - "label": "UBE2N:UBE2V1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9464", - "label": "RUNX1 gene expression is inhibited by RUNX3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9463", - "label": "DNA DSB:p-MRN:p-S1981,Ac-K3016-ATM:KAT5 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9462", - "label": "GABA [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9461", - "label": "BET1:GOSR2:STX5 bind v-SNARES on tethered vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9460", - "label": "Ca2+ [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9459", - "label": "PF4(48-101) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9458", - "label": "The Ligand:GPCR:Gi complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9457", - "label": "F2RL3 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9456", - "label": "SLC24A1-4 exchange extracellular 4Na+ for cytosolic Ca2+, K+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9455", - "label": "SNAP25 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9454", - "label": "Dissociation of clathrin-associated proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9453", - "label": "NFKB1:RELA translocates from the cytosol to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9452", - "label": "NFKB1(1-433):RELA [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9451", - "label": "Cytosolic DUSPs dephosphorylate MAPKs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9450", - "label": "EXO1 interacting with MSH2:MSH6 excises single strand DNA containing a mismatch", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9449", - "label": "Core histone octamer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9448", - "label": "EDNRB [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9447", - "label": "Polyglutamylated microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9446", - "label": "26S proteasome processes K48PolyUb-K21,22-p-S32,36-IkBA:NF-kB complex to form NF-kB complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9445", - "label": "Transfer of SUMO1 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9444", - "label": "Acyl Ghrelin [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "9443", - "label": "O-octanoyl-L-serine-GHRL-1(24-50) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9442", - "label": "Release of PLCG from FCGR3A", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9441", - "label": "IgG:Leishmania surface:p-FCGR3A:p-6Y-SYK:p-3Y-PLCG [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9440", - "label": "TGFA precursor [ER to Golgi transport vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9439", - "label": "HDAC1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9438", - "label": "AREG precursor [ER to Golgi transport vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9437", - "label": "PolyUb-Misfolded IFT88 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9436", - "label": "CLOCK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9435", - "label": "RNF152 polyubiquitinates RRAGA", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9434", - "label": "ARNTL [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9433", - "label": "NPAS2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9432", - "label": "UBE2N:UBE2V2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9431", - "label": "Ca2+ [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9430", - "label": "CASP8(217-374) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9429", - "label": "PPARG:RXRA heterodimer binds to fatty acid-like ligands", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9428", - "label": "GYS2 catalyzes the incorporation of phosphoglucose into glycogen-GYG2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9427", - "label": "UBE2L6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9426", - "label": "Transfer of NEDD8 to AcM-UBE2M", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9425", - "label": "NGEF exchanges GTP for GDP on RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9424", - "label": "Activated FGFR4:p-FRS:p-PTPN11 activates RAS nucleotide exchange", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9423", - "label": "Caspase-8 cleaves IL1B precursor", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9422", - "label": "TRAF6 binding leads to IRAK1:TRAF6 release", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9421", - "label": "Association of Ku heterodimer with ends of DNA double-strand break", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9420", - "label": "p-2S,S376,T,T209,T387-IRAK1:TRAF6 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9419", - "label": "PP2A dephosphorylates p-RHO to RHO", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9418", - "label": "Estrogen-responsive CCND1 gene expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9417", - "label": "NR4A2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9416", - "label": "KDM1A demethylates monomethylated H3K9 (MeK-10-H3) at KLK2 and KLK3 promoters", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9415", - "label": "PIAS4 SUMOylates MDC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9414", - "label": "LEP [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9413", - "label": "CCND1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9412", - "label": "SUMO2:UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9411", - "label": "CBL [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9410", - "label": "SRC autophosphorylation is positively regulated by InlA-bound CDH1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9409", - "label": "TC-NER post-incision complex:dsDNA with transcription bubble [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9408", - "label": "STAT1 and STAT3 dimers translocate to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9407", - "label": "WNT5A:FZD4 is endocytosed", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9406", - "label": "viral dsRNA:IFIH1, viral dsRNA:K63polyUb-DDX58:MAVS [mitochondrial outer membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9405", - "label": "p-Y701-STAT1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9404", - "label": "PL [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9403", - "label": "TNFRSF1B [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "9402", - "label": "AP-2 Complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9401", - "label": "Overexpressed HIST1H2AC and ESR1:ESTG bind MYC and BCL2 genes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9400", - "label": "UBE2N [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9399", - "label": "MAP3K14 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9398", - "label": "PolyUb-Misfolded ARL13B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9397", - "label": "TRAF6 is K63 poly-ubiquitinated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9396", - "label": "Retinoic acid activates HOXD4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9395", - "label": "Expression of PPARG", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9394", - "label": "TGFBR2 is recruited to tight junctions after TGF-beta stimulation", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9393", - "label": "SPAST (spastin) mediates the severing of microtubules at chromosome attachment sites", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9392", - "label": "GMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9391", - "label": "MYC gene expression is enhanced by E2F1, STAT3, and CEBPB and repressed by CEBPA", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9390", - "label": "p-4Y- PLCG1 dissociates from activated FGFR1 mutants and fusions", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9389", - "label": "Dissociation of cytosolic HSF1:HSP90:HDAC6:PTGES3 upon sensing protein aggregates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9388", - "label": "Expression of FGF2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9387", - "label": "Protesomal degradation of K48polyUb-TRAF3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9386", - "label": "SCF-beta-TRCP ubiquitinates p-7S-p100:RELB in active NIK:p-176,S180-IKKA dimer:p-7S-p100:SCF-beta-TRCP", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9385", - "label": "FOS [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9384", - "label": "Histone H2A [nucleoplasm]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "9383", - "label": "NMUR2:NMS [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9382", - "label": "cholesterol esters [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9381", - "label": "TAGs [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "9380", - "label": "Disassembly of SR-BI-bound spherical HDL", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9379", - "label": "spherical HDL:SR-BI complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9378", - "label": "G-protein alpha (12):GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9377", - "label": "mature GLP-1 [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "9376", - "label": "GLP-1 (7-37) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9375", - "label": "USO1 homodimer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9374", - "label": "ArgN-GCG(98-127) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "9373", - "label": "UBE2N:UBE2V1 dissociates from hp-IRAK1:3xK63-polyUb-TRAF6:3xUBE2N:UBE2V1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "9372", - "label": "K63PolyUb:K14,K16,p-S139-H2AFX,Me2K21-HIST1H4A-Nucleosome [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9371", - "label": "PER1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "9370", - "label": "coatomer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "9369", - "label": "Phosphorylated heterodimers of ERBB2 TMD/JMD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "9368", - "label": "PAFAH1B1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - } - ], - "edges": [ - { - "id": "10840", - "label": "305153 (-) 299541", - "from": "9947", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10839", - "label": "587783 (-) 140089", - "from": "9946", - "to": "9721", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10838", - "label": "6157 (-) 13130", - "from": "9945", - "to": "9712", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10837", - "label": "6157 (-) 8322", - "from": "9945", - "to": "9918", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10836", - "label": "305167 (-) 299541", - "from": "9944", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10835", - "label": "618516 (-) 1035755", - "from": "9943", - "to": "9519", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10834", - "label": "305175 (-) 299541", - "from": "9942", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10833", - "label": "419867 (-) 960695", - "from": "9941", - "to": "9902", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10832", - "label": "305190 (-) 299541", - "from": "9940", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10831", - "label": "1882150 (-) 2098710", - "from": "9939", - "to": "9510", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10830", - "label": "1341480 (-) 320330", - "from": "9938", - "to": "9713", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10829", - "label": "616491 (-) 550154", - "from": "9937", - "to": "9585", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10828", - "label": "616491 (-) 616607", - "from": "9937", - "to": "9910", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10827", - "label": "616491 (-) 616843", - "from": "9937", - "to": "9857", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10826", - "label": "616491 (-) 616818", - "from": "9937", - "to": "9865", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10825", - "label": "616491 (-) 616732", - "from": "9937", - "to": "9877", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10824", - "label": "616492 (-) 616491", - "from": "9936", - "to": "9937", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10823", - "label": "616493 (-) 616491", - "from": "9935", - "to": "9937", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10822", - "label": "1226805 (-) 1243896", - "from": "9934", - "to": "9745", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10821", - "label": "299067 (-) 369394", - "from": "9933", - "to": "9747", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10820", - "label": "299067 (-) 299541", - "from": "9933", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10819", - "label": "299067 (-) 331494", - "from": "9933", - "to": "9458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10818", - "label": "2119743 (-) 254746", - "from": "9932", - "to": "9734", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10817", - "label": "421954 (-) 951458", - "from": "9931", - "to": "9619", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10816", - "label": "98391 (-) 97550", - "from": "9930", - "to": "9581", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10815", - "label": "950359 (-) 569211", - "from": "9929", - "to": "9411", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10814", - "label": "421977 (-) 421954", - "from": "9928", - "to": "9931", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10813", - "label": "964698 (-) 144608", - "from": "9927", - "to": "9599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10812", - "label": "421979 (-) 421977", - "from": "9926", - "to": "9928", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10811", - "label": "950362 (-) 950359", - "from": "9925", - "to": "9929", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10810", - "label": "712804 (-) 703763", - "from": "9924", - "to": "9579", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10809", - "label": "6250 (-) 8322", - "from": "9923", - "to": "9918", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10808", - "label": "6250 (-) 13130", - "from": "9923", - "to": "9712", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10807", - "label": "159862 (-) 159681", - "from": "9922", - "to": "9388", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10806", - "label": "299127 (-) 299541", - "from": "9921", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10805", - "label": "297083 (-) 296562", - "from": "9920", - "to": "9483", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10804", - "label": "1661054 (-) 1660884", - "from": "9919", - "to": "9379", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10803", - "label": "8322 (-) 8325", - "from": "9918", - "to": "9917", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10802", - "label": "8325 (-) 1934430", - "from": "9917", - "to": "9634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10801", - "label": "8325 (-) 638896", - "from": "9917", - "to": "9393", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10800", - "label": "8327 (-) 1935831", - "from": "9916", - "to": "9846", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10799", - "label": "258188 (-) 1793199", - "from": "9915", - "to": "9616", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10798", - "label": "1867917 (-) 1871665", - "from": "9914", - "to": "9435", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10797", - "label": "1417364 (-) 1226805", - "from": "9913", - "to": "9934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10796", - "label": "422042 (-) 421979", - "from": "9912", - "to": "9926", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10795", - "label": "571548 (-) 571803", - "from": "9911", - "to": "9855", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10794", - "label": "616607 (-) 617080", - "from": "9910", - "to": "9793", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10793", - "label": "422049 (-) 422042", - "from": "9909", - "to": "9912", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10792", - "label": "422049 (-) 573953", - "from": "9909", - "to": "9834", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10791", - "label": "565410 (-) 1200984", - "from": "9908", - "to": "9710", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10790", - "label": "133281 (-) 1245648", - "from": "9907", - "to": "9847", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10789", - "label": "133281 (-) 1484122", - "from": "9907", - "to": "9558", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10788", - "label": "133281 (-) 1485345", - "from": "9907", - "to": "9820", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10787", - "label": "133281 (-) 1485501", - "from": "9907", - "to": "9768", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10786", - "label": "133281 (-) 1245450", - "from": "9907", - "to": "9888", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10785", - "label": "133281 (-) 289149", - "from": "9907", - "to": "9863", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10784", - "label": "133281 (-) 291429", - "from": "9907", - "to": "9799", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10783", - "label": "133281 (-) 571202", - "from": "9907", - "to": "9424", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10782", - "label": "133281 (-) 291483", - "from": "9907", - "to": "9782", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10781", - "label": "616621 (-) 616491", - "from": "9906", - "to": "9937", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10780", - "label": "1116334 (-) 593090", - "from": "9905", - "to": "9604", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10779", - "label": "92336 (-) 1243896", - "from": "9904", - "to": "9745", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10778", - "label": "923825 (-) 77681", - "from": "9903", - "to": "9412", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10777", - "label": "960695 (-) 960987", - "from": "9902", - "to": "9843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10776", - "label": "243911 (-) 2680", - "from": "9901", - "to": "9792", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10775", - "label": "1538253 (-) 293444", - "from": "9900", - "to": "9811", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10774", - "label": "252110 (-) 251201", - "from": "9899", - "to": "9571", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10773", - "label": "252110 (-) 251144", - "from": "9899", - "to": "9587", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10772", - "label": "252110 (-) 250984", - "from": "9899", - "to": "9631", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10771", - "label": "2117860 (-) 254746", - "from": "9898", - "to": "9734", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10770", - "label": "1337573 (-) 1337326", - "from": "9897", - "to": "9371", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10769", - "label": "2117862 (-) 2119743", - "from": "9896", - "to": "9932", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10768", - "label": "2117862 (-) 2117860", - "from": "9896", - "to": "9898", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10767", - "label": "336103 (-) 331494", - "from": "9895", - "to": "9458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10766", - "label": "336103 (-) 1538253", - "from": "9895", - "to": "9900", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10765", - "label": "551145 (-) 550854", - "from": "9894", - "to": "9386", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10764", - "label": "962799 (-) 1794867", - "from": "9893", - "to": "9723", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10763", - "label": "743664 (-) 1341480", - "from": "9892", - "to": "9938", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10762", - "label": "743664 (-) 1341349", - "from": "9892", - "to": "9396", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10761", - "label": "743664 (-) 1341038", - "from": "9892", - "to": "9484", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10760", - "label": "743664 (-) 1340336", - "from": "9892", - "to": "9682", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10759", - "label": "194803 (-) 1863096", - "from": "9891", - "to": "9535", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10758", - "label": "194803 (-) 1690278", - "from": "9891", - "to": "9777", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10757", - "label": "504065 (-) 504078", - "from": "9890", - "to": "9884", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10756", - "label": "504065 (-) 504360", - "from": "9890", - "to": "9816", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10755", - "label": "504065 (-) 504377", - "from": "9890", - "to": "9812", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10754", - "label": "1886473 (-) 1238218", - "from": "9889", - "to": "9603", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10753", - "label": "1245450 (-) 253191", - "from": "9888", - "to": "9588", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10752", - "label": "1806603 (-) 310723", - "from": "9887", - "to": "9531", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10751", - "label": "504076 (-) 1684283", - "from": "9886", - "to": "9719", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10750", - "label": "504076 (-) 1682942", - "from": "9886", - "to": "9516", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10749", - "label": "504075 (-) 1682942", - "from": "9885", - "to": "9516", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10748", - "label": "504075 (-) 1684283", - "from": "9885", - "to": "9719", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10747", - "label": "504078 (-) 504076", - "from": "9884", - "to": "9886", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10746", - "label": "504078 (-) 504077", - "from": "9884", - "to": "9880", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10745", - "label": "504078 (-) 504075", - "from": "9884", - "to": "9885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10744", - "label": "1237263 (-) 55093", - "from": "9883", - "to": "9432", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10743", - "label": "973072 (-) 251144", - "from": "9882", - "to": "9587", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10742", - "label": "973072 (-) 251201", - "from": "9882", - "to": "9571", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10741", - "label": "973072 (-) 250984", - "from": "9882", - "to": "9631", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10740", - "label": "1237265 (-) 1237263", - "from": "9881", - "to": "9883", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10739", - "label": "504077 (-) 1682942", - "from": "9880", - "to": "9516", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10738", - "label": "504077 (-) 1684283", - "from": "9880", - "to": "9719", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10737", - "label": "1382672 (-) 441773", - "from": "9879", - "to": "9536", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10736", - "label": "1337624 (-) 1337573", - "from": "9878", - "to": "9897", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10735", - "label": "616732 (-) 617080", - "from": "9877", - "to": "9793", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10734", - "label": "874812 (-) 888170", - "from": "9876", - "to": "9557", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10733", - "label": "1272124 (-) 1265996", - "from": "9875", - "to": "9869", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10732", - "label": "1046846 (-) 570878", - "from": "9874", - "to": "9515", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10731", - "label": "241990 (-) 958434", - "from": "9873", - "to": "9373", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10730", - "label": "1534279 (-) 251616", - "from": "9872", - "to": "9460", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10729", - "label": "321865 (-) 1382736", - "from": "9871", - "to": "9868", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10728", - "label": "1265995 (-) 1275213", - "from": "9870", - "to": "9565", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10727", - "label": "1265995 (-) 1275346", - "from": "9870", - "to": "9530", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10726", - "label": "1265996 (-) 1275213", - "from": "9869", - "to": "9565", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10725", - "label": "1265996 (-) 1275346", - "from": "9869", - "to": "9530", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10724", - "label": "1382736 (-) 327533", - "from": "9868", - "to": "9414", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10723", - "label": "1681748 (-) 251616", - "from": "9867", - "to": "9460", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10722", - "label": "616817 (-) 616491", - "from": "9866", - "to": "9937", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10721", - "label": "616818 (-) 617080", - "from": "9865", - "to": "9793", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10720", - "label": "883065 (-) 1200606", - "from": "9864", - "to": "9840", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10719", - "label": "289149 (-) 144608", - "from": "9863", - "to": "9599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10718", - "label": "616831 (-) 616491", - "from": "9862", - "to": "9937", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10717", - "label": "330112 (-) 409084", - "from": "9861", - "to": "9517", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10716", - "label": "330112 (-) 369394", - "from": "9861", - "to": "9747", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10715", - "label": "330112 (-) 331494", - "from": "9861", - "to": "9458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10714", - "label": "227715 (-) 1336631", - "from": "9860", - "to": "9575", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10713", - "label": "952711 (-) 958275", - "from": "9859", - "to": "9422", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10712", - "label": "391560 (-) 2680", - "from": "9858", - "to": "9792", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10711", - "label": "616843 (-) 617080", - "from": "9857", - "to": "9793", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10710", - "label": "401809 (-) 1428742", - "from": "9856", - "to": "9583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10709", - "label": "401809 (-) 1266350", - "from": "9856", - "to": "9776", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10708", - "label": "571803 (-) 132458", - "from": "9855", - "to": "9556", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10707", - "label": "149916 (-) 1488882", - "from": "9854", - "to": "9369", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10706", - "label": "149916 (-) 1489512", - "from": "9854", - "to": "9797", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10705", - "label": "149916 (-) 964698", - "from": "9854", - "to": "9927", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10704", - "label": "149916 (-) 1489627", - "from": "9854", - "to": "9759", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10703", - "label": "149916 (-) 289835", - "from": "9854", - "to": "9649", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10702", - "label": "149916 (-) 157322", - "from": "9854", - "to": "9478", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10701", - "label": "1065380 (-) 261355", - "from": "9853", - "to": "9596", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10700", - "label": "301477 (-) 2130666", - "from": "9852", - "to": "9753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10699", - "label": "301477 (-) 299541", - "from": "9852", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10698", - "label": "1200554 (-) 43842", - "from": "9851", - "to": "9716", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10697", - "label": "616886 (-) 616493", - "from": "9850", - "to": "9935", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10696", - "label": "616886 (-) 616831", - "from": "9850", - "to": "9862", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10695", - "label": "616886 (-) 616621", - "from": "9850", - "to": "9906", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10694", - "label": "616886 (-) 616817", - "from": "9850", - "to": "9866", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10693", - "label": "616886 (-) 616492", - "from": "9850", - "to": "9936", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10692", - "label": "321983 (-) 1275213", - "from": "9849", - "to": "9565", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10691", - "label": "321983 (-) 1382736", - "from": "9849", - "to": "9868", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10690", - "label": "1200581 (-) 1200554", - "from": "9848", - "to": "9851", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10689", - "label": "1245648 (-) 253191", - "from": "9847", - "to": "9588", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10688", - "label": "1935831 (-) 191978", - "from": "9846", - "to": "9520", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10687", - "label": "1477081 (-) 8325", - "from": "9845", - "to": "9917", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10686", - "label": "297434 (-) 296684", - "from": "9844", - "to": "9457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10685", - "label": "960987 (-) 1272124", - "from": "9843", - "to": "9875", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10684", - "label": "289245 (-) 144608", - "from": "9842", - "to": "9599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10683", - "label": "2062814 (-) 418544", - "from": "9841", - "to": "9748", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10682", - "label": "1200606 (-) 1200581", - "from": "9840", - "to": "9848", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10681", - "label": "440813 (-) 970337", - "from": "9839", - "to": "9490", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10680", - "label": "1798639 (-) 1911913", - "from": "9838", - "to": "9630", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10679", - "label": "2111986 (-) 49150", - "from": "9837", - "to": "9368", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10678", - "label": "1430006 (-) 336103", - "from": "9836", - "to": "9895", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10677", - "label": "193018 (-) 193941", - "from": "9835", - "to": "9544", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10676", - "label": "193018 (-) 194202", - "from": "9835", - "to": "9473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10675", - "label": "573953 (-) 572417", - "from": "9834", - "to": "9663", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10674", - "label": "1790467 (-) 251616", - "from": "9833", - "to": "9460", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10673", - "label": "248331 (-) 2680", - "from": "9832", - "to": "9792", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10672", - "label": "637452 (-) 193879", - "from": "9831", - "to": "9559", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10671", - "label": "637453 (-) 637452", - "from": "9830", - "to": "9831", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10670", - "label": "1337870 (-) 1337573", - "from": "9829", - "to": "9897", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10669", - "label": "193037 (-) 193018", - "from": "9828", - "to": "9835", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10668", - "label": "299537 (-) 299541", - "from": "9827", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10667", - "label": "653843 (-) 730789", - "from": "9826", - "to": "9471", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10666", - "label": "653843 (-) 737088", - "from": "9826", - "to": "9425", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10665", - "label": "653843 (-) 1538767", - "from": "9826", - "to": "9761", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10664", - "label": "653843 (-) 654138", - "from": "9826", - "to": "9720", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10663", - "label": "299541 (-) 314489", - "from": "9825", - "to": "9625", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10662", - "label": "299541 (-) 310883", - "from": "9825", - "to": "9489", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10661", - "label": "299541 (-) 308039", - "from": "9825", - "to": "9714", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10660", - "label": "299541 (-) 301477", - "from": "9825", - "to": "9852", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10659", - "label": "299541 (-) 309001", - "from": "9825", - "to": "9448", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10658", - "label": "299541 (-) 297979", - "from": "9825", - "to": "9667", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10657", - "label": "299541 (-) 251616", - "from": "9825", - "to": "9460", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10656", - "label": "299541 (-) 298315", - "from": "9825", - "to": "9567", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10655", - "label": "299541 (-) 297990", - "from": "9825", - "to": "9662", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10654", - "label": "299541 (-) 298309", - "from": "9825", - "to": "9570", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10653", - "label": "299541 (-) 298310", - "from": "9825", - "to": "9569", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10652", - "label": "299541 (-) 298000", - "from": "9825", - "to": "9658", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10651", - "label": "299541 (-) 293444", - "from": "9825", - "to": "9811", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10650", - "label": "299541 (-) 296350", - "from": "9825", - "to": "9542", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10649", - "label": "299544 (-) 299541", - "from": "9824", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10648", - "label": "1159708 (-) 2680", - "from": "9823", - "to": "9792", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10647", - "label": "291357 (-) 144608", - "from": "9822", - "to": "9599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10646", - "label": "653856 (-) 654215", - "from": "9821", - "to": "9694", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10645", - "label": "1485345 (-) 144608", - "from": "9820", - "to": "9599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10644", - "label": "1083940 (-) 1084519", - "from": "9819", - "to": "9632", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10643", - "label": "231973 (-) 1341349", - "from": "9818", - "to": "9396", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10642", - "label": "231973 (-) 1340263", - "from": "9818", - "to": "9704", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10641", - "label": "231973 (-) 1341480", - "from": "9818", - "to": "9938", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10640", - "label": "231973 (-) 1340336", - "from": "9818", - "to": "9682", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10639", - "label": "231973 (-) 1341038", - "from": "9818", - "to": "9484", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10638", - "label": "1083941 (-) 1083940", - "from": "9817", - "to": "9819", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10637", - "label": "504360 (-) 504077", - "from": "9816", - "to": "9880", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10636", - "label": "504360 (-) 504075", - "from": "9816", - "to": "9885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10635", - "label": "504360 (-) 504076", - "from": "9816", - "to": "9886", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10634", - "label": "311850 (-) 299541", - "from": "9815", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10633", - "label": "309814 (-) 299541", - "from": "9814", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10632", - "label": "1806903 (-) 412237", - "from": "9813", - "to": "9809", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10631", - "label": "504377 (-) 504076", - "from": "9812", - "to": "9886", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10630", - "label": "504377 (-) 504075", - "from": "9812", - "to": "9885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10629", - "label": "293444 (-) 299541", - "from": "9811", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10628", - "label": "293444 (-) 329216", - "from": "9811", - "to": "9514", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10627", - "label": "293444 (-) 296562", - "from": "9811", - "to": "9483", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10626", - "label": "293444 (-) 1522955", - "from": "9811", - "to": "9584", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10625", - "label": "1538634 (-) 293444", - "from": "9810", - "to": "9811", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10624", - "label": "412237 (-) 414287", - "from": "9809", - "to": "9808", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10623", - "label": "414287 (-) 227113", - "from": "9808", - "to": "9439", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10622", - "label": "932440 (-) 584382", - "from": "9807", - "to": "9767", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10621", - "label": "389722 (-) 549814", - "from": "9806", - "to": "9679", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10620", - "label": "389722 (-) 616886", - "from": "9806", - "to": "9850", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10619", - "label": "1794651 (-) 962799", - "from": "9805", - "to": "9893", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10618", - "label": "1794651 (-) 1793419", - "from": "9805", - "to": "9546", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10617", - "label": "1794651 (-) 962363", - "from": "9805", - "to": "9427", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10616", - "label": "1794651 (-) 1793418", - "from": "9805", - "to": "9548", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10615", - "label": "555611 (-) 409544", - "from": "9804", - "to": "9385", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10614", - "label": "875101 (-) 875099", - "from": "9803", - "to": "9801", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10613", - "label": "971358 (-) 250984", - "from": "9802", - "to": "9631", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10612", - "label": "971358 (-) 251144", - "from": "9802", - "to": "9587", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10611", - "label": "971358 (-) 251201", - "from": "9802", - "to": "9571", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10610", - "label": "875099 (-) 875746", - "from": "9801", - "to": "9598", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10609", - "label": "350818 (-) 555944", - "from": "9800", - "to": "9684", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10608", - "label": "291429 (-) 144608", - "from": "9799", - "to": "9599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10607", - "label": "1159782 (-) 954243", - "from": "9798", - "to": "9406", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10606", - "label": "1489512 (-) 144608", - "from": "9797", - "to": "9599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10605", - "label": "1477225 (-) 231973", - "from": "9796", - "to": "9818", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10604", - "label": "1378926 (-) 1382736", - "from": "9795", - "to": "9868", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10603", - "label": "2052724 (-) 2059776", - "from": "9794", - "to": "9513", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10602", - "label": "617080 (-) 550651", - "from": "9793", - "to": "9452", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10601", - "label": "2680 (-) 712804", - "from": "9792", - "to": "9924", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10600", - "label": "227964 (-) 324791", - "from": "9791", - "to": "9610", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10599", - "label": "227964 (-) 320128", - "from": "9791", - "to": "9788", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10598", - "label": "227964 (-) 1382203", - "from": "9791", - "to": "9429", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10597", - "label": "227964 (-) 322680", - "from": "9791", - "to": "9626", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10596", - "label": "227964 (-) 324862", - "from": "9791", - "to": "9593", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10595", - "label": "227964 (-) 322256", - "from": "9791", - "to": "9762", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10594", - "label": "133757 (-) 291429", - "from": "9790", - "to": "9799", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10593", - "label": "133757 (-) 1485501", - "from": "9790", - "to": "9768", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10592", - "label": "133757 (-) 1484122", - "from": "9790", - "to": "9558", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10591", - "label": "133757 (-) 1480635", - "from": "9790", - "to": "9390", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10590", - "label": "133757 (-) 289149", - "from": "9790", - "to": "9863", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10589", - "label": "133757 (-) 1485345", - "from": "9790", - "to": "9820", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10588", - "label": "133757 (-) 289245", - "from": "9790", - "to": "9842", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10587", - "label": "133757 (-) 291483", - "from": "9790", - "to": "9782", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10586", - "label": "637566 (-) 637453", - "from": "9789", - "to": "9830", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10585", - "label": "320128 (-) 320604", - "from": "9788", - "to": "9635", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10584", - "label": "1684105 (-) 330932", - "from": "9787", - "to": "9613", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10583", - "label": "1684105 (-) 330112", - "from": "9787", - "to": "9861", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10582", - "label": "1684105 (-) 298310", - "from": "9787", - "to": "9569", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10581", - "label": "1684105 (-) 299067", - "from": "9787", - "to": "9933", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10580", - "label": "1309325 (-) 1309326", - "from": "9786", - "to": "9785", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10579", - "label": "1309325 (-) 1309385", - "from": "9786", - "to": "9764", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10578", - "label": "1309326 (-) 1309471", - "from": "9785", - "to": "9732", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10577", - "label": "98964 (-) 98391", - "from": "9784", - "to": "9930", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10576", - "label": "98964 (-) 1490531", - "from": "9784", - "to": "9488", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10575", - "label": "98964 (-) 1490324", - "from": "9784", - "to": "9545", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10574", - "label": "98964 (-) 291357", - "from": "9784", - "to": "9822", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10573", - "label": "1806998 (-) 627749", - "from": "9783", - "to": "9651", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10572", - "label": "1806998 (-) 441814", - "from": "9783", - "to": "9528", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10571", - "label": "291483 (-) 144608", - "from": "9782", - "to": "9599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10570", - "label": "160413 (-) 159862", - "from": "9781", - "to": "9922", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10569", - "label": "1682080 (-) 251616", - "from": "9780", - "to": "9460", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10568", - "label": "719521 (-) 719714", - "from": "9779", - "to": "9708", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10567", - "label": "330402 (-) 331494", - "from": "9778", - "to": "9458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10566", - "label": "1690278 (-) 330402", - "from": "9777", - "to": "9778", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10565", - "label": "1266350 (-) 1265995", - "from": "9776", - "to": "9870", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10564", - "label": "672431 (-) 46171", - "from": "9775", - "to": "9636", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10563", - "label": "1802928 (-) 441814", - "from": "9774", - "to": "9528", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10562", - "label": "1411759 (-) 1411760", - "from": "9773", - "to": "9772", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10561", - "label": "1411760 (-) 1412138", - "from": "9772", - "to": "9650", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10560", - "label": "1807026 (-) 935814", - "from": "9771", - "to": "9405", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10559", - "label": "1807026 (-) 570878", - "from": "9771", - "to": "9515", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10558", - "label": "1807026 (-) 627557", - "from": "9771", - "to": "9705", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10557", - "label": "1673905 (-) 261355", - "from": "9770", - "to": "9596", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10556", - "label": "1231548 (-) 1230506", - "from": "9769", - "to": "9469", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10555", - "label": "1485501 (-) 144608", - "from": "9768", - "to": "9599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10554", - "label": "584382 (-) 2131536", - "from": "9767", - "to": "9496", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10553", - "label": "322239 (-) 321084", - "from": "9766", - "to": "9500", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10552", - "label": "1411783 (-) 1473433", - "from": "9765", - "to": "9691", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10551", - "label": "1309385 (-) 1309471", - "from": "9764", - "to": "9732", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10550", - "label": "572111 (-) 571548", - "from": "9763", - "to": "9911", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10549", - "label": "322256 (-) 321330", - "from": "9762", - "to": "9434", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10548", - "label": "1538767 (-) 654141", - "from": "9761", - "to": "9717", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10547", - "label": "877267 (-) 875101", - "from": "9760", - "to": "9803", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10546", - "label": "1489627 (-) 144608", - "from": "9759", - "to": "9599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10545", - "label": "1694430 (-) 330475", - "from": "9758", - "to": "9751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10544", - "label": "2052833 (-) 2059776", - "from": "9757", - "to": "9513", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10543", - "label": "94950 (-) 1522976", - "from": "9756", - "to": "9576", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10542", - "label": "94950 (-) 548159", - "from": "9756", - "to": "9572", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10541", - "label": "1266408 (-) 1265996", - "from": "9755", - "to": "9869", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10540", - "label": "1266409 (-) 1266408", - "from": "9754", - "to": "9755", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10539", - "label": "2130666 (-) 2130669", - "from": "9753", - "to": "9750", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10538", - "label": "1661673 (-) 357229", - "from": "9752", - "to": "9702", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10537", - "label": "330475 (-) 331494", - "from": "9751", - "to": "9458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10536", - "label": "2130669 (-) 2131605", - "from": "9750", - "to": "9476", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10535", - "label": "103150 (-) 433546", - "from": "9749", - "to": "9547", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10534", - "label": "103150 (-) 1049381", - "from": "9749", - "to": "9728", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10533", - "label": "418544 (-) 2062227", - "from": "9748", - "to": "9401", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10532", - "label": "369394 (-) 298309", - "from": "9747", - "to": "9570", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10531", - "label": "369394 (-) 304129", - "from": "9747", - "to": "9665", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10530", - "label": "369394 (-) 299127", - "from": "9747", - "to": "9921", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10529", - "label": "369394 (-) 298310", - "from": "9747", - "to": "9569", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10528", - "label": "369394 (-) 298315", - "from": "9747", - "to": "9567", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10527", - "label": "369394 (-) 304210", - "from": "9747", - "to": "9637", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10526", - "label": "369394 (-) 299067", - "from": "9747", - "to": "9933", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10525", - "label": "369394 (-) 299537", - "from": "9747", - "to": "9827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10524", - "label": "369394 (-) 304276", - "from": "9747", - "to": "9622", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10523", - "label": "369394 (-) 301477", - "from": "9747", - "to": "9852", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10522", - "label": "369394 (-) 293444", - "from": "9747", - "to": "9811", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10521", - "label": "369394 (-) 303994", - "from": "9747", - "to": "9699", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10520", - "label": "369394 (-) 301845", - "from": "9747", - "to": "9736", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10519", - "label": "373494 (-) 369394", - "from": "9746", - "to": "9747", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10518", - "label": "1243896 (-) 321983", - "from": "9745", - "to": "9849", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10517", - "label": "1663739 (-) 2131536", - "from": "9744", - "to": "9496", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10516", - "label": "883453 (-) 883065", - "from": "9743", - "to": "9864", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10515", - "label": "883455 (-) 883453", - "from": "9742", - "to": "9743", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10514", - "label": "883456 (-) 883453", - "from": "9741", - "to": "9743", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10513", - "label": "310020 (-) 299541", - "from": "9740", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10512", - "label": "310021 (-) 331494", - "from": "9739", - "to": "9458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10511", - "label": "310021 (-) 299541", - "from": "9739", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10510", - "label": "1884935 (-) 554016", - "from": "9738", - "to": "9653", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10509", - "label": "54026 (-) 743241", - "from": "9737", - "to": "9421", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10508", - "label": "301845 (-) 299541", - "from": "9736", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10507", - "label": "1159958 (-) 618296", - "from": "9735", - "to": "9430", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10506", - "label": "1159958 (-) 618516", - "from": "9735", - "to": "9943", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10505", - "label": "254746 (-) 974036", - "from": "9734", - "to": "9601", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10504", - "label": "254746 (-) 975952", - "from": "9734", - "to": "9640", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10503", - "label": "254746 (-) 973669", - "from": "9734", - "to": "9706", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10502", - "label": "254746 (-) 252110", - "from": "9734", - "to": "9899", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10501", - "label": "254746 (-) 971358", - "from": "9734", - "to": "9802", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10500", - "label": "254746 (-) 973072", - "from": "9734", - "to": "9882", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10499", - "label": "254746 (-) 972439", - "from": "9734", - "to": "9475", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10498", - "label": "586523 (-) 570878", - "from": "9733", - "to": "9515", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10497", - "label": "1309471 (-) 728256", - "from": "9732", - "to": "9605", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10496", - "label": "1663777 (-) 1663739", - "from": "9731", - "to": "9744", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10495", - "label": "883490 (-) 883455", - "from": "9730", - "to": "9742", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10494", - "label": "1082148 (-) 350818", - "from": "9729", - "to": "9800", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10493", - "label": "1049381 (-) 94950", - "from": "9728", - "to": "9756", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10492", - "label": "441126 (-) 440813", - "from": "9727", - "to": "9839", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10491", - "label": "1082151 (-) 1082148", - "from": "9726", - "to": "9729", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10490", - "label": "719655 (-) 719521", - "from": "9725", - "to": "9779", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10489", - "label": "1889063 (-) 64690", - "from": "9724", - "to": "9615", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10488", - "label": "1794867 (-) 1793352", - "from": "9723", - "to": "9568", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10487", - "label": "62263 (-) 743241", - "from": "9722", - "to": "9421", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10486", - "label": "140089 (-) 586523", - "from": "9721", - "to": "9733", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10485", - "label": "654138 (-) 654141", - "from": "9720", - "to": "9717", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10484", - "label": "1684283 (-) 330112", - "from": "9719", - "to": "9861", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10483", - "label": "404285 (-) 707770", - "from": "9718", - "to": "9609", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10482", - "label": "404285 (-) 707416", - "from": "9718", - "to": "9709", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10481", - "label": "654141 (-) 952239", - "from": "9717", - "to": "9394", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10480", - "label": "654141 (-) 719655", - "from": "9717", - "to": "9725", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10479", - "label": "43842 (-) 1952840", - "from": "9716", - "to": "9643", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10478", - "label": "43842 (-) 1477081", - "from": "9716", - "to": "9845", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10477", - "label": "43842 (-) 1952931", - "from": "9716", - "to": "9618", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10476", - "label": "43842 (-) 1953027", - "from": "9716", - "to": "9591", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10475", - "label": "1035074 (-) 1159782", - "from": "9715", - "to": "9798", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10474", - "label": "308039 (-) 299541", - "from": "9714", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10473", - "label": "320330 (-) 324862", - "from": "9713", - "to": "9593", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10472", - "label": "320330 (-) 320128", - "from": "9713", - "to": "9788", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10471", - "label": "320330 (-) 322256", - "from": "9713", - "to": "9762", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10470", - "label": "320330 (-) 1382203", - "from": "9713", - "to": "9429", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10469", - "label": "320330 (-) 324791", - "from": "9713", - "to": "9610", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10468", - "label": "320330 (-) 322680", - "from": "9713", - "to": "9626", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10467", - "label": "13130 (-) 13588", - "from": "9712", - "to": "9578", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10466", - "label": "13134 (-) 1490324", - "from": "9711", - "to": "9545", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10465", - "label": "13134 (-) 1490531", - "from": "9711", - "to": "9488", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10464", - "label": "1200984 (-) 554324", - "from": "9710", - "to": "9562", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10463", - "label": "707416 (-) 227113", - "from": "9709", - "to": "9439", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10462", - "label": "719714 (-) 565410", - "from": "9708", - "to": "9908", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10461", - "label": "627554 (-) 441814", - "from": "9707", - "to": "9528", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10460", - "label": "627554 (-) 627749", - "from": "9707", - "to": "9651", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10459", - "label": "973669 (-) 250984", - "from": "9706", - "to": "9631", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10458", - "label": "973669 (-) 251144", - "from": "9706", - "to": "9587", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10457", - "label": "973669 (-) 251201", - "from": "9706", - "to": "9571", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10456", - "label": "627557 (-) 1806998", - "from": "9705", - "to": "9783", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10455", - "label": "627557 (-) 627554", - "from": "9705", - "to": "9707", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10454", - "label": "1340263 (-) 320330", - "from": "9704", - "to": "9713", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10453", - "label": "2114406 (-) 2114794", - "from": "9703", - "to": "9597", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10452", - "label": "357229 (-) 1663777", - "from": "9702", - "to": "9731", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10451", - "label": "369519 (-) 369394", - "from": "9701", - "to": "9747", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10450", - "label": "2085752 (-) 130871", - "from": "9700", - "to": "9431", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10449", - "label": "303994 (-) 299541", - "from": "9699", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10448", - "label": "924543 (-) 2131536", - "from": "9698", - "to": "9496", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10447", - "label": "998275 (-) 1417364", - "from": "9697", - "to": "9913", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10446", - "label": "998275 (-) 1414797", - "from": "9697", - "to": "9477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10445", - "label": "441219 (-) 441126", - "from": "9696", - "to": "9727", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10444", - "label": "998276 (-) 1417364", - "from": "9695", - "to": "9913", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10443", - "label": "998276 (-) 1414797", - "from": "9695", - "to": "9477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10442", - "label": "654215 (-) 653843", - "from": "9694", - "to": "9826", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10441", - "label": "2114443 (-) 2112991", - "from": "9693", - "to": "9525", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10440", - "label": "998290 (-) 1417364", - "from": "9692", - "to": "9913", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10439", - "label": "998290 (-) 1414797", - "from": "9692", - "to": "9477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10438", - "label": "1473433 (-) 138223", - "from": "9691", - "to": "9669", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10437", - "label": "1473437 (-) 1411783", - "from": "9690", - "to": "9765", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10436", - "label": "1084318 (-) 171672", - "from": "9689", - "to": "9474", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10435", - "label": "1338271 (-) 389722", - "from": "9688", - "to": "9806", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10434", - "label": "1084321 (-) 1084318", - "from": "9687", - "to": "9689", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10433", - "label": "1807269 (-) 418544", - "from": "9686", - "to": "9748", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10432", - "label": "1807269 (-) 401809", - "from": "9686", - "to": "9856", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10431", - "label": "64422 (-) 1238006", - "from": "9685", - "to": "9668", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10430", - "label": "555944 (-) 293444", - "from": "9684", - "to": "9811", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10429", - "label": "54189 (-) 743241", - "from": "9683", - "to": "9421", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10428", - "label": "1340336 (-) 320330", - "from": "9682", - "to": "9713", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10427", - "label": "1340336 (-) 227964", - "from": "9682", - "to": "9791", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10426", - "label": "885683 (-) 887987", - "from": "9681", - "to": "9614", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10425", - "label": "885683 (-) 877790", - "from": "9681", - "to": "9600", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10424", - "label": "1799093 (-) 1035074", - "from": "9680", - "to": "9715", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10423", - "label": "549814 (-) 550522", - "from": "9679", - "to": "9480", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10422", - "label": "1113015 (-) 1107533", - "from": "9678", - "to": "9497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10421", - "label": "549816 (-) 549814", - "from": "9677", - "to": "9679", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10420", - "label": "433081 (-) 1429185", - "from": "9676", - "to": "9464", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10419", - "label": "433081 (-) 1428672", - "from": "9676", - "to": "9606", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10418", - "label": "1782717 (-) 1391645", - "from": "9675", - "to": "9654", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10417", - "label": "1782717 (-) 333538", - "from": "9675", - "to": "9459", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10416", - "label": "1782717 (-) 333415", - "from": "9675", - "to": "9487", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10415", - "label": "885694 (-) 885683", - "from": "9674", - "to": "9681", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10414", - "label": "1659840 (-) 1207322", - "from": "9673", - "to": "9657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10413", - "label": "320468 (-) 320128", - "from": "9672", - "to": "9788", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10412", - "label": "992230 (-) 992233", - "from": "9671", - "to": "9670", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10411", - "label": "992233 (-) 495541", - "from": "9670", - "to": "9392", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10410", - "label": "138223 (-) 672431", - "from": "9669", - "to": "9775", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10409", - "label": "1238006 (-) 1237265", - "from": "9668", - "to": "9881", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10408", - "label": "297979 (-) 297434", - "from": "9667", - "to": "9844", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10407", - "label": "572416 (-) 572418", - "from": "9666", - "to": "9664", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10406", - "label": "304129 (-) 299541", - "from": "9665", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10405", - "label": "572418 (-) 1031197", - "from": "9664", - "to": "9656", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10404", - "label": "572418 (-) 994566", - "from": "9664", - "to": "9589", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10403", - "label": "572417 (-) 572416", - "from": "9663", - "to": "9666", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10402", - "label": "297990 (-) 299541", - "from": "9662", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10401", - "label": "297990 (-) 297434", - "from": "9662", - "to": "9844", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10400", - "label": "492556 (-) 1684105", - "from": "9661", - "to": "9787", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10399", - "label": "492556 (-) 1682942", - "from": "9661", - "to": "9516", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10398", - "label": "492556 (-) 1684283", - "from": "9661", - "to": "9719", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10397", - "label": "826382 (-) 492556", - "from": "9660", - "to": "9661", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10396", - "label": "672783 (-) 932440", - "from": "9659", - "to": "9807", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10395", - "label": "298000 (-) 297434", - "from": "9658", - "to": "9844", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10394", - "label": "1207322 (-) 1661673", - "from": "9657", - "to": "9752", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10393", - "label": "1207322 (-) 1661054", - "from": "9657", - "to": "9919", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10392", - "label": "1031197 (-) 992230", - "from": "9656", - "to": "9671", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10391", - "label": "289822 (-) 94950", - "from": "9655", - "to": "9756", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10390", - "label": "1391645 (-) 1659840", - "from": "9654", - "to": "9673", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10389", - "label": "554016 (-) 826382", - "from": "9653", - "to": "9660", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10388", - "label": "289823 (-) 289822", - "from": "9652", - "to": "9655", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10387", - "label": "627749 (-) 1806903", - "from": "9651", - "to": "9813", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10386", - "label": "1412138 (-) 1411783", - "from": "9650", - "to": "9765", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10385", - "label": "289835 (-) 289823", - "from": "9649", - "to": "9652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10384", - "label": "1473583 (-) 1411783", - "from": "9648", - "to": "9765", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10383", - "label": "1668145 (-) 251616", - "from": "9647", - "to": "9460", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10382", - "label": "54322 (-) 743241", - "from": "9646", - "to": "9421", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10381", - "label": "2131002 (-) 2131705", - "from": "9645", - "to": "9454", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10380", - "label": "955460 (-) 955573", - "from": "9644", - "to": "9612", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10379", - "label": "1952840 (-) 998275", - "from": "9643", - "to": "9697", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10378", - "label": "62537 (-) 743241", - "from": "9642", - "to": "9421", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10377", - "label": "2131021 (-) 2131705", - "from": "9641", - "to": "9454", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10376", - "label": "975952 (-) 250984", - "from": "9640", - "to": "9631", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10375", - "label": "975952 (-) 251144", - "from": "9640", - "to": "9587", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10374", - "label": "975952 (-) 251201", - "from": "9640", - "to": "9571", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10373", - "label": "703569 (-) 404285", - "from": "9639", - "to": "9718", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10372", - "label": "703570 (-) 1410943", - "from": "9638", - "to": "9410", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10371", - "label": "703570 (-) 703569", - "from": "9638", - "to": "9639", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10370", - "label": "304210 (-) 299541", - "from": "9637", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10369", - "label": "46171 (-) 703760", - "from": "9636", - "to": "9580", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10368", - "label": "320604 (-) 1430006", - "from": "9635", - "to": "9836", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10367", - "label": "320604 (-) 1275213", - "from": "9635", - "to": "9565", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10366", - "label": "1934430 (-) 1935115", - "from": "9634", - "to": "9447", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10365", - "label": "1428580 (-) 1428742", - "from": "9633", - "to": "9583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10364", - "label": "1084519 (-) 1084321", - "from": "9632", - "to": "9687", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10363", - "label": "250984 (-) 392955", - "from": "9631", - "to": "9451", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10362", - "label": "1911913 (-) 978264", - "from": "9630", - "to": "9560", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10361", - "label": "72811 (-) 1242262", - "from": "9629", - "to": "9621", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10360", - "label": "500848 (-) 492556", - "from": "9628", - "to": "9661", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10359", - "label": "916596 (-) 917308", - "from": "9627", - "to": "9428", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10358", - "label": "916596 (-) 916923", - "from": "9627", - "to": "9533", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10357", - "label": "322680 (-) 321865", - "from": "9626", - "to": "9871", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10356", - "label": "314489 (-) 299541", - "from": "9625", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10355", - "label": "314489 (-) 2130666", - "from": "9625", - "to": "9753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10354", - "label": "1338496 (-) 301477", - "from": "9624", - "to": "9852", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10353", - "label": "160903 (-) 160413", - "from": "9623", - "to": "9781", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10352", - "label": "160903 (-) 1382672", - "from": "9623", - "to": "9879", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10351", - "label": "304276 (-) 299541", - "from": "9622", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10350", - "label": "1242262 (-) 1243009", - "from": "9621", - "to": "9409", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10349", - "label": "1035416 (-) 2085752", - "from": "9620", - "to": "9700", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10348", - "label": "951458 (-) 421558", - "from": "9619", - "to": "9467", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10347", - "label": "1952931 (-) 998276", - "from": "9618", - "to": "9695", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10346", - "label": "1952931 (-) 998290", - "from": "9618", - "to": "9692", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10345", - "label": "255142 (-) 974036", - "from": "9617", - "to": "9601", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10344", - "label": "255142 (-) 973072", - "from": "9617", - "to": "9882", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10343", - "label": "255142 (-) 971358", - "from": "9617", - "to": "9802", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10342", - "label": "255142 (-) 973669", - "from": "9617", - "to": "9706", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10341", - "label": "255142 (-) 972439", - "from": "9617", - "to": "9475", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10340", - "label": "255142 (-) 975952", - "from": "9617", - "to": "9640", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10339", - "label": "255142 (-) 252110", - "from": "9617", - "to": "9899", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10338", - "label": "1793199 (-) 149916", - "from": "9616", - "to": "9854", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10337", - "label": "1793199 (-) 286028", - "from": "9616", - "to": "9566", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10336", - "label": "1793199 (-) 570743", - "from": "9616", - "to": "9554", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10335", - "label": "64690 (-) 1886473", - "from": "9615", - "to": "9889", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10334", - "label": "64690 (-) 923825", - "from": "9615", - "to": "9903", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10333", - "label": "64690 (-) 67353", - "from": "9615", - "to": "9445", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10332", - "label": "887987 (-) 888278", - "from": "9614", - "to": "9527", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10331", - "label": "330932 (-) 331494", - "from": "9613", - "to": "9458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10330", - "label": "330932 (-) 369394", - "from": "9613", - "to": "9747", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10329", - "label": "955573 (-) 952711", - "from": "9612", - "to": "9859", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10328", - "label": "955574 (-) 955573", - "from": "9611", - "to": "9612", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10327", - "label": "324791 (-) 321329", - "from": "9610", - "to": "9436", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10326", - "label": "707770 (-) 707772", - "from": "9609", - "to": "9607", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10325", - "label": "707770 (-) 708267", - "from": "9609", - "to": "9468", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10324", - "label": "707770 (-) 707871", - "from": "9609", - "to": "9577", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10323", - "label": "955580 (-) 955573", - "from": "9608", - "to": "9612", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10322", - "label": "707772 (-) 1275213", - "from": "9607", - "to": "9565", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10321", - "label": "1428672 (-) 1428580", - "from": "9606", - "to": "9633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10320", - "label": "728256 (-) 728927", - "from": "9605", - "to": "9416", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10319", - "label": "593090 (-) 1411759", - "from": "9604", - "to": "9773", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10318", - "label": "1238218 (-) 1238006", - "from": "9603", - "to": "9668", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10317", - "label": "333006 (-) 331494", - "from": "9602", - "to": "9458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10316", - "label": "974036 (-) 251144", - "from": "9601", - "to": "9587", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10315", - "label": "974036 (-) 251201", - "from": "9601", - "to": "9571", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10314", - "label": "974036 (-) 250984", - "from": "9601", - "to": "9631", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10313", - "label": "877790 (-) 877267", - "from": "9600", - "to": "9760", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10312", - "label": "144608 (-) 151325", - "from": "9599", - "to": "9442", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10311", - "label": "144608 (-) 289822", - "from": "9599", - "to": "9655", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10310", - "label": "875746 (-) 2111986", - "from": "9598", - "to": "9837", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10309", - "label": "875746 (-) 1309325", - "from": "9598", - "to": "9786", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10308", - "label": "2114794 (-) 2114795", - "from": "9597", - "to": "9595", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10307", - "label": "261355 (-) 331494", - "from": "9596", - "to": "9458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10306", - "label": "261355 (-) 299541", - "from": "9596", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10305", - "label": "2114795 (-) 2114825", - "from": "9595", - "to": "9582", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10304", - "label": "587004 (-) 570878", - "from": "9594", - "to": "9515", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10303", - "label": "324862 (-) 321328", - "from": "9593", - "to": "9433", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10302", - "label": "660736 (-) 2062814", - "from": "9592", - "to": "9841", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10301", - "label": "1953027 (-) 998275", - "from": "9591", - "to": "9697", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10300", - "label": "955652 (-) 955580", - "from": "9590", - "to": "9608", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10299", - "label": "955652 (-) 955574", - "from": "9590", - "to": "9611", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10298", - "label": "955652 (-) 955460", - "from": "9590", - "to": "9644", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10297", - "label": "994566 (-) 992230", - "from": "9589", - "to": "9671", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10296", - "label": "253191 (-) 973072", - "from": "9588", - "to": "9882", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10295", - "label": "253191 (-) 975952", - "from": "9588", - "to": "9640", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10294", - "label": "253191 (-) 252110", - "from": "9588", - "to": "9899", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10293", - "label": "253191 (-) 1200984", - "from": "9588", - "to": "9710", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10292", - "label": "253191 (-) 971358", - "from": "9588", - "to": "9802", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10291", - "label": "253191 (-) 974036", - "from": "9588", - "to": "9601", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10290", - "label": "253191 (-) 972439", - "from": "9588", - "to": "9475", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10289", - "label": "253191 (-) 973669", - "from": "9588", - "to": "9706", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10288", - "label": "251144 (-) 392955", - "from": "9587", - "to": "9451", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10287", - "label": "1230088 (-) 1230586", - "from": "9586", - "to": "9450", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10286", - "label": "1230088 (-) 1231548", - "from": "9586", - "to": "9769", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10285", - "label": "550154 (-) 617080", - "from": "9585", - "to": "9793", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10284", - "label": "550154 (-) 550650", - "from": "9585", - "to": "9453", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10283", - "label": "550154 (-) 646528", - "from": "9585", - "to": "9549", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10282", - "label": "1522955 (-) 672783", - "from": "9584", - "to": "9659", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10281", - "label": "1428742 (-) 321983", - "from": "9583", - "to": "9849", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10280", - "label": "2114825 (-) 880186", - "from": "9582", - "to": "9501", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10279", - "label": "97550 (-) 587004", - "from": "9581", - "to": "9594", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10278", - "label": "703760 (-) 703570", - "from": "9580", - "to": "9638", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10277", - "label": "703763 (-) 703760", - "from": "9579", - "to": "9580", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10276", - "label": "13588 (-) 1302460", - "from": "9578", - "to": "9389", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10275", - "label": "13588 (-) 1884935", - "from": "9578", - "to": "9738", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10274", - "label": "707871 (-) 1275213", - "from": "9577", - "to": "9565", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10273", - "label": "1522976 (-) 293444", - "from": "9576", - "to": "9811", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10272", - "label": "1336631 (-) 1335037", - "from": "9575", - "to": "9449", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10271", - "label": "955707 (-) 955652", - "from": "9574", - "to": "9590", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10270", - "label": "955707 (-) 1156931", - "from": "9574", - "to": "9423", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10269", - "label": "415036 (-) 97550", - "from": "9573", - "to": "9581", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10268", - "label": "548159 (-) 14012", - "from": "9572", - "to": "9465", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10267", - "label": "251201 (-) 392955", - "from": "9571", - "to": "9451", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10266", - "label": "298309 (-) 299541", - "from": "9570", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10265", - "label": "298309 (-) 2130666", - "from": "9570", - "to": "9753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10264", - "label": "298310 (-) 364005", - "from": "9569", - "to": "9521", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10263", - "label": "298310 (-) 331494", - "from": "9569", - "to": "9458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10262", - "label": "298310 (-) 2130666", - "from": "9569", - "to": "9753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10261", - "label": "298310 (-) 369394", - "from": "9569", - "to": "9747", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10260", - "label": "298310 (-) 329305", - "from": "9569", - "to": "9493", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10259", - "label": "298310 (-) 299541", - "from": "9569", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10258", - "label": "1793352 (-) 1793199", - "from": "9568", - "to": "9616", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10257", - "label": "298315 (-) 299541", - "from": "9567", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10256", - "label": "298315 (-) 2130666", - "from": "9567", - "to": "9753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10255", - "label": "286028 (-) 1046846", - "from": "9566", - "to": "9874", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10254", - "label": "286028 (-) 1807026", - "from": "9566", - "to": "9771", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10253", - "label": "1275213 (-) 1275214", - "from": "9565", - "to": "9564", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10252", - "label": "1275214 (-) 1782717", - "from": "9564", - "to": "9675", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10251", - "label": "101711 (-) 1490324", - "from": "9563", - "to": "9545", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10250", - "label": "101711 (-) 1490531", - "from": "9563", - "to": "9488", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10249", - "label": "101711 (-) 555611", - "from": "9563", - "to": "9804", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10248", - "label": "101711 (-) 291357", - "from": "9563", - "to": "9822", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10247", - "label": "554324 (-) 554327", - "from": "9562", - "to": "9561", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10246", - "label": "554327 (-) 98964", - "from": "9561", - "to": "9784", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10245", - "label": "978264 (-) 1916734", - "from": "9560", - "to": "9426", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10244", - "label": "193879 (-) 1083941", - "from": "9559", - "to": "9817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10243", - "label": "193879 (-) 193037", - "from": "9559", - "to": "9828", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10242", - "label": "1484122 (-) 144608", - "from": "9558", - "to": "9599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10241", - "label": "888170 (-) 885694", - "from": "9557", - "to": "9674", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10240", - "label": "132458 (-) 587783", - "from": "9556", - "to": "9946", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10239", - "label": "132458 (-) 1214047", - "from": "9556", - "to": "9491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10238", - "label": "1949040 (-) 374742", - "from": "9555", - "to": "9377", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10237", - "label": "1949040 (-) 374754", - "from": "9555", - "to": "9374", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10236", - "label": "1949040 (-) 374743", - "from": "9555", - "to": "9376", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10235", - "label": "570743 (-) 1482169", - "from": "9554", - "to": "9534", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10234", - "label": "1695098 (-) 330475", - "from": "9553", - "to": "9751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10233", - "label": "302460 (-) 299541", - "from": "9552", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10232", - "label": "5502 (-) 13130", - "from": "9551", - "to": "9712", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10231", - "label": "5502 (-) 8322", - "from": "9551", - "to": "9918", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10230", - "label": "5503 (-) 8322", - "from": "9550", - "to": "9918", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10229", - "label": "5503 (-) 13130", - "from": "9550", - "to": "9712", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10228", - "label": "646528 (-) 550651", - "from": "9549", - "to": "9452", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10227", - "label": "1793418 (-) 1794867", - "from": "9548", - "to": "9723", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10226", - "label": "433546 (-) 433081", - "from": "9547", - "to": "9676", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10225", - "label": "1793419 (-) 1794867", - "from": "9546", - "to": "9723", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10224", - "label": "1490324 (-) 144608", - "from": "9545", - "to": "9599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10223", - "label": "193941 (-) 191969", - "from": "9544", - "to": "9523", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10222", - "label": "2131348 (-) 2131705", - "from": "9543", - "to": "9454", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10221", - "label": "296350 (-) 329216", - "from": "9542", - "to": "9514", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10220", - "label": "1035681 (-) 1035416", - "from": "9541", - "to": "9620", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10219", - "label": "1035683 (-) 1035681", - "from": "9540", - "to": "9541", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10218", - "label": "421285 (-) 419867", - "from": "9539", - "to": "9941", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10217", - "label": "439723 (-) 1230467", - "from": "9538", - "to": "9479", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10216", - "label": "441772 (-) 441219", - "from": "9537", - "to": "9696", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10215", - "label": "441773 (-) 1386423", - "from": "9536", - "to": "9391", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10214", - "label": "441773 (-) 1382312", - "from": "9536", - "to": "9395", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10213", - "label": "441773 (-) 441772", - "from": "9536", - "to": "9537", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10212", - "label": "1863096 (-) 330402", - "from": "9535", - "to": "9778", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10211", - "label": "1482169 (-) 570878", - "from": "9534", - "to": "9515", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10210", - "label": "1482169 (-) 935814", - "from": "9534", - "to": "9405", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10209", - "label": "916923 (-) 504065", - "from": "9533", - "to": "9890", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10208", - "label": "587203 (-) 441814", - "from": "9532", - "to": "9528", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10207", - "label": "310723 (-) 299541", - "from": "9531", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10206", - "label": "1275346 (-) 1275348", - "from": "9530", - "to": "9529", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10205", - "label": "1275346 (-) 1275362", - "from": "9530", - "to": "9522", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10204", - "label": "1275348 (-) 1782717", - "from": "9529", - "to": "9675", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10203", - "label": "441814 (-) 1807269", - "from": "9528", - "to": "9686", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10202", - "label": "441814 (-) 1386423", - "from": "9528", - "to": "9391", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10201", - "label": "441814 (-) 1806603", - "from": "9528", - "to": "9887", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10200", - "label": "888278 (-) 883456", - "from": "9527", - "to": "9741", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10199", - "label": "2112990 (-) 874812", - "from": "9526", - "to": "9876", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10198", - "label": "2112990 (-) 2114406", - "from": "9526", - "to": "9703", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10197", - "label": "2112990 (-) 874479", - "from": "9526", - "to": "9370", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10196", - "label": "2112991 (-) 2112990", - "from": "9525", - "to": "9526", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10195", - "label": "335327 (-) 331494", - "from": "9524", - "to": "9458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10194", - "label": "191969 (-) 1694430", - "from": "9523", - "to": "9758", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10193", - "label": "191969 (-) 1695098", - "from": "9523", - "to": "9553", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10192", - "label": "1275362 (-) 1782717", - "from": "9522", - "to": "9675", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10191", - "label": "364005 (-) 296913", - "from": "9521", - "to": "9378", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10190", - "label": "364005 (-) 297083", - "from": "9521", - "to": "9920", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10189", - "label": "364005 (-) 293444", - "from": "9521", - "to": "9811", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10188", - "label": "191978 (-) 1673905", - "from": "9520", - "to": "9770", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10187", - "label": "1035755 (-) 1035683", - "from": "9519", - "to": "9540", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10186", - "label": "882169 (-) 888278", - "from": "9518", - "to": "9527", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10185", - "label": "882169 (-) 883490", - "from": "9518", - "to": "9730", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10184", - "label": "409084 (-) 293444", - "from": "9517", - "to": "9811", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10183", - "label": "1682942 (-) 330112", - "from": "9516", - "to": "9861", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10182", - "label": "570878 (-) 627554", - "from": "9515", - "to": "9707", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10181", - "label": "570878 (-) 1806998", - "from": "9515", - "to": "9783", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10180", - "label": "570878 (-) 1802928", - "from": "9515", - "to": "9774", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10179", - "label": "570878 (-) 935811", - "from": "9515", - "to": "9408", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10178", - "label": "570878 (-) 587203", - "from": "9515", - "to": "9532", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10177", - "label": "329216 (-) 296684", - "from": "9514", - "to": "9457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10176", - "label": "329216 (-) 293444", - "from": "9514", - "to": "9811", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10175", - "label": "2059776 (-) 653856", - "from": "9513", - "to": "9821", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10174", - "label": "882178 (-) 883490", - "from": "9512", - "to": "9730", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10173", - "label": "882178 (-) 888278", - "from": "9512", - "to": "9527", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10172", - "label": "232970 (-) 1382736", - "from": "9511", - "to": "9868", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10171", - "label": "232970 (-) 1382203", - "from": "9511", - "to": "9429", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10170", - "label": "2098710 (-) 2052724", - "from": "9510", - "to": "9794", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10169", - "label": "2098710 (-) 2052833", - "from": "9510", - "to": "9757", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10168", - "label": "357917 (-) 208591", - "from": "9509", - "to": "9462", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10167", - "label": "439838 (-) 439723", - "from": "9508", - "to": "9538", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10166", - "label": "343583 (-) 331494", - "from": "9507", - "to": "9458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10165", - "label": "372265 (-) 369394", - "from": "9506", - "to": "9747", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10164", - "label": "77362 (-) 62263", - "from": "9505", - "to": "9722", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10163", - "label": "77362 (-) 54189", - "from": "9505", - "to": "9683", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10162", - "label": "77362 (-) 54322", - "from": "9505", - "to": "9646", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10161", - "label": "77362 (-) 55277", - "from": "9505", - "to": "9372", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10160", - "label": "77362 (-) 54900", - "from": "9505", - "to": "9482", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10159", - "label": "77362 (-) 55093", - "from": "9505", - "to": "9432", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10158", - "label": "77362 (-) 61124", - "from": "9505", - "to": "9463", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10157", - "label": "77362 (-) 54026", - "from": "9505", - "to": "9737", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10156", - "label": "77362 (-) 62537", - "from": "9505", - "to": "9642", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10155", - "label": "101938 (-) 555611", - "from": "9504", - "to": "9804", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10154", - "label": "101938 (-) 1490531", - "from": "9504", - "to": "9488", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10153", - "label": "101938 (-) 1490324", - "from": "9504", - "to": "9545", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10152", - "label": "101938 (-) 291357", - "from": "9504", - "to": "9822", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10151", - "label": "878133 (-) 877267", - "from": "9503", - "to": "9760", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10150", - "label": "13879 (-) 6157", - "from": "9502", - "to": "9945", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10149", - "label": "13879 (-) 5503", - "from": "9502", - "to": "9550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10148", - "label": "13879 (-) 5738", - "from": "9502", - "to": "9485", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10147", - "label": "13879 (-) 6250", - "from": "9502", - "to": "9923", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10146", - "label": "13879 (-) 5737", - "from": "9502", - "to": "9486", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10145", - "label": "13879 (-) 5502", - "from": "9502", - "to": "9551", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10144", - "label": "13879 (-) 5936", - "from": "9502", - "to": "9437", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10143", - "label": "13879 (-) 6042", - "from": "9502", - "to": "9398", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10142", - "label": "880186 (-) 888278", - "from": "9501", - "to": "9527", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10141", - "label": "321084 (-) 1338496", - "from": "9500", - "to": "9624", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10140", - "label": "1519168 (-) 1538634", - "from": "9499", - "to": "9810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10139", - "label": "616002 (-) 2680", - "from": "9498", - "to": "9792", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10138", - "label": "1107533 (-) 335327", - "from": "9497", - "to": "9524", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10137", - "label": "1107533 (-) 310021", - "from": "9497", - "to": "9739", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10136", - "label": "1107533 (-) 372265", - "from": "9497", - "to": "9506", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10135", - "label": "1107533 (-) 354035", - "from": "9497", - "to": "9455", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10134", - "label": "2131537 (-) 2131536", - "from": "9495", - "to": "9496", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10133", - "label": "1119825 (-) 1116334", - "from": "9494", - "to": "9905", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10132", - "label": "329305 (-) 293444", - "from": "9493", - "to": "9811", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10131", - "label": "77403 (-) 77362", - "from": "9492", - "to": "9505", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10130", - "label": "1214047 (-) 144608", - "from": "9491", - "to": "9599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10129", - "label": "970337 (-) 333006", - "from": "9490", - "to": "9602", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10128", - "label": "310883 (-) 2130666", - "from": "9489", - "to": "9753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10127", - "label": "1490531 (-) 144608", - "from": "9488", - "to": "9599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10126", - "label": "333415 (-) 331494", - "from": "9487", - "to": "9458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10125", - "label": "5737 (-) 8322", - "from": "9486", - "to": "9918", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10124", - "label": "5737 (-) 13130", - "from": "9486", - "to": "9712", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10123", - "label": "5738 (-) 8322", - "from": "9485", - "to": "9918", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10122", - "label": "5738 (-) 13130", - "from": "9485", - "to": "9712", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10121", - "label": "1341038 (-) 320330", - "from": "9484", - "to": "9713", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10120", - "label": "296562 (-) 296684", - "from": "9483", - "to": "9457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10119", - "label": "296562 (-) 293444", - "from": "9483", - "to": "9811", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10118", - "label": "54900 (-) 743241", - "from": "9482", - "to": "9421", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10117", - "label": "1771125 (-) 2114443", - "from": "9481", - "to": "9693", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10116", - "label": "550522 (-) 550679", - "from": "9480", - "to": "9446", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10115", - "label": "1230467 (-) 1230088", - "from": "9479", - "to": "9586", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10114", - "label": "157322 (-) 151326", - "from": "9478", - "to": "9441", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10113", - "label": "1414797 (-) 1226805", - "from": "9477", - "to": "9934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10112", - "label": "2131605 (-) 2131537", - "from": "9476", - "to": "9495", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10111", - "label": "972439 (-) 251201", - "from": "9475", - "to": "9571", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10110", - "label": "972439 (-) 251144", - "from": "9475", - "to": "9587", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10109", - "label": "972439 (-) 250984", - "from": "9475", - "to": "9631", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10108", - "label": "171672 (-) 299541", - "from": "9474", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10107", - "label": "171672 (-) 331494", - "from": "9474", - "to": "9458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10106", - "label": "194202 (-) 194803", - "from": "9473", - "to": "9891", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10105", - "label": "327326 (-) 304925", - "from": "9472", - "to": "9443", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10104", - "label": "327326 (-) 304924", - "from": "9472", - "to": "9444", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10103", - "label": "327326 (-) 305175", - "from": "9472", - "to": "9942", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10102", - "label": "327326 (-) 305167", - "from": "9472", - "to": "9944", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10101", - "label": "327326 (-) 305153", - "from": "9472", - "to": "9947", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10100", - "label": "730789 (-) 654141", - "from": "9471", - "to": "9717", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10099", - "label": "1230505 (-) 72811", - "from": "9470", - "to": "9629", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10098", - "label": "1230506 (-) 1230505", - "from": "9469", - "to": "9470", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10097", - "label": "708267 (-) 1275213", - "from": "9468", - "to": "9565", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10096", - "label": "421558 (-) 421285", - "from": "9467", - "to": "9539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10095", - "label": "1154743 (-) 551145", - "from": "9466", - "to": "9894", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10094", - "label": "14012 (-) 248331", - "from": "9465", - "to": "9832", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10093", - "label": "14012 (-) 13879", - "from": "9465", - "to": "9502", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10092", - "label": "14012 (-) 391560", - "from": "9465", - "to": "9858", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10091", - "label": "14012 (-) 616002", - "from": "9465", - "to": "9498", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10090", - "label": "14012 (-) 243911", - "from": "9465", - "to": "9901", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10089", - "label": "1429185 (-) 1266409", - "from": "9464", - "to": "9754", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10088", - "label": "61124 (-) 743241", - "from": "9463", - "to": "9421", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10087", - "label": "208591 (-) 331494", - "from": "9462", - "to": "9458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10086", - "label": "884435 (-) 874464", - "from": "9461", - "to": "9375", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10085", - "label": "884435 (-) 878133", - "from": "9461", - "to": "9503", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10084", - "label": "251616 (-) 331494", - "from": "9460", - "to": "9458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10083", - "label": "251616 (-) 299541", - "from": "9460", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10082", - "label": "251616 (-) 1410943", - "from": "9460", - "to": "9410", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10081", - "label": "333538 (-) 331494", - "from": "9459", - "to": "9458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10080", - "label": "331494 (-) 310020", - "from": "9458", - "to": "9740", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10079", - "label": "331494 (-) 309814", - "from": "9458", - "to": "9814", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10078", - "label": "331494 (-) 305190", - "from": "9458", - "to": "9940", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10077", - "label": "331494 (-) 293444", - "from": "9458", - "to": "9811", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10076", - "label": "331494 (-) 311850", - "from": "9458", - "to": "9815", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10075", - "label": "331494 (-) 299544", - "from": "9458", - "to": "9824", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10074", - "label": "331494 (-) 302460", - "from": "9458", - "to": "9552", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10073", - "label": "331494 (-) 309196", - "from": "9458", - "to": "9383", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10072", - "label": "296684 (-) 329216", - "from": "9457", - "to": "9514", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10071", - "label": "296684 (-) 296562", - "from": "9457", - "to": "9483", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10070", - "label": "1681138 (-) 251616", - "from": "9456", - "to": "9460", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10069", - "label": "354035 (-) 1668145", - "from": "9455", - "to": "9647", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10068", - "label": "2131705 (-) 698257", - "from": "9454", - "to": "9402", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10067", - "label": "2131705 (-) 2117862", - "from": "9454", - "to": "9896", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10066", - "label": "550650 (-) 550651", - "from": "9453", - "to": "9452", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10065", - "label": "550651 (-) 1382312", - "from": "9452", - "to": "9395", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10064", - "label": "550651 (-) 970337", - "from": "9452", - "to": "9490", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10063", - "label": "392955 (-) 258188", - "from": "9451", - "to": "9915", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10062", - "label": "1230586 (-) 1230506", - "from": "9450", - "to": "9469", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10061", - "label": "1335037 (-) 1477225", - "from": "9449", - "to": "9796", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10060", - "label": "309001 (-) 299541", - "from": "9448", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10059", - "label": "1935115 (-) 1935831", - "from": "9447", - "to": "9846", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10058", - "label": "550679 (-) 550154", - "from": "9446", - "to": "9585", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10057", - "label": "67353 (-) 64422", - "from": "9445", - "to": "9685", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10056", - "label": "304924 (-) 299541", - "from": "9444", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10055", - "label": "304925 (-) 299541", - "from": "9443", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10054", - "label": "151325 (-) 94950", - "from": "9442", - "to": "9756", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10053", - "label": "151326 (-) 151325", - "from": "9441", - "to": "9442", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10052", - "label": "884516 (-) 884435", - "from": "9440", - "to": "9461", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10051", - "label": "884516 (-) 885683", - "from": "9440", - "to": "9681", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10050", - "label": "227113 (-) 1275213", - "from": "9439", - "to": "9565", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10049", - "label": "884524 (-) 884435", - "from": "9438", - "to": "9461", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10048", - "label": "884524 (-) 885683", - "from": "9438", - "to": "9681", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10047", - "label": "5936 (-) 13130", - "from": "9437", - "to": "9712", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10046", - "label": "5936 (-) 8322", - "from": "9437", - "to": "9918", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10045", - "label": "321329 (-) 322239", - "from": "9436", - "to": "9766", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10044", - "label": "1871665 (-) 14228", - "from": "9435", - "to": "9400", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10043", - "label": "321330 (-) 322239", - "from": "9434", - "to": "9766", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10042", - "label": "321328 (-) 322239", - "from": "9433", - "to": "9766", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10041", - "label": "55093 (-) 743241", - "from": "9432", - "to": "9421", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10040", - "label": "130871 (-) 1681138", - "from": "9431", - "to": "9456", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10039", - "label": "130871 (-) 1681748", - "from": "9431", - "to": "9867", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10038", - "label": "130871 (-) 1529686", - "from": "9431", - "to": "9419", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10037", - "label": "130871 (-) 1065380", - "from": "9431", - "to": "9853", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10036", - "label": "130871 (-) 1682080", - "from": "9431", - "to": "9780", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10035", - "label": "130871 (-) 1790467", - "from": "9431", - "to": "9833", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10034", - "label": "130871 (-) 357917", - "from": "9431", - "to": "9509", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10033", - "label": "130871 (-) 1668145", - "from": "9431", - "to": "9647", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10032", - "label": "130871 (-) 1534279", - "from": "9431", - "to": "9872", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10031", - "label": "618296 (-) 1035755", - "from": "9430", - "to": "9519", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10030", - "label": "1382203 (-) 1378926", - "from": "9429", - "to": "9795", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10029", - "label": "1382203 (-) 320468", - "from": "9429", - "to": "9672", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10028", - "label": "1382203 (-) 227964", - "from": "9429", - "to": "9791", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10027", - "label": "1382203 (-) 320330", - "from": "9429", - "to": "9713", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10026", - "label": "917308 (-) 504065", - "from": "9428", - "to": "9890", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10025", - "label": "962363 (-) 1794867", - "from": "9427", - "to": "9723", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10024", - "label": "1916734 (-) 950362", - "from": "9426", - "to": "9925", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10023", - "label": "737088 (-) 654141", - "from": "9425", - "to": "9717", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10022", - "label": "571202 (-) 253191", - "from": "9424", - "to": "9588", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10021", - "label": "1156931 (-) 955460", - "from": "9423", - "to": "9644", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10020", - "label": "958275 (-) 958290", - "from": "9422", - "to": "9420", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10019", - "label": "743241 (-) 743664", - "from": "9421", - "to": "9892", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10018", - "label": "958290 (-) 958368", - "from": "9420", - "to": "9397", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10017", - "label": "1529686 (-) 1519168", - "from": "9419", - "to": "9499", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10016", - "label": "409434 (-) 403309", - "from": "9418", - "to": "9413", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10015", - "label": "1466203 (-) 1889063", - "from": "9417", - "to": "9724", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10014", - "label": "728927 (-) 227715", - "from": "9416", - "to": "9860", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10013", - "label": "77671 (-) 77403", - "from": "9415", - "to": "9492", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10012", - "label": "327533 (-) 327326", - "from": "9414", - "to": "9472", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10011", - "label": "327533 (-) 1949040", - "from": "9414", - "to": "9555", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10010", - "label": "403309 (-) 415036", - "from": "9413", - "to": "9573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10009", - "label": "77681 (-) 1238006", - "from": "9412", - "to": "9668", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10008", - "label": "77681 (-) 77671", - "from": "9412", - "to": "9415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10007", - "label": "569211 (-) 572111", - "from": "9411", - "to": "9763", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10006", - "label": "1410943 (-) 103150", - "from": "9410", - "to": "9749", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10005", - "label": "1243009 (-) 1243896", - "from": "9409", - "to": "9745", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10004", - "label": "935811 (-) 441814", - "from": "9408", - "to": "9528", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10003", - "label": "698244 (-) 255142", - "from": "9407", - "to": "9617", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10002", - "label": "954243 (-) 1159958", - "from": "9406", - "to": "9735", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10001", - "label": "954243 (-) 1159708", - "from": "9406", - "to": "9823", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10000", - "label": "935814 (-) 935811", - "from": "9405", - "to": "9408", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9999", - "label": "935814 (-) 1806998", - "from": "9405", - "to": "9783", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9998", - "label": "1660808 (-) 2131536", - "from": "9404", - "to": "9496", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9997", - "label": "1116044 (-) 1155013", - "from": "9403", - "to": "9387", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9996", - "label": "1116044 (-) 1799093", - "from": "9403", - "to": "9680", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9995", - "label": "698257 (-) 1473583", - "from": "9402", - "to": "9648", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9994", - "label": "698257 (-) 1473437", - "from": "9402", - "to": "9690", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9993", - "label": "698257 (-) 698244", - "from": "9402", - "to": "9407", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9992", - "label": "2062227 (-) 79817", - "from": "9401", - "to": "9384", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9991", - "label": "14228 (-) 391560", - "from": "9400", - "to": "9858", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9990", - "label": "14228 (-) 243911", - "from": "9400", - "to": "9901", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9989", - "label": "14228 (-) 248331", - "from": "9400", - "to": "9832", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9988", - "label": "14228 (-) 616002", - "from": "9400", - "to": "9498", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9987", - "label": "14228 (-) 13879", - "from": "9400", - "to": "9502", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9986", - "label": "14228 (-) 1794651", - "from": "9400", - "to": "9805", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9985", - "label": "673684 (-) 1154743", - "from": "9399", - "to": "9466", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9984", - "label": "6042 (-) 8322", - "from": "9398", - "to": "9918", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9983", - "label": "6042 (-) 13130", - "from": "9398", - "to": "9712", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9982", - "label": "958368 (-) 241990", - "from": "9397", - "to": "9873", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9981", - "label": "1341349 (-) 320330", - "from": "9396", - "to": "9713", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9980", - "label": "1382312 (-) 232970", - "from": "9395", - "to": "9511", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9979", - "label": "952239 (-) 422049", - "from": "9394", - "to": "9909", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9978", - "label": "638896 (-) 8327", - "from": "9393", - "to": "9916", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9977", - "label": "495541 (-) 500848", - "from": "9392", - "to": "9628", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9976", - "label": "1386423 (-) 418544", - "from": "9391", - "to": "9748", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9975", - "label": "1480635 (-) 144608", - "from": "9390", - "to": "9599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9974", - "label": "1302460 (-) 13134", - "from": "9389", - "to": "9711", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9973", - "label": "159681 (-) 133757", - "from": "9388", - "to": "9790", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9972", - "label": "1155013 (-) 673684", - "from": "9387", - "to": "9399", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9971", - "label": "550854 (-) 549816", - "from": "9386", - "to": "9677", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9970", - "label": "409544 (-) 439838", - "from": "9385", - "to": "9508", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9969", - "label": "409544 (-) 409434", - "from": "9385", - "to": "9418", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9968", - "label": "79817 (-) 1275213", - "from": "9384", - "to": "9565", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9967", - "label": "79817 (-) 970337", - "from": "9384", - "to": "9490", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9966", - "label": "309196 (-) 299541", - "from": "9383", - "to": "9825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9965", - "label": "1660881 (-) 2131536", - "from": "9382", - "to": "9496", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9964", - "label": "1660882 (-) 2131536", - "from": "9381", - "to": "9496", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9963", - "label": "1660883 (-) 1660808", - "from": "9380", - "to": "9404", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9962", - "label": "1660883 (-) 924543", - "from": "9380", - "to": "9698", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9961", - "label": "1660883 (-) 1660881", - "from": "9380", - "to": "9382", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9960", - "label": "1660883 (-) 1660882", - "from": "9380", - "to": "9381", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9959", - "label": "1660884 (-) 1660883", - "from": "9379", - "to": "9380", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9958", - "label": "296913 (-) 296562", - "from": "9378", - "to": "9483", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9957", - "label": "374742 (-) 369394", - "from": "9377", - "to": "9747", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9956", - "label": "374743 (-) 369394", - "from": "9376", - "to": "9747", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9955", - "label": "874464 (-) 877267", - "from": "9375", - "to": "9760", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9954", - "label": "374754 (-) 369394", - "from": "9374", - "to": "9747", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9953", - "label": "958434 (-) 14012", - "from": "9373", - "to": "9465", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9952", - "label": "55277 (-) 743241", - "from": "9372", - "to": "9421", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9951", - "label": "1337326 (-) 1338271", - "from": "9371", - "to": "9688", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9950", - "label": "874479 (-) 877267", - "from": "9370", - "to": "9760", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9949", - "label": "1488882 (-) 144608", - "from": "9369", - "to": "9599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9948", - "label": "49150 (-) 637566", - "from": "9368", - "to": "9789", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/CSNK1D phosphorylates SEC23.json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/CSNK1D phosphorylates SEC23.json deleted file mode 100644 index fd2fb2c7f5..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/CSNK1D phosphorylates SEC23.json +++ /dev/null @@ -1,14166 +0,0 @@ -{ - "nodes": [ - { - "id": "7015", - "label": "Dissociation of phosphorylated 4EBP1 from eIF4E", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7014", - "label": "P2RY11 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7013", - "label": "EIF4E [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7012", - "label": "eIF4E:4E-BP1-P [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7011", - "label": "Release of the SLBP independent Histone mRNA from the NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7010", - "label": "viral dsRNA:TLR3:TICAM1 [endosome membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7009", - "label": "RAB4:GTP promotes recycling of activated MET receptor to the plasma membrane", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7008", - "label": "IFNA21 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7007", - "label": "p21 RAS:GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7006", - "label": "PARN deadenylates mRNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7005", - "label": "IFNA4 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7004", - "label": "Bradykinin receptor:Bradykinin [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7003", - "label": "GGC-RAB7B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7002", - "label": "Retinoic acid activates HOXB4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7001", - "label": "Disintegration of matrix layer", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "7000", - "label": "Degradation of CD8", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6999", - "label": "SUMO1:p-T4827-HERC2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6998", - "label": "IFNA7 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6997", - "label": "TGFA(24-98) [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6996", - "label": "5HT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "6995", - "label": "trans-Golgi Network Derived Vesicle Uncoating", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6994", - "label": "Phosphorylated TAK1 leaves activated TLR receptor complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6993", - "label": "IL1B(117-269) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6992", - "label": "Initial resection of double-strand break ends", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6991", - "label": "Transphosphorylation of JAK1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6990", - "label": "p-S25,S1778-TP53BP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6989", - "label": "IFNA8 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6988", - "label": "AREG(101-187) [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6987", - "label": "Dissociation of BRAF/RAF fusion complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6986", - "label": "NPS [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6985", - "label": "CREBBP [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6984", - "label": "CBL neddylates TGFBR2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6983", - "label": "NEDD8-AcM-UBE2M [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6982", - "label": "TTLLs polyglutamylate tubulin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6981", - "label": "IFNA10 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6980", - "label": "Ac-K94,K171-RUNX3:CBFB:EP300 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6979", - "label": "p-T185,Y187-MAPK1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6978", - "label": "COP9 signalosome deneddylates cytosolic CRL E3 ubiquitin ligase complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6977", - "label": "RPA heterotrimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6976", - "label": "Expression of IFNG gene", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6975", - "label": "Release of the Mature intronless transcript derived Histone mRNA:SLBP:eIF4E Complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6974", - "label": "PPP1R3C [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6973", - "label": "NANOG [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6972", - "label": "Hist [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "6971", - "label": "IFNA5 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6970", - "label": "AGTR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6969", - "label": "p-STAT5A, p-STAT5B [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "6968", - "label": "RAP1A [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6967", - "label": "Microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6966", - "label": "KLF4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6965", - "label": "MAPK3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6964", - "label": "RNF152 [lysosomal membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6963", - "label": "UTP + glutamine + ATP + H2O => CTP + glutamate + ADP + orthophosphate [CTPS]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6962", - "label": "NPSR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6961", - "label": "Ligation of newly synthesized repair patch to incised DNA in TC-NER", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6960", - "label": "TC-NER post-incision complex:SSB-dsDNA:trimmed nascent mRNA: (PCNA:POLD,POLE), (MonoUb:K164-PCNA:POLK):RPA:RFC [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6959", - "label": "PP2A (A:C) [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6958", - "label": "FKBP1A [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6957", - "label": "FGF18 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6956", - "label": "ARRB2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6955", - "label": "Translocation of ISGF3 complex to nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6954", - "label": "p-STAT2:p-STAT1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6953", - "label": "K63polyUb-TRAF3:TICAM1:TRAM:TLR4:LY96:LPS:CD14 [endosome membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6952", - "label": "Exocytosis of ficolin-rich granule lumen proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6951", - "label": "Regulation of protein ISGylation by ISG15 deconjugating enzyme USP18", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6950", - "label": "CCNH [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6949", - "label": "Transfer of SUMO2 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6948", - "label": "UBE2I [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6947", - "label": "SEC31A:SEC13:SEC23IP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6946", - "label": "Interleukin-1 family are secreted", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "6945", - "label": "Interleukin-1 family [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "6944", - "label": "IL18 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6943", - "label": "EP300 acetylates RUNX3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6942", - "label": "Release of the Mature intronless derived mRNA, TAP, and Aly/Ref from the NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6941", - "label": "PPIA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6940", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "6939", - "label": "IFNA2 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6938", - "label": "SUMO3:UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6937", - "label": "PPP4C:PPP4R2 dephosphorylates RPA2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6936", - "label": "Dissociation of RAS:RAF complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6935", - "label": "Dissociation of RAS:RAF1 mutant complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6934", - "label": "trans-Golgi Network Derived Lysosomal Vesicle Uncoating", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6933", - "label": "Expression of PERIOD-1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "6932", - "label": "DNAJC6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6931", - "label": "NSF and SNAPs bind cis-SNARE at the ER membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6930", - "label": "SEC22B:STX18:USE1:BNIP1L:3xSNAPs:NSF hexamer [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6929", - "label": "HERC5 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6928", - "label": "PAXIP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6927", - "label": "Release of STAT1 dimer from active receptor unit", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6926", - "label": "IFNG-activated factor (GAF) [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6925", - "label": "STAT3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6924", - "label": "PTK6 phosphorylates STAT3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6923", - "label": "FOSB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6922", - "label": "UMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "6921", - "label": "Interleukin-1 family precursors are cleaved by caspase-1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6920", - "label": "CCR4-NOT complex deadenylates mRNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6919", - "label": "IFNA14 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6918", - "label": "Flap [nucleoplasm]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "6917", - "label": "Transfer of SUMO3 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6916", - "label": "Activated FGFR2:p-FRS:p-PTPN11 activates RAS nucleotide exchange", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6915", - "label": "Ura-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "6914", - "label": "Thy-dRib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "6913", - "label": "Cyt-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "6912", - "label": "(d)CMP, TMP, or (d)UMP + H2O => (deoxy)cytidine, thymidine, or (deoxy)uridine + orthophosphate (NT5C3)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6911", - "label": "RNF111 ubiquitinates SUMOylated XPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6910", - "label": "Dissociation of moderate activity BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6909", - "label": "Ub,SUMO:XPC:RAD23:CETN2:Open bubble-dsDNA:PAR-UV-DDB:TFIIH Core:XPA:PAR-PARP1, PAR-PARP2:CHD1L [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6908", - "label": "Expression of CEBPB in adipogenesis", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6907", - "label": "p-Y342-PTK6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6906", - "label": "CREM isoform 6 (ICER1) [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6905", - "label": "IFNA17 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6904", - "label": "ALYREF [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6903", - "label": "IFNA6 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6902", - "label": "IL1B(1-269) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6901", - "label": "RAB1:GDP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6900", - "label": "PTK6 phosphorylates CDKN1B", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6899", - "label": "p-T,Y MAPKs [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "6898", - "label": "ADR, NAd [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "6897", - "label": "hp-IRAK1:3xK63-polyUb-TRAF6:3xUBE2N:UBE2V1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6896", - "label": "NAd [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "6895", - "label": "ISGylated host proteins [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6894", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "6893", - "label": "RUNX1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6892", - "label": "Dimerized phospho-IRF3 migrates to the nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6891", - "label": "JAK1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6890", - "label": "TGFA(24-98) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6889", - "label": "SEC24D [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6888", - "label": "NEDD8 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6887", - "label": "NICD1 PEST domain mutants:RBPJ:SNW1 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6886", - "label": "Nucleotide exchange on RAB1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6885", - "label": "GRB2-1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6884", - "label": "NICD1 PEST domain mutants displace co-repressor complex from RBPJ (CSL)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6883", - "label": "NICD1 is phosphorylated by CDK8", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6882", - "label": "STAT3, STAT4 are phosphorylated by p-JAK2, p-TYK2 in IL23:IL23 receptor", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6881", - "label": "2xviral dsRNA:2xK63polyUb-DDX58:2xRNF135,TRIM25:2xATP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6880", - "label": "IL23A:IL12B:IL12RB1:p-TYK2:p-Y-IL23R:p-JAK2:p-Y705-STAT3:p-Y693-STAT4 [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6879", - "label": "SAR1B:GTP [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6878", - "label": "LPAR1,2,3,5:LPA [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6877", - "label": "Ade-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "6876", - "label": "Expression of IFNG-stimulated genes", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6875", - "label": "Removal of RNA primer and dissociation of RPA and Dna2 from the C-strand", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6874", - "label": "HLA class I histocompatibility antigen, E alpha chain precursor [integral component of lumenal side of endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6873", - "label": "IL1B [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6872", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon ALPK1:ADP-heptose stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "6871", - "label": "Removal of RNA primer and dissociation of RPA and Dna2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6870", - "label": "ISG15 E3 ligases [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "6869", - "label": "RUNX3 translocates to the nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6868", - "label": "ARIH1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6867", - "label": "UTP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "6866", - "label": "AGTR1 [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6865", - "label": "(d)NDP + ATP <=> (d)NTP + ADP (NME1,2,3)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6864", - "label": "PPTN11 dephosphorylates SPRY2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6863", - "label": "p-RPA heterotrimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6862", - "label": "p-IRF7:p-IRF7 translocates to the nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6861", - "label": "AVP(20-28) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6860", - "label": "Disassembly of COPII coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6859", - "label": "UTP + glutamine + ATP + H2O => CTP + glutamate + ADP + orthophosphate [CTPS2]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6858", - "label": "CEBPB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6857", - "label": "5HT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "6856", - "label": "FGFR1OP-FGFR1 phosphorylates STAT1 and STAT3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6855", - "label": "Release of p-STAT2:p-STAT1 dimer", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6854", - "label": "GYS1 catalyzes the incorporation of phosphoglucose into glycogen-GYG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6853", - "label": "IFN alpha/beta (IFNA/B) [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "6852", - "label": "IFNA [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "6851", - "label": "IFNA16 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6850", - "label": "EP300 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6849", - "label": "COPII vesicle with MHC class I [ER to Golgi transport vesicle membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6848", - "label": "Phosphorylated TAK1 dissociates from the TLR3 receptor complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6847", - "label": "viral dsRNA:TLR3:TICAM1:K63pUb-TRAF6 [endosome membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6846", - "label": "Activated FGFR3:p-FRS:p-PTPN11 activates RAS nucleotide exchange", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6845", - "label": "Transport of HCMV DNA Into the Nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6844", - "label": "HCMV Capsid:Nuclear Pore Complex [nuclear envelope]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6843", - "label": "p-Y699-STAT5B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6842", - "label": "CCPs deglutamylate tubulin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6841", - "label": "Vesicle budding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "6840", - "label": "HCMV Nuclear Pore Docking", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6839", - "label": "Auto ubiquitination of TRAF6 bound to the activated TLR4 complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6838", - "label": "CDK8 phosphorylates NICD1 PEST domain mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6837", - "label": "Budding of COPII coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6836", - "label": "Estrogen-responsive MYC gene expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6835", - "label": "COPI vesicle uncoating at the ER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6834", - "label": "RAB1:GTP:coatomer:p24 dimers:SEC22B:cargo:NBAS:RINT1:ZW10:STX18:USE1L:BNIP1 [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6833", - "label": "p-Y694-STAT5A [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6832", - "label": "Recruitment of XPA and release of CAK", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6831", - "label": "RAD51 binds BRCA2 at resected DNA DSBs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6830", - "label": "L-Glu [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "6829", - "label": "SOCS2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6828", - "label": "NICD1:RBPJ:SNW1 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6827", - "label": "TGFA precursor [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6826", - "label": "ADORA2B:Ade-Rib:GsGTP dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6825", - "label": "SEC23A [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6824", - "label": "p-Y705-STAT3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6823", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6822", - "label": "Dissociation of Rho GTP:GDP from GDI complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6821", - "label": "Phosphorylation of 4E-BP1 by activated mTORC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6820", - "label": "AREG precursor [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6819", - "label": "PPARG [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6818", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon TLR3 stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "6817", - "label": "SEC24C [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6816", - "label": "SIK1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6815", - "label": "Auto ubiqitination of TRAF6 bound to viral dsRNS:TLR3:TICAM1 complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6814", - "label": "SOCS1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6813", - "label": "PGE2 [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "6812", - "label": "RHOA:GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6811", - "label": "MIR27A gene transcription is stimulated by the complex containing RUNX1, PRMT1 and GATA1 and inhibited by the complex of RUNX1, SIN3A and PRMT6", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6810", - "label": "The Ligand:GPCR:Gq complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6809", - "label": "MON1:CCZ1 exchanges GTP for GDP on RAB7", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6808", - "label": "p-Y693-STAT4, p-Y705-STAT3 dissociate from IL23:IL23 receptor", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6807", - "label": "CASR:Ca2+ [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6806", - "label": "CXCR4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6805", - "label": "ARHGDIA [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6804", - "label": "IFNB1 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6803", - "label": "(d)CMP, TMP, or (d)UMP + H2O => (deoxy)cytidine, thymidine, or (deoxy)uridine + orthophosphate (NT5C1A)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6802", - "label": "MCHR1,MCHR2:PMCH(147-165) [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6801", - "label": "RNF4 ubiquitinates MDC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6800", - "label": "AREG(101-187) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6799", - "label": "Expression of STAT5 upregulated genes", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6798", - "label": "NMUR1,NMUR2:NMU [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6797", - "label": "TMP, uridine 2', 3', or 5' monophosphates, or deoxyuridine 3' or 5' monophosphates + H2O => thymidine or (deoxy)uridine + orthophosphate [NT5C]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6796", - "label": "SEC22B [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6795", - "label": "EIF4A3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6794", - "label": "ERCC1:XPF cleaves flaps generated by SSA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6793", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon TLR stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "6792", - "label": "G-protein beta-gamma complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6791", - "label": "Exocytosis of specific granule membrane proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6790", - "label": "FGL2 [ficolin-1-rich granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6789", - "label": "BTRC [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6788", - "label": "ISGylation of E2 conjugating enzymes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6787", - "label": "E2-mediated FOS gene expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6786", - "label": "DNA DNA DSBs:p-MRN:p-S1981,Ac-K3016-ATM:KAT5:K63PolyUb-K14,K16,p-S139-H2AFX,Me2K21-HIST1H4A-Nucleosome:SUMO2:K1840,p-5T-MDC1:p-S102-WHSC1:RNF8:Zn2+:SUMO1:p-T4827-HERC2:UBE2N:UBE2V2:RNF168:PIAS4:p-S25,S1778-TP53BP1:p-5S,2T-BRCA1-A complex [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6785", - "label": "Dissociation of oncogenic RAS:RAF complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6784", - "label": "G-protein alpha (i):GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6783", - "label": "Negative regulation of DDX58/IFIH1 signaling by RNF216", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6782", - "label": "K63-pUb-TRAF6:TICAM1:TRAM:TLR4:LY96:LPS:CD14 [endosome membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6781", - "label": "TICAM1:TRAM:TLR4:LY96:LPS:CD14 [endosome membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6780", - "label": "K63polyUb-TRAF3:TICAM1:activated TLR3 [endosome membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6779", - "label": "Retinoic acid activates HOXB1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6778", - "label": "GDI1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6777", - "label": "Auto-ubiquitination of TRAF3 within activated TLR3 complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6776", - "label": "RNF8:Zn2+ [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6775", - "label": "KIFC1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6774", - "label": "K63polyUb [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "6773", - "label": "HDAC3 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6772", - "label": "Phosphorylation of IRF-3/IRF7 and their release from the activated TLR3 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6771", - "label": "Release of E3 from polyubiquitinated substrate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6770", - "label": "Ccps deglutamylate tubulin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6769", - "label": "Distorted dsDNA [nucleoplasm]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "6768", - "label": "Translesion synthesis across unhooked ICL by POLN", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6767", - "label": "Dissociation of high activity BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6766", - "label": "Dimerized phospho-IRF3/IRF7 is transported to the nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6765", - "label": "Expression of NANOG", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6764", - "label": "p-Y693-STAT4 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6763", - "label": "p-4S,T404-IRF3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6762", - "label": "p190RhoGEF exchanges GTP for GDP on RHOA, activating it", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6761", - "label": "STAT5 dimers translocate to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6760", - "label": "p-STAT5 dimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6759", - "label": "Fusion of viral membrane with host cell membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6758", - "label": "Viral core surrounded by Matrix layer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6757", - "label": "N-acetylation of serotonin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6756", - "label": "UDP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "6755", - "label": "dCDP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "6754", - "label": "UBE2N:UBE2V1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6753", - "label": "CDP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "6752", - "label": "RUNX1 gene expression is inhibited by RUNX3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6751", - "label": "(d)CMP or UMP + ATP <=> (d)CDP or UDP + ADP (CMPK1)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6750", - "label": "DNA DSB:p-MRN:p-S1981,Ac-K3016-ATM:KAT5 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6749", - "label": "myristoylated nef [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6748", - "label": "mRNP complex dissociates from cytosolic face of NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6747", - "label": "SPRY2 binds CBL", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6746", - "label": "p115-RhoGEF activation of RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6745", - "label": "Translocation of phosphorylated IRF3,IRF7 dimers into nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6744", - "label": "IRF3-P:IRF7-P [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6743", - "label": "Ca2+ [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "6742", - "label": "GDI2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6741", - "label": "p-S477,S479-IRF7 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6740", - "label": "The Ligand:GPCR:Gi complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6739", - "label": "ISGF3 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6738", - "label": "RUNX1 mRNA translation is inhibited by miR-17, miR-18a, miR-20a, miR-27a, miR-106a, miR-215, miR-302b, miR-378 and miR-675", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6737", - "label": "RUNX1 mRNA [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6736", - "label": "MyrG-p-Y419-SRC [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6735", - "label": "MYC [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6734", - "label": "The Ligand:GPCR:Gs complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "6733", - "label": "NICD1 displaces co-repressor complex from RBPJ (CSL)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6732", - "label": "PTHLH [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6731", - "label": "Recovery of RNA synthesis after TC-NER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6730", - "label": "Dissociation of clathrin-associated proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6729", - "label": "Expression of interferon-beta", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6728", - "label": "Cytosolic DUSPs dephosphorylate MAPKs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6727", - "label": "SAR1 Activation And Membrane Binding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6726", - "label": "SAR1B:GDP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6725", - "label": "SAR1B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6724", - "label": "FPR2:FPR2 ligands [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6723", - "label": "PIAS4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6722", - "label": "2xp-S477,S479-IRF7 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6721", - "label": "Polyglutamylated microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6720", - "label": "GPR39 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6719", - "label": "Transfer of SUMO1 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6718", - "label": "ARRB1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6717", - "label": "MET phosphorylates STAT3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6716", - "label": "p-T,4S-IRF3:p-T,4S-IRF3 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6715", - "label": "Loss of SAR1B GTPase", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6714", - "label": "Dissociation of the Gi alpha:G olf complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6713", - "label": "TGFA precursor [ER to Golgi transport vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6712", - "label": "GNAL [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6711", - "label": "PIAS4 SUMOylates NR4A2 with SUMO2,3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6710", - "label": "DDX58 is K63 polyubiquitinated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6709", - "label": "IFNG-activated factor (GAF) [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6708", - "label": "AREG precursor [ER to Golgi transport vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6707", - "label": "RNF152 polyubiquitinates RRAGA", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6706", - "label": "ISGylation of host proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6705", - "label": "UBE2N:UBE2V2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6704", - "label": "p-S102-WHSC1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6703", - "label": "HGF:p-Y1234,Y1235,Y1349,Y1356-MET dimer [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6702", - "label": "RhoA is activated by nucleotide exchange and inhibits axonal growth", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6701", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6700", - "label": "PPARG:RXRA heterodimer binds to fatty acid-like ligands", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6699", - "label": "RHOA:GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6698", - "label": "GYS2 catalyzes the incorporation of phosphoglucose into glycogen-GYG2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6697", - "label": "UBE2L6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6696", - "label": "Auto-ubiquitination of TRAF3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6695", - "label": "Transfer of NEDD8 to AcM-UBE2M", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6694", - "label": "TRAF3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6693", - "label": "SEC13 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6692", - "label": "CAK [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6691", - "label": "NGEF exchanges GTP for GDP on RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6690", - "label": "Activated FGFR4:p-FRS:p-PTPN11 activates RAS nucleotide exchange", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6689", - "label": "Caspase-8 cleaves IL1B precursor", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6688", - "label": "TRAF6 binding leads to IRAK1:TRAF6 release", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6687", - "label": "HDAC6 deacetylates microtubules", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6686", - "label": "NCOR1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6685", - "label": "Association of Ku heterodimer with ends of DNA double-strand break", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6684", - "label": "Nuclear Pore Complex (NPC) [nuclear envelope]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6683", - "label": "Expression of Interferon-alpha and beta mediated by VAF/pIRF7:CBP/p300", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6682", - "label": "p-2S,S376,T,T209,T387-IRAK1:TRAF6 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6681", - "label": "NXF1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6680", - "label": "NSF ATPase activity dissociates cis-SNARE at the ER", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6679", - "label": "p-5S-BRCA1:p-2T-BARD1 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6678", - "label": "Estrogen-responsive CCND1 gene expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6677", - "label": "NR4A2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6676", - "label": "Dissociation of paradoxically activated RAS:BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6675", - "label": "SEC22B:STX18:USE1L:BNIP1 [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6674", - "label": "Translocation of STAT1 dimer to nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6673", - "label": "PIAS4 SUMOylates MDC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6672", - "label": "Y963-STAT4 dimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6671", - "label": "CCND1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6670", - "label": "CGA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6669", - "label": "Expression of STAT3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6668", - "label": "SUMO2:UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6667", - "label": "GCG(53-81) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6666", - "label": "Equilibrative transport (import) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6665", - "label": "CBL [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6664", - "label": "SRC autophosphorylation is positively regulated by InlA-bound CDH1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6663", - "label": "TC-NER post-incision complex:dsDNA with transcription bubble [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6662", - "label": "Translocation of p-IRF7:p-IRF7 to nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6661", - "label": "viral dsRNA:IFIH1, viral dsRNA:K63polyUb-DDX58:MAVS [mitochondrial outer membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6660", - "label": "WNT5A:FZD4 is endocytosed", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6659", - "label": "The p75NTR:NgR:MDGI complex reduces RHOA-GDI activity, displacing RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6658", - "label": "Y693-STAT4 dimer translocates to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6657", - "label": "Activator phosphorylates STAT5", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6656", - "label": "CCND1 binds RUNX3 and displaces EP300", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6655", - "label": "Retrograde vesicle is tethered at the ER by the NRZ complex and t-SNAREs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6654", - "label": "TNFRSF1B [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6653", - "label": "Phosphorylation and release of IRF7", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6652", - "label": "AP-2 Complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6651", - "label": "Phosphorylation of IRF-3/IRF7 and their release from the activated TLR complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6650", - "label": "Overexpressed HIST1H2AC and ESR1:ESTG bind MYC and BCL2 genes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6649", - "label": "UBE2N [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6648", - "label": "Repair DNA synthesis of ~27-30 bases long patch by POLD, POLE or POLK in TC-NER", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6647", - "label": "p-STAT5 dissociates from activator:STAT5 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6646", - "label": "Degradation of CD4", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6645", - "label": "BTRC:CUL1:SKP1 (SCF-beta-TrCP1) ubiquitinylates PER proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6644", - "label": "TRAF6 is K63 poly-ubiquitinated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6643", - "label": "IFNG gene expression is stimulated by RUNX1 and inhibited by FOXP3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6642", - "label": "IFNG [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6641", - "label": "miR-27a Nonendonucleolytic RISC [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6640", - "label": "SUMO1:C93-UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6639", - "label": "Retinoic acid activates HOXD4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6638", - "label": "G-proteins dissociate from plasma-membrane estrogen receptors", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6637", - "label": "Expression of PPARG", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6636", - "label": "RNF168 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6635", - "label": "TGFBR2 is recruited to tight junctions after TGF-beta stimulation", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6634", - "label": "Retinoic acid activates HOXA1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6633", - "label": "dNTP [nucleoplasm]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "6632", - "label": "CSNK1D phosphorylates SEC23", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "6631", - "label": "Long-range resection of DNA DSBs by EXO1 or DNA2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6630", - "label": "cIAP1,2 ubiquitinates NIK in cIAP1,2:TRAF2::TRAF3:NIK", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6629", - "label": "TNFRSF1B [specific granule membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "6628", - "label": "MYC gene expression is enhanced by E2F1, STAT3, and CEBPB and repressed by CEBPA", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6627", - "label": "RUNX3 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6626", - "label": "COPII cargo:receptors:SEC23:SEC24:SEC13:SEC31:SEC23IP:v-SNAREs:TRAPPCII:RAB1:GTP [COPII-coated ER to Golgi transport vesicle]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6625", - "label": "Phosphorylation of IFNGR1 by JAK kinases", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6624", - "label": "IFNG:IFNGR1:p-JAK1:IFNGR2:p-JAK2 [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6623", - "label": "FOS [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6622", - "label": "Histone H2A [nucleoplasm]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "6621", - "label": "NMUR2:NMS [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6620", - "label": "p-T202,Y204-MAPK3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6619", - "label": "NCOR2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6618", - "label": "UBE2N:UBE2V1 dissociates from hp-IRAK1:3xK63-polyUb-TRAF6:3xUBE2N:UBE2V1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "6617", - "label": "IFNA1 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6616", - "label": "K63PolyUb:K14,K16,p-S139-H2AFX,Me2K21-HIST1H4A-Nucleosome [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6615", - "label": "PER1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "6614", - "label": "Phosphorylation and release of IRF3/IRF7", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6613", - "label": "CoA-SH [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "6612", - "label": "SUMOylation of XPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6611", - "label": "IFNG:p-IFNGR1:p-JAK1:IFNGR2:p-JAK2 [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "6610", - "label": "Expression of IFN-induced genes", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - } - ], - "edges": [ - { - "id": "7619", - "label": "572416 (-) 572418", - "from": "7015", - "to": "7013", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7618", - "label": "304129 (-) 299541", - "from": "7014", - "to": "6810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7617", - "label": "572418 (-) 1952962", - "from": "7013", - "to": "6942", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7616", - "label": "572418 (-) 1952772", - "from": "7013", - "to": "7011", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7615", - "label": "572418 (-) 1031197", - "from": "7013", - "to": "7006", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7614", - "label": "572418 (-) 1952877", - "from": "7013", - "to": "6975", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7613", - "label": "572418 (-) 994566", - "from": "7013", - "to": "6920", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7612", - "label": "572417 (-) 572416", - "from": "7012", - "to": "7015", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7611", - "label": "1952772 (-) 996179", - "from": "7011", - "to": "6681", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7610", - "label": "1952772 (-) 996639", - "from": "7011", - "to": "6904", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7609", - "label": "243719 (-) 1205885", - "from": "7010", - "to": "6772", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7608", - "label": "587783 (-) 140089", - "from": "7009", - "to": "6703", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7607", - "label": "527370 (-) 526778", - "from": "7008", - "to": "6855", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7606", - "label": "253191 (-) 973072", - "from": "7007", - "to": "6910", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7605", - "label": "253191 (-) 975952", - "from": "7007", - "to": "6987", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7604", - "label": "253191 (-) 252110", - "from": "7007", - "to": "6936", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7603", - "label": "253191 (-) 971358", - "from": "7007", - "to": "6785", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7602", - "label": "253191 (-) 974036", - "from": "7007", - "to": "6935", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7601", - "label": "253191 (-) 972439", - "from": "7007", - "to": "6767", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7600", - "label": "253191 (-) 973669", - "from": "7007", - "to": "6676", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7599", - "label": "1031197 (-) 994878", - "from": "7006", - "to": "6795", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7598", - "label": "527392 (-) 526778", - "from": "7005", - "to": "6855", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7597", - "label": "305190 (-) 299541", - "from": "7004", - "to": "6810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7596", - "label": "1882150 (-) 2098710", - "from": "7003", - "to": "6809", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7595", - "label": "1341480 (-) 320330", - "from": "7002", - "to": "6686", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7594", - "label": "1412138 (-) 1411783", - "from": "7001", - "to": "6749", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7593", - "label": "1473583 (-) 698257", - "from": "7000", - "to": "6652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7592", - "label": "54322 (-) 743241", - "from": "6999", - "to": "6685", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7591", - "label": "527414 (-) 526778", - "from": "6998", - "to": "6855", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7590", - "label": "2131002 (-) 2131705", - "from": "6997", - "to": "6730", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7589", - "label": "299067 (-) 299541", - "from": "6996", - "to": "6810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7588", - "label": "2119743 (-) 254746", - "from": "6995", - "to": "6718", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7587", - "label": "1035330 (-) 242282", - "from": "6994", - "to": "6781", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7586", - "label": "955460 (-) 955573", - "from": "6993", - "to": "6946", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7585", - "label": "75845 (-) 75696", - "from": "6992", - "to": "6633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7584", - "label": "1796167 (-) 1796033", - "from": "6991", - "to": "6624", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7583", - "label": "62537 (-) 743241", - "from": "6990", - "to": "6685", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7582", - "label": "527436 (-) 526778", - "from": "6989", - "to": "6855", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7581", - "label": "2131021 (-) 2131705", - "from": "6988", - "to": "6730", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7580", - "label": "975952 (-) 250984", - "from": "6987", - "to": "6979", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7579", - "label": "975952 (-) 251144", - "from": "6987", - "to": "6620", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7578", - "label": "975952 (-) 251201", - "from": "6987", - "to": "6899", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7577", - "label": "304210 (-) 299541", - "from": "6986", - "to": "6810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7576", - "label": "318548 (-) 1159930", - "from": "6985", - "to": "6729", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7575", - "label": "318548 (-) 1160014", - "from": "6985", - "to": "6683", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7574", - "label": "950359 (-) 569211", - "from": "6984", - "to": "6665", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7573", - "label": "950362 (-) 950359", - "from": "6983", - "to": "6984", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7572", - "label": "1934430 (-) 1935115", - "from": "6982", - "to": "6721", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7571", - "label": "527459 (-) 526778", - "from": "6981", - "to": "6855", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7570", - "label": "1428580 (-) 1428742", - "from": "6980", - "to": "6656", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7569", - "label": "250984 (-) 392955", - "from": "6979", - "to": "6728", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7568", - "label": "1911913 (-) 978264", - "from": "6978", - "to": "6888", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7567", - "label": "72811 (-) 1242262", - "from": "6977", - "to": "6961", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7566", - "label": "1809517 (-) 1275811", - "from": "6976", - "to": "6642", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7565", - "label": "1952877 (-) 996179", - "from": "6975", - "to": "6681", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7564", - "label": "1952877 (-) 996639", - "from": "6975", - "to": "6904", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7563", - "label": "916596 (-) 917308", - "from": "6974", - "to": "6698", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7562", - "label": "916596 (-) 916923", - "from": "6974", - "to": "6854", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7561", - "label": "159862 (-) 1339245", - "from": "6973", - "to": "6669", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7560", - "label": "299127 (-) 299541", - "from": "6972", - "to": "6810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7559", - "label": "527481 (-) 526778", - "from": "6971", - "to": "6855", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7558", - "label": "314489 (-) 299541", - "from": "6970", - "to": "6810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7557", - "label": "934011 (-) 935596", - "from": "6969", - "to": "6761", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7556", - "label": "256131 (-) 974036", - "from": "6968", - "to": "6935", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7555", - "label": "256131 (-) 973669", - "from": "6968", - "to": "6676", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7554", - "label": "256131 (-) 973072", - "from": "6968", - "to": "6910", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7553", - "label": "256131 (-) 975952", - "from": "6968", - "to": "6987", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7552", - "label": "256131 (-) 971358", - "from": "6968", - "to": "6785", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7551", - "label": "256131 (-) 972439", - "from": "6968", - "to": "6767", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7550", - "label": "256131 (-) 252110", - "from": "6968", - "to": "6936", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7549", - "label": "8325 (-) 1477081", - "from": "6967", - "to": "6840", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7548", - "label": "160903 (-) 160413", - "from": "6966", - "to": "6765", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7547", - "label": "160903 (-) 1382672", - "from": "6966", - "to": "6908", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7546", - "label": "258188 (-) 1793199", - "from": "6965", - "to": "6951", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7545", - "label": "1867917 (-) 1871665", - "from": "6964", - "to": "6707", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7544", - "label": "534672 (-) 191978", - "from": "6963", - "to": "6830", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7543", - "label": "304276 (-) 299541", - "from": "6962", - "to": "6810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7542", - "label": "1242262 (-) 1243009", - "from": "6961", - "to": "6663", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7541", - "label": "1242263 (-) 1242262", - "from": "6960", - "to": "6961", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7540", - "label": "571548 (-) 571803", - "from": "6959", - "to": "6864", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7539", - "label": "422049 (-) 573953", - "from": "6958", - "to": "6821", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7538", - "label": "133281 (-) 1245648", - "from": "6957", - "to": "6846", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7537", - "label": "133281 (-) 1245450", - "from": "6957", - "to": "6916", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7536", - "label": "133281 (-) 571202", - "from": "6957", - "to": "6690", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7535", - "label": "255142 (-) 974036", - "from": "6956", - "to": "6935", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7534", - "label": "255142 (-) 973072", - "from": "6956", - "to": "6910", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7533", - "label": "255142 (-) 971358", - "from": "6956", - "to": "6785", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7532", - "label": "255142 (-) 973669", - "from": "6956", - "to": "6676", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7531", - "label": "255142 (-) 972439", - "from": "6956", - "to": "6767", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7530", - "label": "255142 (-) 975952", - "from": "6956", - "to": "6987", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7529", - "label": "255142 (-) 252110", - "from": "6956", - "to": "6936", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7528", - "label": "526503 (-) 526055", - "from": "6955", - "to": "6739", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7527", - "label": "526505 (-) 526503", - "from": "6954", - "to": "6955", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7526", - "label": "1034413 (-) 1035154", - "from": "6953", - "to": "6651", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7525", - "label": "1116334 (-) 593090", - "from": "6952", - "to": "6941", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7524", - "label": "1793199 (-) 286028", - "from": "6951", - "to": "6891", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7523", - "label": "92336 (-) 1243896", - "from": "6950", - "to": "6731", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7522", - "label": "923825 (-) 77681", - "from": "6949", - "to": "6668", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7521", - "label": "64690 (-) 1886473", - "from": "6948", - "to": "6917", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7520", - "label": "64690 (-) 923825", - "from": "6948", - "to": "6949", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7519", - "label": "64690 (-) 67353", - "from": "6948", - "to": "6719", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7518", - "label": "887987 (-) 888278", - "from": "6947", - "to": "6841", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7517", - "label": "955573 (-) 952711", - "from": "6946", - "to": "6873", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7516", - "label": "955574 (-) 955573", - "from": "6945", - "to": "6946", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7515", - "label": "955580 (-) 955573", - "from": "6944", - "to": "6946", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7514", - "label": "1428672 (-) 1428580", - "from": "6943", - "to": "6980", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7513", - "label": "1952962 (-) 996179", - "from": "6942", - "to": "6681", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7512", - "label": "1952962 (-) 996639", - "from": "6942", - "to": "6904", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7511", - "label": "593090 (-) 1411759", - "from": "6941", - "to": "6759", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7510", - "label": "243911 (-) 2680", - "from": "6940", - "to": "6774", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7509", - "label": "527559 (-) 526778", - "from": "6939", - "to": "6855", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7508", - "label": "1238218 (-) 1238006", - "from": "6938", - "to": "6612", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7507", - "label": "73933 (-) 72811", - "from": "6937", - "to": "6977", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7506", - "label": "252110 (-) 251201", - "from": "6936", - "to": "6899", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7505", - "label": "252110 (-) 251144", - "from": "6936", - "to": "6620", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7504", - "label": "252110 (-) 250984", - "from": "6936", - "to": "6979", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7503", - "label": "974036 (-) 251144", - "from": "6935", - "to": "6620", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7502", - "label": "974036 (-) 251201", - "from": "6935", - "to": "6899", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7501", - "label": "974036 (-) 250984", - "from": "6935", - "to": "6979", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7500", - "label": "2117860 (-) 254746", - "from": "6934", - "to": "6718", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7499", - "label": "1337573 (-) 1337326", - "from": "6933", - "to": "6615", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7498", - "label": "2117862 (-) 2119743", - "from": "6932", - "to": "6995", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7497", - "label": "2117862 (-) 2117860", - "from": "6932", - "to": "6934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7496", - "label": "2114794 (-) 2114795", - "from": "6931", - "to": "6930", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7495", - "label": "2114795 (-) 2114825", - "from": "6930", - "to": "6680", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7494", - "label": "962799 (-) 1794867", - "from": "6929", - "to": "6706", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7493", - "label": "743664 (-) 1341480", - "from": "6928", - "to": "7002", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7492", - "label": "743664 (-) 1341349", - "from": "6928", - "to": "6639", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7491", - "label": "743664 (-) 1341038", - "from": "6928", - "to": "6779", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7490", - "label": "743664 (-) 1340336", - "from": "6928", - "to": "6634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7489", - "label": "1796343 (-) 1796345", - "from": "6927", - "to": "6926", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7488", - "label": "1796345 (-) 1797990", - "from": "6926", - "to": "6674", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7487", - "label": "570619 (-) 1482169", - "from": "6925", - "to": "6856", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7486", - "label": "570619 (-) 586523", - "from": "6925", - "to": "6717", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7485", - "label": "570619 (-) 1810802", - "from": "6925", - "to": "6882", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7484", - "label": "570619 (-) 587004", - "from": "6925", - "to": "6924", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7483", - "label": "587004 (-) 570878", - "from": "6924", - "to": "6824", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7482", - "label": "660736 (-) 2062814", - "from": "6923", - "to": "6836", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7481", - "label": "504065 (-) 504078", - "from": "6922", - "to": "6912", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7480", - "label": "504065 (-) 504360", - "from": "6922", - "to": "6803", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7479", - "label": "504065 (-) 504377", - "from": "6922", - "to": "6797", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7478", - "label": "504065 (-) 530113", - "from": "6922", - "to": "6751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7477", - "label": "955652 (-) 955580", - "from": "6921", - "to": "6944", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7476", - "label": "955652 (-) 955574", - "from": "6921", - "to": "6945", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7475", - "label": "955652 (-) 955460", - "from": "6921", - "to": "6993", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7474", - "label": "994566 (-) 994878", - "from": "6920", - "to": "6795", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7473", - "label": "527622 (-) 526778", - "from": "6919", - "to": "6855", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7472", - "label": "83207 (-) 85379", - "from": "6918", - "to": "6875", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7471", - "label": "83207 (-) 417161", - "from": "6918", - "to": "6871", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7470", - "label": "1886473 (-) 1238218", - "from": "6917", - "to": "6938", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7469", - "label": "1245450 (-) 253191", - "from": "6916", - "to": "7007", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7468", - "label": "504075 (-) 1682942", - "from": "6915", - "to": "6823", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7467", - "label": "504075 (-) 1684283", - "from": "6915", - "to": "6701", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7466", - "label": "504076 (-) 1684283", - "from": "6914", - "to": "6701", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7465", - "label": "504076 (-) 1682942", - "from": "6914", - "to": "6823", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7464", - "label": "504077 (-) 1682942", - "from": "6913", - "to": "6823", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7463", - "label": "504077 (-) 1684283", - "from": "6913", - "to": "6701", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7462", - "label": "504078 (-) 504076", - "from": "6912", - "to": "6914", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7461", - "label": "504078 (-) 504077", - "from": "6912", - "to": "6913", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7460", - "label": "504078 (-) 504075", - "from": "6912", - "to": "6915", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7459", - "label": "1237263 (-) 55093", - "from": "6911", - "to": "6705", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7458", - "label": "973072 (-) 251144", - "from": "6910", - "to": "6620", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7457", - "label": "973072 (-) 251201", - "from": "6910", - "to": "6899", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7456", - "label": "973072 (-) 250984", - "from": "6910", - "to": "6979", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7455", - "label": "1237265 (-) 1237263", - "from": "6909", - "to": "6911", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7454", - "label": "1382672 (-) 441773", - "from": "6908", - "to": "6858", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7453", - "label": "97550 (-) 587004", - "from": "6907", - "to": "6924", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7452", - "label": "1337624 (-) 1337573", - "from": "6906", - "to": "6933", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7451", - "label": "527644 (-) 526778", - "from": "6905", - "to": "6855", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7450", - "label": "996639 (-) 996040", - "from": "6904", - "to": "6748", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7449", - "label": "527666 (-) 526778", - "from": "6903", - "to": "6855", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7448", - "label": "955707 (-) 955652", - "from": "6902", - "to": "6921", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7447", - "label": "955707 (-) 1156931", - "from": "6902", - "to": "6689", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7446", - "label": "874812 (-) 888170", - "from": "6901", - "to": "6886", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7445", - "label": "415036 (-) 97550", - "from": "6900", - "to": "6907", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7444", - "label": "251201 (-) 392955", - "from": "6899", - "to": "6728", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7443", - "label": "298309 (-) 299541", - "from": "6898", - "to": "6810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7442", - "label": "241990 (-) 958434", - "from": "6897", - "to": "6618", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7441", - "label": "298310 (-) 299541", - "from": "6896", - "to": "6810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7440", - "label": "1793352 (-) 1793199", - "from": "6895", - "to": "6951", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7439", - "label": "298315 (-) 299541", - "from": "6894", - "to": "6810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7438", - "label": "1265996 (-) 1275810", - "from": "6893", - "to": "6643", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7437", - "label": "1161548 (-) 1035037", - "from": "6892", - "to": "6716", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7436", - "label": "286028 (-) 1796167", - "from": "6891", - "to": "6991", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7435", - "label": "101711 (-) 555611", - "from": "6890", - "to": "6787", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7434", - "label": "882000 (-) 885683", - "from": "6889", - "to": "6632", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7433", - "label": "978264 (-) 1916734", - "from": "6888", - "to": "6695", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7432", - "label": "1488220 (-) 1488347", - "from": "6887", - "to": "6838", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7431", - "label": "888170 (-) 885694", - "from": "6886", - "to": "6626", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7430", - "label": "132458 (-) 1799066", - "from": "6885", - "to": "6647", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7429", - "label": "132458 (-) 587783", - "from": "6885", - "to": "7009", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7428", - "label": "132458 (-) 1799049", - "from": "6885", - "to": "6657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7427", - "label": "1488234 (-) 1488220", - "from": "6884", - "to": "6887", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7426", - "label": "1279345 (-) 318548", - "from": "6883", - "to": "6985", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7425", - "label": "1279345 (-) 321983", - "from": "6883", - "to": "6850", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7424", - "label": "1810802 (-) 1810805", - "from": "6882", - "to": "6880", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7423", - "label": "953713 (-) 1160078", - "from": "6881", - "to": "6653", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7422", - "label": "953713 (-) 1035250", - "from": "6881", - "to": "6614", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7421", - "label": "1810805 (-) 1810967", - "from": "6880", - "to": "6808", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7420", - "label": "883065 (-) 1200606", - "from": "6879", - "to": "6837", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7419", - "label": "302460 (-) 299541", - "from": "6878", - "to": "6810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7418", - "label": "330112 (-) 409084", - "from": "6877", - "to": "6826", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7417", - "label": "330112 (-) 1684347", - "from": "6877", - "to": "6666", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7416", - "label": "330112 (-) 369394", - "from": "6877", - "to": "6734", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7415", - "label": "330112 (-) 331494", - "from": "6877", - "to": "6740", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7414", - "label": "1796481 (-) 515462", - "from": "6876", - "to": "6874", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7413", - "label": "85379 (-) 72811", - "from": "6875", - "to": "6977", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7412", - "label": "515462 (-) 1200606", - "from": "6874", - "to": "6837", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7411", - "label": "952711 (-) 958275", - "from": "6873", - "to": "6688", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7410", - "label": "391560 (-) 2680", - "from": "6872", - "to": "6774", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7409", - "label": "417161 (-) 72811", - "from": "6871", - "to": "6977", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7408", - "label": "1793418 (-) 1794867", - "from": "6870", - "to": "6706", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7407", - "label": "433546 (-) 433081", - "from": "6869", - "to": "6627", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7406", - "label": "1793419 (-) 1794867", - "from": "6868", - "to": "6706", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7405", - "label": "533903 (-) 534955", - "from": "6867", - "to": "6859", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7404", - "label": "533903 (-) 534672", - "from": "6867", - "to": "6963", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7403", - "label": "2131348 (-) 2131705", - "from": "6866", - "to": "6730", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7402", - "label": "533914 (-) 533903", - "from": "6865", - "to": "6867", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7401", - "label": "571803 (-) 132458", - "from": "6864", - "to": "6885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7400", - "label": "74143 (-) 73933", - "from": "6863", - "to": "6937", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7399", - "label": "1162656 (-) 1035019", - "from": "6862", - "to": "6722", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7398", - "label": "301477 (-) 299541", - "from": "6861", - "to": "6810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7397", - "label": "1200554 (-) 880125", - "from": "6860", - "to": "6825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7396", - "label": "1200554 (-) 882000", - "from": "6860", - "to": "6889", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7395", - "label": "1200554 (-) 880139", - "from": "6860", - "to": "6817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7394", - "label": "1200554 (-) 43842", - "from": "6860", - "to": "6693", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7393", - "label": "534955 (-) 191978", - "from": "6859", - "to": "6830", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7392", - "label": "441773 (-) 1386423", - "from": "6858", - "to": "6628", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7391", - "label": "441773 (-) 1382312", - "from": "6858", - "to": "6637", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7390", - "label": "354741 (-) 836276", - "from": "6857", - "to": "6757", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7389", - "label": "1482169 (-) 570878", - "from": "6856", - "to": "6824", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7388", - "label": "526778 (-) 526505", - "from": "6855", - "to": "6954", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7387", - "label": "916923 (-) 504065", - "from": "6854", - "to": "6922", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7386", - "label": "526780 (-) 526778", - "from": "6853", - "to": "6855", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7385", - "label": "526781 (-) 526778", - "from": "6852", - "to": "6855", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7384", - "label": "526782 (-) 526778", - "from": "6851", - "to": "6855", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7383", - "label": "321983 (-) 1160014", - "from": "6850", - "to": "6683", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7382", - "label": "321983 (-) 1159930", - "from": "6850", - "to": "6729", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7381", - "label": "1200581 (-) 1200554", - "from": "6849", - "to": "6860", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7380", - "label": "248265 (-) 243719", - "from": "6848", - "to": "7010", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7379", - "label": "248267 (-) 248265", - "from": "6847", - "to": "6848", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7378", - "label": "1245648 (-) 253191", - "from": "6846", - "to": "7007", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7377", - "label": "1477076 (-) 237385", - "from": "6845", - "to": "6684", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7376", - "label": "1477077 (-) 1477076", - "from": "6844", - "to": "6845", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7375", - "label": "570836 (-) 935596", - "from": "6843", - "to": "6761", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7374", - "label": "1935831 (-) 8325", - "from": "6842", - "to": "6967", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7373", - "label": "888278 (-) 883456", - "from": "6841", - "to": "6725", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7372", - "label": "1477081 (-) 1477077", - "from": "6840", - "to": "6844", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7371", - "label": "243163 (-) 242281", - "from": "6839", - "to": "6782", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7370", - "label": "1488347 (-) 318548", - "from": "6838", - "to": "6985", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7369", - "label": "1488347 (-) 321983", - "from": "6838", - "to": "6850", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7368", - "label": "1200606 (-) 1200581", - "from": "6837", - "to": "6849", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7367", - "label": "2062814 (-) 418544", - "from": "6836", - "to": "6735", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7366", - "label": "2112990 (-) 874812", - "from": "6835", - "to": "6901", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7365", - "label": "2112990 (-) 2114406", - "from": "6835", - "to": "6675", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7364", - "label": "2112991 (-) 2112990", - "from": "6834", - "to": "6835", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7363", - "label": "570851 (-) 935596", - "from": "6833", - "to": "6761", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7362", - "label": "1238501 (-) 91963", - "from": "6832", - "to": "6692", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7361", - "label": "74216 (-) 74143", - "from": "6831", - "to": "6863", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7360", - "label": "191978 (-) 1934430", - "from": "6830", - "to": "6982", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7359", - "label": "1798639 (-) 1911913", - "from": "6829", - "to": "6978", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7358", - "label": "423412 (-) 1488347", - "from": "6828", - "to": "6838", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7357", - "label": "423412 (-) 1279345", - "from": "6828", - "to": "6883", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7356", - "label": "882169 (-) 888278", - "from": "6827", - "to": "6841", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7355", - "label": "882169 (-) 883490", - "from": "6827", - "to": "6715", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7354", - "label": "409084 (-) 293444", - "from": "6826", - "to": "6792", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7353", - "label": "880125 (-) 885683", - "from": "6825", - "to": "6632", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7352", - "label": "570878 (-) 1810967", - "from": "6824", - "to": "6808", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7351", - "label": "1682942 (-) 330112", - "from": "6823", - "to": "6877", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7350", - "label": "2059776 (-) 653856", - "from": "6822", - "to": "6805", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7349", - "label": "573953 (-) 572417", - "from": "6821", - "to": "7012", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7348", - "label": "882178 (-) 883490", - "from": "6820", - "to": "6715", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7347", - "label": "882178 (-) 888278", - "from": "6820", - "to": "6841", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7346", - "label": "232970 (-) 1382203", - "from": "6819", - "to": "6700", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7345", - "label": "248331 (-) 2680", - "from": "6818", - "to": "6774", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7344", - "label": "880139 (-) 885683", - "from": "6817", - "to": "6632", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7343", - "label": "1337870 (-) 1337573", - "from": "6816", - "to": "6933", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7342", - "label": "248335 (-) 248267", - "from": "6815", - "to": "6847", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7341", - "label": "246288 (-) 1796167", - "from": "6814", - "to": "6991", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7340", - "label": "299537 (-) 299541", - "from": "6813", - "to": "6810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7339", - "label": "653843 (-) 730789", - "from": "6812", - "to": "6762", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7338", - "label": "653843 (-) 737088", - "from": "6812", - "to": "6691", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7337", - "label": "653843 (-) 1538767", - "from": "6812", - "to": "6746", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7336", - "label": "653843 (-) 654138", - "from": "6812", - "to": "6702", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7335", - "label": "1273364 (-) 1266597", - "from": "6811", - "to": "6641", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7334", - "label": "299541 (-) 251616", - "from": "6810", - "to": "6743", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7333", - "label": "2098710 (-) 2052724", - "from": "6809", - "to": "6778", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7332", - "label": "2098710 (-) 2052833", - "from": "6809", - "to": "6742", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7331", - "label": "1810967 (-) 1048221", - "from": "6808", - "to": "6764", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7330", - "label": "299544 (-) 299541", - "from": "6807", - "to": "6810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7329", - "label": "343583 (-) 331494", - "from": "6806", - "to": "6740", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7328", - "label": "653856 (-) 654215", - "from": "6805", - "to": "6659", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7327", - "label": "249376 (-) 526778", - "from": "6804", - "to": "6855", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7326", - "label": "504360 (-) 504077", - "from": "6803", - "to": "6913", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7325", - "label": "504360 (-) 504075", - "from": "6803", - "to": "6915", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7324", - "label": "504360 (-) 504076", - "from": "6803", - "to": "6914", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7323", - "label": "311850 (-) 299541", - "from": "6802", - "to": "6810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7322", - "label": "77362 (-) 62263", - "from": "6801", - "to": "6704", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7321", - "label": "77362 (-) 72535", - "from": "6801", - "to": "6679", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7320", - "label": "77362 (-) 54189", - "from": "6801", - "to": "6636", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7319", - "label": "77362 (-) 54322", - "from": "6801", - "to": "6999", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7318", - "label": "77362 (-) 55277", - "from": "6801", - "to": "6616", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7317", - "label": "77362 (-) 54900", - "from": "6801", - "to": "6776", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7316", - "label": "77362 (-) 55093", - "from": "6801", - "to": "6705", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7315", - "label": "77362 (-) 61124", - "from": "6801", - "to": "6750", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7314", - "label": "77362 (-) 54026", - "from": "6801", - "to": "6723", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7313", - "label": "77362 (-) 62537", - "from": "6801", - "to": "6990", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7312", - "label": "101938 (-) 555611", - "from": "6800", - "to": "6787", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7311", - "label": "1804852 (-) 246288", - "from": "6799", - "to": "6814", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7310", - "label": "309814 (-) 299541", - "from": "6798", - "to": "6810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7309", - "label": "504377 (-) 504076", - "from": "6797", - "to": "6914", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7308", - "label": "504377 (-) 504075", - "from": "6797", - "to": "6915", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7307", - "label": "880186 (-) 888278", - "from": "6796", - "to": "6841", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7306", - "label": "994878 (-) 996040", - "from": "6795", - "to": "6748", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7305", - "label": "746047 (-) 74143", - "from": "6794", - "to": "6863", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7304", - "label": "746047 (-) 83207", - "from": "6794", - "to": "6918", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7303", - "label": "616002 (-) 2680", - "from": "6793", - "to": "6774", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7302", - "label": "293444 (-) 299541", - "from": "6792", - "to": "6810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7301", - "label": "1107533 (-) 1116044", - "from": "6791", - "to": "6654", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7300", - "label": "1107533 (-) 256131", - "from": "6791", - "to": "6968", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7299", - "label": "1119825 (-) 1116334", - "from": "6790", - "to": "6952", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7298", - "label": "389722 (-) 1196670", - "from": "6789", - "to": "6771", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7297", - "label": "1794651 (-) 962799", - "from": "6788", - "to": "6929", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7296", - "label": "1794651 (-) 1793419", - "from": "6788", - "to": "6868", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7295", - "label": "1794651 (-) 962363", - "from": "6788", - "to": "6697", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7294", - "label": "1794651 (-) 1793418", - "from": "6788", - "to": "6870", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7293", - "label": "555611 (-) 409544", - "from": "6787", - "to": "6623", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7292", - "label": "77403 (-) 77362", - "from": "6786", - "to": "6801", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7291", - "label": "971358 (-) 250984", - "from": "6785", - "to": "6979", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7290", - "label": "971358 (-) 251144", - "from": "6785", - "to": "6620", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7289", - "label": "971358 (-) 251201", - "from": "6785", - "to": "6899", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7288", - "label": "350818 (-) 555944", - "from": "6784", - "to": "6638", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7287", - "label": "1159782 (-) 954243", - "from": "6783", - "to": "6661", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7286", - "label": "242281 (-) 1035330", - "from": "6782", - "to": "6994", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7285", - "label": "242282 (-) 1035154", - "from": "6781", - "to": "6651", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7284", - "label": "1205870 (-) 1205885", - "from": "6780", - "to": "6772", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7283", - "label": "1341038 (-) 320330", - "from": "6779", - "to": "6686", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7282", - "label": "2052724 (-) 2059776", - "from": "6778", - "to": "6822", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7281", - "label": "1205876 (-) 1205870", - "from": "6777", - "to": "6780", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7280", - "label": "54900 (-) 743241", - "from": "6776", - "to": "6685", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7279", - "label": "1771125 (-) 2114443", - "from": "6775", - "to": "6655", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7278", - "label": "2680 (-) 1035330", - "from": "6774", - "to": "6994", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7277", - "label": "2680 (-) 962344", - "from": "6774", - "to": "6710", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7276", - "label": "227964 (-) 1488234", - "from": "6773", - "to": "6884", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7275", - "label": "227964 (-) 424692", - "from": "6773", - "to": "6733", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7274", - "label": "1205885 (-) 1034911", - "from": "6772", - "to": "6763", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7273", - "label": "1205885 (-) 1034979", - "from": "6772", - "to": "6741", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7272", - "label": "1196670 (-) 962799", - "from": "6771", - "to": "6929", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7271", - "label": "1936012 (-) 8325", - "from": "6770", - "to": "6967", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7270", - "label": "1234576 (-) 1238501", - "from": "6769", - "to": "6832", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7269", - "label": "1234577 (-) 1234576", - "from": "6768", - "to": "6769", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7268", - "label": "972439 (-) 251201", - "from": "6767", - "to": "6899", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7267", - "label": "972439 (-) 251144", - "from": "6767", - "to": "6620", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7266", - "label": "972439 (-) 250984", - "from": "6767", - "to": "6979", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7265", - "label": "1034908 (-) 1035037", - "from": "6766", - "to": "6716", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7264", - "label": "1034908 (-) 1035019", - "from": "6766", - "to": "6722", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7263", - "label": "160413 (-) 159862", - "from": "6765", - "to": "6973", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7262", - "label": "1048221 (-) 1809287", - "from": "6764", - "to": "6658", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7261", - "label": "1034911 (-) 1034908", - "from": "6763", - "to": "6766", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7260", - "label": "1034911 (-) 1161548", - "from": "6763", - "to": "6892", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7259", - "label": "1034911 (-) 1159893", - "from": "6763", - "to": "6745", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7258", - "label": "730789 (-) 654141", - "from": "6762", - "to": "6699", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7257", - "label": "935596 (-) 935597", - "from": "6761", - "to": "6760", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7256", - "label": "935597 (-) 1804852", - "from": "6760", - "to": "6799", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7255", - "label": "1411759 (-) 1411760", - "from": "6759", - "to": "6758", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7254", - "label": "1411760 (-) 1412138", - "from": "6758", - "to": "7001", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7253", - "label": "836276 (-) 173043", - "from": "6757", - "to": "6613", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7252", - "label": "530106 (-) 533914", - "from": "6756", - "to": "6865", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7251", - "label": "530107 (-) 533914", - "from": "6755", - "to": "6865", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7250", - "label": "14012 (-) 248331", - "from": "6754", - "to": "6818", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7249", - "label": "14012 (-) 391560", - "from": "6754", - "to": "6872", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7248", - "label": "14012 (-) 248335", - "from": "6754", - "to": "6815", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7247", - "label": "14012 (-) 616002", - "from": "6754", - "to": "6793", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7246", - "label": "14012 (-) 243911", - "from": "6754", - "to": "6940", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7245", - "label": "530112 (-) 533914", - "from": "6753", - "to": "6865", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7244", - "label": "1429185 (-) 1266409", - "from": "6752", - "to": "6737", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7243", - "label": "530113 (-) 530107", - "from": "6751", - "to": "6755", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7242", - "label": "530113 (-) 530112", - "from": "6751", - "to": "6753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7241", - "label": "530113 (-) 530106", - "from": "6751", - "to": "6756", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7240", - "label": "61124 (-) 75845", - "from": "6750", - "to": "6992", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7239", - "label": "61124 (-) 743241", - "from": "6750", - "to": "6685", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7238", - "label": "1411783 (-) 1473583", - "from": "6749", - "to": "7000", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7237", - "label": "1411783 (-) 1473437", - "from": "6749", - "to": "6646", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7236", - "label": "996040 (-) 237385", - "from": "6748", - "to": "6684", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7235", - "label": "572111 (-) 571548", - "from": "6747", - "to": "6959", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7234", - "label": "1538767 (-) 654141", - "from": "6746", - "to": "6699", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7233", - "label": "1159893 (-) 1159899", - "from": "6745", - "to": "6744", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7232", - "label": "1159893 (-) 1035037", - "from": "6745", - "to": "6716", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7231", - "label": "1159893 (-) 1035019", - "from": "6745", - "to": "6722", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7230", - "label": "1159899 (-) 1160014", - "from": "6744", - "to": "6683", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7229", - "label": "251616 (-) 973072", - "from": "6743", - "to": "6910", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7228", - "label": "251616 (-) 974036", - "from": "6743", - "to": "6935", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7227", - "label": "251616 (-) 975952", - "from": "6743", - "to": "6987", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7226", - "label": "251616 (-) 971358", - "from": "6743", - "to": "6785", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7225", - "label": "251616 (-) 972439", - "from": "6743", - "to": "6767", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7224", - "label": "251616 (-) 252110", - "from": "6743", - "to": "6936", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7223", - "label": "251616 (-) 973669", - "from": "6743", - "to": "6676", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7222", - "label": "251616 (-) 1410943", - "from": "6743", - "to": "6664", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7221", - "label": "2052833 (-) 2059776", - "from": "6742", - "to": "6822", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7220", - "label": "1034979 (-) 1162656", - "from": "6741", - "to": "6862", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7219", - "label": "1034979 (-) 1034908", - "from": "6741", - "to": "6766", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7218", - "label": "1034979 (-) 1160066", - "from": "6741", - "to": "6662", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7217", - "label": "1034979 (-) 1159893", - "from": "6741", - "to": "6745", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7216", - "label": "331494 (-) 310020", - "from": "6740", - "to": "6724", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7215", - "label": "331494 (-) 309814", - "from": "6740", - "to": "6798", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7214", - "label": "331494 (-) 305190", - "from": "6740", - "to": "7004", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7213", - "label": "331494 (-) 293444", - "from": "6740", - "to": "6792", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7212", - "label": "331494 (-) 311850", - "from": "6740", - "to": "6802", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7211", - "label": "331494 (-) 299544", - "from": "6740", - "to": "6807", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7210", - "label": "331494 (-) 302460", - "from": "6740", - "to": "6878", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7209", - "label": "331494 (-) 309196", - "from": "6740", - "to": "6621", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7208", - "label": "526055 (-) 505855", - "from": "6739", - "to": "6610", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7207", - "label": "1266408 (-) 1265996", - "from": "6738", - "to": "6893", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7206", - "label": "1266409 (-) 1266408", - "from": "6737", - "to": "6738", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7205", - "label": "103150 (-) 433546", - "from": "6736", - "to": "6869", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7204", - "label": "418544 (-) 2062227", - "from": "6735", - "to": "6650", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7203", - "label": "369394 (-) 298309", - "from": "6734", - "to": "6898", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7202", - "label": "369394 (-) 304129", - "from": "6734", - "to": "7014", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7201", - "label": "369394 (-) 299127", - "from": "6734", - "to": "6972", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7200", - "label": "369394 (-) 298310", - "from": "6734", - "to": "6896", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7199", - "label": "369394 (-) 298315", - "from": "6734", - "to": "6894", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7198", - "label": "369394 (-) 304210", - "from": "6734", - "to": "6986", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7197", - "label": "369394 (-) 299067", - "from": "6734", - "to": "6996", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7196", - "label": "369394 (-) 299537", - "from": "6734", - "to": "6813", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7195", - "label": "369394 (-) 304276", - "from": "6734", - "to": "6962", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7194", - "label": "369394 (-) 301477", - "from": "6734", - "to": "6861", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7193", - "label": "369394 (-) 293444", - "from": "6734", - "to": "6792", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7192", - "label": "369394 (-) 303994", - "from": "6734", - "to": "6667", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7191", - "label": "369394 (-) 301845", - "from": "6734", - "to": "6720", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7190", - "label": "424692 (-) 423412", - "from": "6733", - "to": "6828", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7189", - "label": "373494 (-) 369394", - "from": "6732", - "to": "6734", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7188", - "label": "1243896 (-) 321983", - "from": "6731", - "to": "6850", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7187", - "label": "2131705 (-) 698257", - "from": "6730", - "to": "6652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7186", - "label": "2131705 (-) 2117862", - "from": "6730", - "to": "6932", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7185", - "label": "1159930 (-) 249376", - "from": "6729", - "to": "6804", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7184", - "label": "392955 (-) 258188", - "from": "6728", - "to": "6965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7183", - "label": "883453 (-) 883065", - "from": "6727", - "to": "6879", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7182", - "label": "883455 (-) 883453", - "from": "6726", - "to": "6727", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7181", - "label": "883456 (-) 883453", - "from": "6725", - "to": "6727", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7180", - "label": "310020 (-) 299541", - "from": "6724", - "to": "6810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7179", - "label": "54026 (-) 743241", - "from": "6723", - "to": "6685", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7178", - "label": "1035019 (-) 1160014", - "from": "6722", - "to": "6683", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7177", - "label": "1935115 (-) 1935831", - "from": "6721", - "to": "6842", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7176", - "label": "1935115 (-) 1936012", - "from": "6721", - "to": "6770", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7175", - "label": "301845 (-) 299541", - "from": "6720", - "to": "6810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7174", - "label": "67353 (-) 64422", - "from": "6719", - "to": "6640", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7173", - "label": "254746 (-) 974036", - "from": "6718", - "to": "6935", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7172", - "label": "254746 (-) 975952", - "from": "6718", - "to": "6987", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7171", - "label": "254746 (-) 973669", - "from": "6718", - "to": "6676", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7170", - "label": "254746 (-) 252110", - "from": "6718", - "to": "6936", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7169", - "label": "254746 (-) 971358", - "from": "6718", - "to": "6785", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7168", - "label": "254746 (-) 973072", - "from": "6718", - "to": "6910", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7167", - "label": "254746 (-) 972439", - "from": "6718", - "to": "6767", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7166", - "label": "586523 (-) 570878", - "from": "6717", - "to": "6824", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7165", - "label": "1035037 (-) 1159930", - "from": "6716", - "to": "6729", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7164", - "label": "883490 (-) 883455", - "from": "6715", - "to": "6726", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7163", - "label": "1082148 (-) 350818", - "from": "6714", - "to": "6784", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7162", - "label": "884516 (-) 885683", - "from": "6713", - "to": "6632", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7161", - "label": "1082151 (-) 1082148", - "from": "6712", - "to": "6714", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7160", - "label": "1889063 (-) 64690", - "from": "6711", - "to": "6948", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7159", - "label": "962344 (-) 953713", - "from": "6710", - "to": "6881", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7158", - "label": "1797931 (-) 1796481", - "from": "6709", - "to": "6876", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7157", - "label": "884524 (-) 885683", - "from": "6708", - "to": "6632", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7156", - "label": "1871665 (-) 14228", - "from": "6707", - "to": "6649", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7155", - "label": "1794867 (-) 1793352", - "from": "6706", - "to": "6895", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7154", - "label": "55093 (-) 743241", - "from": "6705", - "to": "6685", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7153", - "label": "62263 (-) 743241", - "from": "6704", - "to": "6685", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7152", - "label": "140089 (-) 586523", - "from": "6703", - "to": "6717", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7151", - "label": "654138 (-) 654141", - "from": "6702", - "to": "6699", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7150", - "label": "1684283 (-) 330112", - "from": "6701", - "to": "6877", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7149", - "label": "1382203 (-) 320468", - "from": "6700", - "to": "6619", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7148", - "label": "1382203 (-) 227964", - "from": "6700", - "to": "6773", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7147", - "label": "1382203 (-) 320330", - "from": "6700", - "to": "6686", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7146", - "label": "654141 (-) 952239", - "from": "6699", - "to": "6635", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7145", - "label": "917308 (-) 504065", - "from": "6698", - "to": "6922", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7144", - "label": "962363 (-) 1794867", - "from": "6697", - "to": "6706", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7143", - "label": "1035072 (-) 1034413", - "from": "6696", - "to": "6953", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7142", - "label": "1916734 (-) 950362", - "from": "6695", - "to": "6983", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7141", - "label": "1035074 (-) 1035072", - "from": "6694", - "to": "6696", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7140", - "label": "1035074 (-) 1205876", - "from": "6694", - "to": "6777", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7139", - "label": "1035074 (-) 1159782", - "from": "6694", - "to": "6783", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7138", - "label": "43842 (-) 1161548", - "from": "6693", - "to": "6892", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7137", - "label": "43842 (-) 1034908", - "from": "6693", - "to": "6766", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7136", - "label": "91963 (-) 1243896", - "from": "6692", - "to": "6731", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7135", - "label": "737088 (-) 654141", - "from": "6691", - "to": "6699", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7134", - "label": "571202 (-) 253191", - "from": "6690", - "to": "7007", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7133", - "label": "1156931 (-) 955460", - "from": "6689", - "to": "6993", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7132", - "label": "958275 (-) 958290", - "from": "6688", - "to": "6682", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7131", - "label": "2033479 (-) 8325", - "from": "6687", - "to": "6967", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7130", - "label": "320330 (-) 1488234", - "from": "6686", - "to": "6884", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7129", - "label": "320330 (-) 424692", - "from": "6686", - "to": "6733", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7128", - "label": "743241 (-) 743664", - "from": "6685", - "to": "6928", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7127", - "label": "237385 (-) 1034908", - "from": "6684", - "to": "6766", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7126", - "label": "237385 (-) 1161548", - "from": "6684", - "to": "6892", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7125", - "label": "1160014 (-) 527622", - "from": "6683", - "to": "6919", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7124", - "label": "1160014 (-) 526782", - "from": "6683", - "to": "6851", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7123", - "label": "1160014 (-) 526781", - "from": "6683", - "to": "6852", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7122", - "label": "1160014 (-) 527644", - "from": "6683", - "to": "6905", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7121", - "label": "1160014 (-) 527332", - "from": "6683", - "to": "6617", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7120", - "label": "1160014 (-) 527459", - "from": "6683", - "to": "6981", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7119", - "label": "1160014 (-) 527481", - "from": "6683", - "to": "6971", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7118", - "label": "1160014 (-) 527392", - "from": "6683", - "to": "7005", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7117", - "label": "1160014 (-) 527436", - "from": "6683", - "to": "6989", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7116", - "label": "1160014 (-) 526780", - "from": "6683", - "to": "6853", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7115", - "label": "1160014 (-) 527666", - "from": "6683", - "to": "6903", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7114", - "label": "1160014 (-) 527370", - "from": "6683", - "to": "7008", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7113", - "label": "1160014 (-) 249376", - "from": "6683", - "to": "6804", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7112", - "label": "1160014 (-) 527414", - "from": "6683", - "to": "6998", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7111", - "label": "1160014 (-) 527559", - "from": "6683", - "to": "6939", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7110", - "label": "958290 (-) 958368", - "from": "6682", - "to": "6644", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7109", - "label": "996179 (-) 996040", - "from": "6681", - "to": "6748", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7108", - "label": "2114825 (-) 880186", - "from": "6680", - "to": "6796", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7107", - "label": "72535 (-) 75845", - "from": "6679", - "to": "6992", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7106", - "label": "72535 (-) 75699", - "from": "6679", - "to": "6631", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7105", - "label": "72535 (-) 746047", - "from": "6679", - "to": "6794", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7104", - "label": "72535 (-) 74216", - "from": "6679", - "to": "6831", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7103", - "label": "409434 (-) 403309", - "from": "6678", - "to": "6671", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7102", - "label": "1466203 (-) 1889063", - "from": "6677", - "to": "6711", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7101", - "label": "973669 (-) 250984", - "from": "6676", - "to": "6979", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7100", - "label": "973669 (-) 251144", - "from": "6676", - "to": "6620", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7099", - "label": "973669 (-) 251201", - "from": "6676", - "to": "6899", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7098", - "label": "2114406 (-) 2114794", - "from": "6675", - "to": "6931", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7097", - "label": "1797990 (-) 1797931", - "from": "6674", - "to": "6709", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7096", - "label": "77671 (-) 77403", - "from": "6673", - "to": "6786", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7095", - "label": "1809261 (-) 1809517", - "from": "6672", - "to": "6976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7094", - "label": "403309 (-) 415036", - "from": "6671", - "to": "6900", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7093", - "label": "369519 (-) 369394", - "from": "6670", - "to": "6734", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7092", - "label": "1339245 (-) 570619", - "from": "6669", - "to": "6925", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7091", - "label": "77681 (-) 1238006", - "from": "6668", - "to": "6612", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7090", - "label": "77681 (-) 77671", - "from": "6668", - "to": "6673", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7089", - "label": "303994 (-) 299541", - "from": "6667", - "to": "6810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7088", - "label": "1684347 (-) 354741", - "from": "6666", - "to": "6857", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7087", - "label": "569211 (-) 572111", - "from": "6665", - "to": "6747", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7086", - "label": "1410943 (-) 103150", - "from": "6664", - "to": "6736", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7085", - "label": "1243009 (-) 1243896", - "from": "6663", - "to": "6731", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7084", - "label": "1160066 (-) 1035019", - "from": "6662", - "to": "6722", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7083", - "label": "954243 (-) 1035250", - "from": "6661", - "to": "6614", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7082", - "label": "698244 (-) 255142", - "from": "6660", - "to": "6956", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7081", - "label": "654215 (-) 653843", - "from": "6659", - "to": "6812", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7080", - "label": "1809287 (-) 1809261", - "from": "6658", - "to": "6672", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7079", - "label": "1799049 (-) 570851", - "from": "6657", - "to": "6833", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7078", - "label": "1799049 (-) 570836", - "from": "6657", - "to": "6843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7077", - "label": "1799049 (-) 934011", - "from": "6657", - "to": "6969", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7076", - "label": "1428742 (-) 321983", - "from": "6656", - "to": "6850", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7075", - "label": "2114443 (-) 2112991", - "from": "6655", - "to": "6834", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7074", - "label": "1116044 (-) 1799093", - "from": "6654", - "to": "6630", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7073", - "label": "1160078 (-) 1034979", - "from": "6653", - "to": "6741", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7072", - "label": "698257 (-) 698244", - "from": "6652", - "to": "6660", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7071", - "label": "1035154 (-) 1034911", - "from": "6651", - "to": "6763", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7070", - "label": "1035154 (-) 1034979", - "from": "6651", - "to": "6741", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7069", - "label": "2062227 (-) 79817", - "from": "6650", - "to": "6622", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7068", - "label": "14228 (-) 391560", - "from": "6649", - "to": "6872", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7067", - "label": "14228 (-) 243911", - "from": "6649", - "to": "6940", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7066", - "label": "14228 (-) 248331", - "from": "6649", - "to": "6818", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7065", - "label": "14228 (-) 616002", - "from": "6649", - "to": "6793", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7064", - "label": "14228 (-) 243163", - "from": "6649", - "to": "6839", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7063", - "label": "14228 (-) 1794651", - "from": "6649", - "to": "6788", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7062", - "label": "14228 (-) 248335", - "from": "6649", - "to": "6815", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7061", - "label": "1243027 (-) 1242263", - "from": "6648", - "to": "6960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7060", - "label": "1799066 (-) 934011", - "from": "6647", - "to": "6969", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7059", - "label": "1799066 (-) 570851", - "from": "6647", - "to": "6833", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7058", - "label": "1799066 (-) 570836", - "from": "6647", - "to": "6843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7057", - "label": "1473437 (-) 698257", - "from": "6646", - "to": "6652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7056", - "label": "1338271 (-) 389722", - "from": "6645", - "to": "6789", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7055", - "label": "958368 (-) 241990", - "from": "6644", - "to": "6897", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7054", - "label": "1275810 (-) 1275811", - "from": "6643", - "to": "6642", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7053", - "label": "1275811 (-) 1796343", - "from": "6642", - "to": "6927", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7052", - "label": "1266597 (-) 1266408", - "from": "6641", - "to": "6738", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7051", - "label": "64422 (-) 1238006", - "from": "6640", - "to": "6612", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7050", - "label": "1341349 (-) 320330", - "from": "6639", - "to": "6686", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7049", - "label": "555944 (-) 293444", - "from": "6638", - "to": "6792", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7048", - "label": "1382312 (-) 232970", - "from": "6637", - "to": "6819", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7047", - "label": "54189 (-) 743241", - "from": "6636", - "to": "6685", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7046", - "label": "952239 (-) 422049", - "from": "6635", - "to": "6958", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7045", - "label": "1340336 (-) 320330", - "from": "6634", - "to": "6686", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7044", - "label": "1340336 (-) 227964", - "from": "6634", - "to": "6773", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7043", - "label": "75696 (-) 1243027", - "from": "6633", - "to": "6648", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7042", - "label": "75696 (-) 1234577", - "from": "6633", - "to": "6768", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7041", - "label": "885683 (-) 887987", - "from": "6632", - "to": "6947", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7040", - "label": "75699 (-) 75696", - "from": "6631", - "to": "6633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7039", - "label": "1799093 (-) 1035074", - "from": "6630", - "to": "6694", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7038", - "label": "1113015 (-) 1107533", - "from": "6629", - "to": "6791", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7037", - "label": "1386423 (-) 418544", - "from": "6628", - "to": "6735", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7036", - "label": "433081 (-) 1429185", - "from": "6627", - "to": "6752", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7035", - "label": "433081 (-) 1428672", - "from": "6627", - "to": "6943", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7034", - "label": "885694 (-) 885683", - "from": "6626", - "to": "6632", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7033", - "label": "1796031 (-) 1796086", - "from": "6625", - "to": "6611", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7032", - "label": "1796033 (-) 1796031", - "from": "6624", - "to": "6625", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7031", - "label": "409544 (-) 409434", - "from": "6623", - "to": "6678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7030", - "label": "79817 (-) 1273364", - "from": "6622", - "to": "6811", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7029", - "label": "309196 (-) 299541", - "from": "6621", - "to": "6810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7028", - "label": "251144 (-) 392955", - "from": "6620", - "to": "6728", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7027", - "label": "320468 (-) 1488234", - "from": "6619", - "to": "6884", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7026", - "label": "320468 (-) 424692", - "from": "6619", - "to": "6733", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7025", - "label": "958434 (-) 14012", - "from": "6618", - "to": "6754", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7024", - "label": "527332 (-) 526778", - "from": "6617", - "to": "6855", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7023", - "label": "55277 (-) 743241", - "from": "6616", - "to": "6685", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7022", - "label": "1337326 (-) 1338271", - "from": "6615", - "to": "6645", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7021", - "label": "1035250 (-) 1034911", - "from": "6614", - "to": "6763", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7020", - "label": "1035250 (-) 1034979", - "from": "6614", - "to": "6741", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7019", - "label": "173043 (-) 2033479", - "from": "6613", - "to": "6687", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7018", - "label": "1238006 (-) 1237265", - "from": "6612", - "to": "6909", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7017", - "label": "1796086 (-) 1796343", - "from": "6611", - "to": "6927", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7016", - "label": "505855 (-) 515462", - "from": "6610", - "to": "6874", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/Dissociation of AAK1 and dephosphorylation of AP-2 mu2.json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/Dissociation of AAK1 and dephosphorylation of AP-2 mu2.json deleted file mode 100644 index 6476d0dbf6..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/Dissociation of AAK1 and dephosphorylation of AP-2 mu2.json +++ /dev/null @@ -1,20276 +0,0 @@ -{ - "nodes": [ - { - "id": "1613", - "label": "DecS-GHRL-1(24-50) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1612", - "label": "RAB4:GTP promotes recycling of activated MET receptor to the plasma membrane", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1611", - "label": "PolyUb-Misfolded PCNT [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1610", - "label": "DecS-GHRL-1(24-51) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1609", - "label": "CASP8(385-479) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1608", - "label": "O-octanoyl-L-serine-GHRL-1(24-51) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1607", - "label": "p-S423,S425-SMAD3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1606", - "label": "Bradykinin receptor:Bradykinin [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1605", - "label": "GGC-RAB7B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1604", - "label": "Retinoic acid activates HOXB4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1603", - "label": "Ubiquitinated IkB is degraded", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1602", - "label": "NF-kappaB p50,p65,c-Rel:ub-p-IKB [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1601", - "label": "NF-kappaB p65:p65:ub-p-IkB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1600", - "label": "TFIIH [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1599", - "label": "5HT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1598", - "label": "trans-Golgi Network Derived Vesicle Uncoating", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1597", - "label": "TGFB1:TGFBR2:p-TGFBR1 [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1596", - "label": "ERBB2 promotes PTK6 autophosphorylation", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1595", - "label": "CBL neddylates TGFBR2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1594", - "label": "TGFBR2 phosphorylates TGFBR1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1593", - "label": "PLCG1 phosphorylation by p-EGFR:p-ERBB2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1592", - "label": "TGFB1:TGFBR2:TGFBR1 [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1591", - "label": "NEDD8-AcM-UBE2M [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1590", - "label": "APC is K63-polyubiquitinated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1589", - "label": "PolyUb-Misfolded PARK7 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1588", - "label": "NANOG [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1587", - "label": "Hist [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1586", - "label": "G-protein alpha (13):GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1585", - "label": "spherical HDL and SR-BI receptor form a complex at the cell surface", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1584", - "label": "Aggresome dissociates from dynein and microtubule", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1583", - "label": "Microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1582", - "label": "alpha-beta tubulin dimer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1581", - "label": "MAPK3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1580", - "label": "RNF152 [lysosomal membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1579", - "label": "Hypophosphorylation of RNA Pol II CTD by FCP1P protein", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1578", - "label": "TGFBR2 recruits TGFBR1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1577", - "label": "PP2A (A:C) [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1576", - "label": "NF-kappaB p65:p65 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1575", - "label": "FKBP1A [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1574", - "label": "RASA1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1573", - "label": "FGF18 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1572", - "label": "NF-kappaB p50:c-Rel:ub-p-IKB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1571", - "label": "Exocytosis of ficolin-rich granule lumen proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1570", - "label": "CCNH [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1569", - "label": "Transfer of SUMO2 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1568", - "label": "PTPNs gene transcription and translation", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1567", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1566", - "label": "The receptor:G-protein complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1565", - "label": "Dissociation of RAS:RAF complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1564", - "label": "trans-Golgi Network Derived Lysosomal Vesicle Uncoating", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1563", - "label": "Expression of PERIOD-1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1562", - "label": "DNAJC6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1561", - "label": "OPRM1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1560", - "label": "Active NIK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1559", - "label": "HERC5 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1558", - "label": "PAXIP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1557", - "label": "LACT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1556", - "label": "UMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1555", - "label": "Transfer of SUMO3 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1554", - "label": "Activated FGFR2:p-FRS:p-PTPN11 activates RAS nucleotide exchange", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1553", - "label": "Expression of STAT3-upregulated extracellular proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1552", - "label": "Thy-dRib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1551", - "label": "Ura-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1550", - "label": "(d)CMP, TMP, or (d)UMP + H2O => (deoxy)cytidine, thymidine, or (deoxy)uridine + orthophosphate (NT5C3)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1549", - "label": "RNF111 ubiquitinates SUMOylated XPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1548", - "label": "Dissociation of moderate activity BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1547", - "label": "Ub,SUMO:XPC:RAD23:CETN2:Open bubble-dsDNA:PAR-UV-DDB:TFIIH Core:XPA:PAR-PARP1, PAR-PARP2:CHD1L [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1546", - "label": "Cyt-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1545", - "label": "Expression of CEBPB in adipogenesis", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1544", - "label": "CREM isoform 6 (ICER1) [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1543", - "label": "NF-kappaB p50:c-Rel [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1542", - "label": "RAB1:GDP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1541", - "label": "PTPN11 dephosphorylates RUNX1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1540", - "label": "p-Y701-STAT1, p-Y705-STAT3, p-Y649-STAT5 dissociates from IL9:p-Y116-IL9R:JAK1:IL2RG:p-904,939-JAK3:p-Y705-STAT3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1539", - "label": "hp-IRAK1:3xK63-polyUb-TRAF6:3xUBE2N:UBE2V1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1538", - "label": "SLC24A1 exchanges 4Na+ for Ca2+, K+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1537", - "label": "PPARGC1A [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1536", - "label": "RUNX1:CBFB [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1535", - "label": "RUNX1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1534", - "label": "Expression of Leptin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1533", - "label": "K+-independent Li+/Ca2+ exchanger transport", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1532", - "label": "NF-KappaB p50:p50:ub-p-IKBA [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1531", - "label": "NF-kappaB p50:p50 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1530", - "label": "SAR1B:GTP [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1529", - "label": "p-4Y-PLCG1 dissociates from activated FGFR3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1528", - "label": "NF-kappaB p50:p65:ub-p-IKB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1527", - "label": "Ade-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1526", - "label": "KDM1A [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1525", - "label": "IL1B [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1524", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon ALPK1:ADP-heptose stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1523", - "label": "NF-kappaB p50,p65,c-Rel dimer [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1522", - "label": "CCND1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1521", - "label": "PPTN11 dephosphorylates SPRY2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1520", - "label": "PLCG1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1519", - "label": "Release of L-Glutamate at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1518", - "label": "AVP(20-28) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1517", - "label": "Disassembly of COPII coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1516", - "label": "SCF-beta-TrCP ubiquitinylates IkB", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1515", - "label": "EP300 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1514", - "label": "COPII vesicle with MHC class I [ER to Golgi transport vesicle membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1513", - "label": "Activated FGFR3:p-FRS:p-PTPN11 activates RAS nucleotide exchange", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1512", - "label": "CCPs deglutamylate tubulin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1511", - "label": "HCMV Nuclear Pore Docking", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1510", - "label": "Thrombin-mediated activation of Proteinase-activated receptors", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1509", - "label": "PTPN11 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1508", - "label": "p-4Y-PLCG1 dissociates from activated FGFR1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1507", - "label": "Estrogen-responsive MYC gene expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1506", - "label": "Budding of COPII coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1505", - "label": "p-T235, S321-CEBPB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1504", - "label": "SOCS2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1503", - "label": "RAB6:GTP displaces PAFAH1B1 from dynein:dynactin complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1502", - "label": "OPRM1 gene expression is repressed by MECP2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1501", - "label": "PYR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1500", - "label": "Phosphorylation of 4E-BP1 by activated mTORC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1499", - "label": "ATP2B1-4 transport cytosolic Ca2+ to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1498", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon TLR3 stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1497", - "label": "Deacetylation of cleaved cohesin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1496", - "label": "Cleaved Cohesin:PDS5:WAPAL [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1495", - "label": "SIK1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1494", - "label": "phosphoenolpyruvate + ADP => pyruvate + ATP", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1493", - "label": "PGE2 [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1492", - "label": "RHOA:GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1491", - "label": "The Ligand:GPCR:Gq complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1490", - "label": "CASR:Ca2+ [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1489", - "label": "OTUD5 deubiquitinates TRAF3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1488", - "label": "Active PLC-gamma1 dissociates from EGFR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1487", - "label": "ARHGDIA [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1486", - "label": "p-4Y-PLCG1 dissociates from activated FGFR2 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1485", - "label": "AcCho [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1484", - "label": "PRC2 (EZH2) Core [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1483", - "label": "Cho is acetylated to AcCho by CHAT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1482", - "label": "(d)CMP, TMP, or (d)UMP + H2O => (deoxy)cytidine, thymidine, or (deoxy)uridine + orthophosphate (NT5C1A)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1481", - "label": "MCHR1,MCHR2:PMCH(147-165) [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1480", - "label": "NMUR1,NMUR2:NMU [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1479", - "label": "Expression of GATA3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1478", - "label": "TMP, uridine 2', 3', or 5' monophosphates, or deoxyuridine 3' or 5' monophosphates + H2O => thymidine or (deoxy)uridine + orthophosphate [NT5C]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1477", - "label": "G-protein beta-gamma complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1476", - "label": "G-alpha(t):G-beta-gamma:Opsins complex dissociates to active G-alpha(t)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1475", - "label": "GATA3 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1474", - "label": "FOXA1 and GATA3 bind to CCND1 promoter", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1473", - "label": "CIN85 dissociates from EGF:p-6Y-EGFR:CBL:Beta-Pix:CDC42:GTP:CIN85", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1472", - "label": "BTRC [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1471", - "label": "ISGylation of E2 conjugating enzymes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1470", - "label": "E2-mediated FOS gene expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1469", - "label": "RAB1:GTP:USO1:coatomer:PalmC-YKT6:p24 dimers:cargo:spectrin:anykrin [transport vesicle]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1468", - "label": "Dissociation of oncogenic RAS:RAF complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1467", - "label": "Vesicle is tethered through binding GOLGA2:GORASP1, GOLGB1 and the COG complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1466", - "label": "G-protein alpha (i):GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1465", - "label": "p-4Y-PLCG1 dissociates from activated FGFR2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1464", - "label": "Negative regulation of DDX58/IFIH1 signaling by RNF216", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1463", - "label": "Phosphorylated heterodimers of ERBB2 KD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1462", - "label": "Activation of Latent HCMV Genome", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1461", - "label": "PPARG:Fatty Acid:RXRA:Mediator:Coactivator Complex [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1460", - "label": "GDI1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1459", - "label": "NF-kappaB translocates from the cytosol to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1458", - "label": "K63polyUb [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1457", - "label": "HDAC3 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1456", - "label": "FGF2(10-155) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1455", - "label": "Separation of sister chromatids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1454", - "label": "Fatty acid ligands activate PPARA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1453", - "label": "Equilibrative transport (export) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1452", - "label": "HSP90:ATP:p23:FKBP52:SHR:SH translocates to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1451", - "label": "HSP90:ATP:PTGES3:FKBP52:SHR:SH [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1450", - "label": "HBEGF(63-148) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1449", - "label": "p-Y-STATs translocate to nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1448", - "label": "p-4Y-PLCG1 dissociates from activated FGFR4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1447", - "label": "Expression of NANOG", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1446", - "label": "SLC8A1,2,3 exchange 3Na+ for Ca2+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1445", - "label": "p-Y1105-ARHGAP35 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1444", - "label": "LACT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1443", - "label": "SLC22A12 exchanges extracellular urate for cytosolic LACT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1442", - "label": "CBFB binds RUNX1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1441", - "label": "Phosphorylation of CTLA-4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1440", - "label": "p-Y705-STAT3 dimer translocates from cytosol to nucleoplasm", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1439", - "label": "Fusion of viral membrane with host cell membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1438", - "label": "Viral core surrounded by Matrix layer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1437", - "label": "p-Y-STATs dissociate", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1436", - "label": "SLC7A11-mediated exchange of extracellular cysteine and cytosolic glutamate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1435", - "label": "EXO1 interacting with MSH2:MSH3 excises DNA strand containing an insertion/deletion loop (IDL)", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1434", - "label": "p-4Y-PLCG1 dissociates from activated FGFR4 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1433", - "label": "CIN85:endophilin [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1432", - "label": "BMAL1:CLOCK,NPAS2 heterodimer is phosphorylated and translocates to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1431", - "label": "myristoylated nef [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1430", - "label": "HSP90:ATP:PTGES3:FKBP52:NR3C1:SH [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1429", - "label": "SPRY2 binds CBL", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1428", - "label": "Expression of BMAL1 (ARNTL).", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1427", - "label": "p115-RhoGEF activation of RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1426", - "label": "ARFGAPs stimulate ARF GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1425", - "label": "Phosphorylated heterodimers of ERBB2 ECD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1424", - "label": "OAT1-3 transport organic anions with antiport of dicarboxylic acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1423", - "label": "GDI2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1422", - "label": "PI(3,4,5)P3 [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1421", - "label": "RUNX1 mRNA translation is inhibited by miR-17, miR-18a, miR-20a, miR-27a, miR-106a, miR-215, miR-302b, miR-378 and miR-675", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1420", - "label": "RUNX1 mRNA [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1419", - "label": "cholesterol + phosphatidylcholine (lecithin) => cholesterol ester + 2-lysophosphatidylcholine (lysolecithin)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1418", - "label": "2OG [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1417", - "label": "MyrG-p-Y419-SRC [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1416", - "label": "MYC [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1415", - "label": "The Ligand:GPCR:Gs complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1414", - "label": "PTHLH [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1413", - "label": "Recovery of RNA synthesis after TC-NER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1412", - "label": "LDL:LDLR complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1411", - "label": "SAR1 Activation And Membrane Binding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1410", - "label": "SAR1B:GDP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1409", - "label": "SAR1B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1408", - "label": "FPR2:FPR2 ligands [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1407", - "label": "FPR2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1406", - "label": "VCPKMT (METTL21D) transfers 3xCH3 from 3xAdoMet to VCP", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1405", - "label": "PIAS4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1404", - "label": "GPR39 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1403", - "label": "Processing of caspases", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1402", - "label": "ARRB1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1401", - "label": "MET phosphorylates STAT3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1400", - "label": "ATP hydrolysis by HSP90", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1399", - "label": "LDL + LDLR => LDL:LDLR complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1398", - "label": "Loss of SAR1B GTPase", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1397", - "label": "Dissociation of the Gi alpha:G olf complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1396", - "label": "Activated NTRK3 stimulates PI3K activity", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1395", - "label": "RPS6KA1/2/3 phosphorylates CEBPB on S321", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1394", - "label": "GNAL [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1393", - "label": "ARHGAP35 stimulates RHOA GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1392", - "label": "PIAS4 SUMOylates NR4A2 with SUMO2,3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1391", - "label": "ISGylation of host proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1390", - "label": "p-S102-WHSC1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1389", - "label": "HGF:p-Y1234,Y1235,Y1349,Y1356-MET dimer [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1388", - "label": "RhoA is activated by nucleotide exchange and inhibits axonal growth", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1387", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1386", - "label": "CTNNB1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1385", - "label": "RHOA:GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1384", - "label": "SEC13 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1383", - "label": "TRAF3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1382", - "label": "GPR4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1381", - "label": "NCOR1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1380", - "label": "PolyUb-Misfolded Proteins:HDAC6 dissociate from complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1379", - "label": "HSP90 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1378", - "label": "p-SPHK1 phosphorylates sphingosine to sphingosine 1-phosphate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1377", - "label": "Beta-catenin displaces TLE:HDAC1 from TCF/LEF", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1376", - "label": "RASA1 stimulates RAS GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1375", - "label": "p-Y705-STAT3 dimer, p-Y641-STAT6 dimer translocate to nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1374", - "label": "Dissociation of paradoxically activated RAS:BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1373", - "label": "p-Y641-STAT6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1372", - "label": "Retinoic acid activates HOXA4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1371", - "label": "SEC22B:STX18:USE1L:BNIP1 [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1370", - "label": "CHEST [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1369", - "label": "CGA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1368", - "label": "TRPs transport extracellular Ca2+ to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1367", - "label": "GCG(53-81) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1366", - "label": "CHOL [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1365", - "label": "Cap Binding Complex (CBC) [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1364", - "label": "p-T235-CEBPB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1363", - "label": "NCBP2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1362", - "label": "The p75NTR:NgR:MDGI complex reduces RHOA-GDI activity, displacing RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1361", - "label": "Retrograde vesicle is tethered at the ER by the NRZ complex and t-SNAREs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1360", - "label": "NCBP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1359", - "label": "Nef mediated disruption of CD4:Lck Complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1358", - "label": "Degradation of CD4", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1357", - "label": "Release of acetylcholine at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1356", - "label": "BTRC:CUL1:SKP1 (SCF-beta-TrCP1) ubiquitinylates PER proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1355", - "label": "Acetylcholine Loaded Synaptic Vesicle [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1354", - "label": "Expression of STAT3-upregulated nuclear proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1353", - "label": "SUMO1:C93-UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1352", - "label": "G-proteins dissociate from plasma-membrane estrogen receptors", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1351", - "label": "RNF168 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1350", - "label": "Retinoic acid activates HOXA1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1349", - "label": "CSNK1D phosphorylates SEC23", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1348", - "label": "cIAP1,2 ubiquitinates NIK in cIAP1,2:TRAF2::TRAF3:NIK", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1347", - "label": "beta-TRCP ubiquitinates IkB-alpha in p-S32,33-IkB-alpha:NF-kB complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1346", - "label": "TNFRSF1B [specific granule membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1345", - "label": "SCF-beta-TRCP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1344", - "label": "RUNX3 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1343", - "label": "Exocytosis of platelet alpha granule contents", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1342", - "label": "COPII cargo:receptors:SEC23:SEC24:SEC13:SEC31:SEC23IP:v-SNAREs:TRAPPCII:RAB1:GTP [COPII-coated ER to Golgi transport vesicle]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1341", - "label": "BMP1-3:Zn2+ cleaves pro-APOA1 to APOA1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1340", - "label": "NCOR2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1339", - "label": "mature mRNA (eukaryotic, capped and deadenylated) [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1338", - "label": "Exosome Complex hydrolyzes mRNA by 3' to 5' exoribonuclease digestion", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1337", - "label": "LCK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1336", - "label": "SUMOylation of XPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1335", - "label": "F2RL2(22-374) [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1334", - "label": "Dissociation of phosphorylated 4EBP1 from eIF4E", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1333", - "label": "P2RY11 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1332", - "label": "EIF4E [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1331", - "label": "eIF4E:4E-BP1-P [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1330", - "label": "F2RL3(18-385) [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1329", - "label": "Ade-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1328", - "label": "AHCY:NAD+ tetramer hydrolyses AdoHcy", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1327", - "label": "CDC42:GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1326", - "label": "F2R(27-425) [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1325", - "label": "APOA1(25-266) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1324", - "label": "PARN deadenylates mRNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1323", - "label": "Release of PLCG from FCGR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1322", - "label": "A2M [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1321", - "label": "AdoHcy [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1320", - "label": "clustered IgG-Ag:p-FCGRs:p-6Y-SYK:p-3Y-PLCG [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1319", - "label": "p-Y641-STAT6 dimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1318", - "label": "Disintegration of matrix layer", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1317", - "label": "Phosphorylation and activation of PLCG", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1316", - "label": "Degradation of CD8", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1315", - "label": "Exocytosis of Insulin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1314", - "label": "SUMO1:p-T4827-HERC2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1313", - "label": "TGFA(24-98) [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1312", - "label": "IL1B(117-269) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1311", - "label": "Docking of Mature Histone mRNA complex:TAP at the NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1310", - "label": "p-S25,S1778-TP53BP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1309", - "label": "AREG(101-187) [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1308", - "label": "Dissociation of BRAF/RAF fusion complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1307", - "label": "Beta-catenin translocates to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1306", - "label": "CTNNB1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1305", - "label": "NPS [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1304", - "label": "PP2A [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1303", - "label": "SIN3A [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1302", - "label": "TTLLs polyglutamylate tubulin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1301", - "label": "Ac-K94,K171-RUNX3:CBFB:EP300 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1300", - "label": "Loading of acetylcholine in synaptic vesicles", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1299", - "label": "p-T185,Y187-MAPK1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1298", - "label": "COP9 signalosome deneddylates cytosolic CRL E3 ubiquitin ligase complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1297", - "label": "RPA heterotrimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1296", - "label": "(d)AMP, (d)GMP, or (d)IMP + H2O => (deoxy)adenosine, (deoxy)guanosine, or (deoxy)inosine + orthophosphate (NT5C1A)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1295", - "label": "PPP1R3C [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1294", - "label": "Expression of PPARGC1A (PGC-1alpha)", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1293", - "label": "AGTR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1292", - "label": "Expression of AVP", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1291", - "label": "KLF4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1290", - "label": "NPSR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1289", - "label": "Ligation of newly synthesized repair patch to incised DNA in TC-NER", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1288", - "label": "p-S166-RIPK1:p-S199,227-RIPK3 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1287", - "label": "PP1 dephosphorylates TGFBR1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1286", - "label": "Docking of Mature Replication Dependent Histone mRNA with the NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1285", - "label": "ARRB2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1284", - "label": "Regulation of protein ISGylation by ISG15 deconjugating enzyme USP18", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1283", - "label": "UBE2I [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1282", - "label": "SEC31A:SEC13:SEC23IP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1281", - "label": "DA [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1280", - "label": "Interleukin-1 family are secreted", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1279", - "label": "Interleukin-1 family [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1278", - "label": "Expression of CLOCK", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1277", - "label": "APC promotes disassembly of beta-catenin transactivation complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1276", - "label": "IL18 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1275", - "label": "KMT2D [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1274", - "label": "EP300 acetylates RUNX3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1273", - "label": "AR:androgen [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1272", - "label": "PPIA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1271", - "label": "SUMO3:UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1270", - "label": "IL8 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1269", - "label": "Dissociation of RAS:RAF1 mutant complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1268", - "label": "RAB1:GTP [endoplasmic reticulum-Golgi intermediate compartment membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1267", - "label": "p-4Y-PLCG1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1266", - "label": "Dynein:Dynactin:microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1265", - "label": "NSF and SNAPs bind cis-SNARE at the ER membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1264", - "label": "L-Glu [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1263", - "label": "SEC22B:STX18:USE1:BNIP1L:3xSNAPs:NSF hexamer [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1262", - "label": "PTK6 phosphorylates STAT3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1261", - "label": "Expression of NPAS2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1260", - "label": "FOSB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1259", - "label": "Docking of the Mature intronless derived transcript derived mRNA, TAP and Aly/Ref at the NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1258", - "label": "Interleukin-1 family precursors are cleaved by caspase-1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1257", - "label": "CCR4-NOT complex deadenylates mRNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1256", - "label": "p21 RAS:GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1255", - "label": "p-T202,Y204-MAPK3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1254", - "label": "MSH2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1253", - "label": "NFKB1(1-433):RELA [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1252", - "label": "Active PAK1 and Active CDC42 dissociates from GNB/GNG:PAK1:ARHGEF6:CDC42 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1251", - "label": "CCND1 binds RUNX3 and displaces EP300", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1250", - "label": "NSF ATPase activity dissociates cis-SNARE at the ER", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1249", - "label": "p-Y342-PTK6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1248", - "label": "Beta-catenin is released from the destruction complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1247", - "label": "K63polyUb-APC [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1246", - "label": "VCP [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1245", - "label": "ASH2L [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1244", - "label": "PIP3:BTK:G beta-gamma complex dissociates to Active BTK, PIP3 and G beta-gamma complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1243", - "label": "HDAC1:2-containing complex deacetylate histones", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1242", - "label": "IL1B(1-269) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1241", - "label": "PTK6 phosphorylates CDKN1B", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1240", - "label": "Auto-ubiquitination of TRAF6", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1239", - "label": "p-T,Y MAPKs [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1238", - "label": "ADR, NAd [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1237", - "label": "NAd [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1236", - "label": "ISGylated host proteins [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1235", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1234", - "label": "JAK1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1233", - "label": "THBS1 gene transcription is stimulated by the complex containing RUNX1, PRMT1 and GATA1 and inhibited by the complex of RUNX1, SIN3A and PRMT6", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1232", - "label": "THBS1 trimer [platelet alpha granule lumen]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1231", - "label": "TGFA(24-98) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1230", - "label": "S1P [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1229", - "label": "MMPs cleave HB-EGF", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1228", - "label": "NEDD8 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1227", - "label": "Ac-CoA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1226", - "label": "p-4Y-PLCG1 dissociates from activated FGFR3 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1225", - "label": "Nucleotide exchange on RAB1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1224", - "label": "GRB2-1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1223", - "label": "Glucagon-like Peptide 1 is secreted from intestinal L cells", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1222", - "label": "STAT1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1221", - "label": "OAT2 and OAT4 mediate transport of sulphate conjugates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1220", - "label": "LPAR1,2,3,5:LPA [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1219", - "label": "PolyUb-Misfolded Proteins [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1218", - "label": "PolyUb-misfolded nascent CFTR [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1217", - "label": "NF-kB migrates to the nucleus and turns on transcription", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1216", - "label": "ISG15 E3 ligases [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1215", - "label": "RUNX3 translocates to the nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1214", - "label": "ARIH1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1213", - "label": "Dissociation of phosphorylated PLCG1 from ligand-responsive p-6Y-EGFR mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1212", - "label": "PXLP-K314-GPT transaminates PYR to form L-Ala", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1211", - "label": "AGTR1 [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1210", - "label": "G-protein alpha (q/11): GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1209", - "label": "RIPK3 is phosphorylated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1208", - "label": "RIPK1:RIPK3 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1207", - "label": "Phosphorylated SMAD2/3 dissociates from TGFBR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1206", - "label": "p-T325,T331,S362,S374-FOS [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1205", - "label": "MAPK3 (ERK1) and MAPK1 (ERK2) phosphorylate CEBPB", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1204", - "label": "CEBPB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1203", - "label": "BSG:MCTs cotransport LACT, H+ from cytosol to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1202", - "label": "FGFR1OP-FGFR1 phosphorylates STAT1 and STAT3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1201", - "label": "GYS1 catalyzes the incorporation of phosphoglucose into glycogen-GYG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1200", - "label": "Phosphorylated STAT3 Dimer Translocates to the Nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1199", - "label": "SAA1(19-122) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1198", - "label": "PF4 gene transcription is stimulated by RUNX1:CBFB", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1197", - "label": "PF4(48-101) [platelet alpha granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1196", - "label": "p-Y705-STAT3 dimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1195", - "label": "Vesicle budding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1194", - "label": "COPI vesicle uncoating at the ER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1193", - "label": "RAB1:GTP:coatomer:p24 dimers:SEC22B:cargo:NBAS:RINT1:ZW10:STX18:USE1L:BNIP1 [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1192", - "label": "C3AR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1191", - "label": "2OG [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1190", - "label": "PF4(32-101) [platelet alpha granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1189", - "label": "The Ligand:GPCR:G12/13 complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1188", - "label": "L-Glu [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1187", - "label": "RIPK3 binds RIPK1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1186", - "label": "TGFA precursor [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1185", - "label": "ADORA2B:Ade-Rib:GsGTP dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1184", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1183", - "label": "p-Y705-STAT3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1182", - "label": "Dissociation of the PAR:Gq complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1181", - "label": "Dissociation of Rho GTP:GDP from GDI complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1180", - "label": "AREG precursor [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1179", - "label": "PPARG [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1178", - "label": "MON1:CCZ1 exchanges GTP for GDP on RAB7", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1177", - "label": "Release of GABA at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1176", - "label": "c-FOS activation by phospho ERK1/2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1175", - "label": "CXCR4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1174", - "label": "GPR84 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1173", - "label": "RNF4 ubiquitinates MDC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1172", - "label": "AREG(101-187) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1171", - "label": "TMED2:TMED10 tetramer:GPI-CD59, GPI-FOLR1 [endoplasmic reticulum-Golgi intermediate compartment membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1170", - "label": "PolyUb:misfolded proteins dissociate from PRKN:UBE2N:UBE2V1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1169", - "label": "SEC22B [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1168", - "label": "p-BMAL1:p-CLOCK,NPAS2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1167", - "label": "RHO [photoreceptor disc membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1166", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon TLR stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1165", - "label": "Exocytosis of specific granule membrane proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1164", - "label": "FGL2 [ficolin-1-rich granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1163", - "label": "The Ligand:GPCR:Gz complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1162", - "label": "DNA DNA DSBs:p-MRN:p-S1981,Ac-K3016-ATM:KAT5:K63PolyUb-K14,K16,p-S139-H2AFX,Me2K21-HIST1H4A-Nucleosome:SUMO2:K1840,p-5T-MDC1:p-S102-WHSC1:RNF8:Zn2+:SUMO1:p-T4827-HERC2:UBE2N:UBE2V2:RNF168:PIAS4:p-S25,S1778-TP53BP1:p-5S,2T-BRCA1-A complex [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1161", - "label": "Release of p-PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1160", - "label": "Stimulation of IL8 transcription in senescent cells", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1159", - "label": "Dissociation of phosphorylated PLC-gamma 1 from p-EGFRvIII mutant", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1158", - "label": "PPBP(35-128) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1157", - "label": "PolyUb-Misfolded cilia proteins [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1156", - "label": "PolyUb-Misfolded CETN1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1155", - "label": "Retinoic acid activates HOXB1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1154", - "label": "Dissociation of the PAR:G12/13 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1153", - "label": "RNF8:Zn2+ [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1152", - "label": "KIFC1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1151", - "label": "K48PolyUb-K21,22-p-S32,36-IkBA:NF-kB complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1150", - "label": "TP53 and AP-1 stimulate MSH2 expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1149", - "label": "Phosphorylation and activation of PLCG due to FCGR3A effect", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1148", - "label": "Hypophosphorylation of RNA Pol II CTD by FCP1P protein", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1147", - "label": "Dissociation of high activity BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1146", - "label": "AcCho [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1145", - "label": "LDH tetramer reduces PYR to LACT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1144", - "label": "Acyl Ghrelin and C-Ghrelin are secreted", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1143", - "label": "p190RhoGEF exchanges GTP for GDP on RHOA, activating it", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1142", - "label": "DNA polymerase delta polymerizes DNA across single stranded gap", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1141", - "label": "RPA:DNA containing single strand gap [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1140", - "label": "RBBP5 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1139", - "label": "ZFYVE9-1 [early endosome membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1138", - "label": "Activation of NIK", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1137", - "label": "UBE2N:UBE2V1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1136", - "label": "RUNX1 gene expression is inhibited by RUNX3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1135", - "label": "DNA DSB:p-MRN:p-S1981,Ac-K3016-ATM:KAT5 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1134", - "label": "GABA [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1133", - "label": "BET1:GOSR2:STX5 bind v-SNARES on tethered vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1132", - "label": "Ca2+ [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1131", - "label": "PF4(48-101) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1130", - "label": "The Ligand:GPCR:Gi complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1129", - "label": "F2RL3 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1128", - "label": "SLC24A1-4 exchange extracellular 4Na+ for cytosolic Ca2+, K+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1127", - "label": "SNAP25 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1126", - "label": "Dissociation of clathrin-associated proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1125", - "label": "NFKB1:RELA translocates from the cytosol to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1124", - "label": "NFKB1(1-433):RELA [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1123", - "label": "Cytosolic DUSPs dephosphorylate MAPKs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1122", - "label": "EXO1 interacting with MSH2:MSH6 excises single strand DNA containing a mismatch", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1121", - "label": "Core histone octamer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1120", - "label": "EDNRB [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1119", - "label": "Polyglutamylated microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1118", - "label": "26S proteasome processes K48PolyUb-K21,22-p-S32,36-IkBA:NF-kB complex to form NF-kB complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1117", - "label": "Transfer of SUMO1 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1116", - "label": "Acyl Ghrelin [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1115", - "label": "O-octanoyl-L-serine-GHRL-1(24-50) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1114", - "label": "Release of PLCG from FCGR3A", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1113", - "label": "IgG:Leishmania surface:p-FCGR3A:p-6Y-SYK:p-3Y-PLCG [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1112", - "label": "TGFA precursor [ER to Golgi transport vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1111", - "label": "HDAC1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1110", - "label": "AREG precursor [ER to Golgi transport vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1109", - "label": "PolyUb-Misfolded IFT88 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1108", - "label": "CLOCK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1107", - "label": "RNF152 polyubiquitinates RRAGA", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1106", - "label": "ARNTL [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1105", - "label": "NPAS2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1104", - "label": "UBE2N:UBE2V2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1103", - "label": "Ca2+ [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1102", - "label": "CASP8(217-374) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1101", - "label": "PPARG:RXRA heterodimer binds to fatty acid-like ligands", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1100", - "label": "GYS2 catalyzes the incorporation of phosphoglucose into glycogen-GYG2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1099", - "label": "UBE2L6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1098", - "label": "Transfer of NEDD8 to AcM-UBE2M", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1097", - "label": "NGEF exchanges GTP for GDP on RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1096", - "label": "Activated FGFR4:p-FRS:p-PTPN11 activates RAS nucleotide exchange", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1095", - "label": "Caspase-8 cleaves IL1B precursor", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1094", - "label": "TRAF6 binding leads to IRAK1:TRAF6 release", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1093", - "label": "Association of Ku heterodimer with ends of DNA double-strand break", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1092", - "label": "p-2S,S376,T,T209,T387-IRAK1:TRAF6 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1091", - "label": "PP2A dephosphorylates p-RHO to RHO", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1090", - "label": "Estrogen-responsive CCND1 gene expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1089", - "label": "NR4A2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1088", - "label": "KDM1A demethylates monomethylated H3K9 (MeK-10-H3) at KLK2 and KLK3 promoters", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1087", - "label": "Dissociation of AAK1 and dephosphorylation of AP-2 mu2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1086", - "label": "PIAS4 SUMOylates MDC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1085", - "label": "LEP [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1084", - "label": "CCND1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1083", - "label": "SUMO2:UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1082", - "label": "CBL [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1081", - "label": "SRC autophosphorylation is positively regulated by InlA-bound CDH1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1080", - "label": "TC-NER post-incision complex:dsDNA with transcription bubble [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1079", - "label": "STAT1 and STAT3 dimers translocate to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1078", - "label": "WNT5A:FZD4 is endocytosed", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1077", - "label": "viral dsRNA:IFIH1, viral dsRNA:K63polyUb-DDX58:MAVS [mitochondrial outer membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1076", - "label": "p-Y701-STAT1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1075", - "label": "PL [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1074", - "label": "TNFRSF1B [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1073", - "label": "AP-2 Complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1072", - "label": "Overexpressed HIST1H2AC and ESR1:ESTG bind MYC and BCL2 genes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1071", - "label": "UBE2N [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1070", - "label": "MAP3K14 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1069", - "label": "PolyUb-Misfolded ARL13B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1068", - "label": "TRAF6 is K63 poly-ubiquitinated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1067", - "label": "Retinoic acid activates HOXD4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1066", - "label": "Expression of PPARG", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1065", - "label": "TGFBR2 is recruited to tight junctions after TGF-beta stimulation", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1064", - "label": "SPAST (spastin) mediates the severing of microtubules at chromosome attachment sites", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1063", - "label": "GMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1062", - "label": "MYC gene expression is enhanced by E2F1, STAT3, and CEBPB and repressed by CEBPA", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1061", - "label": "p-4Y- PLCG1 dissociates from activated FGFR1 mutants and fusions", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1060", - "label": "Dissociation of cytosolic HSF1:HSP90:HDAC6:PTGES3 upon sensing protein aggregates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1059", - "label": "Expression of FGF2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1058", - "label": "Protesomal degradation of K48polyUb-TRAF3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1057", - "label": "SCF-beta-TRCP ubiquitinates p-7S-p100:RELB in active NIK:p-176,S180-IKKA dimer:p-7S-p100:SCF-beta-TRCP", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1056", - "label": "FOS [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1055", - "label": "Histone H2A [nucleoplasm]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1054", - "label": "NMUR2:NMS [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1053", - "label": "cholesterol esters [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1052", - "label": "G-protein alpha (12):GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1051", - "label": "Disassembly of SR-BI-bound spherical HDL", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1050", - "label": "spherical HDL:SR-BI complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1049", - "label": "TAGs [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1048", - "label": "mature GLP-1 [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1047", - "label": "GLP-1 (7-37) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1046", - "label": "USO1 homodimer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1045", - "label": "ArgN-GCG(98-127) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1044", - "label": "UBE2N:UBE2V1 dissociates from hp-IRAK1:3xK63-polyUb-TRAF6:3xUBE2N:UBE2V1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1043", - "label": "K63PolyUb:K14,K16,p-S139-H2AFX,Me2K21-HIST1H4A-Nucleosome [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1042", - "label": "PER1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1041", - "label": "coatomer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1040", - "label": "Phosphorylated heterodimers of ERBB2 TMD/JMD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1039", - "label": "PAFAH1B1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - } - ], - "edges": [ - { - "id": "2490", - "label": "305153 (-) 299541", - "from": "1613", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2489", - "label": "587783 (-) 140089", - "from": "1612", - "to": "1389", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2488", - "label": "6157 (-) 13130", - "from": "1611", - "to": "1380", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2487", - "label": "6157 (-) 8322", - "from": "1611", - "to": "1584", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2486", - "label": "305167 (-) 299541", - "from": "1610", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2485", - "label": "618516 (-) 1035755", - "from": "1609", - "to": "1187", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2484", - "label": "305175 (-) 299541", - "from": "1608", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2483", - "label": "419867 (-) 960695", - "from": "1607", - "to": "1568", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2482", - "label": "305190 (-) 299541", - "from": "1606", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2481", - "label": "1882150 (-) 2098710", - "from": "1605", - "to": "1178", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2480", - "label": "1341480 (-) 320330", - "from": "1604", - "to": "1381", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2479", - "label": "616491 (-) 550154", - "from": "1603", - "to": "1253", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2478", - "label": "616491 (-) 616607", - "from": "1603", - "to": "1576", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2477", - "label": "616491 (-) 616843", - "from": "1603", - "to": "1523", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2476", - "label": "616491 (-) 616818", - "from": "1603", - "to": "1531", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2475", - "label": "616491 (-) 616732", - "from": "1603", - "to": "1543", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2474", - "label": "616492 (-) 616491", - "from": "1602", - "to": "1603", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2473", - "label": "616493 (-) 616491", - "from": "1601", - "to": "1603", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2472", - "label": "1226805 (-) 1243896", - "from": "1600", - "to": "1413", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2471", - "label": "299067 (-) 369394", - "from": "1599", - "to": "1415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2470", - "label": "299067 (-) 299541", - "from": "1599", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2469", - "label": "299067 (-) 331494", - "from": "1599", - "to": "1130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2468", - "label": "2119743 (-) 254746", - "from": "1598", - "to": "1402", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2467", - "label": "421954 (-) 951458", - "from": "1597", - "to": "1287", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2466", - "label": "98391 (-) 97550", - "from": "1596", - "to": "1249", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2465", - "label": "950359 (-) 569211", - "from": "1595", - "to": "1082", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2464", - "label": "421977 (-) 421954", - "from": "1594", - "to": "1597", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2463", - "label": "964698 (-) 144608", - "from": "1593", - "to": "1267", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2462", - "label": "421979 (-) 421977", - "from": "1592", - "to": "1594", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2461", - "label": "950362 (-) 950359", - "from": "1591", - "to": "1595", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2460", - "label": "712804 (-) 703763", - "from": "1590", - "to": "1247", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2459", - "label": "6250 (-) 8322", - "from": "1589", - "to": "1584", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2458", - "label": "6250 (-) 13130", - "from": "1589", - "to": "1380", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2457", - "label": "159862 (-) 159681", - "from": "1588", - "to": "1059", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2456", - "label": "299127 (-) 299541", - "from": "1587", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2455", - "label": "297083 (-) 296562", - "from": "1586", - "to": "1154", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2454", - "label": "1661054 (-) 1660884", - "from": "1585", - "to": "1050", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2453", - "label": "8322 (-) 8325", - "from": "1584", - "to": "1583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2452", - "label": "8325 (-) 1934430", - "from": "1583", - "to": "1302", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2451", - "label": "8325 (-) 638896", - "from": "1583", - "to": "1064", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2450", - "label": "8327 (-) 1935831", - "from": "1582", - "to": "1512", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2449", - "label": "258188 (-) 1793199", - "from": "1581", - "to": "1284", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2448", - "label": "1867917 (-) 1871665", - "from": "1580", - "to": "1107", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2447", - "label": "1417364 (-) 1226805", - "from": "1579", - "to": "1600", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2446", - "label": "422042 (-) 421979", - "from": "1578", - "to": "1592", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2445", - "label": "571548 (-) 571803", - "from": "1577", - "to": "1521", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2444", - "label": "616607 (-) 617080", - "from": "1576", - "to": "1459", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2443", - "label": "422049 (-) 422042", - "from": "1575", - "to": "1578", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2442", - "label": "422049 (-) 573953", - "from": "1575", - "to": "1500", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2441", - "label": "565410 (-) 1200984", - "from": "1574", - "to": "1378", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2440", - "label": "133281 (-) 1245648", - "from": "1573", - "to": "1513", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2439", - "label": "133281 (-) 1484122", - "from": "1573", - "to": "1226", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2438", - "label": "133281 (-) 1485345", - "from": "1573", - "to": "1486", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2437", - "label": "133281 (-) 1485501", - "from": "1573", - "to": "1434", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2436", - "label": "133281 (-) 1245450", - "from": "1573", - "to": "1554", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2435", - "label": "133281 (-) 289149", - "from": "1573", - "to": "1529", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2434", - "label": "133281 (-) 291429", - "from": "1573", - "to": "1465", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2433", - "label": "133281 (-) 571202", - "from": "1573", - "to": "1096", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2432", - "label": "133281 (-) 291483", - "from": "1573", - "to": "1448", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2431", - "label": "616621 (-) 616491", - "from": "1572", - "to": "1603", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2430", - "label": "1116334 (-) 593090", - "from": "1571", - "to": "1272", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2429", - "label": "92336 (-) 1243896", - "from": "1570", - "to": "1413", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2428", - "label": "923825 (-) 77681", - "from": "1569", - "to": "1083", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2427", - "label": "960695 (-) 960987", - "from": "1568", - "to": "1509", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2426", - "label": "243911 (-) 2680", - "from": "1567", - "to": "1458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2425", - "label": "1538253 (-) 293444", - "from": "1566", - "to": "1477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2424", - "label": "252110 (-) 251201", - "from": "1565", - "to": "1239", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2423", - "label": "252110 (-) 251144", - "from": "1565", - "to": "1255", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2422", - "label": "252110 (-) 250984", - "from": "1565", - "to": "1299", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2421", - "label": "2117860 (-) 254746", - "from": "1564", - "to": "1402", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2420", - "label": "1337573 (-) 1337326", - "from": "1563", - "to": "1042", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2419", - "label": "2117862 (-) 2119743", - "from": "1562", - "to": "1598", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2418", - "label": "2117862 (-) 2117860", - "from": "1562", - "to": "1564", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2417", - "label": "336103 (-) 331494", - "from": "1561", - "to": "1130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2416", - "label": "336103 (-) 1538253", - "from": "1561", - "to": "1566", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2415", - "label": "551145 (-) 550854", - "from": "1560", - "to": "1057", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2414", - "label": "962799 (-) 1794867", - "from": "1559", - "to": "1391", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2413", - "label": "743664 (-) 1341480", - "from": "1558", - "to": "1604", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2412", - "label": "743664 (-) 1341349", - "from": "1558", - "to": "1067", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2411", - "label": "743664 (-) 1341038", - "from": "1558", - "to": "1155", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2410", - "label": "743664 (-) 1340336", - "from": "1558", - "to": "1350", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2409", - "label": "194803 (-) 1863096", - "from": "1557", - "to": "1203", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2408", - "label": "194803 (-) 1690278", - "from": "1557", - "to": "1443", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2407", - "label": "504065 (-) 504078", - "from": "1556", - "to": "1550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2406", - "label": "504065 (-) 504360", - "from": "1556", - "to": "1482", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2405", - "label": "504065 (-) 504377", - "from": "1556", - "to": "1478", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2404", - "label": "1886473 (-) 1238218", - "from": "1555", - "to": "1271", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2403", - "label": "1245450 (-) 253191", - "from": "1554", - "to": "1256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2402", - "label": "1806603 (-) 310723", - "from": "1553", - "to": "1199", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2401", - "label": "504076 (-) 1684283", - "from": "1552", - "to": "1387", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2400", - "label": "504076 (-) 1682942", - "from": "1552", - "to": "1184", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2399", - "label": "504075 (-) 1682942", - "from": "1551", - "to": "1184", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2398", - "label": "504075 (-) 1684283", - "from": "1551", - "to": "1387", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2397", - "label": "504078 (-) 504076", - "from": "1550", - "to": "1552", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2396", - "label": "504078 (-) 504077", - "from": "1550", - "to": "1546", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2395", - "label": "504078 (-) 504075", - "from": "1550", - "to": "1551", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2394", - "label": "1237263 (-) 55093", - "from": "1549", - "to": "1104", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2393", - "label": "973072 (-) 251144", - "from": "1548", - "to": "1255", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2392", - "label": "973072 (-) 251201", - "from": "1548", - "to": "1239", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2391", - "label": "973072 (-) 250984", - "from": "1548", - "to": "1299", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2390", - "label": "1237265 (-) 1237263", - "from": "1547", - "to": "1549", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2389", - "label": "504077 (-) 1682942", - "from": "1546", - "to": "1184", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2388", - "label": "504077 (-) 1684283", - "from": "1546", - "to": "1387", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2387", - "label": "1382672 (-) 441773", - "from": "1545", - "to": "1204", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2386", - "label": "1337624 (-) 1337573", - "from": "1544", - "to": "1563", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2385", - "label": "616732 (-) 617080", - "from": "1543", - "to": "1459", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2384", - "label": "874812 (-) 888170", - "from": "1542", - "to": "1225", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2383", - "label": "1272124 (-) 1265996", - "from": "1541", - "to": "1535", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2382", - "label": "1046846 (-) 570878", - "from": "1540", - "to": "1183", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2381", - "label": "241990 (-) 958434", - "from": "1539", - "to": "1044", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2380", - "label": "1534279 (-) 251616", - "from": "1538", - "to": "1132", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2379", - "label": "321865 (-) 1382736", - "from": "1537", - "to": "1534", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2378", - "label": "1265995 (-) 1275213", - "from": "1536", - "to": "1233", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2377", - "label": "1265995 (-) 1275346", - "from": "1536", - "to": "1198", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2376", - "label": "1265996 (-) 1275213", - "from": "1535", - "to": "1233", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2375", - "label": "1265996 (-) 1275346", - "from": "1535", - "to": "1198", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2374", - "label": "1382736 (-) 327533", - "from": "1534", - "to": "1085", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2373", - "label": "1681748 (-) 251616", - "from": "1533", - "to": "1132", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2372", - "label": "616817 (-) 616491", - "from": "1532", - "to": "1603", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2371", - "label": "616818 (-) 617080", - "from": "1531", - "to": "1459", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2370", - "label": "883065 (-) 1200606", - "from": "1530", - "to": "1506", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2369", - "label": "289149 (-) 144608", - "from": "1529", - "to": "1267", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2368", - "label": "616831 (-) 616491", - "from": "1528", - "to": "1603", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2367", - "label": "330112 (-) 409084", - "from": "1527", - "to": "1185", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2366", - "label": "330112 (-) 369394", - "from": "1527", - "to": "1415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2365", - "label": "330112 (-) 331494", - "from": "1527", - "to": "1130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2364", - "label": "227715 (-) 1336631", - "from": "1526", - "to": "1243", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2363", - "label": "952711 (-) 958275", - "from": "1525", - "to": "1094", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2362", - "label": "391560 (-) 2680", - "from": "1524", - "to": "1458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2361", - "label": "616843 (-) 617080", - "from": "1523", - "to": "1459", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2360", - "label": "401809 (-) 1428742", - "from": "1522", - "to": "1251", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2359", - "label": "401809 (-) 1266350", - "from": "1522", - "to": "1442", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2358", - "label": "571803 (-) 132458", - "from": "1521", - "to": "1224", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2357", - "label": "149916 (-) 1488882", - "from": "1520", - "to": "1040", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2356", - "label": "149916 (-) 1489512", - "from": "1520", - "to": "1463", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2355", - "label": "149916 (-) 964698", - "from": "1520", - "to": "1593", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2354", - "label": "149916 (-) 1489627", - "from": "1520", - "to": "1425", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2353", - "label": "149916 (-) 289835", - "from": "1520", - "to": "1317", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2352", - "label": "149916 (-) 157322", - "from": "1520", - "to": "1149", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2351", - "label": "1065380 (-) 261355", - "from": "1519", - "to": "1264", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2350", - "label": "301477 (-) 299541", - "from": "1518", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2349", - "label": "1200554 (-) 43842", - "from": "1517", - "to": "1384", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2348", - "label": "616886 (-) 616493", - "from": "1516", - "to": "1601", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2347", - "label": "616886 (-) 616831", - "from": "1516", - "to": "1528", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2346", - "label": "616886 (-) 616621", - "from": "1516", - "to": "1572", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2345", - "label": "616886 (-) 616817", - "from": "1516", - "to": "1532", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2344", - "label": "616886 (-) 616492", - "from": "1516", - "to": "1602", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2343", - "label": "321983 (-) 1275213", - "from": "1515", - "to": "1233", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2342", - "label": "321983 (-) 1382736", - "from": "1515", - "to": "1534", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2341", - "label": "1200581 (-) 1200554", - "from": "1514", - "to": "1517", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2340", - "label": "1245648 (-) 253191", - "from": "1513", - "to": "1256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2339", - "label": "1935831 (-) 191978", - "from": "1512", - "to": "1188", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2338", - "label": "1477081 (-) 8325", - "from": "1511", - "to": "1583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2337", - "label": "297434 (-) 296684", - "from": "1510", - "to": "1129", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2336", - "label": "960987 (-) 1272124", - "from": "1509", - "to": "1541", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2335", - "label": "289245 (-) 144608", - "from": "1508", - "to": "1267", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2334", - "label": "2062814 (-) 418544", - "from": "1507", - "to": "1416", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2333", - "label": "1200606 (-) 1200581", - "from": "1506", - "to": "1514", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2332", - "label": "440813 (-) 970337", - "from": "1505", - "to": "1160", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2331", - "label": "1798639 (-) 1911913", - "from": "1504", - "to": "1298", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2330", - "label": "2111986 (-) 49150", - "from": "1503", - "to": "1039", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2329", - "label": "1430006 (-) 336103", - "from": "1502", - "to": "1561", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2328", - "label": "193018 (-) 193941", - "from": "1501", - "to": "1212", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2327", - "label": "193018 (-) 194202", - "from": "1501", - "to": "1145", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2326", - "label": "573953 (-) 572417", - "from": "1500", - "to": "1331", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2325", - "label": "1790467 (-) 251616", - "from": "1499", - "to": "1132", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2324", - "label": "248331 (-) 2680", - "from": "1498", - "to": "1458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2323", - "label": "637452 (-) 193879", - "from": "1497", - "to": "1227", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2322", - "label": "637453 (-) 637452", - "from": "1496", - "to": "1497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2321", - "label": "1337870 (-) 1337573", - "from": "1495", - "to": "1563", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2320", - "label": "193037 (-) 193018", - "from": "1494", - "to": "1501", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2319", - "label": "299537 (-) 299541", - "from": "1493", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2318", - "label": "653843 (-) 730789", - "from": "1492", - "to": "1143", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2317", - "label": "653843 (-) 737088", - "from": "1492", - "to": "1097", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2316", - "label": "653843 (-) 1538767", - "from": "1492", - "to": "1427", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2315", - "label": "653843 (-) 654138", - "from": "1492", - "to": "1388", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2314", - "label": "299541 (-) 308039", - "from": "1491", - "to": "1382", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2313", - "label": "299541 (-) 309001", - "from": "1491", - "to": "1120", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2312", - "label": "299541 (-) 297979", - "from": "1491", - "to": "1335", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2311", - "label": "299541 (-) 251616", - "from": "1491", - "to": "1132", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2310", - "label": "299541 (-) 297990", - "from": "1491", - "to": "1330", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2309", - "label": "299541 (-) 298000", - "from": "1491", - "to": "1326", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2308", - "label": "299541 (-) 293444", - "from": "1491", - "to": "1477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2307", - "label": "299541 (-) 296350", - "from": "1491", - "to": "1210", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2306", - "label": "299544 (-) 299541", - "from": "1490", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2305", - "label": "1159708 (-) 2680", - "from": "1489", - "to": "1458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2304", - "label": "291357 (-) 144608", - "from": "1488", - "to": "1267", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2303", - "label": "653856 (-) 654215", - "from": "1487", - "to": "1362", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2302", - "label": "1485345 (-) 144608", - "from": "1486", - "to": "1267", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2301", - "label": "1083940 (-) 1084519", - "from": "1485", - "to": "1300", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2300", - "label": "231973 (-) 1341349", - "from": "1484", - "to": "1067", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2299", - "label": "231973 (-) 1340263", - "from": "1484", - "to": "1372", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2298", - "label": "231973 (-) 1341480", - "from": "1484", - "to": "1604", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2297", - "label": "231973 (-) 1340336", - "from": "1484", - "to": "1350", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2296", - "label": "231973 (-) 1341038", - "from": "1484", - "to": "1155", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2295", - "label": "1083941 (-) 1083940", - "from": "1483", - "to": "1485", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2294", - "label": "504360 (-) 504077", - "from": "1482", - "to": "1546", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2293", - "label": "504360 (-) 504075", - "from": "1482", - "to": "1551", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2292", - "label": "504360 (-) 504076", - "from": "1482", - "to": "1552", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2291", - "label": "311850 (-) 299541", - "from": "1481", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2290", - "label": "309814 (-) 299541", - "from": "1480", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2289", - "label": "1806903 (-) 412237", - "from": "1479", - "to": "1475", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2288", - "label": "504377 (-) 504076", - "from": "1478", - "to": "1552", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2287", - "label": "504377 (-) 504075", - "from": "1478", - "to": "1551", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2286", - "label": "293444 (-) 299541", - "from": "1477", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2285", - "label": "293444 (-) 329216", - "from": "1477", - "to": "1182", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2284", - "label": "293444 (-) 296562", - "from": "1477", - "to": "1154", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2283", - "label": "293444 (-) 1522955", - "from": "1477", - "to": "1252", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2282", - "label": "1538634 (-) 293444", - "from": "1476", - "to": "1477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2281", - "label": "412237 (-) 414287", - "from": "1475", - "to": "1474", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2280", - "label": "414287 (-) 227113", - "from": "1474", - "to": "1111", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2279", - "label": "932440 (-) 584382", - "from": "1473", - "to": "1433", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2278", - "label": "389722 (-) 549814", - "from": "1472", - "to": "1347", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2277", - "label": "389722 (-) 616886", - "from": "1472", - "to": "1516", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2276", - "label": "1794651 (-) 962799", - "from": "1471", - "to": "1559", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2275", - "label": "1794651 (-) 1793419", - "from": "1471", - "to": "1214", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2274", - "label": "1794651 (-) 962363", - "from": "1471", - "to": "1099", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2273", - "label": "1794651 (-) 1793418", - "from": "1471", - "to": "1216", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2272", - "label": "555611 (-) 409544", - "from": "1470", - "to": "1056", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2271", - "label": "875101 (-) 875099", - "from": "1469", - "to": "1467", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2270", - "label": "971358 (-) 250984", - "from": "1468", - "to": "1299", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2269", - "label": "971358 (-) 251144", - "from": "1468", - "to": "1255", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2268", - "label": "971358 (-) 251201", - "from": "1468", - "to": "1239", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2267", - "label": "875099 (-) 875746", - "from": "1467", - "to": "1266", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2266", - "label": "350818 (-) 555944", - "from": "1466", - "to": "1352", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2265", - "label": "291429 (-) 144608", - "from": "1465", - "to": "1267", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2264", - "label": "1159782 (-) 954243", - "from": "1464", - "to": "1077", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2263", - "label": "1489512 (-) 144608", - "from": "1463", - "to": "1267", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2262", - "label": "1477225 (-) 231973", - "from": "1462", - "to": "1484", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2261", - "label": "1378926 (-) 1382736", - "from": "1461", - "to": "1534", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2260", - "label": "2052724 (-) 2059776", - "from": "1460", - "to": "1181", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2259", - "label": "617080 (-) 550651", - "from": "1459", - "to": "1124", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2258", - "label": "2680 (-) 712804", - "from": "1458", - "to": "1590", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2257", - "label": "227964 (-) 324791", - "from": "1457", - "to": "1278", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2256", - "label": "227964 (-) 320128", - "from": "1457", - "to": "1454", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2255", - "label": "227964 (-) 1382203", - "from": "1457", - "to": "1101", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2254", - "label": "227964 (-) 322680", - "from": "1457", - "to": "1294", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2253", - "label": "227964 (-) 324862", - "from": "1457", - "to": "1261", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2252", - "label": "227964 (-) 322256", - "from": "1457", - "to": "1428", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2251", - "label": "133757 (-) 291429", - "from": "1456", - "to": "1465", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2250", - "label": "133757 (-) 1485501", - "from": "1456", - "to": "1434", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2249", - "label": "133757 (-) 1484122", - "from": "1456", - "to": "1226", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2248", - "label": "133757 (-) 1480635", - "from": "1456", - "to": "1061", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2247", - "label": "133757 (-) 289149", - "from": "1456", - "to": "1529", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2246", - "label": "133757 (-) 1485345", - "from": "1456", - "to": "1486", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2245", - "label": "133757 (-) 289245", - "from": "1456", - "to": "1508", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2244", - "label": "133757 (-) 291483", - "from": "1456", - "to": "1448", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2243", - "label": "637566 (-) 637453", - "from": "1455", - "to": "1496", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2242", - "label": "320128 (-) 320604", - "from": "1454", - "to": "1303", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2241", - "label": "1684105 (-) 330932", - "from": "1453", - "to": "1281", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2240", - "label": "1684105 (-) 330112", - "from": "1453", - "to": "1527", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2239", - "label": "1684105 (-) 298310", - "from": "1453", - "to": "1237", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2238", - "label": "1684105 (-) 299067", - "from": "1453", - "to": "1599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2237", - "label": "1309325 (-) 1309326", - "from": "1452", - "to": "1451", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2236", - "label": "1309325 (-) 1309385", - "from": "1452", - "to": "1430", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2235", - "label": "1309326 (-) 1309471", - "from": "1451", - "to": "1400", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2234", - "label": "98964 (-) 98391", - "from": "1450", - "to": "1596", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2233", - "label": "98964 (-) 1490531", - "from": "1450", - "to": "1159", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2232", - "label": "98964 (-) 1490324", - "from": "1450", - "to": "1213", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2231", - "label": "98964 (-) 291357", - "from": "1450", - "to": "1488", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2230", - "label": "1806998 (-) 627749", - "from": "1449", - "to": "1319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2229", - "label": "1806998 (-) 441814", - "from": "1449", - "to": "1196", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2228", - "label": "291483 (-) 144608", - "from": "1448", - "to": "1267", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2227", - "label": "160413 (-) 159862", - "from": "1447", - "to": "1588", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2226", - "label": "1682080 (-) 251616", - "from": "1446", - "to": "1132", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2225", - "label": "719521 (-) 719714", - "from": "1445", - "to": "1376", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2224", - "label": "330402 (-) 331494", - "from": "1444", - "to": "1130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2223", - "label": "1690278 (-) 330402", - "from": "1443", - "to": "1444", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2222", - "label": "1266350 (-) 1265995", - "from": "1442", - "to": "1536", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2221", - "label": "672431 (-) 46171", - "from": "1441", - "to": "1304", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2220", - "label": "1802928 (-) 441814", - "from": "1440", - "to": "1196", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2219", - "label": "1411759 (-) 1411760", - "from": "1439", - "to": "1438", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2218", - "label": "1411760 (-) 1412138", - "from": "1438", - "to": "1318", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2217", - "label": "1807026 (-) 935814", - "from": "1437", - "to": "1076", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2216", - "label": "1807026 (-) 570878", - "from": "1437", - "to": "1183", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2215", - "label": "1807026 (-) 627557", - "from": "1437", - "to": "1373", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2214", - "label": "1673905 (-) 261355", - "from": "1436", - "to": "1264", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2213", - "label": "1231548 (-) 1230506", - "from": "1435", - "to": "1141", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2212", - "label": "1485501 (-) 144608", - "from": "1434", - "to": "1267", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2211", - "label": "584382 (-) 2131812", - "from": "1433", - "to": "1087", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2210", - "label": "322239 (-) 321084", - "from": "1432", - "to": "1168", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2209", - "label": "1411783 (-) 1473433", - "from": "1431", - "to": "1359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2208", - "label": "1309385 (-) 1309471", - "from": "1430", - "to": "1400", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2207", - "label": "572111 (-) 571548", - "from": "1429", - "to": "1577", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2206", - "label": "322256 (-) 321330", - "from": "1428", - "to": "1106", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2205", - "label": "1538767 (-) 654141", - "from": "1427", - "to": "1385", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2204", - "label": "877267 (-) 875101", - "from": "1426", - "to": "1469", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2203", - "label": "1489627 (-) 144608", - "from": "1425", - "to": "1267", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2202", - "label": "1694430 (-) 330475", - "from": "1424", - "to": "1418", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2201", - "label": "2052833 (-) 2059776", - "from": "1423", - "to": "1181", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2200", - "label": "94950 (-) 1522976", - "from": "1422", - "to": "1244", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2199", - "label": "94950 (-) 548159", - "from": "1422", - "to": "1240", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2198", - "label": "1266408 (-) 1265996", - "from": "1421", - "to": "1535", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2197", - "label": "1266409 (-) 1266408", - "from": "1420", - "to": "1421", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2196", - "label": "1661673 (-) 357229", - "from": "1419", - "to": "1370", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2195", - "label": "330475 (-) 331494", - "from": "1418", - "to": "1130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2194", - "label": "103150 (-) 433546", - "from": "1417", - "to": "1215", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2193", - "label": "103150 (-) 1049381", - "from": "1417", - "to": "1396", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2192", - "label": "418544 (-) 2062227", - "from": "1416", - "to": "1072", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2191", - "label": "369394 (-) 298309", - "from": "1415", - "to": "1238", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2190", - "label": "369394 (-) 304129", - "from": "1415", - "to": "1333", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2189", - "label": "369394 (-) 299127", - "from": "1415", - "to": "1587", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2188", - "label": "369394 (-) 298310", - "from": "1415", - "to": "1237", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2187", - "label": "369394 (-) 298315", - "from": "1415", - "to": "1235", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2186", - "label": "369394 (-) 304210", - "from": "1415", - "to": "1305", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2185", - "label": "369394 (-) 299067", - "from": "1415", - "to": "1599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2184", - "label": "369394 (-) 299537", - "from": "1415", - "to": "1493", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2183", - "label": "369394 (-) 304276", - "from": "1415", - "to": "1290", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2182", - "label": "369394 (-) 301477", - "from": "1415", - "to": "1518", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2181", - "label": "369394 (-) 293444", - "from": "1415", - "to": "1477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2180", - "label": "369394 (-) 303994", - "from": "1415", - "to": "1367", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2179", - "label": "369394 (-) 301845", - "from": "1415", - "to": "1404", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2178", - "label": "373494 (-) 369394", - "from": "1414", - "to": "1415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2177", - "label": "1243896 (-) 321983", - "from": "1413", - "to": "1515", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2176", - "label": "1663739 (-) 2131812", - "from": "1412", - "to": "1087", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2175", - "label": "883453 (-) 883065", - "from": "1411", - "to": "1530", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2174", - "label": "883455 (-) 883453", - "from": "1410", - "to": "1411", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2173", - "label": "883456 (-) 883453", - "from": "1409", - "to": "1411", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2172", - "label": "310020 (-) 299541", - "from": "1408", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2171", - "label": "310021 (-) 331494", - "from": "1407", - "to": "1130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2170", - "label": "310021 (-) 299541", - "from": "1407", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2169", - "label": "1884935 (-) 554016", - "from": "1406", - "to": "1321", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2168", - "label": "54026 (-) 743241", - "from": "1405", - "to": "1093", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2167", - "label": "301845 (-) 299541", - "from": "1404", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2166", - "label": "1159958 (-) 618296", - "from": "1403", - "to": "1102", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2165", - "label": "1159958 (-) 618516", - "from": "1403", - "to": "1609", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2164", - "label": "254746 (-) 974036", - "from": "1402", - "to": "1269", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2163", - "label": "254746 (-) 975952", - "from": "1402", - "to": "1308", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2162", - "label": "254746 (-) 973669", - "from": "1402", - "to": "1374", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2161", - "label": "254746 (-) 252110", - "from": "1402", - "to": "1565", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2160", - "label": "254746 (-) 971358", - "from": "1402", - "to": "1468", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2159", - "label": "254746 (-) 973072", - "from": "1402", - "to": "1548", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2158", - "label": "254746 (-) 972439", - "from": "1402", - "to": "1147", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2157", - "label": "586523 (-) 570878", - "from": "1401", - "to": "1183", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2156", - "label": "1309471 (-) 728256", - "from": "1400", - "to": "1273", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2155", - "label": "1663777 (-) 1663739", - "from": "1399", - "to": "1412", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2154", - "label": "883490 (-) 883455", - "from": "1398", - "to": "1410", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2153", - "label": "1082148 (-) 350818", - "from": "1397", - "to": "1466", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2152", - "label": "1049381 (-) 94950", - "from": "1396", - "to": "1422", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2151", - "label": "441126 (-) 440813", - "from": "1395", - "to": "1505", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2150", - "label": "1082151 (-) 1082148", - "from": "1394", - "to": "1397", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2149", - "label": "719655 (-) 719521", - "from": "1393", - "to": "1445", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2148", - "label": "1889063 (-) 64690", - "from": "1392", - "to": "1283", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2147", - "label": "1794867 (-) 1793352", - "from": "1391", - "to": "1236", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2146", - "label": "62263 (-) 743241", - "from": "1390", - "to": "1093", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2145", - "label": "140089 (-) 586523", - "from": "1389", - "to": "1401", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2144", - "label": "654138 (-) 654141", - "from": "1388", - "to": "1385", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2143", - "label": "1684283 (-) 330112", - "from": "1387", - "to": "1527", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2142", - "label": "404285 (-) 707770", - "from": "1386", - "to": "1277", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2141", - "label": "404285 (-) 707416", - "from": "1386", - "to": "1377", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2140", - "label": "654141 (-) 952239", - "from": "1385", - "to": "1065", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2139", - "label": "654141 (-) 719655", - "from": "1385", - "to": "1393", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2138", - "label": "43842 (-) 1952840", - "from": "1384", - "to": "1311", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2137", - "label": "43842 (-) 1477081", - "from": "1384", - "to": "1511", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2136", - "label": "43842 (-) 1952931", - "from": "1384", - "to": "1286", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2135", - "label": "43842 (-) 1953027", - "from": "1384", - "to": "1259", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2134", - "label": "1035074 (-) 1159782", - "from": "1383", - "to": "1464", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2133", - "label": "308039 (-) 299541", - "from": "1382", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2132", - "label": "320330 (-) 324862", - "from": "1381", - "to": "1261", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2131", - "label": "320330 (-) 320128", - "from": "1381", - "to": "1454", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2130", - "label": "320330 (-) 322256", - "from": "1381", - "to": "1428", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2129", - "label": "320330 (-) 1382203", - "from": "1381", - "to": "1101", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2128", - "label": "320330 (-) 324791", - "from": "1381", - "to": "1278", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2127", - "label": "320330 (-) 322680", - "from": "1381", - "to": "1294", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2126", - "label": "13130 (-) 13588", - "from": "1380", - "to": "1246", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2125", - "label": "13134 (-) 1490324", - "from": "1379", - "to": "1213", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2124", - "label": "13134 (-) 1490531", - "from": "1379", - "to": "1159", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2123", - "label": "1200984 (-) 554324", - "from": "1378", - "to": "1230", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2122", - "label": "707416 (-) 227113", - "from": "1377", - "to": "1111", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2121", - "label": "719714 (-) 565410", - "from": "1376", - "to": "1574", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2120", - "label": "627554 (-) 441814", - "from": "1375", - "to": "1196", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2119", - "label": "627554 (-) 627749", - "from": "1375", - "to": "1319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2118", - "label": "973669 (-) 250984", - "from": "1374", - "to": "1299", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2117", - "label": "973669 (-) 251144", - "from": "1374", - "to": "1255", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2116", - "label": "973669 (-) 251201", - "from": "1374", - "to": "1239", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2115", - "label": "627557 (-) 1806998", - "from": "1373", - "to": "1449", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2114", - "label": "627557 (-) 627554", - "from": "1373", - "to": "1375", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2113", - "label": "1340263 (-) 320330", - "from": "1372", - "to": "1381", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2112", - "label": "2114406 (-) 2114794", - "from": "1371", - "to": "1265", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2111", - "label": "357229 (-) 1663777", - "from": "1370", - "to": "1399", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2110", - "label": "369519 (-) 369394", - "from": "1369", - "to": "1415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2109", - "label": "2085752 (-) 130871", - "from": "1368", - "to": "1103", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2108", - "label": "303994 (-) 299541", - "from": "1367", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2107", - "label": "924543 (-) 2131812", - "from": "1366", - "to": "1087", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2106", - "label": "998275 (-) 1417364", - "from": "1365", - "to": "1579", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2105", - "label": "998275 (-) 1414797", - "from": "1365", - "to": "1148", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2104", - "label": "441219 (-) 441126", - "from": "1364", - "to": "1395", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2103", - "label": "998276 (-) 1417364", - "from": "1363", - "to": "1579", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2102", - "label": "998276 (-) 1414797", - "from": "1363", - "to": "1148", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2101", - "label": "654215 (-) 653843", - "from": "1362", - "to": "1492", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2100", - "label": "2114443 (-) 2112991", - "from": "1361", - "to": "1193", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2099", - "label": "998290 (-) 1417364", - "from": "1360", - "to": "1579", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2098", - "label": "998290 (-) 1414797", - "from": "1360", - "to": "1148", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2097", - "label": "1473433 (-) 138223", - "from": "1359", - "to": "1337", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2096", - "label": "1473437 (-) 1411783", - "from": "1358", - "to": "1431", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2095", - "label": "1084318 (-) 171672", - "from": "1357", - "to": "1146", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2094", - "label": "1338271 (-) 389722", - "from": "1356", - "to": "1472", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2093", - "label": "1084321 (-) 1084318", - "from": "1355", - "to": "1357", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2092", - "label": "1807269 (-) 418544", - "from": "1354", - "to": "1416", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2091", - "label": "1807269 (-) 401809", - "from": "1354", - "to": "1522", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2090", - "label": "64422 (-) 1238006", - "from": "1353", - "to": "1336", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2089", - "label": "555944 (-) 293444", - "from": "1352", - "to": "1477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2088", - "label": "54189 (-) 743241", - "from": "1351", - "to": "1093", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2087", - "label": "1340336 (-) 320330", - "from": "1350", - "to": "1381", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2086", - "label": "1340336 (-) 227964", - "from": "1350", - "to": "1457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2085", - "label": "885683 (-) 887987", - "from": "1349", - "to": "1282", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2084", - "label": "885683 (-) 877790", - "from": "1349", - "to": "1268", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2083", - "label": "1799093 (-) 1035074", - "from": "1348", - "to": "1383", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2082", - "label": "549814 (-) 550522", - "from": "1347", - "to": "1151", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2081", - "label": "1113015 (-) 1107533", - "from": "1346", - "to": "1165", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2080", - "label": "549816 (-) 549814", - "from": "1345", - "to": "1347", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2079", - "label": "433081 (-) 1429185", - "from": "1344", - "to": "1136", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2078", - "label": "433081 (-) 1428672", - "from": "1344", - "to": "1274", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2077", - "label": "1782717 (-) 1391645", - "from": "1343", - "to": "1322", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2076", - "label": "1782717 (-) 333538", - "from": "1343", - "to": "1131", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2075", - "label": "1782717 (-) 333415", - "from": "1343", - "to": "1158", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2074", - "label": "885694 (-) 885683", - "from": "1342", - "to": "1349", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2073", - "label": "1659840 (-) 1207322", - "from": "1341", - "to": "1325", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2072", - "label": "320468 (-) 320128", - "from": "1340", - "to": "1454", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2071", - "label": "992230 (-) 992233", - "from": "1339", - "to": "1338", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2070", - "label": "992233 (-) 495541", - "from": "1338", - "to": "1063", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2069", - "label": "138223 (-) 672431", - "from": "1337", - "to": "1441", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2068", - "label": "1238006 (-) 1237265", - "from": "1336", - "to": "1547", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2067", - "label": "297979 (-) 297434", - "from": "1335", - "to": "1510", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2066", - "label": "572416 (-) 572418", - "from": "1334", - "to": "1332", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2065", - "label": "304129 (-) 299541", - "from": "1333", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2064", - "label": "572418 (-) 1031197", - "from": "1332", - "to": "1324", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2063", - "label": "572418 (-) 994566", - "from": "1332", - "to": "1257", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2062", - "label": "572417 (-) 572416", - "from": "1331", - "to": "1334", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2061", - "label": "297990 (-) 299541", - "from": "1330", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2060", - "label": "297990 (-) 297434", - "from": "1330", - "to": "1510", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2059", - "label": "492556 (-) 1684105", - "from": "1329", - "to": "1453", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2058", - "label": "492556 (-) 1682942", - "from": "1329", - "to": "1184", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2057", - "label": "492556 (-) 1684283", - "from": "1329", - "to": "1387", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2056", - "label": "826382 (-) 492556", - "from": "1328", - "to": "1329", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2055", - "label": "672783 (-) 932440", - "from": "1327", - "to": "1473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2054", - "label": "298000 (-) 297434", - "from": "1326", - "to": "1510", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2053", - "label": "1207322 (-) 1661673", - "from": "1325", - "to": "1419", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2052", - "label": "1207322 (-) 1661054", - "from": "1325", - "to": "1585", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2051", - "label": "1031197 (-) 992230", - "from": "1324", - "to": "1339", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2050", - "label": "289822 (-) 94950", - "from": "1323", - "to": "1422", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2049", - "label": "1391645 (-) 1659840", - "from": "1322", - "to": "1341", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2048", - "label": "554016 (-) 826382", - "from": "1321", - "to": "1328", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2047", - "label": "289823 (-) 289822", - "from": "1320", - "to": "1323", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2046", - "label": "627749 (-) 1806903", - "from": "1319", - "to": "1479", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2045", - "label": "1412138 (-) 1411783", - "from": "1318", - "to": "1431", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2044", - "label": "289835 (-) 289823", - "from": "1317", - "to": "1320", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2043", - "label": "1473583 (-) 1411783", - "from": "1316", - "to": "1431", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2042", - "label": "1668145 (-) 251616", - "from": "1315", - "to": "1132", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2041", - "label": "54322 (-) 743241", - "from": "1314", - "to": "1093", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2040", - "label": "2131002 (-) 2131705", - "from": "1313", - "to": "1126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2039", - "label": "955460 (-) 955573", - "from": "1312", - "to": "1280", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2038", - "label": "1952840 (-) 998275", - "from": "1311", - "to": "1365", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2037", - "label": "62537 (-) 743241", - "from": "1310", - "to": "1093", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2036", - "label": "2131021 (-) 2131705", - "from": "1309", - "to": "1126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2035", - "label": "975952 (-) 250984", - "from": "1308", - "to": "1299", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2034", - "label": "975952 (-) 251144", - "from": "1308", - "to": "1255", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2033", - "label": "975952 (-) 251201", - "from": "1308", - "to": "1239", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2032", - "label": "703569 (-) 404285", - "from": "1307", - "to": "1386", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2031", - "label": "703570 (-) 1410943", - "from": "1306", - "to": "1081", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2030", - "label": "703570 (-) 703569", - "from": "1306", - "to": "1307", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2029", - "label": "304210 (-) 299541", - "from": "1305", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2028", - "label": "46171 (-) 703760", - "from": "1304", - "to": "1248", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2027", - "label": "320604 (-) 1430006", - "from": "1303", - "to": "1502", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2026", - "label": "320604 (-) 1275213", - "from": "1303", - "to": "1233", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2025", - "label": "1934430 (-) 1935115", - "from": "1302", - "to": "1119", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2024", - "label": "1428580 (-) 1428742", - "from": "1301", - "to": "1251", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2023", - "label": "1084519 (-) 1084321", - "from": "1300", - "to": "1355", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2022", - "label": "250984 (-) 392955", - "from": "1299", - "to": "1123", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2021", - "label": "1911913 (-) 978264", - "from": "1298", - "to": "1228", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2020", - "label": "72811 (-) 1242262", - "from": "1297", - "to": "1289", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2019", - "label": "500848 (-) 492556", - "from": "1296", - "to": "1329", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2018", - "label": "916596 (-) 917308", - "from": "1295", - "to": "1100", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2017", - "label": "916596 (-) 916923", - "from": "1295", - "to": "1201", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2016", - "label": "322680 (-) 321865", - "from": "1294", - "to": "1537", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2015", - "label": "314489 (-) 299541", - "from": "1293", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2014", - "label": "1338496 (-) 301477", - "from": "1292", - "to": "1518", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2013", - "label": "160903 (-) 160413", - "from": "1291", - "to": "1447", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2012", - "label": "160903 (-) 1382672", - "from": "1291", - "to": "1545", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2011", - "label": "304276 (-) 299541", - "from": "1290", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2010", - "label": "1242262 (-) 1243009", - "from": "1289", - "to": "1080", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2009", - "label": "1035416 (-) 2085752", - "from": "1288", - "to": "1368", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2008", - "label": "951458 (-) 421558", - "from": "1287", - "to": "1139", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2007", - "label": "1952931 (-) 998276", - "from": "1286", - "to": "1363", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2006", - "label": "1952931 (-) 998290", - "from": "1286", - "to": "1360", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2005", - "label": "255142 (-) 974036", - "from": "1285", - "to": "1269", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2004", - "label": "255142 (-) 973072", - "from": "1285", - "to": "1548", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2003", - "label": "255142 (-) 971358", - "from": "1285", - "to": "1468", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2002", - "label": "255142 (-) 973669", - "from": "1285", - "to": "1374", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2001", - "label": "255142 (-) 972439", - "from": "1285", - "to": "1147", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2000", - "label": "255142 (-) 975952", - "from": "1285", - "to": "1308", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1999", - "label": "255142 (-) 252110", - "from": "1285", - "to": "1565", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1998", - "label": "1793199 (-) 149916", - "from": "1284", - "to": "1520", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1997", - "label": "1793199 (-) 286028", - "from": "1284", - "to": "1234", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1996", - "label": "1793199 (-) 570743", - "from": "1284", - "to": "1222", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1995", - "label": "64690 (-) 1886473", - "from": "1283", - "to": "1555", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1994", - "label": "64690 (-) 923825", - "from": "1283", - "to": "1569", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1993", - "label": "64690 (-) 67353", - "from": "1283", - "to": "1117", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1992", - "label": "887987 (-) 888278", - "from": "1282", - "to": "1195", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1991", - "label": "330932 (-) 331494", - "from": "1281", - "to": "1130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1990", - "label": "330932 (-) 369394", - "from": "1281", - "to": "1415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1989", - "label": "955573 (-) 952711", - "from": "1280", - "to": "1525", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1988", - "label": "955574 (-) 955573", - "from": "1279", - "to": "1280", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1987", - "label": "324791 (-) 321329", - "from": "1278", - "to": "1108", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1986", - "label": "707770 (-) 707772", - "from": "1277", - "to": "1275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1985", - "label": "707770 (-) 708267", - "from": "1277", - "to": "1140", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1984", - "label": "707770 (-) 707871", - "from": "1277", - "to": "1245", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1983", - "label": "955580 (-) 955573", - "from": "1276", - "to": "1280", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1982", - "label": "707772 (-) 1275213", - "from": "1275", - "to": "1233", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1981", - "label": "1428672 (-) 1428580", - "from": "1274", - "to": "1301", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1980", - "label": "728256 (-) 728927", - "from": "1273", - "to": "1088", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1979", - "label": "593090 (-) 1411759", - "from": "1272", - "to": "1439", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1978", - "label": "1238218 (-) 1238006", - "from": "1271", - "to": "1336", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1977", - "label": "333006 (-) 331494", - "from": "1270", - "to": "1130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1976", - "label": "974036 (-) 251144", - "from": "1269", - "to": "1255", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1975", - "label": "974036 (-) 251201", - "from": "1269", - "to": "1239", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1974", - "label": "974036 (-) 250984", - "from": "1269", - "to": "1299", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1973", - "label": "877790 (-) 877267", - "from": "1268", - "to": "1426", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1972", - "label": "144608 (-) 151325", - "from": "1267", - "to": "1114", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1971", - "label": "144608 (-) 289822", - "from": "1267", - "to": "1323", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1970", - "label": "875746 (-) 2111986", - "from": "1266", - "to": "1503", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1969", - "label": "875746 (-) 1309325", - "from": "1266", - "to": "1452", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1968", - "label": "2114794 (-) 2114795", - "from": "1265", - "to": "1263", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1967", - "label": "261355 (-) 331494", - "from": "1264", - "to": "1130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1966", - "label": "261355 (-) 299541", - "from": "1264", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1965", - "label": "2114795 (-) 2114825", - "from": "1263", - "to": "1250", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1964", - "label": "587004 (-) 570878", - "from": "1262", - "to": "1183", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1963", - "label": "324862 (-) 321328", - "from": "1261", - "to": "1105", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1962", - "label": "660736 (-) 2062814", - "from": "1260", - "to": "1507", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1961", - "label": "1953027 (-) 998275", - "from": "1259", - "to": "1365", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1960", - "label": "955652 (-) 955580", - "from": "1258", - "to": "1276", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1959", - "label": "955652 (-) 955574", - "from": "1258", - "to": "1279", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1958", - "label": "955652 (-) 955460", - "from": "1258", - "to": "1312", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1957", - "label": "994566 (-) 992230", - "from": "1257", - "to": "1339", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1956", - "label": "253191 (-) 973072", - "from": "1256", - "to": "1548", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1955", - "label": "253191 (-) 975952", - "from": "1256", - "to": "1308", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1954", - "label": "253191 (-) 252110", - "from": "1256", - "to": "1565", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1953", - "label": "253191 (-) 1200984", - "from": "1256", - "to": "1378", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1952", - "label": "253191 (-) 971358", - "from": "1256", - "to": "1468", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1951", - "label": "253191 (-) 974036", - "from": "1256", - "to": "1269", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1950", - "label": "253191 (-) 972439", - "from": "1256", - "to": "1147", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1949", - "label": "253191 (-) 973669", - "from": "1256", - "to": "1374", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1948", - "label": "251144 (-) 392955", - "from": "1255", - "to": "1123", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1947", - "label": "1230088 (-) 1230586", - "from": "1254", - "to": "1122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1946", - "label": "1230088 (-) 1231548", - "from": "1254", - "to": "1435", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1945", - "label": "550154 (-) 617080", - "from": "1253", - "to": "1459", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1944", - "label": "550154 (-) 550650", - "from": "1253", - "to": "1125", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1943", - "label": "550154 (-) 646528", - "from": "1253", - "to": "1217", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1942", - "label": "1522955 (-) 672783", - "from": "1252", - "to": "1327", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1941", - "label": "1428742 (-) 321983", - "from": "1251", - "to": "1515", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1940", - "label": "2114825 (-) 880186", - "from": "1250", - "to": "1169", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1939", - "label": "97550 (-) 587004", - "from": "1249", - "to": "1262", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1938", - "label": "703760 (-) 703570", - "from": "1248", - "to": "1306", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1937", - "label": "703763 (-) 703760", - "from": "1247", - "to": "1248", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1936", - "label": "13588 (-) 1302460", - "from": "1246", - "to": "1060", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1935", - "label": "13588 (-) 1884935", - "from": "1246", - "to": "1406", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1934", - "label": "707871 (-) 1275213", - "from": "1245", - "to": "1233", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1933", - "label": "1522976 (-) 293444", - "from": "1244", - "to": "1477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1932", - "label": "1336631 (-) 1335037", - "from": "1243", - "to": "1121", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1931", - "label": "955707 (-) 955652", - "from": "1242", - "to": "1258", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1930", - "label": "955707 (-) 1156931", - "from": "1242", - "to": "1095", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1929", - "label": "415036 (-) 97550", - "from": "1241", - "to": "1249", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1928", - "label": "548159 (-) 14012", - "from": "1240", - "to": "1137", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1927", - "label": "251201 (-) 392955", - "from": "1239", - "to": "1123", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1926", - "label": "298309 (-) 299541", - "from": "1238", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1925", - "label": "298310 (-) 364005", - "from": "1237", - "to": "1189", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1924", - "label": "298310 (-) 331494", - "from": "1237", - "to": "1130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1923", - "label": "298310 (-) 369394", - "from": "1237", - "to": "1415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1922", - "label": "298310 (-) 329305", - "from": "1237", - "to": "1163", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1921", - "label": "298310 (-) 299541", - "from": "1237", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1920", - "label": "1793352 (-) 1793199", - "from": "1236", - "to": "1284", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1919", - "label": "298315 (-) 299541", - "from": "1235", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1918", - "label": "286028 (-) 1046846", - "from": "1234", - "to": "1540", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1917", - "label": "286028 (-) 1807026", - "from": "1234", - "to": "1437", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1916", - "label": "1275213 (-) 1275214", - "from": "1233", - "to": "1232", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1915", - "label": "1275214 (-) 1782717", - "from": "1232", - "to": "1343", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1914", - "label": "101711 (-) 1490324", - "from": "1231", - "to": "1213", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1913", - "label": "101711 (-) 1490531", - "from": "1231", - "to": "1159", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1912", - "label": "101711 (-) 555611", - "from": "1231", - "to": "1470", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1911", - "label": "101711 (-) 291357", - "from": "1231", - "to": "1488", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1910", - "label": "554324 (-) 554327", - "from": "1230", - "to": "1229", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1909", - "label": "554327 (-) 98964", - "from": "1229", - "to": "1450", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1908", - "label": "978264 (-) 1916734", - "from": "1228", - "to": "1098", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1907", - "label": "193879 (-) 1083941", - "from": "1227", - "to": "1483", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1906", - "label": "193879 (-) 193037", - "from": "1227", - "to": "1494", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1905", - "label": "1484122 (-) 144608", - "from": "1226", - "to": "1267", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1904", - "label": "888170 (-) 885694", - "from": "1225", - "to": "1342", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1903", - "label": "132458 (-) 587783", - "from": "1224", - "to": "1612", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1902", - "label": "132458 (-) 1214047", - "from": "1224", - "to": "1161", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1901", - "label": "1949040 (-) 374742", - "from": "1223", - "to": "1048", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1900", - "label": "1949040 (-) 374754", - "from": "1223", - "to": "1045", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1899", - "label": "1949040 (-) 374743", - "from": "1223", - "to": "1047", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1898", - "label": "570743 (-) 1482169", - "from": "1222", - "to": "1202", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1897", - "label": "1695098 (-) 330475", - "from": "1221", - "to": "1418", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1896", - "label": "302460 (-) 299541", - "from": "1220", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1895", - "label": "5502 (-) 13130", - "from": "1219", - "to": "1380", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1894", - "label": "5502 (-) 8322", - "from": "1219", - "to": "1584", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1893", - "label": "5503 (-) 8322", - "from": "1218", - "to": "1584", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1892", - "label": "5503 (-) 13130", - "from": "1218", - "to": "1380", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1891", - "label": "646528 (-) 550651", - "from": "1217", - "to": "1124", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1890", - "label": "1793418 (-) 1794867", - "from": "1216", - "to": "1391", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1889", - "label": "433546 (-) 433081", - "from": "1215", - "to": "1344", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1888", - "label": "1793419 (-) 1794867", - "from": "1214", - "to": "1391", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1887", - "label": "1490324 (-) 144608", - "from": "1213", - "to": "1267", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1886", - "label": "193941 (-) 191969", - "from": "1212", - "to": "1191", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1885", - "label": "2131348 (-) 2131705", - "from": "1211", - "to": "1126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1884", - "label": "296350 (-) 329216", - "from": "1210", - "to": "1182", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1883", - "label": "1035681 (-) 1035416", - "from": "1209", - "to": "1288", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1882", - "label": "1035683 (-) 1035681", - "from": "1208", - "to": "1209", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1881", - "label": "421285 (-) 419867", - "from": "1207", - "to": "1607", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1880", - "label": "439723 (-) 1230467", - "from": "1206", - "to": "1150", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1879", - "label": "441772 (-) 441219", - "from": "1205", - "to": "1364", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1878", - "label": "441773 (-) 1386423", - "from": "1204", - "to": "1062", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1877", - "label": "441773 (-) 1382312", - "from": "1204", - "to": "1066", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1876", - "label": "441773 (-) 441772", - "from": "1204", - "to": "1205", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1875", - "label": "1863096 (-) 330402", - "from": "1203", - "to": "1444", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1874", - "label": "1482169 (-) 570878", - "from": "1202", - "to": "1183", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1873", - "label": "1482169 (-) 935814", - "from": "1202", - "to": "1076", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1872", - "label": "916923 (-) 504065", - "from": "1201", - "to": "1556", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1871", - "label": "587203 (-) 441814", - "from": "1200", - "to": "1196", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1870", - "label": "310723 (-) 299541", - "from": "1199", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1869", - "label": "1275346 (-) 1275348", - "from": "1198", - "to": "1197", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1868", - "label": "1275346 (-) 1275362", - "from": "1198", - "to": "1190", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1867", - "label": "1275348 (-) 1782717", - "from": "1197", - "to": "1343", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1866", - "label": "441814 (-) 1807269", - "from": "1196", - "to": "1354", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1865", - "label": "441814 (-) 1386423", - "from": "1196", - "to": "1062", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1864", - "label": "441814 (-) 1806603", - "from": "1196", - "to": "1553", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1863", - "label": "888278 (-) 883456", - "from": "1195", - "to": "1409", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1862", - "label": "2112990 (-) 874812", - "from": "1194", - "to": "1542", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1861", - "label": "2112990 (-) 2114406", - "from": "1194", - "to": "1371", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1860", - "label": "2112990 (-) 874479", - "from": "1194", - "to": "1041", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1859", - "label": "2112991 (-) 2112990", - "from": "1193", - "to": "1194", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1858", - "label": "335327 (-) 331494", - "from": "1192", - "to": "1130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1857", - "label": "191969 (-) 1694430", - "from": "1191", - "to": "1424", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1856", - "label": "191969 (-) 1695098", - "from": "1191", - "to": "1221", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1855", - "label": "1275362 (-) 1782717", - "from": "1190", - "to": "1343", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1854", - "label": "364005 (-) 296913", - "from": "1189", - "to": "1052", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1853", - "label": "364005 (-) 297083", - "from": "1189", - "to": "1586", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1852", - "label": "364005 (-) 293444", - "from": "1189", - "to": "1477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1851", - "label": "191978 (-) 1673905", - "from": "1188", - "to": "1436", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1850", - "label": "1035755 (-) 1035683", - "from": "1187", - "to": "1208", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1849", - "label": "882169 (-) 888278", - "from": "1186", - "to": "1195", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1848", - "label": "882169 (-) 883490", - "from": "1186", - "to": "1398", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1847", - "label": "409084 (-) 293444", - "from": "1185", - "to": "1477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1846", - "label": "1682942 (-) 330112", - "from": "1184", - "to": "1527", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1845", - "label": "570878 (-) 627554", - "from": "1183", - "to": "1375", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1844", - "label": "570878 (-) 1806998", - "from": "1183", - "to": "1449", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1843", - "label": "570878 (-) 1802928", - "from": "1183", - "to": "1440", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1842", - "label": "570878 (-) 935811", - "from": "1183", - "to": "1079", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1841", - "label": "570878 (-) 587203", - "from": "1183", - "to": "1200", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1840", - "label": "329216 (-) 296684", - "from": "1182", - "to": "1129", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1839", - "label": "329216 (-) 293444", - "from": "1182", - "to": "1477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1838", - "label": "2059776 (-) 653856", - "from": "1181", - "to": "1487", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1837", - "label": "882178 (-) 883490", - "from": "1180", - "to": "1398", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1836", - "label": "882178 (-) 888278", - "from": "1180", - "to": "1195", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1835", - "label": "232970 (-) 1382736", - "from": "1179", - "to": "1534", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1834", - "label": "232970 (-) 1382203", - "from": "1179", - "to": "1101", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1833", - "label": "2098710 (-) 2052724", - "from": "1178", - "to": "1460", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1832", - "label": "2098710 (-) 2052833", - "from": "1178", - "to": "1423", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1831", - "label": "357917 (-) 208591", - "from": "1177", - "to": "1134", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1830", - "label": "439838 (-) 439723", - "from": "1176", - "to": "1206", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1829", - "label": "343583 (-) 331494", - "from": "1175", - "to": "1130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1828", - "label": "372265 (-) 369394", - "from": "1174", - "to": "1415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1827", - "label": "77362 (-) 62263", - "from": "1173", - "to": "1390", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1826", - "label": "77362 (-) 54189", - "from": "1173", - "to": "1351", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1825", - "label": "77362 (-) 54322", - "from": "1173", - "to": "1314", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1824", - "label": "77362 (-) 55277", - "from": "1173", - "to": "1043", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1823", - "label": "77362 (-) 54900", - "from": "1173", - "to": "1153", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1822", - "label": "77362 (-) 55093", - "from": "1173", - "to": "1104", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1821", - "label": "77362 (-) 61124", - "from": "1173", - "to": "1135", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1820", - "label": "77362 (-) 54026", - "from": "1173", - "to": "1405", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1819", - "label": "77362 (-) 62537", - "from": "1173", - "to": "1310", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1818", - "label": "101938 (-) 555611", - "from": "1172", - "to": "1470", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1817", - "label": "101938 (-) 1490531", - "from": "1172", - "to": "1159", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1816", - "label": "101938 (-) 1490324", - "from": "1172", - "to": "1213", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1815", - "label": "101938 (-) 291357", - "from": "1172", - "to": "1488", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1814", - "label": "878133 (-) 877267", - "from": "1171", - "to": "1426", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1813", - "label": "13879 (-) 6157", - "from": "1170", - "to": "1611", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1812", - "label": "13879 (-) 5503", - "from": "1170", - "to": "1218", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1811", - "label": "13879 (-) 5738", - "from": "1170", - "to": "1156", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1810", - "label": "13879 (-) 6250", - "from": "1170", - "to": "1589", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1809", - "label": "13879 (-) 5737", - "from": "1170", - "to": "1157", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1808", - "label": "13879 (-) 5502", - "from": "1170", - "to": "1219", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1807", - "label": "13879 (-) 5936", - "from": "1170", - "to": "1109", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1806", - "label": "13879 (-) 6042", - "from": "1170", - "to": "1069", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1805", - "label": "880186 (-) 888278", - "from": "1169", - "to": "1195", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1804", - "label": "321084 (-) 1338496", - "from": "1168", - "to": "1292", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1803", - "label": "1519168 (-) 1538634", - "from": "1167", - "to": "1476", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1802", - "label": "616002 (-) 2680", - "from": "1166", - "to": "1458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1801", - "label": "1107533 (-) 335327", - "from": "1165", - "to": "1192", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1800", - "label": "1107533 (-) 310021", - "from": "1165", - "to": "1407", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1799", - "label": "1107533 (-) 372265", - "from": "1165", - "to": "1174", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1798", - "label": "1107533 (-) 354035", - "from": "1165", - "to": "1127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1797", - "label": "1119825 (-) 1116334", - "from": "1164", - "to": "1571", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1796", - "label": "329305 (-) 293444", - "from": "1163", - "to": "1477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1795", - "label": "77403 (-) 77362", - "from": "1162", - "to": "1173", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1794", - "label": "1214047 (-) 144608", - "from": "1161", - "to": "1267", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1793", - "label": "970337 (-) 333006", - "from": "1160", - "to": "1270", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1792", - "label": "1490531 (-) 144608", - "from": "1159", - "to": "1267", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1791", - "label": "333415 (-) 331494", - "from": "1158", - "to": "1130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1790", - "label": "5737 (-) 8322", - "from": "1157", - "to": "1584", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1789", - "label": "5737 (-) 13130", - "from": "1157", - "to": "1380", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1788", - "label": "5738 (-) 8322", - "from": "1156", - "to": "1584", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1787", - "label": "5738 (-) 13130", - "from": "1156", - "to": "1380", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1786", - "label": "1341038 (-) 320330", - "from": "1155", - "to": "1381", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1785", - "label": "296562 (-) 296684", - "from": "1154", - "to": "1129", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1784", - "label": "296562 (-) 293444", - "from": "1154", - "to": "1477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1783", - "label": "54900 (-) 743241", - "from": "1153", - "to": "1093", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1782", - "label": "1771125 (-) 2114443", - "from": "1152", - "to": "1361", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1781", - "label": "550522 (-) 550679", - "from": "1151", - "to": "1118", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1780", - "label": "1230467 (-) 1230088", - "from": "1150", - "to": "1254", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1779", - "label": "157322 (-) 151326", - "from": "1149", - "to": "1113", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1778", - "label": "1414797 (-) 1226805", - "from": "1148", - "to": "1600", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1777", - "label": "972439 (-) 251201", - "from": "1147", - "to": "1239", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1776", - "label": "972439 (-) 251144", - "from": "1147", - "to": "1255", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1775", - "label": "972439 (-) 250984", - "from": "1147", - "to": "1299", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1774", - "label": "171672 (-) 299541", - "from": "1146", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1773", - "label": "171672 (-) 331494", - "from": "1146", - "to": "1130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1772", - "label": "194202 (-) 194803", - "from": "1145", - "to": "1557", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1771", - "label": "327326 (-) 304925", - "from": "1144", - "to": "1115", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1770", - "label": "327326 (-) 304924", - "from": "1144", - "to": "1116", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1769", - "label": "327326 (-) 305175", - "from": "1144", - "to": "1608", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1768", - "label": "327326 (-) 305167", - "from": "1144", - "to": "1610", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1767", - "label": "327326 (-) 305153", - "from": "1144", - "to": "1613", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1766", - "label": "730789 (-) 654141", - "from": "1143", - "to": "1385", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1765", - "label": "1230505 (-) 72811", - "from": "1142", - "to": "1297", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1764", - "label": "1230506 (-) 1230505", - "from": "1141", - "to": "1142", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1763", - "label": "708267 (-) 1275213", - "from": "1140", - "to": "1233", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1762", - "label": "421558 (-) 421285", - "from": "1139", - "to": "1207", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1761", - "label": "1154743 (-) 551145", - "from": "1138", - "to": "1560", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1760", - "label": "14012 (-) 248331", - "from": "1137", - "to": "1498", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1759", - "label": "14012 (-) 13879", - "from": "1137", - "to": "1170", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1758", - "label": "14012 (-) 391560", - "from": "1137", - "to": "1524", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1757", - "label": "14012 (-) 616002", - "from": "1137", - "to": "1166", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1756", - "label": "14012 (-) 243911", - "from": "1137", - "to": "1567", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1755", - "label": "1429185 (-) 1266409", - "from": "1136", - "to": "1420", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1754", - "label": "61124 (-) 743241", - "from": "1135", - "to": "1093", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1753", - "label": "208591 (-) 331494", - "from": "1134", - "to": "1130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1752", - "label": "884435 (-) 874464", - "from": "1133", - "to": "1046", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1751", - "label": "884435 (-) 878133", - "from": "1133", - "to": "1171", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1750", - "label": "251616 (-) 331494", - "from": "1132", - "to": "1130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1749", - "label": "251616 (-) 299541", - "from": "1132", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1748", - "label": "251616 (-) 1410943", - "from": "1132", - "to": "1081", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1747", - "label": "333538 (-) 331494", - "from": "1131", - "to": "1130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1746", - "label": "331494 (-) 310020", - "from": "1130", - "to": "1408", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1745", - "label": "331494 (-) 309814", - "from": "1130", - "to": "1480", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1744", - "label": "331494 (-) 305190", - "from": "1130", - "to": "1606", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1743", - "label": "331494 (-) 293444", - "from": "1130", - "to": "1477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1742", - "label": "331494 (-) 311850", - "from": "1130", - "to": "1481", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1741", - "label": "331494 (-) 299544", - "from": "1130", - "to": "1490", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1740", - "label": "331494 (-) 302460", - "from": "1130", - "to": "1220", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1739", - "label": "331494 (-) 309196", - "from": "1130", - "to": "1054", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1738", - "label": "296684 (-) 329216", - "from": "1129", - "to": "1182", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1737", - "label": "296684 (-) 296562", - "from": "1129", - "to": "1154", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1736", - "label": "1681138 (-) 251616", - "from": "1128", - "to": "1132", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1735", - "label": "354035 (-) 1668145", - "from": "1127", - "to": "1315", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1734", - "label": "2131705 (-) 698257", - "from": "1126", - "to": "1073", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1733", - "label": "2131705 (-) 2117862", - "from": "1126", - "to": "1562", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1732", - "label": "550650 (-) 550651", - "from": "1125", - "to": "1124", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1731", - "label": "550651 (-) 1382312", - "from": "1124", - "to": "1066", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1730", - "label": "550651 (-) 970337", - "from": "1124", - "to": "1160", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1729", - "label": "392955 (-) 258188", - "from": "1123", - "to": "1581", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1728", - "label": "1230586 (-) 1230506", - "from": "1122", - "to": "1141", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1727", - "label": "1335037 (-) 1477225", - "from": "1121", - "to": "1462", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1726", - "label": "309001 (-) 299541", - "from": "1120", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1725", - "label": "1935115 (-) 1935831", - "from": "1119", - "to": "1512", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1724", - "label": "550679 (-) 550154", - "from": "1118", - "to": "1253", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1723", - "label": "67353 (-) 64422", - "from": "1117", - "to": "1353", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1722", - "label": "304924 (-) 299541", - "from": "1116", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1721", - "label": "304925 (-) 299541", - "from": "1115", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1720", - "label": "151325 (-) 94950", - "from": "1114", - "to": "1422", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1719", - "label": "151326 (-) 151325", - "from": "1113", - "to": "1114", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1718", - "label": "884516 (-) 884435", - "from": "1112", - "to": "1133", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1717", - "label": "884516 (-) 885683", - "from": "1112", - "to": "1349", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1716", - "label": "227113 (-) 1275213", - "from": "1111", - "to": "1233", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1715", - "label": "884524 (-) 884435", - "from": "1110", - "to": "1133", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1714", - "label": "884524 (-) 885683", - "from": "1110", - "to": "1349", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1713", - "label": "5936 (-) 13130", - "from": "1109", - "to": "1380", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1712", - "label": "5936 (-) 8322", - "from": "1109", - "to": "1584", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1711", - "label": "321329 (-) 322239", - "from": "1108", - "to": "1432", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1710", - "label": "1871665 (-) 14228", - "from": "1107", - "to": "1071", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1709", - "label": "321330 (-) 322239", - "from": "1106", - "to": "1432", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1708", - "label": "321328 (-) 322239", - "from": "1105", - "to": "1432", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1707", - "label": "55093 (-) 743241", - "from": "1104", - "to": "1093", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1706", - "label": "130871 (-) 1681138", - "from": "1103", - "to": "1128", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1705", - "label": "130871 (-) 1681748", - "from": "1103", - "to": "1533", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1704", - "label": "130871 (-) 1529686", - "from": "1103", - "to": "1091", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1703", - "label": "130871 (-) 1065380", - "from": "1103", - "to": "1519", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1702", - "label": "130871 (-) 1682080", - "from": "1103", - "to": "1446", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1701", - "label": "130871 (-) 1790467", - "from": "1103", - "to": "1499", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1700", - "label": "130871 (-) 357917", - "from": "1103", - "to": "1177", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1699", - "label": "130871 (-) 1668145", - "from": "1103", - "to": "1315", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1698", - "label": "130871 (-) 1534279", - "from": "1103", - "to": "1538", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1697", - "label": "618296 (-) 1035755", - "from": "1102", - "to": "1187", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1696", - "label": "1382203 (-) 1378926", - "from": "1101", - "to": "1461", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1695", - "label": "1382203 (-) 320468", - "from": "1101", - "to": "1340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1694", - "label": "1382203 (-) 227964", - "from": "1101", - "to": "1457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1693", - "label": "1382203 (-) 320330", - "from": "1101", - "to": "1381", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1692", - "label": "917308 (-) 504065", - "from": "1100", - "to": "1556", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1691", - "label": "962363 (-) 1794867", - "from": "1099", - "to": "1391", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1690", - "label": "1916734 (-) 950362", - "from": "1098", - "to": "1591", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1689", - "label": "737088 (-) 654141", - "from": "1097", - "to": "1385", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1688", - "label": "571202 (-) 253191", - "from": "1096", - "to": "1256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1687", - "label": "1156931 (-) 955460", - "from": "1095", - "to": "1312", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1686", - "label": "958275 (-) 958290", - "from": "1094", - "to": "1092", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1685", - "label": "743241 (-) 743664", - "from": "1093", - "to": "1558", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1684", - "label": "958290 (-) 958368", - "from": "1092", - "to": "1068", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1683", - "label": "1529686 (-) 1519168", - "from": "1091", - "to": "1167", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1682", - "label": "409434 (-) 403309", - "from": "1090", - "to": "1084", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1681", - "label": "1466203 (-) 1889063", - "from": "1089", - "to": "1392", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1680", - "label": "728927 (-) 227715", - "from": "1088", - "to": "1526", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1679", - "label": "77671 (-) 77403", - "from": "1086", - "to": "1162", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1678", - "label": "327533 (-) 327326", - "from": "1085", - "to": "1144", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1677", - "label": "327533 (-) 1949040", - "from": "1085", - "to": "1223", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1676", - "label": "403309 (-) 415036", - "from": "1084", - "to": "1241", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1675", - "label": "77681 (-) 1238006", - "from": "1083", - "to": "1336", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1674", - "label": "77681 (-) 77671", - "from": "1083", - "to": "1086", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1673", - "label": "569211 (-) 572111", - "from": "1082", - "to": "1429", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1672", - "label": "1410943 (-) 103150", - "from": "1081", - "to": "1417", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1671", - "label": "1243009 (-) 1243896", - "from": "1080", - "to": "1413", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1670", - "label": "935811 (-) 441814", - "from": "1079", - "to": "1196", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1669", - "label": "698244 (-) 255142", - "from": "1078", - "to": "1285", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1668", - "label": "954243 (-) 1159958", - "from": "1077", - "to": "1403", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1667", - "label": "954243 (-) 1159708", - "from": "1077", - "to": "1489", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1666", - "label": "935814 (-) 935811", - "from": "1076", - "to": "1079", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1665", - "label": "935814 (-) 1806998", - "from": "1076", - "to": "1449", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1664", - "label": "1660808 (-) 2131812", - "from": "1075", - "to": "1087", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1663", - "label": "1116044 (-) 1155013", - "from": "1074", - "to": "1058", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1662", - "label": "1116044 (-) 1799093", - "from": "1074", - "to": "1348", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1661", - "label": "698257 (-) 1473583", - "from": "1073", - "to": "1316", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1660", - "label": "698257 (-) 1473437", - "from": "1073", - "to": "1358", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1659", - "label": "698257 (-) 698244", - "from": "1073", - "to": "1078", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1658", - "label": "2062227 (-) 79817", - "from": "1072", - "to": "1055", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1657", - "label": "14228 (-) 391560", - "from": "1071", - "to": "1524", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1656", - "label": "14228 (-) 243911", - "from": "1071", - "to": "1567", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1655", - "label": "14228 (-) 248331", - "from": "1071", - "to": "1498", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1654", - "label": "14228 (-) 616002", - "from": "1071", - "to": "1166", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1653", - "label": "14228 (-) 13879", - "from": "1071", - "to": "1170", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1652", - "label": "14228 (-) 1794651", - "from": "1071", - "to": "1471", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1651", - "label": "673684 (-) 1154743", - "from": "1070", - "to": "1138", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1650", - "label": "6042 (-) 8322", - "from": "1069", - "to": "1584", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1649", - "label": "6042 (-) 13130", - "from": "1069", - "to": "1380", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1648", - "label": "958368 (-) 241990", - "from": "1068", - "to": "1539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1647", - "label": "1341349 (-) 320330", - "from": "1067", - "to": "1381", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1646", - "label": "1382312 (-) 232970", - "from": "1066", - "to": "1179", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1645", - "label": "952239 (-) 422049", - "from": "1065", - "to": "1575", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1644", - "label": "638896 (-) 8327", - "from": "1064", - "to": "1582", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1643", - "label": "495541 (-) 500848", - "from": "1063", - "to": "1296", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1642", - "label": "1386423 (-) 418544", - "from": "1062", - "to": "1416", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1641", - "label": "1480635 (-) 144608", - "from": "1061", - "to": "1267", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1640", - "label": "1302460 (-) 13134", - "from": "1060", - "to": "1379", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1639", - "label": "159681 (-) 133757", - "from": "1059", - "to": "1456", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1638", - "label": "1155013 (-) 673684", - "from": "1058", - "to": "1070", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1637", - "label": "550854 (-) 549816", - "from": "1057", - "to": "1345", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1636", - "label": "409544 (-) 439838", - "from": "1056", - "to": "1176", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1635", - "label": "409544 (-) 409434", - "from": "1056", - "to": "1090", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1634", - "label": "79817 (-) 1275213", - "from": "1055", - "to": "1233", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1633", - "label": "79817 (-) 970337", - "from": "1055", - "to": "1160", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1632", - "label": "309196 (-) 299541", - "from": "1054", - "to": "1491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1631", - "label": "1660881 (-) 2131812", - "from": "1053", - "to": "1087", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1630", - "label": "296913 (-) 296562", - "from": "1052", - "to": "1154", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1629", - "label": "1660883 (-) 1660808", - "from": "1051", - "to": "1075", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1628", - "label": "1660883 (-) 924543", - "from": "1051", - "to": "1366", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1627", - "label": "1660883 (-) 1660881", - "from": "1051", - "to": "1053", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1626", - "label": "1660883 (-) 1660882", - "from": "1051", - "to": "1049", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1625", - "label": "1660884 (-) 1660883", - "from": "1050", - "to": "1051", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1624", - "label": "1660882 (-) 2131812", - "from": "1049", - "to": "1087", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1623", - "label": "374742 (-) 369394", - "from": "1048", - "to": "1415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1622", - "label": "374743 (-) 369394", - "from": "1047", - "to": "1415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1621", - "label": "874464 (-) 877267", - "from": "1046", - "to": "1426", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1620", - "label": "374754 (-) 369394", - "from": "1045", - "to": "1415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1619", - "label": "958434 (-) 14012", - "from": "1044", - "to": "1137", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1618", - "label": "55277 (-) 743241", - "from": "1043", - "to": "1093", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1617", - "label": "1337326 (-) 1338271", - "from": "1042", - "to": "1356", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1616", - "label": "874479 (-) 877267", - "from": "1041", - "to": "1426", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1615", - "label": "1488882 (-) 144608", - "from": "1040", - "to": "1267", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1614", - "label": "49150 (-) 637566", - "from": "1039", - "to": "1455", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/Expression of PERIOD-1.json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/Expression of PERIOD-1.json deleted file mode 100644 index 5781069068..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/Expression of PERIOD-1.json +++ /dev/null @@ -1,11886 +0,0 @@ -{ - "nodes": [ - { - "id": "8859", - "label": "Dissociation of phosphorylated 4EBP1 from eIF4E", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8858", - "label": "P2RY11 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8857", - "label": "EIF4E [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8856", - "label": "eIF4E:4E-BP1-P [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8855", - "label": "JAG1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8854", - "label": "Ade-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8853", - "label": "p-S423,S425-SMAD3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8852", - "label": "PARN deadenylates mRNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8851", - "label": "Release of PLCG from FCGR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8850", - "label": "Bradykinin receptor:Bradykinin [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8849", - "label": "GGC-RAB7B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8848", - "label": "Retinoic acid activates HOXB4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8847", - "label": "Disintegration of matrix layer", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "8846", - "label": "Ubiquitinated IkB is degraded", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8845", - "label": "NF-kappaB p50,p65,c-Rel:ub-p-IKB [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "8844", - "label": "NF-kappaB p65:p65:ub-p-IkB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8843", - "label": "Degradation of CD8", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8842", - "label": "Exocytosis of Insulin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8841", - "label": "SUMO1:p-T4827-HERC2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8840", - "label": "TFIIH [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8839", - "label": "TGFA(24-98) [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8838", - "label": "5HT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8837", - "label": "TGFB1:TGFBR2:p-TGFBR1 [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8836", - "label": "IL1B(117-269) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8835", - "label": "Docking of Mature Histone mRNA complex:TAP at the NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8834", - "label": "p-S25,S1778-TP53BP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8833", - "label": "AREG(101-187) [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8832", - "label": "CTNNB1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8831", - "label": "NPS [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8830", - "label": "CREBBP [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8829", - "label": "CBL neddylates TGFBR2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8828", - "label": "TGFBR2 phosphorylates TGFBR1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8827", - "label": "NEDD8-AcM-UBE2M [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8826", - "label": "TGFB1:TGFBR2:TGFBR1 [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8825", - "label": "PP2A [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8824", - "label": "SIN3A [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8823", - "label": "APC is K63-polyubiquitinated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8822", - "label": "Loading of acetylcholine in synaptic vesicles", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8821", - "label": "COP9 signalosome deneddylates cytosolic CRL E3 ubiquitin ligase complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8820", - "label": "(d)AMP, (d)GMP, or (d)IMP + H2O => (deoxy)adenosine, (deoxy)guanosine, or (deoxy)inosine + orthophosphate (NT5C1A)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8819", - "label": "PPP1R3C [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8818", - "label": "Hist [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8817", - "label": "AGTR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8816", - "label": "KLF4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8815", - "label": "RNF152 [lysosomal membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8814", - "label": "Hypophosphorylation of RNA Pol II CTD by FCP1P protein", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8813", - "label": "NPSR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8812", - "label": "TGFBR2 recruits TGFBR1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8811", - "label": "PP2A (A:C) [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8810", - "label": "NF-kappaB p65:p65 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8809", - "label": "FKBP1A [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8808", - "label": "RASA1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8807", - "label": "FGF18 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8806", - "label": "PP1 dephosphorylates TGFBR1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8805", - "label": "Docking of Mature Replication Dependent Histone mRNA with the NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8804", - "label": "NF-kappaB p50:c-Rel:ub-p-IKB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8803", - "label": "Exocytosis of ficolin-rich granule lumen proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8802", - "label": "Regulation of protein ISGylation by ISG15 deconjugating enzyme USP18", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8801", - "label": "CCNH [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8800", - "label": "Transfer of SUMO2 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8799", - "label": "UBE2I [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8798", - "label": "SEC31A:SEC13:SEC23IP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8797", - "label": "Interleukin-1 family are secreted", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8796", - "label": "Interleukin-1 family [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "8795", - "label": "PTPNs gene transcription and translation", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8794", - "label": "IL18 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8793", - "label": "PPIA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8792", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "8791", - "label": "SUMO3:UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8790", - "label": "IL8 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8789", - "label": "p-4Y-PLCG1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8788", - "label": "Dynein:Dynactin:microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8787", - "label": "Expression of PERIOD-1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "8786", - "label": "HERC5 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8785", - "label": "PAXIP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8784", - "label": "UBE2E1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8783", - "label": "Expression of NPAS2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8782", - "label": "FOSB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8781", - "label": "UMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8780", - "label": "Docking of the Mature intronless derived transcript derived mRNA, TAP and Aly/Ref at the NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8779", - "label": "Interleukin-1 family precursors are cleaved by caspase-1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8778", - "label": "CCR4-NOT complex deadenylates mRNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8777", - "label": "Transfer of SUMO3 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8776", - "label": "NFKB1(1-433):RELA [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8775", - "label": "Ura-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8774", - "label": "Thy-dRib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8773", - "label": "Cyt-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8772", - "label": "(d)CMP, TMP, or (d)UMP + H2O => (deoxy)cytidine, thymidine, or (deoxy)uridine + orthophosphate (NT5C3)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8771", - "label": "RNF111 ubiquitinates SUMOylated XPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8770", - "label": "Expression of CEBPB in adipogenesis", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8769", - "label": "Ub,SUMO:XPC:RAD23:CETN2:Open bubble-dsDNA:PAR-UV-DDB:TFIIH Core:XPA:PAR-PARP1, PAR-PARP2:CHD1L [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8768", - "label": "Beta-catenin is released from the destruction complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8767", - "label": "K63polyUb-APC [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8766", - "label": "CREM isoform 6 (ICER1) [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8765", - "label": "NF-kappaB p50:c-Rel [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8764", - "label": "PIP3:BTK:G beta-gamma complex dissociates to Active BTK, PIP3 and G beta-gamma complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8763", - "label": "IL1B(1-269) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8762", - "label": "PTPN11 dephosphorylates RUNX1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8761", - "label": "ADR, NAd [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "8760", - "label": "hp-IRAK1:3xK63-polyUb-TRAF6:3xUBE2N:UBE2V1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8759", - "label": "NAd [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8758", - "label": "ISGylated host proteins [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8757", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8756", - "label": "RUNX1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8755", - "label": "THBS1 gene transcription is stimulated by the complex containing RUNX1, PRMT1 and GATA1 and inhibited by the complex of RUNX1, SIN3A and PRMT6", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8754", - "label": "THBS1 trimer [platelet alpha granule lumen]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8753", - "label": "TGFA(24-98) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8752", - "label": "S1P [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8751", - "label": "MMPs cleave HB-EGF", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8750", - "label": "NEDD8 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8749", - "label": "Ac-CoA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8748", - "label": "p-4Y-PLCG1 dissociates from activated FGFR3 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8747", - "label": "NICD1 Q2440* [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8746", - "label": "NICD1 Q2395* [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8745", - "label": "NICD1 P2474Afs*4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8744", - "label": "NICD1 P2514Rfs*4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8743", - "label": "GRB2-1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8742", - "label": "NICD1 PEST domain mutants translocate from cytosol to nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8741", - "label": "NICD1 PEST Domain Mutants [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "8740", - "label": "NICD1 Q2440* [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8739", - "label": "NICD1 P2474Afs*4 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8738", - "label": "NF-KappaB p50:p50:ub-p-IKBA [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8737", - "label": "NF-kappaB p50:p50 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8736", - "label": "NICD1 is phosphorylated by CDK8", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8735", - "label": "NICD1 Q2395* [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8734", - "label": "NICD1 P2514Rfs*4 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8733", - "label": "NEXT1 PEST domain mutants are cleaved to produce NICD1 PEST domain mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8732", - "label": "NEXT1 PEST domain mutants [plasma membrane]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "8731", - "label": "NEXT1 P2514Rfs*4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8730", - "label": "SAR1B:GTP [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8729", - "label": "2xviral dsRNA:2xK63polyUb-DDX58:2xRNF135,TRIM25:2xATP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8728", - "label": "NEXT1 Q2440* [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8727", - "label": "NEXT1 Q2395* [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8726", - "label": "p-4Y-PLCG1 dissociates from activated FGFR3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8725", - "label": "NEXT1 P2474Afs*4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8724", - "label": "NF-kappaB p50:p65:ub-p-IKB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8723", - "label": "Ade-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8722", - "label": "NOTCH1 HD+PEST domain mutants are cleaved by ADAM10/17 irrespective of ligand binding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8721", - "label": "LPAR1,2,3,5:LPA [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8720", - "label": "NF-kB migrates to the nucleus and turns on transcription", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8719", - "label": "IL1B [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8718", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon ALPK1:ADP-heptose stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "8717", - "label": "RUNX3 translocates to the nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8716", - "label": "NF-kappaB p50,p65,c-Rel dimer [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "8715", - "label": "Dissociation of phosphorylated PLCG1 from ligand-responsive p-6Y-EGFR mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8714", - "label": "AGTR1 [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8713", - "label": "PPTN11 dephosphorylates SPRY2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8712", - "label": "AVP(20-28) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8711", - "label": "Phosphorylated SMAD2/3 dissociates from TGFBR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8710", - "label": "Disassembly of COPII coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8709", - "label": "CEBPB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8708", - "label": "SCF-beta-TrCP ubiquitinylates IkB", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8707", - "label": "GYS1 catalyzes the incorporation of phosphoglucose into glycogen-GYG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8706", - "label": "EP300 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8705", - "label": "COPII vesicle with MHC class I [ER to Golgi transport vesicle membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8704", - "label": "PF4 gene transcription is stimulated by RUNX1:CBFB", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8703", - "label": "PF4(48-101) [platelet alpha granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8702", - "label": "Vesicle budding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "8701", - "label": "PTPN11 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8700", - "label": "CDK8 phosphorylates NICD1 PEST domain mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8699", - "label": "Estrogen-responsive MYC gene expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8698", - "label": "Budding of COPII coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8697", - "label": "COPI vesicle uncoating at the ER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8696", - "label": "RAB1:GTP:coatomer:p24 dimers:SEC22B:cargo:NBAS:RINT1:ZW10:STX18:USE1L:BNIP1 [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8695", - "label": "PF4(32-101) [platelet alpha granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8694", - "label": "SOCS2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8693", - "label": "RAB6:GTP displaces PAFAH1B1 from dynein:dynactin complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8692", - "label": "NICD1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8691", - "label": "ADAM10/17 cleaves ligand-bound NOTCH1 PEST domain mutants to produce NEXT1 PEST domain mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8690", - "label": "TGFA precursor [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8689", - "label": "ADORA2B:Ade-Rib:GsGTP dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8688", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8687", - "label": "Dissociation of Rho GTP:GDP from GDI complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8686", - "label": "Phosphorylation of 4E-BP1 by activated mTORC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8685", - "label": "AREG precursor [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8684", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon TLR3 stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "8683", - "label": "Deacetylation of cleaved cohesin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8682", - "label": "Cleaved Cohesin:PDS5:WAPAL [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8681", - "label": "SIK1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8680", - "label": "PGE2 [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8679", - "label": "RHOA:GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8678", - "label": "The Ligand:GPCR:Gq complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8677", - "label": "MON1:CCZ1 exchanges GTP for GDP on RAB7", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8676", - "label": "CASR:Ca2+ [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8675", - "label": "OTUD5 deubiquitinates TRAF3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8674", - "label": "Active PLC-gamma1 dissociates from EGFR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8673", - "label": "CXCR4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8672", - "label": "ARHGDIA [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8671", - "label": "p-4Y-PLCG1 dissociates from activated FGFR2 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8670", - "label": "TGFB1 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8669", - "label": "AcCho [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8668", - "label": "Cho is acetylated to AcCho by CHAT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8667", - "label": "(d)CMP, TMP, or (d)UMP + H2O => (deoxy)cytidine, thymidine, or (deoxy)uridine + orthophosphate (NT5C1A)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8666", - "label": "MCHR1,MCHR2:PMCH(147-165) [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8665", - "label": "RNF4 ubiquitinates MDC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8664", - "label": "AREG(101-187) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8663", - "label": "NMUR1,NMUR2:NMU [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8662", - "label": "TMP, uridine 2', 3', or 5' monophosphates, or deoxyuridine 3' or 5' monophosphates + H2O => thymidine or (deoxy)uridine + orthophosphate [NT5C]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8661", - "label": "p-BMAL1:p-CLOCK,NPAS2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8660", - "label": "NICD1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8659", - "label": "NICD1 traffics to nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8658", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon TLR stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "8657", - "label": "G-protein beta-gamma complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8656", - "label": "Exocytosis of specific granule membrane proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8655", - "label": "FGL2 [ficolin-1-rich granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8654", - "label": "NEXT1 is cleaved to produce NICD1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8653", - "label": "BTRC [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8652", - "label": "Vesicle is tethered through binding GOLGA2:GORASP1, GOLGB1 and the COG complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8651", - "label": "DNA DNA DSBs:p-MRN:p-S1981,Ac-K3016-ATM:KAT5:K63PolyUb-K14,K16,p-S139-H2AFX,Me2K21-HIST1H4A-Nucleosome:SUMO2:K1840,p-5T-MDC1:p-S102-WHSC1:RNF8:Zn2+:SUMO1:p-T4827-HERC2:UBE2N:UBE2V2:RNF168:PIAS4:p-S25,S1778-TP53BP1:p-5S,2T-BRCA1-A complex [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8650", - "label": "RAB1:GTP:USO1:coatomer:PalmC-YKT6:p24 dimers:cargo:spectrin:anykrin [transport vesicle]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8649", - "label": "Release of p-PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8648", - "label": "Stimulation of IL8 transcription in senescent cells", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8647", - "label": "G-protein alpha (i):GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8646", - "label": "Dissociation of phosphorylated PLC-gamma 1 from p-EGFRvIII mutant", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8645", - "label": "p-4Y-PLCG1 dissociates from activated FGFR2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8644", - "label": "Negative regulation of DDX58/IFIH1 signaling by RNF216", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8643", - "label": "Retinoic acid activates HOXB1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8642", - "label": "GDI1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8641", - "label": "RNF8:Zn2+ [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8640", - "label": "KIFC1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8639", - "label": "NF-kappaB translocates from the cytosol to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8638", - "label": "K63polyUb [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "8637", - "label": "K48PolyUb-K21,22-p-S32,36-IkBA:NF-kB complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8636", - "label": "HDAC3 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8635", - "label": "Separation of sister chromatids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8634", - "label": "Release of E3 from polyubiquitinated substrate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8633", - "label": "Fatty acid ligands activate PPARA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8632", - "label": "NEXT1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8631", - "label": "Equilibrative transport (export) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8630", - "label": "Hypophosphorylation of RNA Pol II CTD by FCP1P protein", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8629", - "label": "HBEGF(63-148) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8628", - "label": "AcCho [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8627", - "label": "p-4Y-PLCG1 dissociates from activated FGFR4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8626", - "label": "p-Y1105-ARHGAP35 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8625", - "label": "p190RhoGEF exchanges GTP for GDP on RHOA, activating it", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8624", - "label": "JAG1 gene expression is inhibited by RUNX3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8623", - "label": "Phosphorylation of CTLA-4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8622", - "label": "Fusion of viral membrane with host cell membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8621", - "label": "Viral core surrounded by Matrix layer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8620", - "label": "ZFYVE9-1 [early endosome membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8619", - "label": "UBE2N:UBE2V1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8618", - "label": "p-4Y-PLCG1 dissociates from activated FGFR4 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8617", - "label": "BMAL1:CLOCK,NPAS2 heterodimer is phosphorylated and translocates to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8616", - "label": "DNA DSB:p-MRN:p-S1981,Ac-K3016-ATM:KAT5 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8615", - "label": "myristoylated nef [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8614", - "label": "SPRY2 binds CBL", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8613", - "label": "Expression of BMAL1 (ARNTL).", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8612", - "label": "p115-RhoGEF activation of RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8611", - "label": "ARFGAPs stimulate ARF GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8610", - "label": "Ca2+ [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8609", - "label": "GDI2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8608", - "label": "Complex of NOTCH1 with its ligand is cleaved to produce NEXT1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8607", - "label": "PI(3,4,5)P3 [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8606", - "label": "The Ligand:GPCR:Gi complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8605", - "label": "NOTCH1 HD domain mutants are cleaved to produce NEXT1 irrespective of ligand binding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8604", - "label": "MyrG-p-Y419-SRC [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8603", - "label": "MYC [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8602", - "label": "The Ligand:GPCR:Gs complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "8601", - "label": "SNAP25 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8600", - "label": "PTHLH [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8599", - "label": "Recovery of RNA synthesis after TC-NER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8598", - "label": "Dissociation of clathrin-associated proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8597", - "label": "NFKB1:RELA translocates from the cytosol to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8596", - "label": "NFKB1(1-433):RELA [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8595", - "label": "SAR1 Activation And Membrane Binding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8594", - "label": "SAR1B:GDP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8593", - "label": "SAR1B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8592", - "label": "FPR2:FPR2 ligands [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8591", - "label": "FPR2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8590", - "label": "PIAS4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8589", - "label": "GPR39 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8588", - "label": "26S proteasome processes K48PolyUb-K21,22-p-S32,36-IkBA:NF-kB complex to form NF-kB complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8587", - "label": "Transfer of SUMO1 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8586", - "label": "Release of PLCG from FCGR3A", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8585", - "label": "Loss of SAR1B GTPase", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8584", - "label": "Dissociation of the Gi alpha:G olf complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8583", - "label": "TGFA precursor [ER to Golgi transport vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8582", - "label": "GNAL [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8581", - "label": "ARHGAP35 stimulates RHOA GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8580", - "label": "PIAS4 SUMOylates NR4A2 with SUMO2,3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8579", - "label": "DDX58 is K63 polyubiquitinated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8578", - "label": "AREG precursor [ER to Golgi transport vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8577", - "label": "2x DDX58 ligand:2x DDX58:2xATP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8576", - "label": "NPAS2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8575", - "label": "RNF152 polyubiquitinates RRAGA", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8574", - "label": "ARNTL [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8573", - "label": "ISGylation of host proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8572", - "label": "UBE2N:UBE2V2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8571", - "label": "p-S102-WHSC1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8570", - "label": "viral dsRNA binds DDX58", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8569", - "label": "RhoA is activated by nucleotide exchange and inhibits axonal growth", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8568", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8567", - "label": "GYS2 catalyzes the incorporation of phosphoglucose into glycogen-GYG2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8566", - "label": "RHOA:GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8565", - "label": "Transfer of NEDD8 to AcM-UBE2M", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8564", - "label": "NGEF exchanges GTP for GDP on RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8563", - "label": "SEC13 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8562", - "label": "TRAF3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8561", - "label": "Caspase-8 cleaves IL1B precursor", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8560", - "label": "TRAF6 binding leads to IRAK1:TRAF6 release", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8559", - "label": "Association of Ku heterodimer with ends of DNA double-strand break", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8558", - "label": "NCOR1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8557", - "label": "p-2S,S376,T,T209,T387-IRAK1:TRAF6 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8556", - "label": "p-SPHK1 phosphorylates sphingosine to sphingosine 1-phosphate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8555", - "label": "NR4A2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8554", - "label": "RASA1 stimulates RAS GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8553", - "label": "PIAS4 SUMOylates MDC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8552", - "label": "CGA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8551", - "label": "SUMO2:UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8550", - "label": "GCG(53-81) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8549", - "label": "CBL [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8548", - "label": "SRC autophosphorylation is positively regulated by InlA-bound CDH1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8547", - "label": "Cap Binding Complex (CBC) [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8546", - "label": "NCBP2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8545", - "label": "viral dsRNA:IFIH1, viral dsRNA:K63polyUb-DDX58:MAVS [mitochondrial outer membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8544", - "label": "The p75NTR:NgR:MDGI complex reduces RHOA-GDI activity, displacing RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8543", - "label": "Retrograde vesicle is tethered at the ER by the NRZ complex and t-SNAREs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8542", - "label": "TNFRSF1B [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8541", - "label": "AP-2 Complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8540", - "label": "NCBP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8539", - "label": "Overexpressed HIST1H2AC and ESR1:ESTG bind MYC and BCL2 genes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8538", - "label": "UBE2N [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8537", - "label": "Nef mediated disruption of CD4:Lck Complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8536", - "label": "Degradation of CD4", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8535", - "label": "Release of acetylcholine at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8534", - "label": "BTRC:CUL1:SKP1 (SCF-beta-TrCP1) ubiquitinylates PER proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8533", - "label": "TRAF6 is K63 poly-ubiquitinated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8532", - "label": "Acetylcholine Loaded Synaptic Vesicle [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8531", - "label": "Retinoic acid activates HOXD4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8530", - "label": "SUMO1:C93-UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8529", - "label": "G-proteins dissociate from plasma-membrane estrogen receptors", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8528", - "label": "RNF168 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8527", - "label": "TGFBR2 is recruited to tight junctions after TGF-beta stimulation", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8526", - "label": "Retinoic acid activates HOXA1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8525", - "label": "CSNK1D phosphorylates SEC23", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8524", - "label": "cIAP1,2 ubiquitinates NIK in cIAP1,2:TRAF2::TRAF3:NIK", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8523", - "label": "beta-TRCP ubiquitinates IkB-alpha in p-S32,33-IkB-alpha:NF-kB complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8522", - "label": "TNFRSF1B [specific granule membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "8521", - "label": "GMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8520", - "label": "RUNX3 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8519", - "label": "MYC gene expression is enhanced by E2F1, STAT3, and CEBPB and repressed by CEBPA", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8518", - "label": "Exocytosis of platelet alpha granule contents", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8517", - "label": "Histone H2A [nucleoplasm]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "8516", - "label": "NMUR2:NMS [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8515", - "label": "UBE2N:UBE2V1 dissociates from hp-IRAK1:3xK63-polyUb-TRAF6:3xUBE2N:UBE2V1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8514", - "label": "mature mRNA (eukaryotic, capped and deadenylated) [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "8513", - "label": "Exosome Complex hydrolyzes mRNA by 3' to 5' exoribonuclease digestion", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8512", - "label": "K63PolyUb:K14,K16,p-S139-H2AFX,Me2K21-HIST1H4A-Nucleosome [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8511", - "label": "PER1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8510", - "label": "LCK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8509", - "label": "coatomer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8508", - "label": "SUMOylation of XPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8507", - "label": "PAFAH1B1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - } - ], - "edges": [ - { - "id": "9341", - "label": "572416 (-) 572418", - "from": "8859", - "to": "8857", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9340", - "label": "304129 (-) 299541", - "from": "8858", - "to": "8678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9339", - "label": "572418 (-) 1031197", - "from": "8857", - "to": "8852", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9338", - "label": "572418 (-) 994566", - "from": "8857", - "to": "8778", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9337", - "label": "572417 (-) 572416", - "from": "8856", - "to": "8859", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9336", - "label": "427012 (-) 1488375", - "from": "8855", - "to": "8691", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9335", - "label": "427012 (-) 426722", - "from": "8855", - "to": "8608", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9334", - "label": "427012 (-) 1488252", - "from": "8855", - "to": "8722", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9333", - "label": "427012 (-) 1488616", - "from": "8855", - "to": "8605", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9332", - "label": "492556 (-) 1684105", - "from": "8854", - "to": "8631", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9331", - "label": "419867 (-) 960695", - "from": "8853", - "to": "8795", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9330", - "label": "1031197 (-) 992230", - "from": "8852", - "to": "8514", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9329", - "label": "289822 (-) 94950", - "from": "8851", - "to": "8607", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9328", - "label": "305190 (-) 299541", - "from": "8850", - "to": "8678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9327", - "label": "1882150 (-) 2098710", - "from": "8849", - "to": "8677", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9326", - "label": "1341480 (-) 320330", - "from": "8848", - "to": "8558", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9325", - "label": "1412138 (-) 1411783", - "from": "8847", - "to": "8615", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9324", - "label": "616491 (-) 550154", - "from": "8846", - "to": "8776", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9323", - "label": "616491 (-) 616607", - "from": "8846", - "to": "8810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9322", - "label": "616491 (-) 616843", - "from": "8846", - "to": "8716", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9321", - "label": "616491 (-) 616818", - "from": "8846", - "to": "8737", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9320", - "label": "616491 (-) 616732", - "from": "8846", - "to": "8765", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9319", - "label": "616492 (-) 616491", - "from": "8845", - "to": "8846", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9318", - "label": "616493 (-) 616491", - "from": "8844", - "to": "8846", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9317", - "label": "1473583 (-) 1411783", - "from": "8843", - "to": "8615", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9316", - "label": "1668145 (-) 251616", - "from": "8842", - "to": "8610", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9315", - "label": "54322 (-) 743241", - "from": "8841", - "to": "8559", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9314", - "label": "1226805 (-) 1243896", - "from": "8840", - "to": "8599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9313", - "label": "2131002 (-) 2131705", - "from": "8839", - "to": "8598", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9312", - "label": "299067 (-) 299541", - "from": "8838", - "to": "8678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9311", - "label": "421954 (-) 951458", - "from": "8837", - "to": "8806", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9310", - "label": "955460 (-) 955573", - "from": "8836", - "to": "8797", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9309", - "label": "1952840 (-) 998275", - "from": "8835", - "to": "8547", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9308", - "label": "62537 (-) 743241", - "from": "8834", - "to": "8559", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9307", - "label": "2131021 (-) 2131705", - "from": "8833", - "to": "8598", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9306", - "label": "703570 (-) 1410943", - "from": "8832", - "to": "8548", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9305", - "label": "304210 (-) 299541", - "from": "8831", - "to": "8678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9304", - "label": "318548 (-) 324862", - "from": "8830", - "to": "8783", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9303", - "label": "950359 (-) 569211", - "from": "8829", - "to": "8549", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9302", - "label": "421977 (-) 421954", - "from": "8828", - "to": "8837", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9301", - "label": "950362 (-) 950359", - "from": "8827", - "to": "8829", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9300", - "label": "421979 (-) 421977", - "from": "8826", - "to": "8828", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9299", - "label": "46171 (-) 703760", - "from": "8825", - "to": "8768", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9298", - "label": "320604 (-) 1275213", - "from": "8824", - "to": "8755", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9297", - "label": "712804 (-) 703763", - "from": "8823", - "to": "8767", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9296", - "label": "1084519 (-) 1084321", - "from": "8822", - "to": "8532", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9295", - "label": "1911913 (-) 978264", - "from": "8821", - "to": "8750", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9294", - "label": "500848 (-) 492556", - "from": "8820", - "to": "8854", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9293", - "label": "916596 (-) 917308", - "from": "8819", - "to": "8567", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9292", - "label": "916596 (-) 916923", - "from": "8819", - "to": "8707", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9291", - "label": "299127 (-) 299541", - "from": "8818", - "to": "8678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9290", - "label": "314489 (-) 299541", - "from": "8817", - "to": "8678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9289", - "label": "160903 (-) 1382672", - "from": "8816", - "to": "8770", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9288", - "label": "1867917 (-) 1871665", - "from": "8815", - "to": "8575", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9287", - "label": "1417364 (-) 1226805", - "from": "8814", - "to": "8840", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9286", - "label": "304276 (-) 299541", - "from": "8813", - "to": "8678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9285", - "label": "422042 (-) 421979", - "from": "8812", - "to": "8826", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9284", - "label": "571548 (-) 571803", - "from": "8811", - "to": "8713", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9283", - "label": "616607 (-) 617080", - "from": "8810", - "to": "8639", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9282", - "label": "422049 (-) 422042", - "from": "8809", - "to": "8812", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9281", - "label": "422049 (-) 573953", - "from": "8809", - "to": "8686", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9280", - "label": "565410 (-) 1200984", - "from": "8808", - "to": "8556", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9279", - "label": "133281 (-) 1484122", - "from": "8807", - "to": "8748", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9278", - "label": "133281 (-) 1485345", - "from": "8807", - "to": "8671", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9277", - "label": "133281 (-) 1485501", - "from": "8807", - "to": "8618", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9276", - "label": "133281 (-) 289149", - "from": "8807", - "to": "8726", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9275", - "label": "133281 (-) 291429", - "from": "8807", - "to": "8645", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9274", - "label": "133281 (-) 291483", - "from": "8807", - "to": "8627", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9273", - "label": "951458 (-) 421558", - "from": "8806", - "to": "8620", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9272", - "label": "1952931 (-) 998276", - "from": "8805", - "to": "8546", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9271", - "label": "1952931 (-) 998290", - "from": "8805", - "to": "8540", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9270", - "label": "616621 (-) 616491", - "from": "8804", - "to": "8846", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9269", - "label": "1116334 (-) 593090", - "from": "8803", - "to": "8793", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9268", - "label": "1793199 (-) 51443", - "from": "8802", - "to": "8784", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9267", - "label": "92336 (-) 1243896", - "from": "8801", - "to": "8599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9266", - "label": "923825 (-) 77681", - "from": "8800", - "to": "8551", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9265", - "label": "64690 (-) 1886473", - "from": "8799", - "to": "8777", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9264", - "label": "64690 (-) 923825", - "from": "8799", - "to": "8800", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9263", - "label": "64690 (-) 67353", - "from": "8799", - "to": "8587", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9262", - "label": "887987 (-) 888278", - "from": "8798", - "to": "8702", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9261", - "label": "955573 (-) 952711", - "from": "8797", - "to": "8719", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9260", - "label": "955574 (-) 955573", - "from": "8796", - "to": "8797", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9259", - "label": "960695 (-) 960987", - "from": "8795", - "to": "8701", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9258", - "label": "955580 (-) 955573", - "from": "8794", - "to": "8797", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9257", - "label": "593090 (-) 1411759", - "from": "8793", - "to": "8622", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9256", - "label": "243911 (-) 2680", - "from": "8792", - "to": "8638", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9255", - "label": "1238218 (-) 1238006", - "from": "8791", - "to": "8508", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9254", - "label": "333006 (-) 331494", - "from": "8790", - "to": "8606", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9253", - "label": "144608 (-) 151325", - "from": "8789", - "to": "8586", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9252", - "label": "144608 (-) 289822", - "from": "8789", - "to": "8851", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9251", - "label": "875746 (-) 2111986", - "from": "8788", - "to": "8693", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9250", - "label": "1337573 (-) 1337326", - "from": "8787", - "to": "8511", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9249", - "label": "962799 (-) 962359", - "from": "8786", - "to": "8570", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9248", - "label": "962799 (-) 1794867", - "from": "8786", - "to": "8573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9247", - "label": "743664 (-) 1341480", - "from": "8785", - "to": "8848", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9246", - "label": "743664 (-) 1341349", - "from": "8785", - "to": "8531", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9245", - "label": "743664 (-) 1341038", - "from": "8785", - "to": "8643", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9244", - "label": "743664 (-) 1340336", - "from": "8785", - "to": "8526", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9243", - "label": "51443 (-) 243911", - "from": "8784", - "to": "8792", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9242", - "label": "51443 (-) 391560", - "from": "8784", - "to": "8718", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9241", - "label": "51443 (-) 248331", - "from": "8784", - "to": "8684", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9240", - "label": "51443 (-) 616002", - "from": "8784", - "to": "8658", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9239", - "label": "324862 (-) 321328", - "from": "8783", - "to": "8576", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9238", - "label": "660736 (-) 2062814", - "from": "8782", - "to": "8699", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9237", - "label": "504065 (-) 504078", - "from": "8781", - "to": "8772", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9236", - "label": "504065 (-) 504360", - "from": "8781", - "to": "8667", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9235", - "label": "504065 (-) 504377", - "from": "8781", - "to": "8662", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9234", - "label": "1953027 (-) 998275", - "from": "8780", - "to": "8547", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9233", - "label": "955652 (-) 955580", - "from": "8779", - "to": "8794", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9232", - "label": "955652 (-) 955574", - "from": "8779", - "to": "8796", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9231", - "label": "955652 (-) 955460", - "from": "8779", - "to": "8836", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9230", - "label": "994566 (-) 992230", - "from": "8778", - "to": "8514", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9229", - "label": "1886473 (-) 1238218", - "from": "8777", - "to": "8791", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9228", - "label": "550154 (-) 617080", - "from": "8776", - "to": "8639", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9227", - "label": "550154 (-) 550650", - "from": "8776", - "to": "8597", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9226", - "label": "550154 (-) 646528", - "from": "8776", - "to": "8720", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9225", - "label": "504075 (-) 1682942", - "from": "8775", - "to": "8688", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9224", - "label": "504075 (-) 1684283", - "from": "8775", - "to": "8568", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9223", - "label": "504076 (-) 1684283", - "from": "8774", - "to": "8568", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9222", - "label": "504076 (-) 1682942", - "from": "8774", - "to": "8688", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9221", - "label": "504077 (-) 1682942", - "from": "8773", - "to": "8688", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9220", - "label": "504077 (-) 1684283", - "from": "8773", - "to": "8568", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9219", - "label": "504078 (-) 504076", - "from": "8772", - "to": "8774", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9218", - "label": "504078 (-) 504077", - "from": "8772", - "to": "8773", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9217", - "label": "504078 (-) 504075", - "from": "8772", - "to": "8775", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9216", - "label": "1237263 (-) 55093", - "from": "8771", - "to": "8572", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9215", - "label": "1382672 (-) 441773", - "from": "8770", - "to": "8709", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9214", - "label": "1237265 (-) 1237263", - "from": "8769", - "to": "8771", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9213", - "label": "703760 (-) 703570", - "from": "8768", - "to": "8832", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9212", - "label": "703763 (-) 703760", - "from": "8767", - "to": "8768", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9211", - "label": "1337624 (-) 1337573", - "from": "8766", - "to": "8787", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9210", - "label": "616732 (-) 617080", - "from": "8765", - "to": "8639", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9209", - "label": "1522976 (-) 293444", - "from": "8764", - "to": "8657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9208", - "label": "955707 (-) 955652", - "from": "8763", - "to": "8779", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9207", - "label": "955707 (-) 1156931", - "from": "8763", - "to": "8561", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9206", - "label": "1272124 (-) 1265996", - "from": "8762", - "to": "8756", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9205", - "label": "298309 (-) 299541", - "from": "8761", - "to": "8678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9204", - "label": "241990 (-) 958434", - "from": "8760", - "to": "8515", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9203", - "label": "298310 (-) 299541", - "from": "8759", - "to": "8678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9202", - "label": "1793352 (-) 1793199", - "from": "8758", - "to": "8802", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9201", - "label": "298315 (-) 299541", - "from": "8757", - "to": "8678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9200", - "label": "1265996 (-) 1275213", - "from": "8756", - "to": "8755", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9199", - "label": "1265996 (-) 1275346", - "from": "8756", - "to": "8704", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9198", - "label": "1275213 (-) 1275214", - "from": "8755", - "to": "8754", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9197", - "label": "1275214 (-) 1782717", - "from": "8754", - "to": "8518", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9196", - "label": "101711 (-) 1490324", - "from": "8753", - "to": "8715", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9195", - "label": "101711 (-) 1490531", - "from": "8753", - "to": "8646", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9194", - "label": "101711 (-) 291357", - "from": "8753", - "to": "8674", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9193", - "label": "554324 (-) 554327", - "from": "8752", - "to": "8751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9192", - "label": "554327 (-) 98964", - "from": "8751", - "to": "8629", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9191", - "label": "978264 (-) 1916734", - "from": "8750", - "to": "8565", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9190", - "label": "193879 (-) 1083941", - "from": "8749", - "to": "8668", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9189", - "label": "1484122 (-) 144608", - "from": "8748", - "to": "8789", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9188", - "label": "1488222 (-) 1488347", - "from": "8747", - "to": "8700", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9187", - "label": "1488225 (-) 1488347", - "from": "8746", - "to": "8700", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9186", - "label": "1488226 (-) 1488347", - "from": "8745", - "to": "8700", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9185", - "label": "1488228 (-) 1488347", - "from": "8744", - "to": "8700", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9184", - "label": "132458 (-) 1214047", - "from": "8743", - "to": "8649", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9183", - "label": "1488236 (-) 1488225", - "from": "8742", - "to": "8746", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9182", - "label": "1488236 (-) 1488228", - "from": "8742", - "to": "8744", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9181", - "label": "1488236 (-) 1488222", - "from": "8742", - "to": "8747", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9180", - "label": "1488236 (-) 1488226", - "from": "8742", - "to": "8745", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9179", - "label": "1488238 (-) 1488236", - "from": "8741", - "to": "8742", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9178", - "label": "1488239 (-) 1488236", - "from": "8740", - "to": "8742", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9177", - "label": "1488240 (-) 1488236", - "from": "8739", - "to": "8742", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9176", - "label": "616817 (-) 616491", - "from": "8738", - "to": "8846", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9175", - "label": "616818 (-) 617080", - "from": "8737", - "to": "8639", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9174", - "label": "1279345 (-) 318548", - "from": "8736", - "to": "8830", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9173", - "label": "1279345 (-) 321983", - "from": "8736", - "to": "8706", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9172", - "label": "1488242 (-) 1488236", - "from": "8735", - "to": "8742", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9171", - "label": "1488241 (-) 1488236", - "from": "8734", - "to": "8742", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9170", - "label": "1488243 (-) 1488239", - "from": "8733", - "to": "8740", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9169", - "label": "1488243 (-) 1488240", - "from": "8733", - "to": "8739", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9168", - "label": "1488243 (-) 1488241", - "from": "8733", - "to": "8734", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9167", - "label": "1488243 (-) 1488242", - "from": "8733", - "to": "8735", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9166", - "label": "1488243 (-) 1488238", - "from": "8733", - "to": "8741", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9165", - "label": "1488245 (-) 1488243", - "from": "8732", - "to": "8733", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9164", - "label": "1488246 (-) 1488243", - "from": "8731", - "to": "8733", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9163", - "label": "883065 (-) 1200606", - "from": "8730", - "to": "8698", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9162", - "label": "953713 (-) 1159708", - "from": "8729", - "to": "8675", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9161", - "label": "1488248 (-) 1488243", - "from": "8728", - "to": "8733", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9160", - "label": "1488249 (-) 1488243", - "from": "8727", - "to": "8733", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9159", - "label": "289149 (-) 144608", - "from": "8726", - "to": "8789", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9158", - "label": "1488250 (-) 1488243", - "from": "8725", - "to": "8733", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9157", - "label": "616831 (-) 616491", - "from": "8724", - "to": "8846", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9156", - "label": "330112 (-) 409084", - "from": "8723", - "to": "8689", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9155", - "label": "330112 (-) 369394", - "from": "8723", - "to": "8602", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9154", - "label": "330112 (-) 331494", - "from": "8723", - "to": "8606", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9153", - "label": "1488252 (-) 1488248", - "from": "8722", - "to": "8728", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9152", - "label": "1488252 (-) 1488246", - "from": "8722", - "to": "8731", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9151", - "label": "1488252 (-) 1488245", - "from": "8722", - "to": "8732", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9150", - "label": "1488252 (-) 1488250", - "from": "8722", - "to": "8725", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9149", - "label": "1488252 (-) 1488249", - "from": "8722", - "to": "8727", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9148", - "label": "302460 (-) 299541", - "from": "8721", - "to": "8678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9147", - "label": "646528 (-) 550651", - "from": "8720", - "to": "8596", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9146", - "label": "952711 (-) 958275", - "from": "8719", - "to": "8560", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9145", - "label": "391560 (-) 2680", - "from": "8718", - "to": "8638", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9144", - "label": "433546 (-) 433081", - "from": "8717", - "to": "8520", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9143", - "label": "616843 (-) 617080", - "from": "8716", - "to": "8639", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9142", - "label": "1490324 (-) 144608", - "from": "8715", - "to": "8789", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9141", - "label": "2131348 (-) 2131705", - "from": "8714", - "to": "8598", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9140", - "label": "571803 (-) 132458", - "from": "8713", - "to": "8743", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9139", - "label": "301477 (-) 299541", - "from": "8712", - "to": "8678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9138", - "label": "421285 (-) 419867", - "from": "8711", - "to": "8853", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9137", - "label": "1200554 (-) 43842", - "from": "8710", - "to": "8563", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9136", - "label": "441773 (-) 1386423", - "from": "8709", - "to": "8519", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9135", - "label": "616886 (-) 616493", - "from": "8708", - "to": "8844", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9134", - "label": "616886 (-) 616831", - "from": "8708", - "to": "8724", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9133", - "label": "616886 (-) 616621", - "from": "8708", - "to": "8804", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9132", - "label": "616886 (-) 616817", - "from": "8708", - "to": "8738", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9131", - "label": "616886 (-) 616492", - "from": "8708", - "to": "8845", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9130", - "label": "916923 (-) 504065", - "from": "8707", - "to": "8781", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9129", - "label": "321983 (-) 322256", - "from": "8706", - "to": "8613", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9128", - "label": "321983 (-) 1275213", - "from": "8706", - "to": "8755", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9127", - "label": "321983 (-) 324862", - "from": "8706", - "to": "8783", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9126", - "label": "1200581 (-) 1200554", - "from": "8705", - "to": "8710", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9125", - "label": "1275346 (-) 1275348", - "from": "8704", - "to": "8703", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9124", - "label": "1275346 (-) 1275362", - "from": "8704", - "to": "8695", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9123", - "label": "1275348 (-) 1782717", - "from": "8703", - "to": "8518", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9122", - "label": "888278 (-) 883456", - "from": "8702", - "to": "8593", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9121", - "label": "960987 (-) 1272124", - "from": "8701", - "to": "8762", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9120", - "label": "1488347 (-) 318548", - "from": "8700", - "to": "8830", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9119", - "label": "1488347 (-) 321983", - "from": "8700", - "to": "8706", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9118", - "label": "2062814 (-) 418544", - "from": "8699", - "to": "8603", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9117", - "label": "1200606 (-) 1200581", - "from": "8698", - "to": "8705", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9116", - "label": "2112990 (-) 874479", - "from": "8697", - "to": "8509", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9115", - "label": "2112991 (-) 2112990", - "from": "8696", - "to": "8697", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9114", - "label": "1275362 (-) 1782717", - "from": "8695", - "to": "8518", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9113", - "label": "1798639 (-) 1911913", - "from": "8694", - "to": "8821", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9112", - "label": "2111986 (-) 49150", - "from": "8693", - "to": "8507", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9111", - "label": "423413 (-) 1488347", - "from": "8692", - "to": "8700", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9110", - "label": "423413 (-) 1279345", - "from": "8692", - "to": "8736", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9109", - "label": "1488375 (-) 1488250", - "from": "8691", - "to": "8725", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9108", - "label": "1488375 (-) 1488246", - "from": "8691", - "to": "8731", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9107", - "label": "1488375 (-) 1488245", - "from": "8691", - "to": "8732", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9106", - "label": "1488375 (-) 1488248", - "from": "8691", - "to": "8728", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9105", - "label": "1488375 (-) 1488249", - "from": "8691", - "to": "8727", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9104", - "label": "882169 (-) 888278", - "from": "8690", - "to": "8702", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9103", - "label": "882169 (-) 883490", - "from": "8690", - "to": "8585", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9102", - "label": "409084 (-) 293444", - "from": "8689", - "to": "8657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9101", - "label": "1682942 (-) 330112", - "from": "8688", - "to": "8723", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9100", - "label": "2059776 (-) 653856", - "from": "8687", - "to": "8672", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9099", - "label": "573953 (-) 572417", - "from": "8686", - "to": "8856", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9098", - "label": "882178 (-) 883490", - "from": "8685", - "to": "8585", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9097", - "label": "882178 (-) 888278", - "from": "8685", - "to": "8702", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9096", - "label": "248331 (-) 2680", - "from": "8684", - "to": "8638", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9095", - "label": "637452 (-) 193879", - "from": "8683", - "to": "8749", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9094", - "label": "637453 (-) 637452", - "from": "8682", - "to": "8683", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9093", - "label": "1337870 (-) 1337573", - "from": "8681", - "to": "8787", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9092", - "label": "299537 (-) 299541", - "from": "8680", - "to": "8678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9091", - "label": "653843 (-) 730789", - "from": "8679", - "to": "8625", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9090", - "label": "653843 (-) 737088", - "from": "8679", - "to": "8564", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9089", - "label": "653843 (-) 1538767", - "from": "8679", - "to": "8612", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9088", - "label": "653843 (-) 654138", - "from": "8679", - "to": "8569", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9087", - "label": "299541 (-) 251616", - "from": "8678", - "to": "8610", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9086", - "label": "2098710 (-) 2052724", - "from": "8677", - "to": "8642", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9085", - "label": "2098710 (-) 2052833", - "from": "8677", - "to": "8609", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9084", - "label": "299544 (-) 299541", - "from": "8676", - "to": "8678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9083", - "label": "1159708 (-) 2680", - "from": "8675", - "to": "8638", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9082", - "label": "291357 (-) 144608", - "from": "8674", - "to": "8789", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9081", - "label": "343583 (-) 331494", - "from": "8673", - "to": "8606", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9080", - "label": "653856 (-) 654215", - "from": "8672", - "to": "8544", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9079", - "label": "1485345 (-) 144608", - "from": "8671", - "to": "8789", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9078", - "label": "421410 (-) 433546", - "from": "8670", - "to": "8717", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9077", - "label": "1083940 (-) 1084519", - "from": "8669", - "to": "8822", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9076", - "label": "1083941 (-) 1083940", - "from": "8668", - "to": "8669", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9075", - "label": "504360 (-) 504077", - "from": "8667", - "to": "8773", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9074", - "label": "504360 (-) 504075", - "from": "8667", - "to": "8775", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9073", - "label": "504360 (-) 504076", - "from": "8667", - "to": "8774", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9072", - "label": "311850 (-) 299541", - "from": "8666", - "to": "8678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9071", - "label": "77362 (-) 62263", - "from": "8665", - "to": "8571", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9070", - "label": "77362 (-) 54189", - "from": "8665", - "to": "8528", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9069", - "label": "77362 (-) 54322", - "from": "8665", - "to": "8841", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9068", - "label": "77362 (-) 55277", - "from": "8665", - "to": "8512", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9067", - "label": "77362 (-) 54900", - "from": "8665", - "to": "8641", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9066", - "label": "77362 (-) 55093", - "from": "8665", - "to": "8572", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9065", - "label": "77362 (-) 61124", - "from": "8665", - "to": "8616", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9064", - "label": "77362 (-) 54026", - "from": "8665", - "to": "8590", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9063", - "label": "77362 (-) 62537", - "from": "8665", - "to": "8834", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9062", - "label": "101938 (-) 1490531", - "from": "8664", - "to": "8646", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9061", - "label": "101938 (-) 1490324", - "from": "8664", - "to": "8715", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9060", - "label": "101938 (-) 291357", - "from": "8664", - "to": "8674", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9059", - "label": "309814 (-) 299541", - "from": "8663", - "to": "8678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9058", - "label": "504377 (-) 504076", - "from": "8662", - "to": "8774", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9057", - "label": "504377 (-) 504075", - "from": "8662", - "to": "8775", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9056", - "label": "321084 (-) 1337573", - "from": "8661", - "to": "8787", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9055", - "label": "425533 (-) 425532", - "from": "8660", - "to": "8659", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9054", - "label": "425533 (-) 1488236", - "from": "8660", - "to": "8742", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9053", - "label": "425532 (-) 423413", - "from": "8659", - "to": "8692", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9052", - "label": "616002 (-) 2680", - "from": "8658", - "to": "8638", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9051", - "label": "293444 (-) 299541", - "from": "8657", - "to": "8678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9050", - "label": "1107533 (-) 310021", - "from": "8656", - "to": "8591", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9049", - "label": "1107533 (-) 354035", - "from": "8656", - "to": "8601", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9048", - "label": "1119825 (-) 1116334", - "from": "8655", - "to": "8803", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9047", - "label": "425561 (-) 425533", - "from": "8654", - "to": "8660", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9046", - "label": "389722 (-) 549814", - "from": "8653", - "to": "8523", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9045", - "label": "389722 (-) 616886", - "from": "8653", - "to": "8708", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9044", - "label": "389722 (-) 1196670", - "from": "8653", - "to": "8634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9043", - "label": "875099 (-) 875746", - "from": "8652", - "to": "8788", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9042", - "label": "77403 (-) 77362", - "from": "8651", - "to": "8665", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9041", - "label": "875101 (-) 875099", - "from": "8650", - "to": "8652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9040", - "label": "1214047 (-) 144608", - "from": "8649", - "to": "8789", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9039", - "label": "970337 (-) 333006", - "from": "8648", - "to": "8790", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9038", - "label": "350818 (-) 555944", - "from": "8647", - "to": "8529", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9037", - "label": "1490531 (-) 144608", - "from": "8646", - "to": "8789", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9036", - "label": "291429 (-) 144608", - "from": "8645", - "to": "8789", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9035", - "label": "1159782 (-) 954243", - "from": "8644", - "to": "8545", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9034", - "label": "1341038 (-) 320330", - "from": "8643", - "to": "8558", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9033", - "label": "2052724 (-) 2059776", - "from": "8642", - "to": "8687", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9032", - "label": "54900 (-) 743241", - "from": "8641", - "to": "8559", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9031", - "label": "1771125 (-) 2114443", - "from": "8640", - "to": "8543", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9030", - "label": "617080 (-) 550651", - "from": "8639", - "to": "8596", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9029", - "label": "2680 (-) 712804", - "from": "8638", - "to": "8823", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9028", - "label": "550522 (-) 550679", - "from": "8637", - "to": "8588", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9027", - "label": "227964 (-) 320128", - "from": "8636", - "to": "8633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9026", - "label": "637566 (-) 637453", - "from": "8635", - "to": "8682", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9025", - "label": "1196670 (-) 962799", - "from": "8634", - "to": "8786", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9024", - "label": "320128 (-) 320604", - "from": "8633", - "to": "8824", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9023", - "label": "426633 (-) 425561", - "from": "8632", - "to": "8654", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9022", - "label": "426633 (-) 1488243", - "from": "8632", - "to": "8733", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9021", - "label": "1684105 (-) 298310", - "from": "8631", - "to": "8759", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9020", - "label": "1684105 (-) 299067", - "from": "8631", - "to": "8838", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9019", - "label": "1414797 (-) 1226805", - "from": "8630", - "to": "8840", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9018", - "label": "98964 (-) 1490531", - "from": "8629", - "to": "8646", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9017", - "label": "98964 (-) 1490324", - "from": "8629", - "to": "8715", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9016", - "label": "98964 (-) 291357", - "from": "8629", - "to": "8674", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9015", - "label": "171672 (-) 299541", - "from": "8628", - "to": "8678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9014", - "label": "291483 (-) 144608", - "from": "8627", - "to": "8789", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9013", - "label": "719521 (-) 719714", - "from": "8626", - "to": "8554", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9012", - "label": "730789 (-) 654141", - "from": "8625", - "to": "8566", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9011", - "label": "1428135 (-) 427012", - "from": "8624", - "to": "8855", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9010", - "label": "672431 (-) 46171", - "from": "8623", - "to": "8825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9009", - "label": "1411759 (-) 1411760", - "from": "8622", - "to": "8621", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9008", - "label": "1411760 (-) 1412138", - "from": "8621", - "to": "8847", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9007", - "label": "421558 (-) 421285", - "from": "8620", - "to": "8711", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9006", - "label": "14012 (-) 248331", - "from": "8619", - "to": "8684", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9005", - "label": "14012 (-) 391560", - "from": "8619", - "to": "8718", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9004", - "label": "14012 (-) 616002", - "from": "8619", - "to": "8658", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9003", - "label": "14012 (-) 243911", - "from": "8619", - "to": "8792", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9002", - "label": "1485501 (-) 144608", - "from": "8618", - "to": "8789", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9001", - "label": "322239 (-) 321084", - "from": "8617", - "to": "8661", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9000", - "label": "61124 (-) 743241", - "from": "8616", - "to": "8559", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8999", - "label": "1411783 (-) 1473433", - "from": "8615", - "to": "8537", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8998", - "label": "572111 (-) 571548", - "from": "8614", - "to": "8811", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8997", - "label": "322256 (-) 321330", - "from": "8613", - "to": "8574", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8996", - "label": "1538767 (-) 654141", - "from": "8612", - "to": "8566", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8995", - "label": "877267 (-) 875101", - "from": "8611", - "to": "8650", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8994", - "label": "251616 (-) 1410943", - "from": "8610", - "to": "8548", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8993", - "label": "2052833 (-) 2059776", - "from": "8609", - "to": "8687", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8992", - "label": "426722 (-) 426633", - "from": "8608", - "to": "8632", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8991", - "label": "94950 (-) 1522976", - "from": "8607", - "to": "8764", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8990", - "label": "331494 (-) 310020", - "from": "8606", - "to": "8592", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8989", - "label": "331494 (-) 309814", - "from": "8606", - "to": "8663", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8988", - "label": "331494 (-) 305190", - "from": "8606", - "to": "8850", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8987", - "label": "331494 (-) 293444", - "from": "8606", - "to": "8657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8986", - "label": "331494 (-) 311850", - "from": "8606", - "to": "8666", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8985", - "label": "331494 (-) 299544", - "from": "8606", - "to": "8676", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8984", - "label": "331494 (-) 302460", - "from": "8606", - "to": "8721", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8983", - "label": "331494 (-) 309196", - "from": "8606", - "to": "8516", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8982", - "label": "1488616 (-) 426633", - "from": "8605", - "to": "8632", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8981", - "label": "103150 (-) 433546", - "from": "8604", - "to": "8717", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8980", - "label": "418544 (-) 2062227", - "from": "8603", - "to": "8539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8979", - "label": "369394 (-) 298309", - "from": "8602", - "to": "8761", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8978", - "label": "369394 (-) 304129", - "from": "8602", - "to": "8858", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8977", - "label": "369394 (-) 299127", - "from": "8602", - "to": "8818", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8976", - "label": "369394 (-) 298310", - "from": "8602", - "to": "8759", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8975", - "label": "369394 (-) 298315", - "from": "8602", - "to": "8757", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8974", - "label": "369394 (-) 304210", - "from": "8602", - "to": "8831", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8973", - "label": "369394 (-) 299067", - "from": "8602", - "to": "8838", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8972", - "label": "369394 (-) 299537", - "from": "8602", - "to": "8680", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8971", - "label": "369394 (-) 304276", - "from": "8602", - "to": "8813", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8970", - "label": "369394 (-) 301477", - "from": "8602", - "to": "8712", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8969", - "label": "369394 (-) 293444", - "from": "8602", - "to": "8657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8968", - "label": "369394 (-) 303994", - "from": "8602", - "to": "8550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8967", - "label": "369394 (-) 301845", - "from": "8602", - "to": "8589", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8966", - "label": "354035 (-) 1668145", - "from": "8601", - "to": "8842", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8965", - "label": "373494 (-) 369394", - "from": "8600", - "to": "8602", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8964", - "label": "1243896 (-) 321983", - "from": "8599", - "to": "8706", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8963", - "label": "2131705 (-) 698257", - "from": "8598", - "to": "8541", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8962", - "label": "550650 (-) 550651", - "from": "8597", - "to": "8596", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8961", - "label": "550651 (-) 970337", - "from": "8596", - "to": "8648", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8960", - "label": "883453 (-) 883065", - "from": "8595", - "to": "8730", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8959", - "label": "883455 (-) 883453", - "from": "8594", - "to": "8595", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8958", - "label": "883456 (-) 883453", - "from": "8593", - "to": "8595", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8957", - "label": "310020 (-) 299541", - "from": "8592", - "to": "8678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8956", - "label": "310021 (-) 299541", - "from": "8591", - "to": "8678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8955", - "label": "54026 (-) 743241", - "from": "8590", - "to": "8559", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8954", - "label": "301845 (-) 299541", - "from": "8589", - "to": "8678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8953", - "label": "550679 (-) 550154", - "from": "8588", - "to": "8776", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8952", - "label": "67353 (-) 64422", - "from": "8587", - "to": "8530", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8951", - "label": "151325 (-) 94950", - "from": "8586", - "to": "8607", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8950", - "label": "883490 (-) 883455", - "from": "8585", - "to": "8594", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8949", - "label": "1082148 (-) 350818", - "from": "8584", - "to": "8647", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8948", - "label": "884516 (-) 885683", - "from": "8583", - "to": "8525", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8947", - "label": "1082151 (-) 1082148", - "from": "8582", - "to": "8584", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8946", - "label": "719655 (-) 719521", - "from": "8581", - "to": "8626", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8945", - "label": "1889063 (-) 64690", - "from": "8580", - "to": "8799", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8944", - "label": "962344 (-) 953713", - "from": "8579", - "to": "8729", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8943", - "label": "884524 (-) 885683", - "from": "8578", - "to": "8525", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8942", - "label": "962348 (-) 962344", - "from": "8577", - "to": "8579", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8941", - "label": "321328 (-) 322239", - "from": "8576", - "to": "8617", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8940", - "label": "1871665 (-) 14228", - "from": "8575", - "to": "8538", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8939", - "label": "321330 (-) 322239", - "from": "8574", - "to": "8617", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8938", - "label": "1794867 (-) 1793352", - "from": "8573", - "to": "8758", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8937", - "label": "55093 (-) 743241", - "from": "8572", - "to": "8559", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8936", - "label": "62263 (-) 743241", - "from": "8571", - "to": "8559", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8935", - "label": "962359 (-) 962348", - "from": "8570", - "to": "8577", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8934", - "label": "654138 (-) 654141", - "from": "8569", - "to": "8566", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8933", - "label": "1684283 (-) 330112", - "from": "8568", - "to": "8723", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8932", - "label": "917308 (-) 504065", - "from": "8567", - "to": "8781", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8931", - "label": "654141 (-) 952239", - "from": "8566", - "to": "8527", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8930", - "label": "654141 (-) 719655", - "from": "8566", - "to": "8581", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8929", - "label": "1916734 (-) 950362", - "from": "8565", - "to": "8827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8928", - "label": "737088 (-) 654141", - "from": "8564", - "to": "8566", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8927", - "label": "43842 (-) 1952840", - "from": "8563", - "to": "8835", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8926", - "label": "43842 (-) 1952931", - "from": "8563", - "to": "8805", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8925", - "label": "43842 (-) 1953027", - "from": "8563", - "to": "8780", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8924", - "label": "1035074 (-) 1159782", - "from": "8562", - "to": "8644", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8923", - "label": "1156931 (-) 955460", - "from": "8561", - "to": "8836", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8922", - "label": "958275 (-) 958290", - "from": "8560", - "to": "8557", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8921", - "label": "743241 (-) 743664", - "from": "8559", - "to": "8785", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8920", - "label": "320330 (-) 320128", - "from": "8558", - "to": "8633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8919", - "label": "958290 (-) 958368", - "from": "8557", - "to": "8533", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8918", - "label": "1200984 (-) 554324", - "from": "8556", - "to": "8752", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8917", - "label": "1466203 (-) 1889063", - "from": "8555", - "to": "8580", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8916", - "label": "719714 (-) 565410", - "from": "8554", - "to": "8808", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8915", - "label": "77671 (-) 77403", - "from": "8553", - "to": "8651", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8914", - "label": "369519 (-) 369394", - "from": "8552", - "to": "8602", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8913", - "label": "77681 (-) 1238006", - "from": "8551", - "to": "8508", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8912", - "label": "77681 (-) 77671", - "from": "8551", - "to": "8553", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8911", - "label": "303994 (-) 299541", - "from": "8550", - "to": "8678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8910", - "label": "569211 (-) 572111", - "from": "8549", - "to": "8614", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8909", - "label": "1410943 (-) 103150", - "from": "8548", - "to": "8604", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8908", - "label": "998275 (-) 1417364", - "from": "8547", - "to": "8814", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8907", - "label": "998275 (-) 1414797", - "from": "8547", - "to": "8630", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8906", - "label": "998276 (-) 1417364", - "from": "8546", - "to": "8814", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8905", - "label": "998276 (-) 1414797", - "from": "8546", - "to": "8630", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8904", - "label": "954243 (-) 1159708", - "from": "8545", - "to": "8675", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8903", - "label": "654215 (-) 653843", - "from": "8544", - "to": "8679", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8902", - "label": "2114443 (-) 2112991", - "from": "8543", - "to": "8696", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8901", - "label": "1116044 (-) 1799093", - "from": "8542", - "to": "8524", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8900", - "label": "698257 (-) 1473583", - "from": "8541", - "to": "8843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8899", - "label": "698257 (-) 1473437", - "from": "8541", - "to": "8536", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8898", - "label": "998290 (-) 1417364", - "from": "8540", - "to": "8814", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8897", - "label": "998290 (-) 1414797", - "from": "8540", - "to": "8630", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8896", - "label": "2062227 (-) 79817", - "from": "8539", - "to": "8517", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8895", - "label": "14228 (-) 391560", - "from": "8538", - "to": "8718", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8894", - "label": "14228 (-) 243911", - "from": "8538", - "to": "8792", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8893", - "label": "14228 (-) 248331", - "from": "8538", - "to": "8684", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8892", - "label": "14228 (-) 616002", - "from": "8538", - "to": "8658", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8891", - "label": "1473433 (-) 138223", - "from": "8537", - "to": "8510", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8890", - "label": "1473437 (-) 1411783", - "from": "8536", - "to": "8615", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8889", - "label": "1084318 (-) 171672", - "from": "8535", - "to": "8628", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8888", - "label": "1338271 (-) 389722", - "from": "8534", - "to": "8653", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8887", - "label": "958368 (-) 241990", - "from": "8533", - "to": "8760", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8886", - "label": "1084321 (-) 1084318", - "from": "8532", - "to": "8535", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8885", - "label": "1341349 (-) 320330", - "from": "8531", - "to": "8558", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8884", - "label": "64422 (-) 1238006", - "from": "8530", - "to": "8508", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8883", - "label": "555944 (-) 293444", - "from": "8529", - "to": "8657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8882", - "label": "54189 (-) 743241", - "from": "8528", - "to": "8559", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8881", - "label": "952239 (-) 422049", - "from": "8527", - "to": "8809", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8880", - "label": "1340336 (-) 320330", - "from": "8526", - "to": "8558", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8879", - "label": "1340336 (-) 227964", - "from": "8526", - "to": "8636", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8878", - "label": "885683 (-) 887987", - "from": "8525", - "to": "8798", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8877", - "label": "1799093 (-) 1035074", - "from": "8524", - "to": "8562", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8876", - "label": "549814 (-) 550522", - "from": "8523", - "to": "8637", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8875", - "label": "1113015 (-) 1107533", - "from": "8522", - "to": "8656", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8874", - "label": "495541 (-) 500848", - "from": "8521", - "to": "8820", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8873", - "label": "433081 (-) 1428135", - "from": "8520", - "to": "8624", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8872", - "label": "1386423 (-) 418544", - "from": "8519", - "to": "8603", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8871", - "label": "1782717 (-) 421410", - "from": "8518", - "to": "8670", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8870", - "label": "79817 (-) 1275213", - "from": "8517", - "to": "8755", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8869", - "label": "309196 (-) 299541", - "from": "8516", - "to": "8678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8868", - "label": "958434 (-) 14012", - "from": "8515", - "to": "8619", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8867", - "label": "992230 (-) 992233", - "from": "8514", - "to": "8513", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8866", - "label": "992233 (-) 495541", - "from": "8513", - "to": "8521", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8865", - "label": "55277 (-) 743241", - "from": "8512", - "to": "8559", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8864", - "label": "1337326 (-) 1338271", - "from": "8511", - "to": "8534", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8863", - "label": "138223 (-) 672431", - "from": "8510", - "to": "8623", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8862", - "label": "874479 (-) 877267", - "from": "8509", - "to": "8611", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8861", - "label": "1238006 (-) 1237265", - "from": "8508", - "to": "8769", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8860", - "label": "49150 (-) 637566", - "from": "8507", - "to": "8635", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/F_BAR proteins_ARP.json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/F_BAR proteins_ARP.json deleted file mode 100644 index 4aa3569ee6..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/F_BAR proteins_ARP.json +++ /dev/null @@ -1,20306 +0,0 @@ -{ - "nodes": [ - { - "id": "5705", - "label": "DecS-GHRL-1(24-50) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5704", - "label": "RAB4:GTP promotes recycling of activated MET receptor to the plasma membrane", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5703", - "label": "PolyUb-Misfolded PCNT [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5702", - "label": "DecS-GHRL-1(24-51) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5701", - "label": "CASP8(385-479) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5700", - "label": "O-octanoyl-L-serine-GHRL-1(24-51) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5699", - "label": "p-S423,S425-SMAD3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5698", - "label": "Bradykinin receptor:Bradykinin [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5697", - "label": "GGC-RAB7B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5696", - "label": "Retinoic acid activates HOXB4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5695", - "label": "Ubiquitinated IkB is degraded", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5694", - "label": "NF-kappaB p50,p65,c-Rel:ub-p-IKB [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "5693", - "label": "NF-kappaB p65:p65:ub-p-IkB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5692", - "label": "TFIIH [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5691", - "label": "5HT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5690", - "label": "trans-Golgi Network Derived Vesicle Uncoating", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5689", - "label": "TGFB1:TGFBR2:p-TGFBR1 [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5688", - "label": "ERBB2 promotes PTK6 autophosphorylation", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5687", - "label": "CBL neddylates TGFBR2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5686", - "label": "TGFBR2 phosphorylates TGFBR1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5685", - "label": "PLCG1 phosphorylation by p-EGFR:p-ERBB2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5684", - "label": "TGFB1:TGFBR2:TGFBR1 [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5683", - "label": "NEDD8-AcM-UBE2M [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5682", - "label": "APC is K63-polyubiquitinated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5681", - "label": "PolyUb-Misfolded PARK7 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5680", - "label": "NANOG [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5679", - "label": "Hist [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5678", - "label": "G-protein alpha (13):GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5677", - "label": "spherical HDL and SR-BI receptor form a complex at the cell surface", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5676", - "label": "Aggresome dissociates from dynein and microtubule", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5675", - "label": "Microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5674", - "label": "alpha-beta tubulin dimer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5673", - "label": "MAPK3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5672", - "label": "RNF152 [lysosomal membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5671", - "label": "Hypophosphorylation of RNA Pol II CTD by FCP1P protein", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5670", - "label": "TGFBR2 recruits TGFBR1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5669", - "label": "PP2A (A:C) [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5668", - "label": "NF-kappaB p65:p65 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5667", - "label": "FKBP1A [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5666", - "label": "RASA1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5665", - "label": "FGF18 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5664", - "label": "NF-kappaB p50:c-Rel:ub-p-IKB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5663", - "label": "Exocytosis of ficolin-rich granule lumen proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5662", - "label": "CCNH [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5661", - "label": "Transfer of SUMO2 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5660", - "label": "PTPNs gene transcription and translation", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5659", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "5658", - "label": "The receptor:G-protein complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5657", - "label": "Dissociation of RAS:RAF complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5656", - "label": "trans-Golgi Network Derived Lysosomal Vesicle Uncoating", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5655", - "label": "Expression of PERIOD-1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5654", - "label": "DNAJC6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5653", - "label": "OPRM1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5652", - "label": "Active NIK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5651", - "label": "HERC5 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5650", - "label": "PAXIP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5649", - "label": "LACT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5648", - "label": "UMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5647", - "label": "Transfer of SUMO3 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5646", - "label": "Activated FGFR2:p-FRS:p-PTPN11 activates RAS nucleotide exchange", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5645", - "label": "Expression of STAT3-upregulated extracellular proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5644", - "label": "Thy-dRib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5643", - "label": "Ura-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5642", - "label": "(d)CMP, TMP, or (d)UMP + H2O => (deoxy)cytidine, thymidine, or (deoxy)uridine + orthophosphate (NT5C3)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5641", - "label": "RNF111 ubiquitinates SUMOylated XPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5640", - "label": "Dissociation of moderate activity BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5639", - "label": "Ub,SUMO:XPC:RAD23:CETN2:Open bubble-dsDNA:PAR-UV-DDB:TFIIH Core:XPA:PAR-PARP1, PAR-PARP2:CHD1L [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5638", - "label": "Cyt-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5637", - "label": "Expression of CEBPB in adipogenesis", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5636", - "label": "CREM isoform 6 (ICER1) [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5635", - "label": "NF-kappaB p50:c-Rel [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5634", - "label": "RAB1:GDP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5633", - "label": "PTPN11 dephosphorylates RUNX1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5632", - "label": "p-Y701-STAT1, p-Y705-STAT3, p-Y649-STAT5 dissociates from IL9:p-Y116-IL9R:JAK1:IL2RG:p-904,939-JAK3:p-Y705-STAT3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5631", - "label": "hp-IRAK1:3xK63-polyUb-TRAF6:3xUBE2N:UBE2V1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5630", - "label": "SLC24A1 exchanges 4Na+ for Ca2+, K+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5629", - "label": "PPARGC1A [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5628", - "label": "RUNX1:CBFB [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5627", - "label": "RUNX1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5626", - "label": "Expression of Leptin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5625", - "label": "K+-independent Li+/Ca2+ exchanger transport", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5624", - "label": "NF-KappaB p50:p50:ub-p-IKBA [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5623", - "label": "NF-kappaB p50:p50 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5622", - "label": "SAR1B:GTP [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5621", - "label": "p-4Y-PLCG1 dissociates from activated FGFR3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5620", - "label": "NF-kappaB p50:p65:ub-p-IKB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5619", - "label": "Ade-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5618", - "label": "KDM1A [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5617", - "label": "IL1B [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5616", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon ALPK1:ADP-heptose stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "5615", - "label": "NF-kappaB p50,p65,c-Rel dimer [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "5614", - "label": "CCND1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5613", - "label": "PPTN11 dephosphorylates SPRY2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5612", - "label": "PLCG1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5611", - "label": "Release of L-Glutamate at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5610", - "label": "AVP(20-28) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5609", - "label": "Disassembly of COPII coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5608", - "label": "SCF-beta-TrCP ubiquitinylates IkB", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5607", - "label": "EP300 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5606", - "label": "COPII vesicle with MHC class I [ER to Golgi transport vesicle membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5605", - "label": "Activated FGFR3:p-FRS:p-PTPN11 activates RAS nucleotide exchange", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5604", - "label": "CCPs deglutamylate tubulin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5603", - "label": "HCMV Nuclear Pore Docking", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5602", - "label": "Thrombin-mediated activation of Proteinase-activated receptors", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5601", - "label": "PTPN11 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5600", - "label": "p-4Y-PLCG1 dissociates from activated FGFR1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5599", - "label": "Estrogen-responsive MYC gene expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5598", - "label": "Budding of COPII coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5597", - "label": "p-T235, S321-CEBPB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5596", - "label": "SOCS2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5595", - "label": "RAB6:GTP displaces PAFAH1B1 from dynein:dynactin complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5594", - "label": "OPRM1 gene expression is repressed by MECP2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5593", - "label": "PYR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5592", - "label": "Phosphorylation of 4E-BP1 by activated mTORC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5591", - "label": "ATP2B1-4 transport cytosolic Ca2+ to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5590", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon TLR3 stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "5589", - "label": "Deacetylation of cleaved cohesin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5588", - "label": "Cleaved Cohesin:PDS5:WAPAL [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5587", - "label": "SIK1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5586", - "label": "phosphoenolpyruvate + ADP => pyruvate + ATP", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5585", - "label": "PGE2 [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5584", - "label": "RHOA:GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5583", - "label": "The Ligand:GPCR:Gq complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5582", - "label": "CASR:Ca2+ [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5581", - "label": "OTUD5 deubiquitinates TRAF3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5580", - "label": "Active PLC-gamma1 dissociates from EGFR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5579", - "label": "ARHGDIA [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5578", - "label": "p-4Y-PLCG1 dissociates from activated FGFR2 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5577", - "label": "AcCho [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5576", - "label": "PRC2 (EZH2) Core [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5575", - "label": "Cho is acetylated to AcCho by CHAT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5574", - "label": "(d)CMP, TMP, or (d)UMP + H2O => (deoxy)cytidine, thymidine, or (deoxy)uridine + orthophosphate (NT5C1A)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5573", - "label": "MCHR1,MCHR2:PMCH(147-165) [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5572", - "label": "NMUR1,NMUR2:NMU [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5571", - "label": "Expression of GATA3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5570", - "label": "TMP, uridine 2', 3', or 5' monophosphates, or deoxyuridine 3' or 5' monophosphates + H2O => thymidine or (deoxy)uridine + orthophosphate [NT5C]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5569", - "label": "G-protein beta-gamma complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5568", - "label": "G-alpha(t):G-beta-gamma:Opsins complex dissociates to active G-alpha(t)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5567", - "label": "GATA3 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5566", - "label": "FOXA1 and GATA3 bind to CCND1 promoter", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5565", - "label": "CIN85 dissociates from EGF:p-6Y-EGFR:CBL:Beta-Pix:CDC42:GTP:CIN85", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5564", - "label": "BTRC [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5563", - "label": "ISGylation of E2 conjugating enzymes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5562", - "label": "E2-mediated FOS gene expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5561", - "label": "RAB1:GTP:USO1:coatomer:PalmC-YKT6:p24 dimers:cargo:spectrin:anykrin [transport vesicle]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5560", - "label": "Dissociation of oncogenic RAS:RAF complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5559", - "label": "Vesicle is tethered through binding GOLGA2:GORASP1, GOLGB1 and the COG complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5558", - "label": "G-protein alpha (i):GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5557", - "label": "p-4Y-PLCG1 dissociates from activated FGFR2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5556", - "label": "Negative regulation of DDX58/IFIH1 signaling by RNF216", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5555", - "label": "Phosphorylated heterodimers of ERBB2 KD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5554", - "label": "Activation of Latent HCMV Genome", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5553", - "label": "PPARG:Fatty Acid:RXRA:Mediator:Coactivator Complex [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5552", - "label": "GDI1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5551", - "label": "NF-kappaB translocates from the cytosol to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5550", - "label": "K63polyUb [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "5549", - "label": "HDAC3 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5548", - "label": "FGF2(10-155) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5547", - "label": "Separation of sister chromatids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5546", - "label": "Fatty acid ligands activate PPARA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5545", - "label": "Equilibrative transport (export) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5544", - "label": "HSP90:ATP:p23:FKBP52:SHR:SH translocates to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5543", - "label": "HSP90:ATP:PTGES3:FKBP52:SHR:SH [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5542", - "label": "HBEGF(63-148) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5541", - "label": "p-Y-STATs translocate to nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5540", - "label": "p-4Y-PLCG1 dissociates from activated FGFR4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5539", - "label": "Expression of NANOG", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5538", - "label": "SLC8A1,2,3 exchange 3Na+ for Ca2+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5537", - "label": "p-Y1105-ARHGAP35 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5536", - "label": "LACT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5535", - "label": "SLC22A12 exchanges extracellular urate for cytosolic LACT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5534", - "label": "CBFB binds RUNX1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5533", - "label": "Phosphorylation of CTLA-4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5532", - "label": "p-Y705-STAT3 dimer translocates from cytosol to nucleoplasm", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5531", - "label": "Fusion of viral membrane with host cell membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5530", - "label": "Viral core surrounded by Matrix layer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5529", - "label": "p-Y-STATs dissociate", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5528", - "label": "SLC7A11-mediated exchange of extracellular cysteine and cytosolic glutamate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5527", - "label": "EXO1 interacting with MSH2:MSH3 excises DNA strand containing an insertion/deletion loop (IDL)", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5526", - "label": "p-4Y-PLCG1 dissociates from activated FGFR4 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5525", - "label": "CIN85:endophilin [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5524", - "label": "BMAL1:CLOCK,NPAS2 heterodimer is phosphorylated and translocates to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5523", - "label": "myristoylated nef [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5522", - "label": "HSP90:ATP:PTGES3:FKBP52:NR3C1:SH [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5521", - "label": "SPRY2 binds CBL", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5520", - "label": "Expression of BMAL1 (ARNTL).", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5519", - "label": "p115-RhoGEF activation of RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5518", - "label": "ARFGAPs stimulate ARF GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5517", - "label": "Phosphorylated heterodimers of ERBB2 ECD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5516", - "label": "OAT1-3 transport organic anions with antiport of dicarboxylic acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5515", - "label": "GDI2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5514", - "label": "PI(3,4,5)P3 [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5513", - "label": "RUNX1 mRNA translation is inhibited by miR-17, miR-18a, miR-20a, miR-27a, miR-106a, miR-215, miR-302b, miR-378 and miR-675", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5512", - "label": "RUNX1 mRNA [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5511", - "label": "cholesterol + phosphatidylcholine (lecithin) => cholesterol ester + 2-lysophosphatidylcholine (lysolecithin)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5510", - "label": "2OG [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5509", - "label": "MyrG-p-Y419-SRC [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5508", - "label": "MYC [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5507", - "label": "The Ligand:GPCR:Gs complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5506", - "label": "PTHLH [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5505", - "label": "Recovery of RNA synthesis after TC-NER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5504", - "label": "LDL:LDLR complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5503", - "label": "SAR1 Activation And Membrane Binding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5502", - "label": "SAR1B:GDP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5501", - "label": "SAR1B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5500", - "label": "FPR2:FPR2 ligands [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5499", - "label": "FPR2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5498", - "label": "VCPKMT (METTL21D) transfers 3xCH3 from 3xAdoMet to VCP", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5497", - "label": "PIAS4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5496", - "label": "GPR39 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5495", - "label": "Processing of caspases", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5494", - "label": "ARRB1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5493", - "label": "MET phosphorylates STAT3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5492", - "label": "ATP hydrolysis by HSP90", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5491", - "label": "LDL + LDLR => LDL:LDLR complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5490", - "label": "Loss of SAR1B GTPase", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5489", - "label": "Dissociation of the Gi alpha:G olf complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5488", - "label": "Activated NTRK3 stimulates PI3K activity", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5487", - "label": "RPS6KA1/2/3 phosphorylates CEBPB on S321", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5486", - "label": "GNAL [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5485", - "label": "ARHGAP35 stimulates RHOA GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5484", - "label": "PIAS4 SUMOylates NR4A2 with SUMO2,3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5483", - "label": "ISGylation of host proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5482", - "label": "p-S102-WHSC1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5481", - "label": "HGF:p-Y1234,Y1235,Y1349,Y1356-MET dimer [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5480", - "label": "RhoA is activated by nucleotide exchange and inhibits axonal growth", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5479", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5478", - "label": "CTNNB1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5477", - "label": "RHOA:GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5476", - "label": "SEC13 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5475", - "label": "TRAF3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5474", - "label": "GPR4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5473", - "label": "NCOR1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5472", - "label": "PolyUb-Misfolded Proteins:HDAC6 dissociate from complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5471", - "label": "HSP90 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5470", - "label": "p-SPHK1 phosphorylates sphingosine to sphingosine 1-phosphate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5469", - "label": "Beta-catenin displaces TLE:HDAC1 from TCF/LEF", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5468", - "label": "RASA1 stimulates RAS GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5467", - "label": "p-Y705-STAT3 dimer, p-Y641-STAT6 dimer translocate to nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5466", - "label": "Dissociation of paradoxically activated RAS:BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5465", - "label": "p-Y641-STAT6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5464", - "label": "Retinoic acid activates HOXA4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5463", - "label": "SEC22B:STX18:USE1L:BNIP1 [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5462", - "label": "CHEST [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5461", - "label": "CGA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5460", - "label": "TRPs transport extracellular Ca2+ to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5459", - "label": "GCG(53-81) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5458", - "label": "CHOL [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5457", - "label": "Cap Binding Complex (CBC) [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5456", - "label": "p-T235-CEBPB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5455", - "label": "NCBP2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5454", - "label": "The p75NTR:NgR:MDGI complex reduces RHOA-GDI activity, displacing RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5453", - "label": "Retrograde vesicle is tethered at the ER by the NRZ complex and t-SNAREs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5452", - "label": "NCBP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5451", - "label": "Nef mediated disruption of CD4:Lck Complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5450", - "label": "Degradation of CD4", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5449", - "label": "Release of acetylcholine at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5448", - "label": "BTRC:CUL1:SKP1 (SCF-beta-TrCP1) ubiquitinylates PER proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5447", - "label": "Acetylcholine Loaded Synaptic Vesicle [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5446", - "label": "Expression of STAT3-upregulated nuclear proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5445", - "label": "SUMO1:C93-UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5444", - "label": "G-proteins dissociate from plasma-membrane estrogen receptors", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5443", - "label": "RNF168 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5442", - "label": "Retinoic acid activates HOXA1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5441", - "label": "CSNK1D phosphorylates SEC23", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5440", - "label": "cIAP1,2 ubiquitinates NIK in cIAP1,2:TRAF2::TRAF3:NIK", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5439", - "label": "beta-TRCP ubiquitinates IkB-alpha in p-S32,33-IkB-alpha:NF-kB complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5438", - "label": "TNFRSF1B [specific granule membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5437", - "label": "SCF-beta-TRCP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5436", - "label": "RUNX3 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5435", - "label": "Exocytosis of platelet alpha granule contents", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5434", - "label": "COPII cargo:receptors:SEC23:SEC24:SEC13:SEC31:SEC23IP:v-SNAREs:TRAPPCII:RAB1:GTP [COPII-coated ER to Golgi transport vesicle]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5433", - "label": "BMP1-3:Zn2+ cleaves pro-APOA1 to APOA1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5432", - "label": "NCOR2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5431", - "label": "mature mRNA (eukaryotic, capped and deadenylated) [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "5430", - "label": "Exosome Complex hydrolyzes mRNA by 3' to 5' exoribonuclease digestion", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5429", - "label": "LCK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5428", - "label": "SUMOylation of XPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5427", - "label": "F2RL2(22-374) [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5426", - "label": "Dissociation of phosphorylated 4EBP1 from eIF4E", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5425", - "label": "P2RY11 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5424", - "label": "EIF4E [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5423", - "label": "eIF4E:4E-BP1-P [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5422", - "label": "F2RL3(18-385) [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5421", - "label": "Ade-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5420", - "label": "AHCY:NAD+ tetramer hydrolyses AdoHcy", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5419", - "label": "CDC42:GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5418", - "label": "F2R(27-425) [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5417", - "label": "APOA1(25-266) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5416", - "label": "PARN deadenylates mRNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5415", - "label": "Release of PLCG from FCGR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5414", - "label": "A2M [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5413", - "label": "AdoHcy [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5412", - "label": "clustered IgG-Ag:p-FCGRs:p-6Y-SYK:p-3Y-PLCG [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5411", - "label": "p-Y641-STAT6 dimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5410", - "label": "Disintegration of matrix layer", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "5409", - "label": "Phosphorylation and activation of PLCG", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5408", - "label": "Degradation of CD8", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5407", - "label": "Exocytosis of Insulin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5406", - "label": "SUMO1:p-T4827-HERC2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5405", - "label": "TGFA(24-98) [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5404", - "label": "IL1B(117-269) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5403", - "label": "Docking of Mature Histone mRNA complex:TAP at the NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5402", - "label": "p-S25,S1778-TP53BP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5401", - "label": "AREG(101-187) [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5400", - "label": "Dissociation of BRAF/RAF fusion complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5399", - "label": "Beta-catenin translocates to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5398", - "label": "CTNNB1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5397", - "label": "NPS [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5396", - "label": "PP2A [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5395", - "label": "SIN3A [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5394", - "label": "TTLLs polyglutamylate tubulin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5393", - "label": "Ac-K94,K171-RUNX3:CBFB:EP300 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5392", - "label": "Loading of acetylcholine in synaptic vesicles", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5391", - "label": "p-T185,Y187-MAPK1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5390", - "label": "COP9 signalosome deneddylates cytosolic CRL E3 ubiquitin ligase complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5389", - "label": "RPA heterotrimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5388", - "label": "(d)AMP, (d)GMP, or (d)IMP + H2O => (deoxy)adenosine, (deoxy)guanosine, or (deoxy)inosine + orthophosphate (NT5C1A)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5387", - "label": "PPP1R3C [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5386", - "label": "Expression of PPARGC1A (PGC-1alpha)", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5385", - "label": "AGTR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5384", - "label": "Expression of AVP", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5383", - "label": "KLF4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5382", - "label": "NPSR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5381", - "label": "Ligation of newly synthesized repair patch to incised DNA in TC-NER", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5380", - "label": "p-S166-RIPK1:p-S199,227-RIPK3 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5379", - "label": "PP1 dephosphorylates TGFBR1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5378", - "label": "Docking of Mature Replication Dependent Histone mRNA with the NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5377", - "label": "ARRB2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5376", - "label": "Regulation of protein ISGylation by ISG15 deconjugating enzyme USP18", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5375", - "label": "UBE2I [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5374", - "label": "SEC31A:SEC13:SEC23IP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5373", - "label": "DA [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5372", - "label": "Interleukin-1 family are secreted", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5371", - "label": "Interleukin-1 family [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "5370", - "label": "Expression of CLOCK", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5369", - "label": "APC promotes disassembly of beta-catenin transactivation complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5368", - "label": "IL18 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5367", - "label": "KMT2D [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5366", - "label": "EP300 acetylates RUNX3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5365", - "label": "AR:androgen [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5364", - "label": "PPIA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5363", - "label": "SUMO3:UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5362", - "label": "IL8 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5361", - "label": "Dissociation of RAS:RAF1 mutant complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5360", - "label": "RAB1:GTP [endoplasmic reticulum-Golgi intermediate compartment membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5359", - "label": "p-4Y-PLCG1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5358", - "label": "Dynein:Dynactin:microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5357", - "label": "NSF and SNAPs bind cis-SNARE at the ER membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5356", - "label": "L-Glu [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5355", - "label": "SEC22B:STX18:USE1:BNIP1L:3xSNAPs:NSF hexamer [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5354", - "label": "PTK6 phosphorylates STAT3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5353", - "label": "Expression of NPAS2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5352", - "label": "FOSB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5351", - "label": "Docking of the Mature intronless derived transcript derived mRNA, TAP and Aly/Ref at the NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5350", - "label": "Interleukin-1 family precursors are cleaved by caspase-1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5349", - "label": "CCR4-NOT complex deadenylates mRNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5348", - "label": "p21 RAS:GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5347", - "label": "p-T202,Y204-MAPK3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5346", - "label": "MSH2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5345", - "label": "NFKB1(1-433):RELA [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5344", - "label": "Active PAK1 and Active CDC42 dissociates from GNB/GNG:PAK1:ARHGEF6:CDC42 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5343", - "label": "CCND1 binds RUNX3 and displaces EP300", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5342", - "label": "NSF ATPase activity dissociates cis-SNARE at the ER", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5341", - "label": "p-Y342-PTK6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5340", - "label": "Beta-catenin is released from the destruction complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5339", - "label": "K63polyUb-APC [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5338", - "label": "VCP [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5337", - "label": "ASH2L [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5336", - "label": "PIP3:BTK:G beta-gamma complex dissociates to Active BTK, PIP3 and G beta-gamma complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5335", - "label": "HDAC1:2-containing complex deacetylate histones", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5334", - "label": "IL1B(1-269) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5333", - "label": "PTK6 phosphorylates CDKN1B", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5332", - "label": "Auto-ubiquitination of TRAF6", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5331", - "label": "p-T,Y MAPKs [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "5330", - "label": "ADR, NAd [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "5329", - "label": "NAd [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5328", - "label": "ISGylated host proteins [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5327", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5326", - "label": "JAK1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5325", - "label": "THBS1 gene transcription is stimulated by the complex containing RUNX1, PRMT1 and GATA1 and inhibited by the complex of RUNX1, SIN3A and PRMT6", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5324", - "label": "THBS1 trimer [platelet alpha granule lumen]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5323", - "label": "TGFA(24-98) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5322", - "label": "S1P [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5321", - "label": "MMPs cleave HB-EGF", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5320", - "label": "NEDD8 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5319", - "label": "Ac-CoA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5318", - "label": "p-4Y-PLCG1 dissociates from activated FGFR3 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5317", - "label": "Nucleotide exchange on RAB1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5316", - "label": "GRB2-1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5315", - "label": "Glucagon-like Peptide 1 is secreted from intestinal L cells", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5314", - "label": "STAT1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5313", - "label": "OAT2 and OAT4 mediate transport of sulphate conjugates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5312", - "label": "LPAR1,2,3,5:LPA [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5311", - "label": "PolyUb-Misfolded Proteins [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "5310", - "label": "PolyUb-misfolded nascent CFTR [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5309", - "label": "NF-kB migrates to the nucleus and turns on transcription", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5308", - "label": "ISG15 E3 ligases [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "5307", - "label": "RUNX3 translocates to the nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5306", - "label": "ARIH1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5305", - "label": "Dissociation of phosphorylated PLCG1 from ligand-responsive p-6Y-EGFR mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5304", - "label": "PXLP-K314-GPT transaminates PYR to form L-Ala", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5303", - "label": "AGTR1 [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5302", - "label": "G-protein alpha (q/11): GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5301", - "label": "RIPK3 is phosphorylated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5300", - "label": "RIPK1:RIPK3 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5299", - "label": "Phosphorylated SMAD2/3 dissociates from TGFBR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5298", - "label": "p-T325,T331,S362,S374-FOS [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5297", - "label": "MAPK3 (ERK1) and MAPK1 (ERK2) phosphorylate CEBPB", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5296", - "label": "CEBPB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5295", - "label": "BSG:MCTs cotransport LACT, H+ from cytosol to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5294", - "label": "FGFR1OP-FGFR1 phosphorylates STAT1 and STAT3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5293", - "label": "GYS1 catalyzes the incorporation of phosphoglucose into glycogen-GYG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5292", - "label": "Phosphorylated STAT3 Dimer Translocates to the Nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5291", - "label": "SAA1(19-122) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5290", - "label": "PF4 gene transcription is stimulated by RUNX1:CBFB", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5289", - "label": "PF4(48-101) [platelet alpha granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5288", - "label": "p-Y705-STAT3 dimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5287", - "label": "Vesicle budding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5286", - "label": "COPI vesicle uncoating at the ER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5285", - "label": "RAB1:GTP:coatomer:p24 dimers:SEC22B:cargo:NBAS:RINT1:ZW10:STX18:USE1L:BNIP1 [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5284", - "label": "C3AR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5283", - "label": "2OG [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5282", - "label": "PF4(32-101) [platelet alpha granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5281", - "label": "The Ligand:GPCR:G12/13 complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5280", - "label": "L-Glu [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5279", - "label": "RIPK3 binds RIPK1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5278", - "label": "TGFA precursor [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5277", - "label": "ADORA2B:Ade-Rib:GsGTP dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5276", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5275", - "label": "p-Y705-STAT3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5274", - "label": "Dissociation of the PAR:Gq complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5273", - "label": "Dissociation of Rho GTP:GDP from GDI complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5272", - "label": "AREG precursor [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5271", - "label": "PPARG [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5270", - "label": "MON1:CCZ1 exchanges GTP for GDP on RAB7", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5269", - "label": "Release of GABA at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5268", - "label": "c-FOS activation by phospho ERK1/2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5267", - "label": "CXCR4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5266", - "label": "GPR84 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5265", - "label": "RNF4 ubiquitinates MDC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5264", - "label": "AREG(101-187) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5263", - "label": "TMED2:TMED10 tetramer:GPI-CD59, GPI-FOLR1 [endoplasmic reticulum-Golgi intermediate compartment membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5262", - "label": "PolyUb:misfolded proteins dissociate from PRKN:UBE2N:UBE2V1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5261", - "label": "SEC22B [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5260", - "label": "p-BMAL1:p-CLOCK,NPAS2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5259", - "label": "RHO [photoreceptor disc membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5258", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon TLR stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "5257", - "label": "Exocytosis of specific granule membrane proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5256", - "label": "FGL2 [ficolin-1-rich granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5255", - "label": "The Ligand:GPCR:Gz complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5254", - "label": "DNA DNA DSBs:p-MRN:p-S1981,Ac-K3016-ATM:KAT5:K63PolyUb-K14,K16,p-S139-H2AFX,Me2K21-HIST1H4A-Nucleosome:SUMO2:K1840,p-5T-MDC1:p-S102-WHSC1:RNF8:Zn2+:SUMO1:p-T4827-HERC2:UBE2N:UBE2V2:RNF168:PIAS4:p-S25,S1778-TP53BP1:p-5S,2T-BRCA1-A complex [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5253", - "label": "Release of p-PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5252", - "label": "Stimulation of IL8 transcription in senescent cells", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5251", - "label": "Dissociation of phosphorylated PLC-gamma 1 from p-EGFRvIII mutant", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5250", - "label": "PPBP(35-128) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5249", - "label": "PolyUb-Misfolded cilia proteins [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "5248", - "label": "PolyUb-Misfolded CETN1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5247", - "label": "Retinoic acid activates HOXB1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5246", - "label": "Dissociation of the PAR:G12/13 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5245", - "label": "RNF8:Zn2+ [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5244", - "label": "KIFC1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5243", - "label": "K48PolyUb-K21,22-p-S32,36-IkBA:NF-kB complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5242", - "label": "TP53 and AP-1 stimulate MSH2 expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5241", - "label": "Phosphorylation and activation of PLCG due to FCGR3A effect", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5240", - "label": "Hypophosphorylation of RNA Pol II CTD by FCP1P protein", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5239", - "label": "Dissociation of high activity BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5238", - "label": "AcCho [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5237", - "label": "LDH tetramer reduces PYR to LACT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5236", - "label": "Acyl Ghrelin and C-Ghrelin are secreted", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5235", - "label": "p190RhoGEF exchanges GTP for GDP on RHOA, activating it", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5234", - "label": "DNA polymerase delta polymerizes DNA across single stranded gap", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5233", - "label": "RPA:DNA containing single strand gap [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5232", - "label": "RBBP5 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5231", - "label": "ZFYVE9-1 [early endosome membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5230", - "label": "Activation of NIK", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5229", - "label": "UBE2N:UBE2V1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5228", - "label": "RUNX1 gene expression is inhibited by RUNX3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5227", - "label": "HSPA8-mediated ATP hydrolysis promotes vesicle uncoating", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5226", - "label": "PI(4)P:p-T156 AP-2:ITSNs:EPS15:REPS1:SGIP1:NECAPs:AAK1:CLASP proteins:cargo:F-BAR proteins:BAR domain proteins:ARP2/3 complex:WASL:f-actin:HIP dimers:DNM:GDP:SYNJs:auxilin [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5225", - "label": "DNA DSB:p-MRN:p-S1981,Ac-K3016-ATM:KAT5 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5224", - "label": "GABA [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5223", - "label": "BET1:GOSR2:STX5 bind v-SNARES on tethered vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5222", - "label": "Ca2+ [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5221", - "label": "PF4(48-101) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5220", - "label": "The Ligand:GPCR:Gi complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5219", - "label": "F2RL3 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5218", - "label": "SLC24A1-4 exchange extracellular 4Na+ for cytosolic Ca2+, K+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5217", - "label": "SNAP25 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5216", - "label": "Dissociation of clathrin-associated proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5215", - "label": "NFKB1:RELA translocates from the cytosol to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5214", - "label": "NFKB1(1-433):RELA [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5213", - "label": "Cytosolic DUSPs dephosphorylate MAPKs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5212", - "label": "EXO1 interacting with MSH2:MSH6 excises single strand DNA containing a mismatch", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5211", - "label": "Core histone octamer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5210", - "label": "EDNRB [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5209", - "label": "Polyglutamylated microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5208", - "label": "26S proteasome processes K48PolyUb-K21,22-p-S32,36-IkBA:NF-kB complex to form NF-kB complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5207", - "label": "Transfer of SUMO1 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5206", - "label": "Acyl Ghrelin [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "5205", - "label": "O-octanoyl-L-serine-GHRL-1(24-50) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5204", - "label": "Release of PLCG from FCGR3A", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5203", - "label": "IgG:Leishmania surface:p-FCGR3A:p-6Y-SYK:p-3Y-PLCG [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5202", - "label": "TGFA precursor [ER to Golgi transport vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5201", - "label": "HDAC1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5200", - "label": "AREG precursor [ER to Golgi transport vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5199", - "label": "PolyUb-Misfolded IFT88 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5198", - "label": "CLOCK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5197", - "label": "RNF152 polyubiquitinates RRAGA", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5196", - "label": "ARNTL [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5195", - "label": "NPAS2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5194", - "label": "UBE2N:UBE2V2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5193", - "label": "Ca2+ [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5192", - "label": "CASP8(217-374) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5191", - "label": "PPARG:RXRA heterodimer binds to fatty acid-like ligands", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5190", - "label": "GYS2 catalyzes the incorporation of phosphoglucose into glycogen-GYG2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5189", - "label": "UBE2L6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5188", - "label": "Transfer of NEDD8 to AcM-UBE2M", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5187", - "label": "NGEF exchanges GTP for GDP on RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5186", - "label": "Activated FGFR4:p-FRS:p-PTPN11 activates RAS nucleotide exchange", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5185", - "label": "Caspase-8 cleaves IL1B precursor", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5184", - "label": "TRAF6 binding leads to IRAK1:TRAF6 release", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5183", - "label": "Association of Ku heterodimer with ends of DNA double-strand break", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5182", - "label": "p-2S,S376,T,T209,T387-IRAK1:TRAF6 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5181", - "label": "PP2A dephosphorylates p-RHO to RHO", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5180", - "label": "Estrogen-responsive CCND1 gene expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5179", - "label": "NR4A2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5178", - "label": "KDM1A demethylates monomethylated H3K9 (MeK-10-H3) at KLK2 and KLK3 promoters", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5177", - "label": "PIAS4 SUMOylates MDC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5176", - "label": "LEP [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5175", - "label": "CCND1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5174", - "label": "SUMO2:UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5173", - "label": "CBL [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5172", - "label": "SRC autophosphorylation is positively regulated by InlA-bound CDH1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5171", - "label": "TC-NER post-incision complex:dsDNA with transcription bubble [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5170", - "label": "STAT1 and STAT3 dimers translocate to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5169", - "label": "WNT5A:FZD4 is endocytosed", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5168", - "label": "viral dsRNA:IFIH1, viral dsRNA:K63polyUb-DDX58:MAVS [mitochondrial outer membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5167", - "label": "p-Y701-STAT1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5166", - "label": "PL [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5165", - "label": "TNFRSF1B [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "5164", - "label": "AP-2 Complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5163", - "label": "Overexpressed HIST1H2AC and ESR1:ESTG bind MYC and BCL2 genes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5162", - "label": "UBE2N [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5161", - "label": "MAP3K14 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5160", - "label": "PolyUb-Misfolded ARL13B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5159", - "label": "TRAF6 is K63 poly-ubiquitinated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5158", - "label": "Retinoic acid activates HOXD4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5157", - "label": "Expression of PPARG", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5156", - "label": "TGFBR2 is recruited to tight junctions after TGF-beta stimulation", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5155", - "label": "SPAST (spastin) mediates the severing of microtubules at chromosome attachment sites", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5154", - "label": "GMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5153", - "label": "MYC gene expression is enhanced by E2F1, STAT3, and CEBPB and repressed by CEBPA", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5152", - "label": "p-4Y- PLCG1 dissociates from activated FGFR1 mutants and fusions", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5151", - "label": "Dissociation of cytosolic HSF1:HSP90:HDAC6:PTGES3 upon sensing protein aggregates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5150", - "label": "Expression of FGF2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5149", - "label": "Protesomal degradation of K48polyUb-TRAF3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5148", - "label": "SCF-beta-TRCP ubiquitinates p-7S-p100:RELB in active NIK:p-176,S180-IKKA dimer:p-7S-p100:SCF-beta-TRCP", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5147", - "label": "FOS [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5146", - "label": "Histone H2A [nucleoplasm]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "5145", - "label": "NMUR2:NMS [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5144", - "label": "cholesterol esters [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5143", - "label": "TAGs [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5142", - "label": "Disassembly of SR-BI-bound spherical HDL", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5141", - "label": "spherical HDL:SR-BI complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5140", - "label": "G-protein alpha (12):GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5139", - "label": "mature GLP-1 [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "5138", - "label": "GLP-1 (7-37) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5137", - "label": "USO1 homodimer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5136", - "label": "ArgN-GCG(98-127) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5135", - "label": "UBE2N:UBE2V1 dissociates from hp-IRAK1:3xK63-polyUb-TRAF6:3xUBE2N:UBE2V1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5134", - "label": "K63PolyUb:K14,K16,p-S139-H2AFX,Me2K21-HIST1H4A-Nucleosome [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5133", - "label": "PER1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5132", - "label": "coatomer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5131", - "label": "Phosphorylated heterodimers of ERBB2 TMD/JMD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5130", - "label": "PAFAH1B1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - } - ], - "edges": [ - { - "id": "6583", - "label": "305153 (-) 299541", - "from": "5705", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6582", - "label": "587783 (-) 140089", - "from": "5704", - "to": "5481", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6581", - "label": "6157 (-) 13130", - "from": "5703", - "to": "5472", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6580", - "label": "6157 (-) 8322", - "from": "5703", - "to": "5676", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6579", - "label": "305167 (-) 299541", - "from": "5702", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6578", - "label": "618516 (-) 1035755", - "from": "5701", - "to": "5279", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6577", - "label": "305175 (-) 299541", - "from": "5700", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6576", - "label": "419867 (-) 960695", - "from": "5699", - "to": "5660", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6575", - "label": "305190 (-) 299541", - "from": "5698", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6574", - "label": "1882150 (-) 2098710", - "from": "5697", - "to": "5270", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6573", - "label": "1341480 (-) 320330", - "from": "5696", - "to": "5473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6572", - "label": "616491 (-) 550154", - "from": "5695", - "to": "5345", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6571", - "label": "616491 (-) 616607", - "from": "5695", - "to": "5668", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6570", - "label": "616491 (-) 616843", - "from": "5695", - "to": "5615", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6569", - "label": "616491 (-) 616818", - "from": "5695", - "to": "5623", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6568", - "label": "616491 (-) 616732", - "from": "5695", - "to": "5635", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6567", - "label": "616492 (-) 616491", - "from": "5694", - "to": "5695", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6566", - "label": "616493 (-) 616491", - "from": "5693", - "to": "5695", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6565", - "label": "1226805 (-) 1243896", - "from": "5692", - "to": "5505", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6564", - "label": "299067 (-) 369394", - "from": "5691", - "to": "5507", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6563", - "label": "299067 (-) 299541", - "from": "5691", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6562", - "label": "299067 (-) 331494", - "from": "5691", - "to": "5220", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6561", - "label": "2119743 (-) 254746", - "from": "5690", - "to": "5494", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6560", - "label": "421954 (-) 951458", - "from": "5689", - "to": "5379", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6559", - "label": "98391 (-) 97550", - "from": "5688", - "to": "5341", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6558", - "label": "950359 (-) 569211", - "from": "5687", - "to": "5173", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6557", - "label": "421977 (-) 421954", - "from": "5686", - "to": "5689", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6556", - "label": "964698 (-) 144608", - "from": "5685", - "to": "5359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6555", - "label": "421979 (-) 421977", - "from": "5684", - "to": "5686", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6554", - "label": "950362 (-) 950359", - "from": "5683", - "to": "5687", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6553", - "label": "712804 (-) 703763", - "from": "5682", - "to": "5339", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6552", - "label": "6250 (-) 8322", - "from": "5681", - "to": "5676", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6551", - "label": "6250 (-) 13130", - "from": "5681", - "to": "5472", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6550", - "label": "159862 (-) 159681", - "from": "5680", - "to": "5150", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6549", - "label": "299127 (-) 299541", - "from": "5679", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6548", - "label": "297083 (-) 296562", - "from": "5678", - "to": "5246", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6547", - "label": "1661054 (-) 1660884", - "from": "5677", - "to": "5141", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6546", - "label": "8322 (-) 8325", - "from": "5676", - "to": "5675", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6545", - "label": "8325 (-) 1934430", - "from": "5675", - "to": "5394", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6544", - "label": "8325 (-) 638896", - "from": "5675", - "to": "5155", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6543", - "label": "8327 (-) 1935831", - "from": "5674", - "to": "5604", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6542", - "label": "258188 (-) 1793199", - "from": "5673", - "to": "5376", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6541", - "label": "1867917 (-) 1871665", - "from": "5672", - "to": "5197", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6540", - "label": "1417364 (-) 1226805", - "from": "5671", - "to": "5692", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6539", - "label": "422042 (-) 421979", - "from": "5670", - "to": "5684", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6538", - "label": "571548 (-) 571803", - "from": "5669", - "to": "5613", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6537", - "label": "616607 (-) 617080", - "from": "5668", - "to": "5551", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6536", - "label": "422049 (-) 422042", - "from": "5667", - "to": "5670", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6535", - "label": "422049 (-) 573953", - "from": "5667", - "to": "5592", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6534", - "label": "565410 (-) 1200984", - "from": "5666", - "to": "5470", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6533", - "label": "133281 (-) 1245648", - "from": "5665", - "to": "5605", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6532", - "label": "133281 (-) 1484122", - "from": "5665", - "to": "5318", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6531", - "label": "133281 (-) 1485345", - "from": "5665", - "to": "5578", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6530", - "label": "133281 (-) 1485501", - "from": "5665", - "to": "5526", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6529", - "label": "133281 (-) 1245450", - "from": "5665", - "to": "5646", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6528", - "label": "133281 (-) 289149", - "from": "5665", - "to": "5621", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6527", - "label": "133281 (-) 291429", - "from": "5665", - "to": "5557", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6526", - "label": "133281 (-) 571202", - "from": "5665", - "to": "5186", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6525", - "label": "133281 (-) 291483", - "from": "5665", - "to": "5540", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6524", - "label": "616621 (-) 616491", - "from": "5664", - "to": "5695", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6523", - "label": "1116334 (-) 593090", - "from": "5663", - "to": "5364", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6522", - "label": "92336 (-) 1243896", - "from": "5662", - "to": "5505", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6521", - "label": "923825 (-) 77681", - "from": "5661", - "to": "5174", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6520", - "label": "960695 (-) 960987", - "from": "5660", - "to": "5601", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6519", - "label": "243911 (-) 2680", - "from": "5659", - "to": "5550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6518", - "label": "1538253 (-) 293444", - "from": "5658", - "to": "5569", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6517", - "label": "252110 (-) 251201", - "from": "5657", - "to": "5331", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6516", - "label": "252110 (-) 251144", - "from": "5657", - "to": "5347", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6515", - "label": "252110 (-) 250984", - "from": "5657", - "to": "5391", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6514", - "label": "2117860 (-) 254746", - "from": "5656", - "to": "5494", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6513", - "label": "1337573 (-) 1337326", - "from": "5655", - "to": "5133", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6512", - "label": "2117862 (-) 2119743", - "from": "5654", - "to": "5690", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6511", - "label": "2117862 (-) 2117860", - "from": "5654", - "to": "5656", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6510", - "label": "336103 (-) 331494", - "from": "5653", - "to": "5220", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6509", - "label": "336103 (-) 1538253", - "from": "5653", - "to": "5658", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6508", - "label": "551145 (-) 550854", - "from": "5652", - "to": "5148", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6507", - "label": "962799 (-) 1794867", - "from": "5651", - "to": "5483", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6506", - "label": "743664 (-) 1341480", - "from": "5650", - "to": "5696", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6505", - "label": "743664 (-) 1341349", - "from": "5650", - "to": "5158", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6504", - "label": "743664 (-) 1341038", - "from": "5650", - "to": "5247", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6503", - "label": "743664 (-) 1340336", - "from": "5650", - "to": "5442", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6502", - "label": "194803 (-) 1863096", - "from": "5649", - "to": "5295", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6501", - "label": "194803 (-) 1690278", - "from": "5649", - "to": "5535", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6500", - "label": "504065 (-) 504078", - "from": "5648", - "to": "5642", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6499", - "label": "504065 (-) 504360", - "from": "5648", - "to": "5574", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6498", - "label": "504065 (-) 504377", - "from": "5648", - "to": "5570", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6497", - "label": "1886473 (-) 1238218", - "from": "5647", - "to": "5363", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6496", - "label": "1245450 (-) 253191", - "from": "5646", - "to": "5348", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6495", - "label": "1806603 (-) 310723", - "from": "5645", - "to": "5291", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6494", - "label": "504076 (-) 1684283", - "from": "5644", - "to": "5479", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6493", - "label": "504076 (-) 1682942", - "from": "5644", - "to": "5276", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6492", - "label": "504075 (-) 1682942", - "from": "5643", - "to": "5276", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6491", - "label": "504075 (-) 1684283", - "from": "5643", - "to": "5479", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6490", - "label": "504078 (-) 504076", - "from": "5642", - "to": "5644", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6489", - "label": "504078 (-) 504077", - "from": "5642", - "to": "5638", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6488", - "label": "504078 (-) 504075", - "from": "5642", - "to": "5643", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6487", - "label": "1237263 (-) 55093", - "from": "5641", - "to": "5194", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6486", - "label": "973072 (-) 251144", - "from": "5640", - "to": "5347", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6485", - "label": "973072 (-) 251201", - "from": "5640", - "to": "5331", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6484", - "label": "973072 (-) 250984", - "from": "5640", - "to": "5391", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6483", - "label": "1237265 (-) 1237263", - "from": "5639", - "to": "5641", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6482", - "label": "504077 (-) 1682942", - "from": "5638", - "to": "5276", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6481", - "label": "504077 (-) 1684283", - "from": "5638", - "to": "5479", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6480", - "label": "1382672 (-) 441773", - "from": "5637", - "to": "5296", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6479", - "label": "1337624 (-) 1337573", - "from": "5636", - "to": "5655", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6478", - "label": "616732 (-) 617080", - "from": "5635", - "to": "5551", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6477", - "label": "874812 (-) 888170", - "from": "5634", - "to": "5317", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6476", - "label": "1272124 (-) 1265996", - "from": "5633", - "to": "5627", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6475", - "label": "1046846 (-) 570878", - "from": "5632", - "to": "5275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6474", - "label": "241990 (-) 958434", - "from": "5631", - "to": "5135", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6473", - "label": "1534279 (-) 251616", - "from": "5630", - "to": "5222", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6472", - "label": "321865 (-) 1382736", - "from": "5629", - "to": "5626", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6471", - "label": "1265995 (-) 1275213", - "from": "5628", - "to": "5325", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6470", - "label": "1265995 (-) 1275346", - "from": "5628", - "to": "5290", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6469", - "label": "1265996 (-) 1275213", - "from": "5627", - "to": "5325", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6468", - "label": "1265996 (-) 1275346", - "from": "5627", - "to": "5290", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6467", - "label": "1382736 (-) 327533", - "from": "5626", - "to": "5176", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6466", - "label": "1681748 (-) 251616", - "from": "5625", - "to": "5222", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6465", - "label": "616817 (-) 616491", - "from": "5624", - "to": "5695", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6464", - "label": "616818 (-) 617080", - "from": "5623", - "to": "5551", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6463", - "label": "883065 (-) 1200606", - "from": "5622", - "to": "5598", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6462", - "label": "289149 (-) 144608", - "from": "5621", - "to": "5359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6461", - "label": "616831 (-) 616491", - "from": "5620", - "to": "5695", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6460", - "label": "330112 (-) 409084", - "from": "5619", - "to": "5277", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6459", - "label": "330112 (-) 369394", - "from": "5619", - "to": "5507", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6458", - "label": "330112 (-) 331494", - "from": "5619", - "to": "5220", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6457", - "label": "227715 (-) 1336631", - "from": "5618", - "to": "5335", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6456", - "label": "952711 (-) 958275", - "from": "5617", - "to": "5184", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6455", - "label": "391560 (-) 2680", - "from": "5616", - "to": "5550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6454", - "label": "616843 (-) 617080", - "from": "5615", - "to": "5551", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6453", - "label": "401809 (-) 1428742", - "from": "5614", - "to": "5343", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6452", - "label": "401809 (-) 1266350", - "from": "5614", - "to": "5534", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6451", - "label": "571803 (-) 132458", - "from": "5613", - "to": "5316", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6450", - "label": "149916 (-) 1488882", - "from": "5612", - "to": "5131", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6449", - "label": "149916 (-) 1489512", - "from": "5612", - "to": "5555", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6448", - "label": "149916 (-) 964698", - "from": "5612", - "to": "5685", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6447", - "label": "149916 (-) 1489627", - "from": "5612", - "to": "5517", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6446", - "label": "149916 (-) 289835", - "from": "5612", - "to": "5409", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6445", - "label": "149916 (-) 157322", - "from": "5612", - "to": "5241", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6444", - "label": "1065380 (-) 261355", - "from": "5611", - "to": "5356", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6443", - "label": "301477 (-) 299541", - "from": "5610", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6442", - "label": "1200554 (-) 43842", - "from": "5609", - "to": "5476", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6441", - "label": "616886 (-) 616493", - "from": "5608", - "to": "5693", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6440", - "label": "616886 (-) 616831", - "from": "5608", - "to": "5620", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6439", - "label": "616886 (-) 616621", - "from": "5608", - "to": "5664", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6438", - "label": "616886 (-) 616817", - "from": "5608", - "to": "5624", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6437", - "label": "616886 (-) 616492", - "from": "5608", - "to": "5694", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6436", - "label": "321983 (-) 1275213", - "from": "5607", - "to": "5325", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6435", - "label": "321983 (-) 1382736", - "from": "5607", - "to": "5626", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6434", - "label": "1200581 (-) 1200554", - "from": "5606", - "to": "5609", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6433", - "label": "1245648 (-) 253191", - "from": "5605", - "to": "5348", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6432", - "label": "1935831 (-) 191978", - "from": "5604", - "to": "5280", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6431", - "label": "1477081 (-) 8325", - "from": "5603", - "to": "5675", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6430", - "label": "297434 (-) 296684", - "from": "5602", - "to": "5219", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6429", - "label": "960987 (-) 1272124", - "from": "5601", - "to": "5633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6428", - "label": "289245 (-) 144608", - "from": "5600", - "to": "5359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6427", - "label": "2062814 (-) 418544", - "from": "5599", - "to": "5508", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6426", - "label": "1200606 (-) 1200581", - "from": "5598", - "to": "5606", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6425", - "label": "440813 (-) 970337", - "from": "5597", - "to": "5252", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6424", - "label": "1798639 (-) 1911913", - "from": "5596", - "to": "5390", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6423", - "label": "2111986 (-) 49150", - "from": "5595", - "to": "5130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6422", - "label": "1430006 (-) 336103", - "from": "5594", - "to": "5653", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6421", - "label": "193018 (-) 193941", - "from": "5593", - "to": "5304", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6420", - "label": "193018 (-) 194202", - "from": "5593", - "to": "5237", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6419", - "label": "573953 (-) 572417", - "from": "5592", - "to": "5423", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6418", - "label": "1790467 (-) 251616", - "from": "5591", - "to": "5222", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6417", - "label": "248331 (-) 2680", - "from": "5590", - "to": "5550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6416", - "label": "637452 (-) 193879", - "from": "5589", - "to": "5319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6415", - "label": "637453 (-) 637452", - "from": "5588", - "to": "5589", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6414", - "label": "1337870 (-) 1337573", - "from": "5587", - "to": "5655", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6413", - "label": "193037 (-) 193018", - "from": "5586", - "to": "5593", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6412", - "label": "299537 (-) 299541", - "from": "5585", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6411", - "label": "653843 (-) 730789", - "from": "5584", - "to": "5235", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6410", - "label": "653843 (-) 737088", - "from": "5584", - "to": "5187", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6409", - "label": "653843 (-) 1538767", - "from": "5584", - "to": "5519", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6408", - "label": "653843 (-) 654138", - "from": "5584", - "to": "5480", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6407", - "label": "299541 (-) 308039", - "from": "5583", - "to": "5474", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6406", - "label": "299541 (-) 309001", - "from": "5583", - "to": "5210", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6405", - "label": "299541 (-) 297979", - "from": "5583", - "to": "5427", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6404", - "label": "299541 (-) 251616", - "from": "5583", - "to": "5222", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6403", - "label": "299541 (-) 297990", - "from": "5583", - "to": "5422", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6402", - "label": "299541 (-) 298000", - "from": "5583", - "to": "5418", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6401", - "label": "299541 (-) 293444", - "from": "5583", - "to": "5569", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6400", - "label": "299541 (-) 296350", - "from": "5583", - "to": "5302", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6399", - "label": "299544 (-) 299541", - "from": "5582", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6398", - "label": "1159708 (-) 2680", - "from": "5581", - "to": "5550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6397", - "label": "291357 (-) 144608", - "from": "5580", - "to": "5359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6396", - "label": "653856 (-) 654215", - "from": "5579", - "to": "5454", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6395", - "label": "1485345 (-) 144608", - "from": "5578", - "to": "5359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6394", - "label": "1083940 (-) 1084519", - "from": "5577", - "to": "5392", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6393", - "label": "231973 (-) 1341349", - "from": "5576", - "to": "5158", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6392", - "label": "231973 (-) 1340263", - "from": "5576", - "to": "5464", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6391", - "label": "231973 (-) 1341480", - "from": "5576", - "to": "5696", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6390", - "label": "231973 (-) 1340336", - "from": "5576", - "to": "5442", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6389", - "label": "231973 (-) 1341038", - "from": "5576", - "to": "5247", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6388", - "label": "1083941 (-) 1083940", - "from": "5575", - "to": "5577", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6387", - "label": "504360 (-) 504077", - "from": "5574", - "to": "5638", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6386", - "label": "504360 (-) 504075", - "from": "5574", - "to": "5643", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6385", - "label": "504360 (-) 504076", - "from": "5574", - "to": "5644", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6384", - "label": "311850 (-) 299541", - "from": "5573", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6383", - "label": "309814 (-) 299541", - "from": "5572", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6382", - "label": "1806903 (-) 412237", - "from": "5571", - "to": "5567", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6381", - "label": "504377 (-) 504076", - "from": "5570", - "to": "5644", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6380", - "label": "504377 (-) 504075", - "from": "5570", - "to": "5643", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6379", - "label": "293444 (-) 299541", - "from": "5569", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6378", - "label": "293444 (-) 329216", - "from": "5569", - "to": "5274", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6377", - "label": "293444 (-) 296562", - "from": "5569", - "to": "5246", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6376", - "label": "293444 (-) 1522955", - "from": "5569", - "to": "5344", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6375", - "label": "1538634 (-) 293444", - "from": "5568", - "to": "5569", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6374", - "label": "412237 (-) 414287", - "from": "5567", - "to": "5566", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6373", - "label": "414287 (-) 227113", - "from": "5566", - "to": "5201", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6372", - "label": "932440 (-) 584382", - "from": "5565", - "to": "5525", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6371", - "label": "389722 (-) 549814", - "from": "5564", - "to": "5439", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6370", - "label": "389722 (-) 616886", - "from": "5564", - "to": "5608", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6369", - "label": "1794651 (-) 962799", - "from": "5563", - "to": "5651", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6368", - "label": "1794651 (-) 1793419", - "from": "5563", - "to": "5306", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6367", - "label": "1794651 (-) 962363", - "from": "5563", - "to": "5189", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6366", - "label": "1794651 (-) 1793418", - "from": "5563", - "to": "5308", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6365", - "label": "555611 (-) 409544", - "from": "5562", - "to": "5147", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6364", - "label": "875101 (-) 875099", - "from": "5561", - "to": "5559", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6363", - "label": "971358 (-) 250984", - "from": "5560", - "to": "5391", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6362", - "label": "971358 (-) 251144", - "from": "5560", - "to": "5347", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6361", - "label": "971358 (-) 251201", - "from": "5560", - "to": "5331", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6360", - "label": "875099 (-) 875746", - "from": "5559", - "to": "5358", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6359", - "label": "350818 (-) 555944", - "from": "5558", - "to": "5444", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6358", - "label": "291429 (-) 144608", - "from": "5557", - "to": "5359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6357", - "label": "1159782 (-) 954243", - "from": "5556", - "to": "5168", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6356", - "label": "1489512 (-) 144608", - "from": "5555", - "to": "5359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6355", - "label": "1477225 (-) 231973", - "from": "5554", - "to": "5576", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6354", - "label": "1378926 (-) 1382736", - "from": "5553", - "to": "5626", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6353", - "label": "2052724 (-) 2059776", - "from": "5552", - "to": "5273", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6352", - "label": "617080 (-) 550651", - "from": "5551", - "to": "5214", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6351", - "label": "2680 (-) 712804", - "from": "5550", - "to": "5682", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6350", - "label": "227964 (-) 324791", - "from": "5549", - "to": "5370", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6349", - "label": "227964 (-) 320128", - "from": "5549", - "to": "5546", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6348", - "label": "227964 (-) 1382203", - "from": "5549", - "to": "5191", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6347", - "label": "227964 (-) 322680", - "from": "5549", - "to": "5386", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6346", - "label": "227964 (-) 324862", - "from": "5549", - "to": "5353", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6345", - "label": "227964 (-) 322256", - "from": "5549", - "to": "5520", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6344", - "label": "133757 (-) 291429", - "from": "5548", - "to": "5557", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6343", - "label": "133757 (-) 1485501", - "from": "5548", - "to": "5526", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6342", - "label": "133757 (-) 1484122", - "from": "5548", - "to": "5318", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6341", - "label": "133757 (-) 1480635", - "from": "5548", - "to": "5152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6340", - "label": "133757 (-) 289149", - "from": "5548", - "to": "5621", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6339", - "label": "133757 (-) 1485345", - "from": "5548", - "to": "5578", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6338", - "label": "133757 (-) 289245", - "from": "5548", - "to": "5600", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6337", - "label": "133757 (-) 291483", - "from": "5548", - "to": "5540", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6336", - "label": "637566 (-) 637453", - "from": "5547", - "to": "5588", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6335", - "label": "320128 (-) 320604", - "from": "5546", - "to": "5395", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6334", - "label": "1684105 (-) 330932", - "from": "5545", - "to": "5373", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6333", - "label": "1684105 (-) 330112", - "from": "5545", - "to": "5619", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6332", - "label": "1684105 (-) 298310", - "from": "5545", - "to": "5329", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6331", - "label": "1684105 (-) 299067", - "from": "5545", - "to": "5691", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6330", - "label": "1309325 (-) 1309326", - "from": "5544", - "to": "5543", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6329", - "label": "1309325 (-) 1309385", - "from": "5544", - "to": "5522", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6328", - "label": "1309326 (-) 1309471", - "from": "5543", - "to": "5492", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6327", - "label": "98964 (-) 98391", - "from": "5542", - "to": "5688", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6326", - "label": "98964 (-) 1490531", - "from": "5542", - "to": "5251", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6325", - "label": "98964 (-) 1490324", - "from": "5542", - "to": "5305", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6324", - "label": "98964 (-) 291357", - "from": "5542", - "to": "5580", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6323", - "label": "1806998 (-) 627749", - "from": "5541", - "to": "5411", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6322", - "label": "1806998 (-) 441814", - "from": "5541", - "to": "5288", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6321", - "label": "291483 (-) 144608", - "from": "5540", - "to": "5359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6320", - "label": "160413 (-) 159862", - "from": "5539", - "to": "5680", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6319", - "label": "1682080 (-) 251616", - "from": "5538", - "to": "5222", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6318", - "label": "719521 (-) 719714", - "from": "5537", - "to": "5468", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6317", - "label": "330402 (-) 331494", - "from": "5536", - "to": "5220", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6316", - "label": "1690278 (-) 330402", - "from": "5535", - "to": "5536", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6315", - "label": "1266350 (-) 1265995", - "from": "5534", - "to": "5628", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6314", - "label": "672431 (-) 46171", - "from": "5533", - "to": "5396", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6313", - "label": "1802928 (-) 441814", - "from": "5532", - "to": "5288", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6312", - "label": "1411759 (-) 1411760", - "from": "5531", - "to": "5530", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6311", - "label": "1411760 (-) 1412138", - "from": "5530", - "to": "5410", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6310", - "label": "1807026 (-) 935814", - "from": "5529", - "to": "5167", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6309", - "label": "1807026 (-) 570878", - "from": "5529", - "to": "5275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6308", - "label": "1807026 (-) 627557", - "from": "5529", - "to": "5465", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6307", - "label": "1673905 (-) 261355", - "from": "5528", - "to": "5356", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6306", - "label": "1231548 (-) 1230506", - "from": "5527", - "to": "5233", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6305", - "label": "1485501 (-) 144608", - "from": "5526", - "to": "5359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6304", - "label": "584382 (-) 2131650", - "from": "5525", - "to": "5227", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6303", - "label": "322239 (-) 321084", - "from": "5524", - "to": "5260", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6302", - "label": "1411783 (-) 1473433", - "from": "5523", - "to": "5451", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6301", - "label": "1309385 (-) 1309471", - "from": "5522", - "to": "5492", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6300", - "label": "572111 (-) 571548", - "from": "5521", - "to": "5669", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6299", - "label": "322256 (-) 321330", - "from": "5520", - "to": "5196", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6298", - "label": "1538767 (-) 654141", - "from": "5519", - "to": "5477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6297", - "label": "877267 (-) 875101", - "from": "5518", - "to": "5561", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6296", - "label": "1489627 (-) 144608", - "from": "5517", - "to": "5359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6295", - "label": "1694430 (-) 330475", - "from": "5516", - "to": "5510", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6294", - "label": "2052833 (-) 2059776", - "from": "5515", - "to": "5273", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6293", - "label": "94950 (-) 1522976", - "from": "5514", - "to": "5336", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6292", - "label": "94950 (-) 548159", - "from": "5514", - "to": "5332", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6291", - "label": "1266408 (-) 1265996", - "from": "5513", - "to": "5627", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6290", - "label": "1266409 (-) 1266408", - "from": "5512", - "to": "5513", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6289", - "label": "1661673 (-) 357229", - "from": "5511", - "to": "5462", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6288", - "label": "330475 (-) 331494", - "from": "5510", - "to": "5220", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6287", - "label": "103150 (-) 433546", - "from": "5509", - "to": "5307", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6286", - "label": "103150 (-) 1049381", - "from": "5509", - "to": "5488", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6285", - "label": "418544 (-) 2062227", - "from": "5508", - "to": "5163", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6284", - "label": "369394 (-) 298309", - "from": "5507", - "to": "5330", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6283", - "label": "369394 (-) 304129", - "from": "5507", - "to": "5425", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6282", - "label": "369394 (-) 299127", - "from": "5507", - "to": "5679", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6281", - "label": "369394 (-) 298310", - "from": "5507", - "to": "5329", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6280", - "label": "369394 (-) 298315", - "from": "5507", - "to": "5327", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6279", - "label": "369394 (-) 304210", - "from": "5507", - "to": "5397", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6278", - "label": "369394 (-) 299067", - "from": "5507", - "to": "5691", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6277", - "label": "369394 (-) 299537", - "from": "5507", - "to": "5585", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6276", - "label": "369394 (-) 304276", - "from": "5507", - "to": "5382", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6275", - "label": "369394 (-) 301477", - "from": "5507", - "to": "5610", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6274", - "label": "369394 (-) 293444", - "from": "5507", - "to": "5569", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6273", - "label": "369394 (-) 303994", - "from": "5507", - "to": "5459", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6272", - "label": "369394 (-) 301845", - "from": "5507", - "to": "5496", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6271", - "label": "373494 (-) 369394", - "from": "5506", - "to": "5507", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6270", - "label": "1243896 (-) 321983", - "from": "5505", - "to": "5607", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6269", - "label": "1663739 (-) 2131650", - "from": "5504", - "to": "5227", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6268", - "label": "883453 (-) 883065", - "from": "5503", - "to": "5622", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6267", - "label": "883455 (-) 883453", - "from": "5502", - "to": "5503", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6266", - "label": "883456 (-) 883453", - "from": "5501", - "to": "5503", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6265", - "label": "310020 (-) 299541", - "from": "5500", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6264", - "label": "310021 (-) 331494", - "from": "5499", - "to": "5220", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6263", - "label": "310021 (-) 299541", - "from": "5499", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6262", - "label": "1884935 (-) 554016", - "from": "5498", - "to": "5413", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6261", - "label": "54026 (-) 743241", - "from": "5497", - "to": "5183", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6260", - "label": "301845 (-) 299541", - "from": "5496", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6259", - "label": "1159958 (-) 618296", - "from": "5495", - "to": "5192", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6258", - "label": "1159958 (-) 618516", - "from": "5495", - "to": "5701", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6257", - "label": "254746 (-) 974036", - "from": "5494", - "to": "5361", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6256", - "label": "254746 (-) 975952", - "from": "5494", - "to": "5400", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6255", - "label": "254746 (-) 973669", - "from": "5494", - "to": "5466", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6254", - "label": "254746 (-) 252110", - "from": "5494", - "to": "5657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6253", - "label": "254746 (-) 971358", - "from": "5494", - "to": "5560", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6252", - "label": "254746 (-) 973072", - "from": "5494", - "to": "5640", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6251", - "label": "254746 (-) 972439", - "from": "5494", - "to": "5239", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6250", - "label": "586523 (-) 570878", - "from": "5493", - "to": "5275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6249", - "label": "1309471 (-) 728256", - "from": "5492", - "to": "5365", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6248", - "label": "1663777 (-) 1663739", - "from": "5491", - "to": "5504", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6247", - "label": "883490 (-) 883455", - "from": "5490", - "to": "5502", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6246", - "label": "1082148 (-) 350818", - "from": "5489", - "to": "5558", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6245", - "label": "1049381 (-) 94950", - "from": "5488", - "to": "5514", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6244", - "label": "441126 (-) 440813", - "from": "5487", - "to": "5597", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6243", - "label": "1082151 (-) 1082148", - "from": "5486", - "to": "5489", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6242", - "label": "719655 (-) 719521", - "from": "5485", - "to": "5537", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6241", - "label": "1889063 (-) 64690", - "from": "5484", - "to": "5375", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6240", - "label": "1794867 (-) 1793352", - "from": "5483", - "to": "5328", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6239", - "label": "62263 (-) 743241", - "from": "5482", - "to": "5183", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6238", - "label": "140089 (-) 586523", - "from": "5481", - "to": "5493", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6237", - "label": "654138 (-) 654141", - "from": "5480", - "to": "5477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6236", - "label": "1684283 (-) 330112", - "from": "5479", - "to": "5619", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6235", - "label": "404285 (-) 707770", - "from": "5478", - "to": "5369", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6234", - "label": "404285 (-) 707416", - "from": "5478", - "to": "5469", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6233", - "label": "654141 (-) 952239", - "from": "5477", - "to": "5156", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6232", - "label": "654141 (-) 719655", - "from": "5477", - "to": "5485", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6231", - "label": "43842 (-) 1952840", - "from": "5476", - "to": "5403", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6230", - "label": "43842 (-) 1477081", - "from": "5476", - "to": "5603", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6229", - "label": "43842 (-) 1952931", - "from": "5476", - "to": "5378", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6228", - "label": "43842 (-) 1953027", - "from": "5476", - "to": "5351", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6227", - "label": "1035074 (-) 1159782", - "from": "5475", - "to": "5556", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6226", - "label": "308039 (-) 299541", - "from": "5474", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6225", - "label": "320330 (-) 324862", - "from": "5473", - "to": "5353", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6224", - "label": "320330 (-) 320128", - "from": "5473", - "to": "5546", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6223", - "label": "320330 (-) 322256", - "from": "5473", - "to": "5520", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6222", - "label": "320330 (-) 1382203", - "from": "5473", - "to": "5191", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6221", - "label": "320330 (-) 324791", - "from": "5473", - "to": "5370", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6220", - "label": "320330 (-) 322680", - "from": "5473", - "to": "5386", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6219", - "label": "13130 (-) 13588", - "from": "5472", - "to": "5338", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6218", - "label": "13134 (-) 1490324", - "from": "5471", - "to": "5305", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6217", - "label": "13134 (-) 1490531", - "from": "5471", - "to": "5251", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6216", - "label": "1200984 (-) 554324", - "from": "5470", - "to": "5322", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6215", - "label": "707416 (-) 227113", - "from": "5469", - "to": "5201", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6214", - "label": "719714 (-) 565410", - "from": "5468", - "to": "5666", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6213", - "label": "627554 (-) 441814", - "from": "5467", - "to": "5288", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6212", - "label": "627554 (-) 627749", - "from": "5467", - "to": "5411", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6211", - "label": "973669 (-) 250984", - "from": "5466", - "to": "5391", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6210", - "label": "973669 (-) 251144", - "from": "5466", - "to": "5347", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6209", - "label": "973669 (-) 251201", - "from": "5466", - "to": "5331", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6208", - "label": "627557 (-) 1806998", - "from": "5465", - "to": "5541", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6207", - "label": "627557 (-) 627554", - "from": "5465", - "to": "5467", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6206", - "label": "1340263 (-) 320330", - "from": "5464", - "to": "5473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6205", - "label": "2114406 (-) 2114794", - "from": "5463", - "to": "5357", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6204", - "label": "357229 (-) 1663777", - "from": "5462", - "to": "5491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6203", - "label": "369519 (-) 369394", - "from": "5461", - "to": "5507", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6202", - "label": "2085752 (-) 130871", - "from": "5460", - "to": "5193", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6201", - "label": "303994 (-) 299541", - "from": "5459", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6200", - "label": "924543 (-) 2131650", - "from": "5458", - "to": "5227", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6199", - "label": "998275 (-) 1417364", - "from": "5457", - "to": "5671", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6198", - "label": "998275 (-) 1414797", - "from": "5457", - "to": "5240", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6197", - "label": "441219 (-) 441126", - "from": "5456", - "to": "5487", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6196", - "label": "998276 (-) 1417364", - "from": "5455", - "to": "5671", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6195", - "label": "998276 (-) 1414797", - "from": "5455", - "to": "5240", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6194", - "label": "654215 (-) 653843", - "from": "5454", - "to": "5584", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6193", - "label": "2114443 (-) 2112991", - "from": "5453", - "to": "5285", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6192", - "label": "998290 (-) 1417364", - "from": "5452", - "to": "5671", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6191", - "label": "998290 (-) 1414797", - "from": "5452", - "to": "5240", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6190", - "label": "1473433 (-) 138223", - "from": "5451", - "to": "5429", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6189", - "label": "1473437 (-) 1411783", - "from": "5450", - "to": "5523", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6188", - "label": "1084318 (-) 171672", - "from": "5449", - "to": "5238", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6187", - "label": "1338271 (-) 389722", - "from": "5448", - "to": "5564", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6186", - "label": "1084321 (-) 1084318", - "from": "5447", - "to": "5449", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6185", - "label": "1807269 (-) 418544", - "from": "5446", - "to": "5508", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6184", - "label": "1807269 (-) 401809", - "from": "5446", - "to": "5614", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6183", - "label": "64422 (-) 1238006", - "from": "5445", - "to": "5428", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6182", - "label": "555944 (-) 293444", - "from": "5444", - "to": "5569", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6181", - "label": "54189 (-) 743241", - "from": "5443", - "to": "5183", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6180", - "label": "1340336 (-) 320330", - "from": "5442", - "to": "5473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6179", - "label": "1340336 (-) 227964", - "from": "5442", - "to": "5549", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6178", - "label": "885683 (-) 887987", - "from": "5441", - "to": "5374", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6177", - "label": "885683 (-) 877790", - "from": "5441", - "to": "5360", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6176", - "label": "1799093 (-) 1035074", - "from": "5440", - "to": "5475", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6175", - "label": "549814 (-) 550522", - "from": "5439", - "to": "5243", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6174", - "label": "1113015 (-) 1107533", - "from": "5438", - "to": "5257", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6173", - "label": "549816 (-) 549814", - "from": "5437", - "to": "5439", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6172", - "label": "433081 (-) 1429185", - "from": "5436", - "to": "5228", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6171", - "label": "433081 (-) 1428672", - "from": "5436", - "to": "5366", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6170", - "label": "1782717 (-) 1391645", - "from": "5435", - "to": "5414", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6169", - "label": "1782717 (-) 333538", - "from": "5435", - "to": "5221", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6168", - "label": "1782717 (-) 333415", - "from": "5435", - "to": "5250", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6167", - "label": "885694 (-) 885683", - "from": "5434", - "to": "5441", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6166", - "label": "1659840 (-) 1207322", - "from": "5433", - "to": "5417", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6165", - "label": "320468 (-) 320128", - "from": "5432", - "to": "5546", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6164", - "label": "992230 (-) 992233", - "from": "5431", - "to": "5430", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6163", - "label": "992233 (-) 495541", - "from": "5430", - "to": "5154", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6162", - "label": "138223 (-) 672431", - "from": "5429", - "to": "5533", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6161", - "label": "1238006 (-) 1237265", - "from": "5428", - "to": "5639", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6160", - "label": "297979 (-) 297434", - "from": "5427", - "to": "5602", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6159", - "label": "572416 (-) 572418", - "from": "5426", - "to": "5424", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6158", - "label": "304129 (-) 299541", - "from": "5425", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6157", - "label": "572418 (-) 1031197", - "from": "5424", - "to": "5416", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6156", - "label": "572418 (-) 994566", - "from": "5424", - "to": "5349", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6155", - "label": "572417 (-) 572416", - "from": "5423", - "to": "5426", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6154", - "label": "297990 (-) 299541", - "from": "5422", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6153", - "label": "297990 (-) 297434", - "from": "5422", - "to": "5602", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6152", - "label": "492556 (-) 1684105", - "from": "5421", - "to": "5545", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6151", - "label": "492556 (-) 1682942", - "from": "5421", - "to": "5276", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6150", - "label": "492556 (-) 1684283", - "from": "5421", - "to": "5479", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6149", - "label": "826382 (-) 492556", - "from": "5420", - "to": "5421", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6148", - "label": "672783 (-) 932440", - "from": "5419", - "to": "5565", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6147", - "label": "298000 (-) 297434", - "from": "5418", - "to": "5602", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6146", - "label": "1207322 (-) 1661673", - "from": "5417", - "to": "5511", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6145", - "label": "1207322 (-) 1661054", - "from": "5417", - "to": "5677", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6144", - "label": "1031197 (-) 992230", - "from": "5416", - "to": "5431", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6143", - "label": "289822 (-) 94950", - "from": "5415", - "to": "5514", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6142", - "label": "1391645 (-) 1659840", - "from": "5414", - "to": "5433", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6141", - "label": "554016 (-) 826382", - "from": "5413", - "to": "5420", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6140", - "label": "289823 (-) 289822", - "from": "5412", - "to": "5415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6139", - "label": "627749 (-) 1806903", - "from": "5411", - "to": "5571", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6138", - "label": "1412138 (-) 1411783", - "from": "5410", - "to": "5523", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6137", - "label": "289835 (-) 289823", - "from": "5409", - "to": "5412", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6136", - "label": "1473583 (-) 1411783", - "from": "5408", - "to": "5523", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6135", - "label": "1668145 (-) 251616", - "from": "5407", - "to": "5222", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6134", - "label": "54322 (-) 743241", - "from": "5406", - "to": "5183", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6133", - "label": "2131002 (-) 2131705", - "from": "5405", - "to": "5216", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6132", - "label": "955460 (-) 955573", - "from": "5404", - "to": "5372", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6131", - "label": "1952840 (-) 998275", - "from": "5403", - "to": "5457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6130", - "label": "62537 (-) 743241", - "from": "5402", - "to": "5183", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6129", - "label": "2131021 (-) 2131705", - "from": "5401", - "to": "5216", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6128", - "label": "975952 (-) 250984", - "from": "5400", - "to": "5391", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6127", - "label": "975952 (-) 251144", - "from": "5400", - "to": "5347", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6126", - "label": "975952 (-) 251201", - "from": "5400", - "to": "5331", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6125", - "label": "703569 (-) 404285", - "from": "5399", - "to": "5478", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6124", - "label": "703570 (-) 1410943", - "from": "5398", - "to": "5172", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6123", - "label": "703570 (-) 703569", - "from": "5398", - "to": "5399", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6122", - "label": "304210 (-) 299541", - "from": "5397", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6121", - "label": "46171 (-) 703760", - "from": "5396", - "to": "5340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6120", - "label": "320604 (-) 1430006", - "from": "5395", - "to": "5594", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6119", - "label": "320604 (-) 1275213", - "from": "5395", - "to": "5325", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6118", - "label": "1934430 (-) 1935115", - "from": "5394", - "to": "5209", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6117", - "label": "1428580 (-) 1428742", - "from": "5393", - "to": "5343", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6116", - "label": "1084519 (-) 1084321", - "from": "5392", - "to": "5447", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6115", - "label": "250984 (-) 392955", - "from": "5391", - "to": "5213", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6114", - "label": "1911913 (-) 978264", - "from": "5390", - "to": "5320", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6113", - "label": "72811 (-) 1242262", - "from": "5389", - "to": "5381", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6112", - "label": "500848 (-) 492556", - "from": "5388", - "to": "5421", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6111", - "label": "916596 (-) 917308", - "from": "5387", - "to": "5190", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6110", - "label": "916596 (-) 916923", - "from": "5387", - "to": "5293", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6109", - "label": "322680 (-) 321865", - "from": "5386", - "to": "5629", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6108", - "label": "314489 (-) 299541", - "from": "5385", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6107", - "label": "1338496 (-) 301477", - "from": "5384", - "to": "5610", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6106", - "label": "160903 (-) 160413", - "from": "5383", - "to": "5539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6105", - "label": "160903 (-) 1382672", - "from": "5383", - "to": "5637", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6104", - "label": "304276 (-) 299541", - "from": "5382", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6103", - "label": "1242262 (-) 1243009", - "from": "5381", - "to": "5171", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6102", - "label": "1035416 (-) 2085752", - "from": "5380", - "to": "5460", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6101", - "label": "951458 (-) 421558", - "from": "5379", - "to": "5231", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6100", - "label": "1952931 (-) 998276", - "from": "5378", - "to": "5455", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6099", - "label": "1952931 (-) 998290", - "from": "5378", - "to": "5452", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6098", - "label": "255142 (-) 974036", - "from": "5377", - "to": "5361", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6097", - "label": "255142 (-) 973072", - "from": "5377", - "to": "5640", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6096", - "label": "255142 (-) 971358", - "from": "5377", - "to": "5560", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6095", - "label": "255142 (-) 973669", - "from": "5377", - "to": "5466", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6094", - "label": "255142 (-) 972439", - "from": "5377", - "to": "5239", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6093", - "label": "255142 (-) 975952", - "from": "5377", - "to": "5400", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6092", - "label": "255142 (-) 252110", - "from": "5377", - "to": "5657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6091", - "label": "1793199 (-) 149916", - "from": "5376", - "to": "5612", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6090", - "label": "1793199 (-) 286028", - "from": "5376", - "to": "5326", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6089", - "label": "1793199 (-) 570743", - "from": "5376", - "to": "5314", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6088", - "label": "64690 (-) 1886473", - "from": "5375", - "to": "5647", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6087", - "label": "64690 (-) 923825", - "from": "5375", - "to": "5661", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6086", - "label": "64690 (-) 67353", - "from": "5375", - "to": "5207", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6085", - "label": "887987 (-) 888278", - "from": "5374", - "to": "5287", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6084", - "label": "330932 (-) 331494", - "from": "5373", - "to": "5220", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6083", - "label": "330932 (-) 369394", - "from": "5373", - "to": "5507", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6082", - "label": "955573 (-) 952711", - "from": "5372", - "to": "5617", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6081", - "label": "955574 (-) 955573", - "from": "5371", - "to": "5372", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6080", - "label": "324791 (-) 321329", - "from": "5370", - "to": "5198", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6079", - "label": "707770 (-) 707772", - "from": "5369", - "to": "5367", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6078", - "label": "707770 (-) 708267", - "from": "5369", - "to": "5232", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6077", - "label": "707770 (-) 707871", - "from": "5369", - "to": "5337", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6076", - "label": "955580 (-) 955573", - "from": "5368", - "to": "5372", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6075", - "label": "707772 (-) 1275213", - "from": "5367", - "to": "5325", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6074", - "label": "1428672 (-) 1428580", - "from": "5366", - "to": "5393", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6073", - "label": "728256 (-) 728927", - "from": "5365", - "to": "5178", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6072", - "label": "593090 (-) 1411759", - "from": "5364", - "to": "5531", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6071", - "label": "1238218 (-) 1238006", - "from": "5363", - "to": "5428", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6070", - "label": "333006 (-) 331494", - "from": "5362", - "to": "5220", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6069", - "label": "974036 (-) 251144", - "from": "5361", - "to": "5347", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6068", - "label": "974036 (-) 251201", - "from": "5361", - "to": "5331", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6067", - "label": "974036 (-) 250984", - "from": "5361", - "to": "5391", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6066", - "label": "877790 (-) 877267", - "from": "5360", - "to": "5518", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6065", - "label": "144608 (-) 151325", - "from": "5359", - "to": "5204", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6064", - "label": "144608 (-) 289822", - "from": "5359", - "to": "5415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6063", - "label": "875746 (-) 2111986", - "from": "5358", - "to": "5595", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6062", - "label": "875746 (-) 1309325", - "from": "5358", - "to": "5544", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6061", - "label": "2114794 (-) 2114795", - "from": "5357", - "to": "5355", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6060", - "label": "261355 (-) 331494", - "from": "5356", - "to": "5220", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6059", - "label": "261355 (-) 299541", - "from": "5356", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6058", - "label": "2114795 (-) 2114825", - "from": "5355", - "to": "5342", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6057", - "label": "587004 (-) 570878", - "from": "5354", - "to": "5275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6056", - "label": "324862 (-) 321328", - "from": "5353", - "to": "5195", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6055", - "label": "660736 (-) 2062814", - "from": "5352", - "to": "5599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6054", - "label": "1953027 (-) 998275", - "from": "5351", - "to": "5457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6053", - "label": "955652 (-) 955580", - "from": "5350", - "to": "5368", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6052", - "label": "955652 (-) 955574", - "from": "5350", - "to": "5371", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6051", - "label": "955652 (-) 955460", - "from": "5350", - "to": "5404", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6050", - "label": "994566 (-) 992230", - "from": "5349", - "to": "5431", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6049", - "label": "253191 (-) 973072", - "from": "5348", - "to": "5640", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6048", - "label": "253191 (-) 975952", - "from": "5348", - "to": "5400", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6047", - "label": "253191 (-) 252110", - "from": "5348", - "to": "5657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6046", - "label": "253191 (-) 1200984", - "from": "5348", - "to": "5470", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6045", - "label": "253191 (-) 971358", - "from": "5348", - "to": "5560", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6044", - "label": "253191 (-) 974036", - "from": "5348", - "to": "5361", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6043", - "label": "253191 (-) 972439", - "from": "5348", - "to": "5239", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6042", - "label": "253191 (-) 973669", - "from": "5348", - "to": "5466", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6041", - "label": "251144 (-) 392955", - "from": "5347", - "to": "5213", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6040", - "label": "1230088 (-) 1230586", - "from": "5346", - "to": "5212", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6039", - "label": "1230088 (-) 1231548", - "from": "5346", - "to": "5527", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6038", - "label": "550154 (-) 617080", - "from": "5345", - "to": "5551", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6037", - "label": "550154 (-) 550650", - "from": "5345", - "to": "5215", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6036", - "label": "550154 (-) 646528", - "from": "5345", - "to": "5309", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6035", - "label": "1522955 (-) 672783", - "from": "5344", - "to": "5419", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6034", - "label": "1428742 (-) 321983", - "from": "5343", - "to": "5607", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6033", - "label": "2114825 (-) 880186", - "from": "5342", - "to": "5261", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6032", - "label": "97550 (-) 587004", - "from": "5341", - "to": "5354", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6031", - "label": "703760 (-) 703570", - "from": "5340", - "to": "5398", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6030", - "label": "703763 (-) 703760", - "from": "5339", - "to": "5340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6029", - "label": "13588 (-) 1302460", - "from": "5338", - "to": "5151", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6028", - "label": "13588 (-) 1884935", - "from": "5338", - "to": "5498", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6027", - "label": "707871 (-) 1275213", - "from": "5337", - "to": "5325", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6026", - "label": "1522976 (-) 293444", - "from": "5336", - "to": "5569", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6025", - "label": "1336631 (-) 1335037", - "from": "5335", - "to": "5211", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6024", - "label": "955707 (-) 955652", - "from": "5334", - "to": "5350", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6023", - "label": "955707 (-) 1156931", - "from": "5334", - "to": "5185", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6022", - "label": "415036 (-) 97550", - "from": "5333", - "to": "5341", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6021", - "label": "548159 (-) 14012", - "from": "5332", - "to": "5229", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6020", - "label": "251201 (-) 392955", - "from": "5331", - "to": "5213", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6019", - "label": "298309 (-) 299541", - "from": "5330", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6018", - "label": "298310 (-) 364005", - "from": "5329", - "to": "5281", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6017", - "label": "298310 (-) 331494", - "from": "5329", - "to": "5220", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6016", - "label": "298310 (-) 369394", - "from": "5329", - "to": "5507", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6015", - "label": "298310 (-) 329305", - "from": "5329", - "to": "5255", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6014", - "label": "298310 (-) 299541", - "from": "5329", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6013", - "label": "1793352 (-) 1793199", - "from": "5328", - "to": "5376", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6012", - "label": "298315 (-) 299541", - "from": "5327", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6011", - "label": "286028 (-) 1046846", - "from": "5326", - "to": "5632", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6010", - "label": "286028 (-) 1807026", - "from": "5326", - "to": "5529", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6009", - "label": "1275213 (-) 1275214", - "from": "5325", - "to": "5324", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6008", - "label": "1275214 (-) 1782717", - "from": "5324", - "to": "5435", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6007", - "label": "101711 (-) 1490324", - "from": "5323", - "to": "5305", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6006", - "label": "101711 (-) 1490531", - "from": "5323", - "to": "5251", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6005", - "label": "101711 (-) 555611", - "from": "5323", - "to": "5562", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6004", - "label": "101711 (-) 291357", - "from": "5323", - "to": "5580", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6003", - "label": "554324 (-) 554327", - "from": "5322", - "to": "5321", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6002", - "label": "554327 (-) 98964", - "from": "5321", - "to": "5542", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6001", - "label": "978264 (-) 1916734", - "from": "5320", - "to": "5188", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6000", - "label": "193879 (-) 1083941", - "from": "5319", - "to": "5575", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5999", - "label": "193879 (-) 193037", - "from": "5319", - "to": "5586", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5998", - "label": "1484122 (-) 144608", - "from": "5318", - "to": "5359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5997", - "label": "888170 (-) 885694", - "from": "5317", - "to": "5434", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5996", - "label": "132458 (-) 587783", - "from": "5316", - "to": "5704", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5995", - "label": "132458 (-) 1214047", - "from": "5316", - "to": "5253", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5994", - "label": "1949040 (-) 374742", - "from": "5315", - "to": "5139", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5993", - "label": "1949040 (-) 374754", - "from": "5315", - "to": "5136", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5992", - "label": "1949040 (-) 374743", - "from": "5315", - "to": "5138", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5991", - "label": "570743 (-) 1482169", - "from": "5314", - "to": "5294", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5990", - "label": "1695098 (-) 330475", - "from": "5313", - "to": "5510", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5989", - "label": "302460 (-) 299541", - "from": "5312", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5988", - "label": "5502 (-) 13130", - "from": "5311", - "to": "5472", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5987", - "label": "5502 (-) 8322", - "from": "5311", - "to": "5676", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5986", - "label": "5503 (-) 8322", - "from": "5310", - "to": "5676", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5985", - "label": "5503 (-) 13130", - "from": "5310", - "to": "5472", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5984", - "label": "646528 (-) 550651", - "from": "5309", - "to": "5214", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5983", - "label": "1793418 (-) 1794867", - "from": "5308", - "to": "5483", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5982", - "label": "433546 (-) 433081", - "from": "5307", - "to": "5436", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5981", - "label": "1793419 (-) 1794867", - "from": "5306", - "to": "5483", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5980", - "label": "1490324 (-) 144608", - "from": "5305", - "to": "5359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5979", - "label": "193941 (-) 191969", - "from": "5304", - "to": "5283", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5978", - "label": "2131348 (-) 2131705", - "from": "5303", - "to": "5216", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5977", - "label": "296350 (-) 329216", - "from": "5302", - "to": "5274", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5976", - "label": "1035681 (-) 1035416", - "from": "5301", - "to": "5380", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5975", - "label": "1035683 (-) 1035681", - "from": "5300", - "to": "5301", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5974", - "label": "421285 (-) 419867", - "from": "5299", - "to": "5699", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5973", - "label": "439723 (-) 1230467", - "from": "5298", - "to": "5242", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5972", - "label": "441772 (-) 441219", - "from": "5297", - "to": "5456", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5971", - "label": "441773 (-) 1386423", - "from": "5296", - "to": "5153", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5970", - "label": "441773 (-) 1382312", - "from": "5296", - "to": "5157", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5969", - "label": "441773 (-) 441772", - "from": "5296", - "to": "5297", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5968", - "label": "1863096 (-) 330402", - "from": "5295", - "to": "5536", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5967", - "label": "1482169 (-) 570878", - "from": "5294", - "to": "5275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5966", - "label": "1482169 (-) 935814", - "from": "5294", - "to": "5167", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5965", - "label": "916923 (-) 504065", - "from": "5293", - "to": "5648", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5964", - "label": "587203 (-) 441814", - "from": "5292", - "to": "5288", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5963", - "label": "310723 (-) 299541", - "from": "5291", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5962", - "label": "1275346 (-) 1275348", - "from": "5290", - "to": "5289", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5961", - "label": "1275346 (-) 1275362", - "from": "5290", - "to": "5282", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5960", - "label": "1275348 (-) 1782717", - "from": "5289", - "to": "5435", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5959", - "label": "441814 (-) 1807269", - "from": "5288", - "to": "5446", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5958", - "label": "441814 (-) 1386423", - "from": "5288", - "to": "5153", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5957", - "label": "441814 (-) 1806603", - "from": "5288", - "to": "5645", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5956", - "label": "888278 (-) 883456", - "from": "5287", - "to": "5501", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5955", - "label": "2112990 (-) 874812", - "from": "5286", - "to": "5634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5954", - "label": "2112990 (-) 2114406", - "from": "5286", - "to": "5463", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5953", - "label": "2112990 (-) 874479", - "from": "5286", - "to": "5132", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5952", - "label": "2112991 (-) 2112990", - "from": "5285", - "to": "5286", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5951", - "label": "335327 (-) 331494", - "from": "5284", - "to": "5220", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5950", - "label": "191969 (-) 1694430", - "from": "5283", - "to": "5516", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5949", - "label": "191969 (-) 1695098", - "from": "5283", - "to": "5313", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5948", - "label": "1275362 (-) 1782717", - "from": "5282", - "to": "5435", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5947", - "label": "364005 (-) 296913", - "from": "5281", - "to": "5140", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5946", - "label": "364005 (-) 297083", - "from": "5281", - "to": "5678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5945", - "label": "364005 (-) 293444", - "from": "5281", - "to": "5569", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5944", - "label": "191978 (-) 1673905", - "from": "5280", - "to": "5528", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5943", - "label": "1035755 (-) 1035683", - "from": "5279", - "to": "5300", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5942", - "label": "882169 (-) 888278", - "from": "5278", - "to": "5287", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5941", - "label": "882169 (-) 883490", - "from": "5278", - "to": "5490", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5940", - "label": "409084 (-) 293444", - "from": "5277", - "to": "5569", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5939", - "label": "1682942 (-) 330112", - "from": "5276", - "to": "5619", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5938", - "label": "570878 (-) 627554", - "from": "5275", - "to": "5467", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5937", - "label": "570878 (-) 1806998", - "from": "5275", - "to": "5541", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5936", - "label": "570878 (-) 1802928", - "from": "5275", - "to": "5532", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5935", - "label": "570878 (-) 935811", - "from": "5275", - "to": "5170", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5934", - "label": "570878 (-) 587203", - "from": "5275", - "to": "5292", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5933", - "label": "329216 (-) 296684", - "from": "5274", - "to": "5219", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5932", - "label": "329216 (-) 293444", - "from": "5274", - "to": "5569", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5931", - "label": "2059776 (-) 653856", - "from": "5273", - "to": "5579", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5930", - "label": "882178 (-) 883490", - "from": "5272", - "to": "5490", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5929", - "label": "882178 (-) 888278", - "from": "5272", - "to": "5287", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5928", - "label": "232970 (-) 1382736", - "from": "5271", - "to": "5626", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5927", - "label": "232970 (-) 1382203", - "from": "5271", - "to": "5191", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5926", - "label": "2098710 (-) 2052724", - "from": "5270", - "to": "5552", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5925", - "label": "2098710 (-) 2052833", - "from": "5270", - "to": "5515", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5924", - "label": "357917 (-) 208591", - "from": "5269", - "to": "5224", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5923", - "label": "439838 (-) 439723", - "from": "5268", - "to": "5298", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5922", - "label": "343583 (-) 331494", - "from": "5267", - "to": "5220", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5921", - "label": "372265 (-) 369394", - "from": "5266", - "to": "5507", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5920", - "label": "77362 (-) 62263", - "from": "5265", - "to": "5482", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5919", - "label": "77362 (-) 54189", - "from": "5265", - "to": "5443", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5918", - "label": "77362 (-) 54322", - "from": "5265", - "to": "5406", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5917", - "label": "77362 (-) 55277", - "from": "5265", - "to": "5134", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5916", - "label": "77362 (-) 54900", - "from": "5265", - "to": "5245", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5915", - "label": "77362 (-) 55093", - "from": "5265", - "to": "5194", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5914", - "label": "77362 (-) 61124", - "from": "5265", - "to": "5225", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5913", - "label": "77362 (-) 54026", - "from": "5265", - "to": "5497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5912", - "label": "77362 (-) 62537", - "from": "5265", - "to": "5402", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5911", - "label": "101938 (-) 555611", - "from": "5264", - "to": "5562", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5910", - "label": "101938 (-) 1490531", - "from": "5264", - "to": "5251", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5909", - "label": "101938 (-) 1490324", - "from": "5264", - "to": "5305", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5908", - "label": "101938 (-) 291357", - "from": "5264", - "to": "5580", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5907", - "label": "878133 (-) 877267", - "from": "5263", - "to": "5518", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5906", - "label": "13879 (-) 6157", - "from": "5262", - "to": "5703", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5905", - "label": "13879 (-) 5503", - "from": "5262", - "to": "5310", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5904", - "label": "13879 (-) 5738", - "from": "5262", - "to": "5248", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5903", - "label": "13879 (-) 6250", - "from": "5262", - "to": "5681", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5902", - "label": "13879 (-) 5737", - "from": "5262", - "to": "5249", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5901", - "label": "13879 (-) 5502", - "from": "5262", - "to": "5311", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5900", - "label": "13879 (-) 5936", - "from": "5262", - "to": "5199", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5899", - "label": "13879 (-) 6042", - "from": "5262", - "to": "5160", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5898", - "label": "880186 (-) 888278", - "from": "5261", - "to": "5287", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5897", - "label": "321084 (-) 1338496", - "from": "5260", - "to": "5384", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5896", - "label": "1519168 (-) 1538634", - "from": "5259", - "to": "5568", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5895", - "label": "616002 (-) 2680", - "from": "5258", - "to": "5550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5894", - "label": "1107533 (-) 335327", - "from": "5257", - "to": "5284", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5893", - "label": "1107533 (-) 310021", - "from": "5257", - "to": "5499", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5892", - "label": "1107533 (-) 372265", - "from": "5257", - "to": "5266", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5891", - "label": "1107533 (-) 354035", - "from": "5257", - "to": "5217", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5890", - "label": "1119825 (-) 1116334", - "from": "5256", - "to": "5663", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5889", - "label": "329305 (-) 293444", - "from": "5255", - "to": "5569", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5888", - "label": "77403 (-) 77362", - "from": "5254", - "to": "5265", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5887", - "label": "1214047 (-) 144608", - "from": "5253", - "to": "5359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5886", - "label": "970337 (-) 333006", - "from": "5252", - "to": "5362", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5885", - "label": "1490531 (-) 144608", - "from": "5251", - "to": "5359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5884", - "label": "333415 (-) 331494", - "from": "5250", - "to": "5220", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5883", - "label": "5737 (-) 8322", - "from": "5249", - "to": "5676", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5882", - "label": "5737 (-) 13130", - "from": "5249", - "to": "5472", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5881", - "label": "5738 (-) 8322", - "from": "5248", - "to": "5676", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5880", - "label": "5738 (-) 13130", - "from": "5248", - "to": "5472", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5879", - "label": "1341038 (-) 320330", - "from": "5247", - "to": "5473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5878", - "label": "296562 (-) 296684", - "from": "5246", - "to": "5219", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5877", - "label": "296562 (-) 293444", - "from": "5246", - "to": "5569", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5876", - "label": "54900 (-) 743241", - "from": "5245", - "to": "5183", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5875", - "label": "1771125 (-) 2114443", - "from": "5244", - "to": "5453", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5874", - "label": "550522 (-) 550679", - "from": "5243", - "to": "5208", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5873", - "label": "1230467 (-) 1230088", - "from": "5242", - "to": "5346", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5872", - "label": "157322 (-) 151326", - "from": "5241", - "to": "5203", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5871", - "label": "1414797 (-) 1226805", - "from": "5240", - "to": "5692", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5870", - "label": "972439 (-) 251201", - "from": "5239", - "to": "5331", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5869", - "label": "972439 (-) 251144", - "from": "5239", - "to": "5347", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5868", - "label": "972439 (-) 250984", - "from": "5239", - "to": "5391", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5867", - "label": "171672 (-) 299541", - "from": "5238", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5866", - "label": "171672 (-) 331494", - "from": "5238", - "to": "5220", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5865", - "label": "194202 (-) 194803", - "from": "5237", - "to": "5649", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5864", - "label": "327326 (-) 304925", - "from": "5236", - "to": "5205", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5863", - "label": "327326 (-) 304924", - "from": "5236", - "to": "5206", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5862", - "label": "327326 (-) 305175", - "from": "5236", - "to": "5700", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5861", - "label": "327326 (-) 305167", - "from": "5236", - "to": "5702", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5860", - "label": "327326 (-) 305153", - "from": "5236", - "to": "5705", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5859", - "label": "730789 (-) 654141", - "from": "5235", - "to": "5477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5858", - "label": "1230505 (-) 72811", - "from": "5234", - "to": "5389", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5857", - "label": "1230506 (-) 1230505", - "from": "5233", - "to": "5234", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5856", - "label": "708267 (-) 1275213", - "from": "5232", - "to": "5325", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5855", - "label": "421558 (-) 421285", - "from": "5231", - "to": "5299", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5854", - "label": "1154743 (-) 551145", - "from": "5230", - "to": "5652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5853", - "label": "14012 (-) 248331", - "from": "5229", - "to": "5590", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5852", - "label": "14012 (-) 13879", - "from": "5229", - "to": "5262", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5851", - "label": "14012 (-) 391560", - "from": "5229", - "to": "5616", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5850", - "label": "14012 (-) 616002", - "from": "5229", - "to": "5258", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5849", - "label": "14012 (-) 243911", - "from": "5229", - "to": "5659", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5848", - "label": "1429185 (-) 1266409", - "from": "5228", - "to": "5512", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5847", - "label": "2131650 (-) 2131652", - "from": "5227", - "to": "5226", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5846", - "label": "61124 (-) 743241", - "from": "5225", - "to": "5183", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5845", - "label": "208591 (-) 331494", - "from": "5224", - "to": "5220", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5844", - "label": "884435 (-) 874464", - "from": "5223", - "to": "5137", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5843", - "label": "884435 (-) 878133", - "from": "5223", - "to": "5263", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5842", - "label": "251616 (-) 331494", - "from": "5222", - "to": "5220", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5841", - "label": "251616 (-) 299541", - "from": "5222", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5840", - "label": "251616 (-) 1410943", - "from": "5222", - "to": "5172", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5839", - "label": "333538 (-) 331494", - "from": "5221", - "to": "5220", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5838", - "label": "331494 (-) 310020", - "from": "5220", - "to": "5500", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5837", - "label": "331494 (-) 309814", - "from": "5220", - "to": "5572", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5836", - "label": "331494 (-) 305190", - "from": "5220", - "to": "5698", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5835", - "label": "331494 (-) 293444", - "from": "5220", - "to": "5569", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5834", - "label": "331494 (-) 311850", - "from": "5220", - "to": "5573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5833", - "label": "331494 (-) 299544", - "from": "5220", - "to": "5582", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5832", - "label": "331494 (-) 302460", - "from": "5220", - "to": "5312", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5831", - "label": "331494 (-) 309196", - "from": "5220", - "to": "5145", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5830", - "label": "296684 (-) 329216", - "from": "5219", - "to": "5274", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5829", - "label": "296684 (-) 296562", - "from": "5219", - "to": "5246", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5828", - "label": "1681138 (-) 251616", - "from": "5218", - "to": "5222", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5827", - "label": "354035 (-) 1668145", - "from": "5217", - "to": "5407", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5826", - "label": "2131705 (-) 698257", - "from": "5216", - "to": "5164", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5825", - "label": "2131705 (-) 2117862", - "from": "5216", - "to": "5654", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5824", - "label": "550650 (-) 550651", - "from": "5215", - "to": "5214", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5823", - "label": "550651 (-) 1382312", - "from": "5214", - "to": "5157", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5822", - "label": "550651 (-) 970337", - "from": "5214", - "to": "5252", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5821", - "label": "392955 (-) 258188", - "from": "5213", - "to": "5673", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5820", - "label": "1230586 (-) 1230506", - "from": "5212", - "to": "5233", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5819", - "label": "1335037 (-) 1477225", - "from": "5211", - "to": "5554", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5818", - "label": "309001 (-) 299541", - "from": "5210", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5817", - "label": "1935115 (-) 1935831", - "from": "5209", - "to": "5604", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5816", - "label": "550679 (-) 550154", - "from": "5208", - "to": "5345", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5815", - "label": "67353 (-) 64422", - "from": "5207", - "to": "5445", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5814", - "label": "304924 (-) 299541", - "from": "5206", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5813", - "label": "304925 (-) 299541", - "from": "5205", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5812", - "label": "151325 (-) 94950", - "from": "5204", - "to": "5514", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5811", - "label": "151326 (-) 151325", - "from": "5203", - "to": "5204", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5810", - "label": "884516 (-) 884435", - "from": "5202", - "to": "5223", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5809", - "label": "884516 (-) 885683", - "from": "5202", - "to": "5441", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5808", - "label": "227113 (-) 1275213", - "from": "5201", - "to": "5325", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5807", - "label": "884524 (-) 884435", - "from": "5200", - "to": "5223", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5806", - "label": "884524 (-) 885683", - "from": "5200", - "to": "5441", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5805", - "label": "5936 (-) 13130", - "from": "5199", - "to": "5472", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5804", - "label": "5936 (-) 8322", - "from": "5199", - "to": "5676", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5803", - "label": "321329 (-) 322239", - "from": "5198", - "to": "5524", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5802", - "label": "1871665 (-) 14228", - "from": "5197", - "to": "5162", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5801", - "label": "321330 (-) 322239", - "from": "5196", - "to": "5524", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5800", - "label": "321328 (-) 322239", - "from": "5195", - "to": "5524", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5799", - "label": "55093 (-) 743241", - "from": "5194", - "to": "5183", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5798", - "label": "130871 (-) 1681138", - "from": "5193", - "to": "5218", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5797", - "label": "130871 (-) 1681748", - "from": "5193", - "to": "5625", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5796", - "label": "130871 (-) 1529686", - "from": "5193", - "to": "5181", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5795", - "label": "130871 (-) 1065380", - "from": "5193", - "to": "5611", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5794", - "label": "130871 (-) 1682080", - "from": "5193", - "to": "5538", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5793", - "label": "130871 (-) 1790467", - "from": "5193", - "to": "5591", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5792", - "label": "130871 (-) 357917", - "from": "5193", - "to": "5269", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5791", - "label": "130871 (-) 1668145", - "from": "5193", - "to": "5407", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5790", - "label": "130871 (-) 1534279", - "from": "5193", - "to": "5630", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5789", - "label": "618296 (-) 1035755", - "from": "5192", - "to": "5279", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5788", - "label": "1382203 (-) 1378926", - "from": "5191", - "to": "5553", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5787", - "label": "1382203 (-) 320468", - "from": "5191", - "to": "5432", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5786", - "label": "1382203 (-) 227964", - "from": "5191", - "to": "5549", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5785", - "label": "1382203 (-) 320330", - "from": "5191", - "to": "5473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5784", - "label": "917308 (-) 504065", - "from": "5190", - "to": "5648", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5783", - "label": "962363 (-) 1794867", - "from": "5189", - "to": "5483", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5782", - "label": "1916734 (-) 950362", - "from": "5188", - "to": "5683", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5781", - "label": "737088 (-) 654141", - "from": "5187", - "to": "5477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5780", - "label": "571202 (-) 253191", - "from": "5186", - "to": "5348", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5779", - "label": "1156931 (-) 955460", - "from": "5185", - "to": "5404", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5778", - "label": "958275 (-) 958290", - "from": "5184", - "to": "5182", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5777", - "label": "743241 (-) 743664", - "from": "5183", - "to": "5650", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5776", - "label": "958290 (-) 958368", - "from": "5182", - "to": "5159", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5775", - "label": "1529686 (-) 1519168", - "from": "5181", - "to": "5259", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5774", - "label": "409434 (-) 403309", - "from": "5180", - "to": "5175", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5773", - "label": "1466203 (-) 1889063", - "from": "5179", - "to": "5484", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5772", - "label": "728927 (-) 227715", - "from": "5178", - "to": "5618", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5771", - "label": "77671 (-) 77403", - "from": "5177", - "to": "5254", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5770", - "label": "327533 (-) 327326", - "from": "5176", - "to": "5236", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5769", - "label": "327533 (-) 1949040", - "from": "5176", - "to": "5315", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5768", - "label": "403309 (-) 415036", - "from": "5175", - "to": "5333", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5767", - "label": "77681 (-) 1238006", - "from": "5174", - "to": "5428", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5766", - "label": "77681 (-) 77671", - "from": "5174", - "to": "5177", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5765", - "label": "569211 (-) 572111", - "from": "5173", - "to": "5521", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5764", - "label": "1410943 (-) 103150", - "from": "5172", - "to": "5509", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5763", - "label": "1243009 (-) 1243896", - "from": "5171", - "to": "5505", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5762", - "label": "935811 (-) 441814", - "from": "5170", - "to": "5288", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5761", - "label": "698244 (-) 255142", - "from": "5169", - "to": "5377", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5760", - "label": "954243 (-) 1159958", - "from": "5168", - "to": "5495", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5759", - "label": "954243 (-) 1159708", - "from": "5168", - "to": "5581", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5758", - "label": "935814 (-) 935811", - "from": "5167", - "to": "5170", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5757", - "label": "935814 (-) 1806998", - "from": "5167", - "to": "5541", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5756", - "label": "1660808 (-) 2131650", - "from": "5166", - "to": "5227", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5755", - "label": "1116044 (-) 1155013", - "from": "5165", - "to": "5149", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5754", - "label": "1116044 (-) 1799093", - "from": "5165", - "to": "5440", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5753", - "label": "698257 (-) 1473583", - "from": "5164", - "to": "5408", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5752", - "label": "698257 (-) 1473437", - "from": "5164", - "to": "5450", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5751", - "label": "698257 (-) 698244", - "from": "5164", - "to": "5169", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5750", - "label": "2062227 (-) 79817", - "from": "5163", - "to": "5146", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5749", - "label": "14228 (-) 391560", - "from": "5162", - "to": "5616", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5748", - "label": "14228 (-) 243911", - "from": "5162", - "to": "5659", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5747", - "label": "14228 (-) 248331", - "from": "5162", - "to": "5590", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5746", - "label": "14228 (-) 616002", - "from": "5162", - "to": "5258", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5745", - "label": "14228 (-) 13879", - "from": "5162", - "to": "5262", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5744", - "label": "14228 (-) 1794651", - "from": "5162", - "to": "5563", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5743", - "label": "673684 (-) 1154743", - "from": "5161", - "to": "5230", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5742", - "label": "6042 (-) 8322", - "from": "5160", - "to": "5676", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5741", - "label": "6042 (-) 13130", - "from": "5160", - "to": "5472", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5740", - "label": "958368 (-) 241990", - "from": "5159", - "to": "5631", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5739", - "label": "1341349 (-) 320330", - "from": "5158", - "to": "5473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5738", - "label": "1382312 (-) 232970", - "from": "5157", - "to": "5271", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5737", - "label": "952239 (-) 422049", - "from": "5156", - "to": "5667", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5736", - "label": "638896 (-) 8327", - "from": "5155", - "to": "5674", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5735", - "label": "495541 (-) 500848", - "from": "5154", - "to": "5388", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5734", - "label": "1386423 (-) 418544", - "from": "5153", - "to": "5508", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5733", - "label": "1480635 (-) 144608", - "from": "5152", - "to": "5359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5732", - "label": "1302460 (-) 13134", - "from": "5151", - "to": "5471", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5731", - "label": "159681 (-) 133757", - "from": "5150", - "to": "5548", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5730", - "label": "1155013 (-) 673684", - "from": "5149", - "to": "5161", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5729", - "label": "550854 (-) 549816", - "from": "5148", - "to": "5437", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5728", - "label": "409544 (-) 439838", - "from": "5147", - "to": "5268", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5727", - "label": "409544 (-) 409434", - "from": "5147", - "to": "5180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5726", - "label": "79817 (-) 1275213", - "from": "5146", - "to": "5325", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5725", - "label": "79817 (-) 970337", - "from": "5146", - "to": "5252", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5724", - "label": "309196 (-) 299541", - "from": "5145", - "to": "5583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5723", - "label": "1660881 (-) 2131650", - "from": "5144", - "to": "5227", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5722", - "label": "1660882 (-) 2131650", - "from": "5143", - "to": "5227", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5721", - "label": "1660883 (-) 1660808", - "from": "5142", - "to": "5166", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5720", - "label": "1660883 (-) 924543", - "from": "5142", - "to": "5458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5719", - "label": "1660883 (-) 1660881", - "from": "5142", - "to": "5144", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5718", - "label": "1660883 (-) 1660882", - "from": "5142", - "to": "5143", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5717", - "label": "1660884 (-) 1660883", - "from": "5141", - "to": "5142", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5716", - "label": "296913 (-) 296562", - "from": "5140", - "to": "5246", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5715", - "label": "374742 (-) 369394", - "from": "5139", - "to": "5507", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5714", - "label": "374743 (-) 369394", - "from": "5138", - "to": "5507", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5713", - "label": "874464 (-) 877267", - "from": "5137", - "to": "5518", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5712", - "label": "374754 (-) 369394", - "from": "5136", - "to": "5507", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5711", - "label": "958434 (-) 14012", - "from": "5135", - "to": "5229", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5710", - "label": "55277 (-) 743241", - "from": "5134", - "to": "5183", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5709", - "label": "1337326 (-) 1338271", - "from": "5133", - "to": "5448", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5708", - "label": "874479 (-) 877267", - "from": "5132", - "to": "5518", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5707", - "label": "1488882 (-) 144608", - "from": "5131", - "to": "5359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5706", - "label": "49150 (-) 637566", - "from": "5130", - "to": "5547", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/FosB to PER1_vis_js.json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/FosB to PER1_vis_js.json deleted file mode 100644 index a8c83771db..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/FosB to PER1_vis_js.json +++ /dev/null @@ -1,1056 +0,0 @@ -{ - "nodes": [ - { - "id": "167", - "label": "RARA,G:RXRA at HOXB1 bivalent chromatin [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "166", - "label": "FOSB:JUND [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "165", - "label": "p-BMAL1:p-CLOCK,NPAS2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "164", - "label": "Histone H2A [nucleoplasm]", - "databaseLabel": "EntitySet", - "font": { - "color": "#8535dc" - }, - "color": { - "background": "#FFFFFF", - "border": "#8535dc", - "hover": { - "background": "#FFFFFF", - "border": "#8535dc" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#8535dc" - } - } - }, - { - "id": "163", - "label": "Positive gene expression regulation by 'MYC gene:ESR1:ESTG:JUND:FOSB:Cohesin Complex [nucleoplasm]'", - "databaseLabel": "Regulation", - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": "162", - "label": "RARA,B:RXRA at HOXA4 bivalent chromatin [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "161", - "label": "Estrogen-responsive MYC gene expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "160", - "label": "Bivalent Nucleosome (H3K27me3, H3K4me3) [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "159", - "label": "NCOR1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "158", - "label": "BMAL1:CLOCK,NPAS2 heterodimer is phosphorylated and translocates to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "157", - "label": "MYC gene, BCL2 gene: H3K9me2 nucleosome [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "156", - "label": "Overexpressed HIST1H2AC and ESR1:ESTG bind MYC and BCL2 genes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "155", - "label": "Positive gene expression regulation by 'p-BMAL1:p-CLOCK,NPAS2:PER1 gene [nucleoplasm]'", - "databaseLabel": "Regulation", - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": "154", - "label": "Retinoic acid activates HOXD4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "153", - "label": "Retinoic acid activates HOXB4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "152", - "label": "RARA,G:RXRA at HOXA1 bivalent chromatin [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "151", - "label": "NR1D1 (REV-ERBA):heme:Corepressor [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "150", - "label": "FOSB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "149", - "label": "Retinoic acid activates HOXB1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "148", - "label": "Retinoic acid activates HOXA1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "147", - "label": "p-BMAL1:p-CLOCK,NPAS2:PER1 gene [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "146", - "label": "RARA,B:RXRA at HOXB4 bivalent chromatin [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "145", - "label": "Expression of NPAS2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "144", - "label": "Retinoic acid activates HOXA4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "143", - "label": "MYC gene, BCL2 gene [nucleoplasm]", - "databaseLabel": "DefinedSet", - "font": { - "color": "#d84a6d" - }, - "color": { - "background": "#FFFFFF", - "border": "#d84a6d", - "hover": { - "background": "#FFFFFF", - "border": "#d84a6d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#d84a6d" - } - } - }, - { - "id": "142", - "label": "RARA,B:RXRA at HOXD4 bivalent chromatin [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "141", - "label": "NPAS2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "140", - "label": "NR1D1:heme:Corepressors:NPAS2 gene [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "139", - "label": "Negative gene expression regulation by 'NR1D1:heme:Corepressors:NPAS2 gene [nucleoplasm]'", - "databaseLabel": "Regulation", - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": "138", - "label": "Expression of PERIOD-1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "137", - "label": "CLOCK,NPAS2 [cytosol]", - "databaseLabel": "DefinedSet", - "font": { - "color": "#d84a6d" - }, - "color": { - "background": "#FFFFFF", - "border": "#d84a6d", - "hover": { - "background": "#FFFFFF", - "border": "#d84a6d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#d84a6d" - } - } - }, - { - "id": "136", - "label": "BMAL1:CLOCK,NPAS2 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "135", - "label": "MYC [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "134", - "label": "PER1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - } - ], - "edges": [ - { - "id": "204", - "label": "input", - "from": "167", - "to": "149", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "203", - "label": "hasComponent", - "from": "167", - "to": "160", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "202", - "label": "hasComponent", - "from": "166", - "to": "150", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "201", - "label": "activeUnit", - "from": "163", - "to": "166", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "200", - "label": "input", - "from": "162", - "to": "144", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "199", - "label": "hasComponent", - "from": "162", - "to": "160", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "198", - "label": "output", - "from": "161", - "to": "135", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "197", - "label": "regulatedBy", - "from": "161", - "to": "163", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "196", - "label": "hasComponent", - "from": "160", - "to": "164", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "195", - "label": "output", - "from": "158", - "to": "165", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "194", - "label": "input", - "from": "157", - "to": "156", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "193", - "label": "hasComponent", - "from": "157", - "to": "143", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "192", - "label": "output", - "from": "156", - "to": "164", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "191", - "label": "regulator", - "from": "155", - "to": "147", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "190", - "label": "output", - "from": "154", - "to": "159", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "189", - "label": "output", - "from": "153", - "to": "159", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "188", - "label": "input", - "from": "152", - "to": "148", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "187", - "label": "hasComponent", - "from": "152", - "to": "160", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "186", - "label": "hasComponent", - "from": "151", - "to": "159", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "185", - "label": "output", - "from": "149", - "to": "159", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "184", - "label": "output", - "from": "148", - "to": "159", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "183", - "label": "hasComponent", - "from": "147", - "to": "165", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "182", - "label": "input", - "from": "146", - "to": "153", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "181", - "label": "hasComponent", - "from": "146", - "to": "160", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "180", - "label": "output", - "from": "145", - "to": "141", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "179", - "label": "regulatedBy", - "from": "145", - "to": "139", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "178", - "label": "output", - "from": "144", - "to": "159", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "177", - "label": "hasMember", - "from": "143", - "to": "135", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "176", - "label": "hasComponent", - "from": "142", - "to": "160", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "175", - "label": "input", - "from": "142", - "to": "154", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "174", - "label": "hasComponent", - "from": "140", - "to": "151", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "173", - "label": "regulator", - "from": "139", - "to": "140", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "172", - "label": "regulatedBy", - "from": "138", - "to": "155", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "171", - "label": "output", - "from": "138", - "to": "134", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "170", - "label": "hasMember", - "from": "137", - "to": "141", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "169", - "label": "input", - "from": "136", - "to": "158", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "168", - "label": "hasComponent", - "from": "136", - "to": "137", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/HSPA8-mediated ATP hydrolysis promotes vesicle uncoating.json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/HSPA8-mediated ATP hydrolysis promotes vesicle uncoating.json deleted file mode 100644 index 34e2dde4a4..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/HSPA8-mediated ATP hydrolysis promotes vesicle uncoating.json +++ /dev/null @@ -1,20276 +0,0 @@ -{ - "nodes": [ - { - "id": "11441", - "label": "DecS-GHRL-1(24-50) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11440", - "label": "RAB4:GTP promotes recycling of activated MET receptor to the plasma membrane", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11439", - "label": "PolyUb-Misfolded PCNT [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11438", - "label": "DecS-GHRL-1(24-51) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11437", - "label": "CASP8(385-479) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11436", - "label": "O-octanoyl-L-serine-GHRL-1(24-51) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11435", - "label": "p-S423,S425-SMAD3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11434", - "label": "Bradykinin receptor:Bradykinin [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11433", - "label": "GGC-RAB7B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "11432", - "label": "Retinoic acid activates HOXB4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11431", - "label": "Ubiquitinated IkB is degraded", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11430", - "label": "NF-kappaB p50,p65,c-Rel:ub-p-IKB [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "11429", - "label": "NF-kappaB p65:p65:ub-p-IkB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11428", - "label": "TFIIH [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11427", - "label": "5HT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "11426", - "label": "trans-Golgi Network Derived Vesicle Uncoating", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11425", - "label": "TGFB1:TGFBR2:p-TGFBR1 [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11424", - "label": "ERBB2 promotes PTK6 autophosphorylation", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11423", - "label": "CBL neddylates TGFBR2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11422", - "label": "TGFBR2 phosphorylates TGFBR1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11421", - "label": "PLCG1 phosphorylation by p-EGFR:p-ERBB2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11420", - "label": "TGFB1:TGFBR2:TGFBR1 [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11419", - "label": "NEDD8-AcM-UBE2M [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11418", - "label": "APC is K63-polyubiquitinated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11417", - "label": "PolyUb-Misfolded PARK7 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11416", - "label": "NANOG [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11415", - "label": "Hist [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "11414", - "label": "G-protein alpha (13):GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11413", - "label": "spherical HDL and SR-BI receptor form a complex at the cell surface", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11412", - "label": "Aggresome dissociates from dynein and microtubule", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11411", - "label": "Microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11410", - "label": "alpha-beta tubulin dimer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11409", - "label": "MAPK3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11408", - "label": "RNF152 [lysosomal membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "11407", - "label": "Hypophosphorylation of RNA Pol II CTD by FCP1P protein", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11406", - "label": "TGFBR2 recruits TGFBR1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11405", - "label": "PP2A (A:C) [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11404", - "label": "NF-kappaB p65:p65 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11403", - "label": "FKBP1A [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11402", - "label": "RASA1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11401", - "label": "FGF18 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "11400", - "label": "NF-kappaB p50:c-Rel:ub-p-IKB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11399", - "label": "Exocytosis of ficolin-rich granule lumen proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11398", - "label": "CCNH [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "11397", - "label": "Transfer of SUMO2 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11396", - "label": "PTPNs gene transcription and translation", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11395", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "11394", - "label": "The receptor:G-protein complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11393", - "label": "Dissociation of RAS:RAF complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11392", - "label": "trans-Golgi Network Derived Lysosomal Vesicle Uncoating", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11391", - "label": "Expression of PERIOD-1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "11390", - "label": "DNAJC6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11389", - "label": "OPRM1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11388", - "label": "Active NIK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11387", - "label": "HERC5 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11386", - "label": "PAXIP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11385", - "label": "LACT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "11384", - "label": "UMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "11383", - "label": "Transfer of SUMO3 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11382", - "label": "Activated FGFR2:p-FRS:p-PTPN11 activates RAS nucleotide exchange", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11381", - "label": "Expression of STAT3-upregulated extracellular proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11380", - "label": "Thy-dRib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "11379", - "label": "Ura-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "11378", - "label": "(d)CMP, TMP, or (d)UMP + H2O => (deoxy)cytidine, thymidine, or (deoxy)uridine + orthophosphate (NT5C3)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11377", - "label": "RNF111 ubiquitinates SUMOylated XPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11376", - "label": "Dissociation of moderate activity BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11375", - "label": "Ub,SUMO:XPC:RAD23:CETN2:Open bubble-dsDNA:PAR-UV-DDB:TFIIH Core:XPA:PAR-PARP1, PAR-PARP2:CHD1L [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11374", - "label": "Cyt-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "11373", - "label": "Expression of CEBPB in adipogenesis", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11372", - "label": "CREM isoform 6 (ICER1) [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "11371", - "label": "NF-kappaB p50:c-Rel [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11370", - "label": "RAB1:GDP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11369", - "label": "PTPN11 dephosphorylates RUNX1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11368", - "label": "p-Y701-STAT1, p-Y705-STAT3, p-Y649-STAT5 dissociates from IL9:p-Y116-IL9R:JAK1:IL2RG:p-904,939-JAK3:p-Y705-STAT3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11367", - "label": "hp-IRAK1:3xK63-polyUb-TRAF6:3xUBE2N:UBE2V1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11366", - "label": "SLC24A1 exchanges 4Na+ for Ca2+, K+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11365", - "label": "PPARGC1A [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11364", - "label": "RUNX1:CBFB [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11363", - "label": "RUNX1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11362", - "label": "Expression of Leptin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11361", - "label": "K+-independent Li+/Ca2+ exchanger transport", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11360", - "label": "NF-KappaB p50:p50:ub-p-IKBA [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11359", - "label": "NF-kappaB p50:p50 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11358", - "label": "SAR1B:GTP [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11357", - "label": "p-4Y-PLCG1 dissociates from activated FGFR3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11356", - "label": "NF-kappaB p50:p65:ub-p-IKB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11355", - "label": "Ade-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "11354", - "label": "KDM1A [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11353", - "label": "IL1B [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "11352", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon ALPK1:ADP-heptose stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "11351", - "label": "NF-kappaB p50,p65,c-Rel dimer [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "11350", - "label": "CCND1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11349", - "label": "PPTN11 dephosphorylates SPRY2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11348", - "label": "PLCG1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11347", - "label": "Release of L-Glutamate at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11346", - "label": "AVP(20-28) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11345", - "label": "Disassembly of COPII coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11344", - "label": "SCF-beta-TrCP ubiquitinylates IkB", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11343", - "label": "EP300 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11342", - "label": "COPII vesicle with MHC class I [ER to Golgi transport vesicle membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11341", - "label": "Activated FGFR3:p-FRS:p-PTPN11 activates RAS nucleotide exchange", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11340", - "label": "CCPs deglutamylate tubulin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11339", - "label": "HCMV Nuclear Pore Docking", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11338", - "label": "Thrombin-mediated activation of Proteinase-activated receptors", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11337", - "label": "PTPN11 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11336", - "label": "p-4Y-PLCG1 dissociates from activated FGFR1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11335", - "label": "Estrogen-responsive MYC gene expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11334", - "label": "Budding of COPII coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11333", - "label": "p-T235, S321-CEBPB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11332", - "label": "SOCS2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "11331", - "label": "RAB6:GTP displaces PAFAH1B1 from dynein:dynactin complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11330", - "label": "OPRM1 gene expression is repressed by MECP2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11329", - "label": "PYR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "11328", - "label": "Phosphorylation of 4E-BP1 by activated mTORC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11327", - "label": "ATP2B1-4 transport cytosolic Ca2+ to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11326", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon TLR3 stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "11325", - "label": "Deacetylation of cleaved cohesin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11324", - "label": "Cleaved Cohesin:PDS5:WAPAL [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11323", - "label": "SIK1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "11322", - "label": "phosphoenolpyruvate + ADP => pyruvate + ATP", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11321", - "label": "PGE2 [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "11320", - "label": "RHOA:GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11319", - "label": "The Ligand:GPCR:Gq complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11318", - "label": "CASR:Ca2+ [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11317", - "label": "OTUD5 deubiquitinates TRAF3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11316", - "label": "Active PLC-gamma1 dissociates from EGFR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11315", - "label": "ARHGDIA [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11314", - "label": "p-4Y-PLCG1 dissociates from activated FGFR2 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11313", - "label": "AcCho [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "11312", - "label": "PRC2 (EZH2) Core [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11311", - "label": "Cho is acetylated to AcCho by CHAT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11310", - "label": "(d)CMP, TMP, or (d)UMP + H2O => (deoxy)cytidine, thymidine, or (deoxy)uridine + orthophosphate (NT5C1A)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11309", - "label": "MCHR1,MCHR2:PMCH(147-165) [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11308", - "label": "NMUR1,NMUR2:NMU [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11307", - "label": "Expression of GATA3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11306", - "label": "TMP, uridine 2', 3', or 5' monophosphates, or deoxyuridine 3' or 5' monophosphates + H2O => thymidine or (deoxy)uridine + orthophosphate [NT5C]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11305", - "label": "G-protein beta-gamma complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11304", - "label": "G-alpha(t):G-beta-gamma:Opsins complex dissociates to active G-alpha(t)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11303", - "label": "GATA3 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11302", - "label": "FOXA1 and GATA3 bind to CCND1 promoter", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11301", - "label": "CIN85 dissociates from EGF:p-6Y-EGFR:CBL:Beta-Pix:CDC42:GTP:CIN85", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11300", - "label": "BTRC [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11299", - "label": "ISGylation of E2 conjugating enzymes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11298", - "label": "E2-mediated FOS gene expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11297", - "label": "RAB1:GTP:USO1:coatomer:PalmC-YKT6:p24 dimers:cargo:spectrin:anykrin [transport vesicle]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11296", - "label": "Dissociation of oncogenic RAS:RAF complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11295", - "label": "Vesicle is tethered through binding GOLGA2:GORASP1, GOLGB1 and the COG complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11294", - "label": "G-protein alpha (i):GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11293", - "label": "p-4Y-PLCG1 dissociates from activated FGFR2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11292", - "label": "Negative regulation of DDX58/IFIH1 signaling by RNF216", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11291", - "label": "Phosphorylated heterodimers of ERBB2 KD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11290", - "label": "Activation of Latent HCMV Genome", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11289", - "label": "PPARG:Fatty Acid:RXRA:Mediator:Coactivator Complex [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11288", - "label": "GDI1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11287", - "label": "NF-kappaB translocates from the cytosol to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11286", - "label": "K63polyUb [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "11285", - "label": "HDAC3 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11284", - "label": "FGF2(10-155) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11283", - "label": "Separation of sister chromatids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11282", - "label": "Fatty acid ligands activate PPARA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11281", - "label": "Equilibrative transport (export) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11280", - "label": "HSP90:ATP:p23:FKBP52:SHR:SH translocates to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11279", - "label": "HSP90:ATP:PTGES3:FKBP52:SHR:SH [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11278", - "label": "HBEGF(63-148) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11277", - "label": "p-Y-STATs translocate to nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11276", - "label": "p-4Y-PLCG1 dissociates from activated FGFR4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11275", - "label": "Expression of NANOG", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11274", - "label": "SLC8A1,2,3 exchange 3Na+ for Ca2+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11273", - "label": "p-Y1105-ARHGAP35 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11272", - "label": "LACT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "11271", - "label": "SLC22A12 exchanges extracellular urate for cytosolic LACT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11270", - "label": "CBFB binds RUNX1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11269", - "label": "Phosphorylation of CTLA-4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11268", - "label": "p-Y705-STAT3 dimer translocates from cytosol to nucleoplasm", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11267", - "label": "Fusion of viral membrane with host cell membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11266", - "label": "Viral core surrounded by Matrix layer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11265", - "label": "p-Y-STATs dissociate", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11264", - "label": "SLC7A11-mediated exchange of extracellular cysteine and cytosolic glutamate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11263", - "label": "EXO1 interacting with MSH2:MSH3 excises DNA strand containing an insertion/deletion loop (IDL)", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11262", - "label": "p-4Y-PLCG1 dissociates from activated FGFR4 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11261", - "label": "CIN85:endophilin [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11260", - "label": "BMAL1:CLOCK,NPAS2 heterodimer is phosphorylated and translocates to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11259", - "label": "myristoylated nef [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11258", - "label": "HSP90:ATP:PTGES3:FKBP52:NR3C1:SH [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11257", - "label": "SPRY2 binds CBL", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11256", - "label": "Expression of BMAL1 (ARNTL).", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11255", - "label": "p115-RhoGEF activation of RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11254", - "label": "ARFGAPs stimulate ARF GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11253", - "label": "Phosphorylated heterodimers of ERBB2 ECD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11252", - "label": "OAT1-3 transport organic anions with antiport of dicarboxylic acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11251", - "label": "GDI2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11250", - "label": "PI(3,4,5)P3 [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "11249", - "label": "RUNX1 mRNA translation is inhibited by miR-17, miR-18a, miR-20a, miR-27a, miR-106a, miR-215, miR-302b, miR-378 and miR-675", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11248", - "label": "RUNX1 mRNA [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11247", - "label": "cholesterol + phosphatidylcholine (lecithin) => cholesterol ester + 2-lysophosphatidylcholine (lysolecithin)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11246", - "label": "2OG [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "11245", - "label": "MyrG-p-Y419-SRC [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11244", - "label": "MYC [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11243", - "label": "The Ligand:GPCR:Gs complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "11242", - "label": "PTHLH [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "11241", - "label": "Recovery of RNA synthesis after TC-NER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11240", - "label": "LDL:LDLR complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11239", - "label": "SAR1 Activation And Membrane Binding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11238", - "label": "SAR1B:GDP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11237", - "label": "SAR1B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11236", - "label": "FPR2:FPR2 ligands [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11235", - "label": "FPR2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11234", - "label": "VCPKMT (METTL21D) transfers 3xCH3 from 3xAdoMet to VCP", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11233", - "label": "PIAS4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11232", - "label": "GPR39 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11231", - "label": "Processing of caspases", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11230", - "label": "ARRB1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11229", - "label": "MET phosphorylates STAT3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11228", - "label": "ATP hydrolysis by HSP90", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11227", - "label": "LDL + LDLR => LDL:LDLR complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11226", - "label": "Loss of SAR1B GTPase", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11225", - "label": "Dissociation of the Gi alpha:G olf complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11224", - "label": "Activated NTRK3 stimulates PI3K activity", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11223", - "label": "RPS6KA1/2/3 phosphorylates CEBPB on S321", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11222", - "label": "GNAL [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "11221", - "label": "ARHGAP35 stimulates RHOA GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11220", - "label": "PIAS4 SUMOylates NR4A2 with SUMO2,3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11219", - "label": "ISGylation of host proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11218", - "label": "p-S102-WHSC1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11217", - "label": "HGF:p-Y1234,Y1235,Y1349,Y1356-MET dimer [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11216", - "label": "RhoA is activated by nucleotide exchange and inhibits axonal growth", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11215", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11214", - "label": "CTNNB1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11213", - "label": "RHOA:GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11212", - "label": "SEC13 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11211", - "label": "TRAF3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11210", - "label": "GPR4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11209", - "label": "NCOR1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11208", - "label": "PolyUb-Misfolded Proteins:HDAC6 dissociate from complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11207", - "label": "HSP90 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11206", - "label": "p-SPHK1 phosphorylates sphingosine to sphingosine 1-phosphate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11205", - "label": "Beta-catenin displaces TLE:HDAC1 from TCF/LEF", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11204", - "label": "RASA1 stimulates RAS GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11203", - "label": "p-Y705-STAT3 dimer, p-Y641-STAT6 dimer translocate to nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11202", - "label": "Dissociation of paradoxically activated RAS:BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11201", - "label": "p-Y641-STAT6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11200", - "label": "Retinoic acid activates HOXA4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11199", - "label": "SEC22B:STX18:USE1L:BNIP1 [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11198", - "label": "CHEST [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "11197", - "label": "CGA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "11196", - "label": "TRPs transport extracellular Ca2+ to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11195", - "label": "GCG(53-81) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11194", - "label": "CHOL [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "11193", - "label": "Cap Binding Complex (CBC) [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11192", - "label": "p-T235-CEBPB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11191", - "label": "NCBP2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11190", - "label": "The p75NTR:NgR:MDGI complex reduces RHOA-GDI activity, displacing RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11189", - "label": "Retrograde vesicle is tethered at the ER by the NRZ complex and t-SNAREs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11188", - "label": "NCBP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11187", - "label": "Nef mediated disruption of CD4:Lck Complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11186", - "label": "Degradation of CD4", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11185", - "label": "Release of acetylcholine at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11184", - "label": "BTRC:CUL1:SKP1 (SCF-beta-TrCP1) ubiquitinylates PER proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11183", - "label": "Acetylcholine Loaded Synaptic Vesicle [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11182", - "label": "Expression of STAT3-upregulated nuclear proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11181", - "label": "SUMO1:C93-UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11180", - "label": "G-proteins dissociate from plasma-membrane estrogen receptors", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11179", - "label": "RNF168 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11178", - "label": "Retinoic acid activates HOXA1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11177", - "label": "CSNK1D phosphorylates SEC23", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11176", - "label": "cIAP1,2 ubiquitinates NIK in cIAP1,2:TRAF2::TRAF3:NIK", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11175", - "label": "beta-TRCP ubiquitinates IkB-alpha in p-S32,33-IkB-alpha:NF-kB complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11174", - "label": "TNFRSF1B [specific granule membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "11173", - "label": "SCF-beta-TRCP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11172", - "label": "RUNX3 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11171", - "label": "Exocytosis of platelet alpha granule contents", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11170", - "label": "COPII cargo:receptors:SEC23:SEC24:SEC13:SEC31:SEC23IP:v-SNAREs:TRAPPCII:RAB1:GTP [COPII-coated ER to Golgi transport vesicle]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11169", - "label": "BMP1-3:Zn2+ cleaves pro-APOA1 to APOA1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11168", - "label": "NCOR2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11167", - "label": "mature mRNA (eukaryotic, capped and deadenylated) [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "11166", - "label": "Exosome Complex hydrolyzes mRNA by 3' to 5' exoribonuclease digestion", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11165", - "label": "LCK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11164", - "label": "SUMOylation of XPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11163", - "label": "F2RL2(22-374) [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11162", - "label": "Dissociation of phosphorylated 4EBP1 from eIF4E", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11161", - "label": "P2RY11 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11160", - "label": "EIF4E [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11159", - "label": "eIF4E:4E-BP1-P [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11158", - "label": "F2RL3(18-385) [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11157", - "label": "Ade-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "11156", - "label": "AHCY:NAD+ tetramer hydrolyses AdoHcy", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11155", - "label": "CDC42:GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11154", - "label": "F2R(27-425) [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11153", - "label": "APOA1(25-266) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11152", - "label": "PARN deadenylates mRNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11151", - "label": "Release of PLCG from FCGR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11150", - "label": "A2M [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11149", - "label": "AdoHcy [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "11148", - "label": "clustered IgG-Ag:p-FCGRs:p-6Y-SYK:p-3Y-PLCG [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11147", - "label": "p-Y641-STAT6 dimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11146", - "label": "Disintegration of matrix layer", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "11145", - "label": "Phosphorylation and activation of PLCG", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11144", - "label": "Degradation of CD8", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11143", - "label": "Exocytosis of Insulin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11142", - "label": "SUMO1:p-T4827-HERC2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11141", - "label": "TGFA(24-98) [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "11140", - "label": "IL1B(117-269) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "11139", - "label": "Docking of Mature Histone mRNA complex:TAP at the NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11138", - "label": "p-S25,S1778-TP53BP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11137", - "label": "AREG(101-187) [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "11136", - "label": "Dissociation of BRAF/RAF fusion complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11135", - "label": "Beta-catenin translocates to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11134", - "label": "CTNNB1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11133", - "label": "NPS [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11132", - "label": "PP2A [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11131", - "label": "SIN3A [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11130", - "label": "TTLLs polyglutamylate tubulin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11129", - "label": "Ac-K94,K171-RUNX3:CBFB:EP300 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11128", - "label": "Loading of acetylcholine in synaptic vesicles", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11127", - "label": "p-T185,Y187-MAPK1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11126", - "label": "COP9 signalosome deneddylates cytosolic CRL E3 ubiquitin ligase complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11125", - "label": "RPA heterotrimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11124", - "label": "(d)AMP, (d)GMP, or (d)IMP + H2O => (deoxy)adenosine, (deoxy)guanosine, or (deoxy)inosine + orthophosphate (NT5C1A)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11123", - "label": "PPP1R3C [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "11122", - "label": "Expression of PPARGC1A (PGC-1alpha)", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11121", - "label": "AGTR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "11120", - "label": "Expression of AVP", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11119", - "label": "KLF4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "11118", - "label": "NPSR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11117", - "label": "Ligation of newly synthesized repair patch to incised DNA in TC-NER", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11116", - "label": "p-S166-RIPK1:p-S199,227-RIPK3 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11115", - "label": "PP1 dephosphorylates TGFBR1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11114", - "label": "Docking of Mature Replication Dependent Histone mRNA with the NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11113", - "label": "ARRB2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11112", - "label": "Regulation of protein ISGylation by ISG15 deconjugating enzyme USP18", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11111", - "label": "UBE2I [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11110", - "label": "SEC31A:SEC13:SEC23IP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11109", - "label": "DA [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "11108", - "label": "Interleukin-1 family are secreted", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11107", - "label": "Interleukin-1 family [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "11106", - "label": "Expression of CLOCK", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11105", - "label": "APC promotes disassembly of beta-catenin transactivation complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11104", - "label": "IL18 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11103", - "label": "KMT2D [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11102", - "label": "EP300 acetylates RUNX3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11101", - "label": "AR:androgen [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11100", - "label": "PPIA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11099", - "label": "SUMO3:UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11098", - "label": "IL8 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11097", - "label": "Dissociation of RAS:RAF1 mutant complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11096", - "label": "RAB1:GTP [endoplasmic reticulum-Golgi intermediate compartment membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11095", - "label": "p-4Y-PLCG1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11094", - "label": "Dynein:Dynactin:microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11093", - "label": "NSF and SNAPs bind cis-SNARE at the ER membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11092", - "label": "L-Glu [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "11091", - "label": "SEC22B:STX18:USE1:BNIP1L:3xSNAPs:NSF hexamer [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11090", - "label": "PTK6 phosphorylates STAT3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11089", - "label": "Expression of NPAS2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11088", - "label": "FOSB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "11087", - "label": "Docking of the Mature intronless derived transcript derived mRNA, TAP and Aly/Ref at the NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11086", - "label": "Interleukin-1 family precursors are cleaved by caspase-1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11085", - "label": "CCR4-NOT complex deadenylates mRNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11084", - "label": "p21 RAS:GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11083", - "label": "p-T202,Y204-MAPK3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11082", - "label": "MSH2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11081", - "label": "NFKB1(1-433):RELA [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11080", - "label": "Active PAK1 and Active CDC42 dissociates from GNB/GNG:PAK1:ARHGEF6:CDC42 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11079", - "label": "CCND1 binds RUNX3 and displaces EP300", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11078", - "label": "NSF ATPase activity dissociates cis-SNARE at the ER", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11077", - "label": "p-Y342-PTK6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11076", - "label": "Beta-catenin is released from the destruction complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11075", - "label": "K63polyUb-APC [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11074", - "label": "VCP [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11073", - "label": "ASH2L [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11072", - "label": "PIP3:BTK:G beta-gamma complex dissociates to Active BTK, PIP3 and G beta-gamma complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11071", - "label": "HDAC1:2-containing complex deacetylate histones", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11070", - "label": "IL1B(1-269) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "11069", - "label": "PTK6 phosphorylates CDKN1B", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11068", - "label": "Auto-ubiquitination of TRAF6", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11067", - "label": "p-T,Y MAPKs [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "11066", - "label": "ADR, NAd [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "11065", - "label": "NAd [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "11064", - "label": "ISGylated host proteins [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11063", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "11062", - "label": "JAK1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11061", - "label": "THBS1 gene transcription is stimulated by the complex containing RUNX1, PRMT1 and GATA1 and inhibited by the complex of RUNX1, SIN3A and PRMT6", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11060", - "label": "THBS1 trimer [platelet alpha granule lumen]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11059", - "label": "TGFA(24-98) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "11058", - "label": "S1P [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "11057", - "label": "MMPs cleave HB-EGF", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11056", - "label": "NEDD8 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11055", - "label": "Ac-CoA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "11054", - "label": "p-4Y-PLCG1 dissociates from activated FGFR3 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11053", - "label": "Nucleotide exchange on RAB1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11052", - "label": "GRB2-1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11051", - "label": "Glucagon-like Peptide 1 is secreted from intestinal L cells", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11050", - "label": "STAT1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11049", - "label": "OAT2 and OAT4 mediate transport of sulphate conjugates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11048", - "label": "LPAR1,2,3,5:LPA [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11047", - "label": "PolyUb-Misfolded Proteins [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "11046", - "label": "PolyUb-misfolded nascent CFTR [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11045", - "label": "NF-kB migrates to the nucleus and turns on transcription", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11044", - "label": "ISG15 E3 ligases [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "11043", - "label": "RUNX3 translocates to the nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11042", - "label": "ARIH1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11041", - "label": "Dissociation of phosphorylated PLCG1 from ligand-responsive p-6Y-EGFR mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11040", - "label": "PXLP-K314-GPT transaminates PYR to form L-Ala", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11039", - "label": "AGTR1 [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "11038", - "label": "G-protein alpha (q/11): GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11037", - "label": "RIPK3 is phosphorylated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11036", - "label": "RIPK1:RIPK3 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11035", - "label": "Phosphorylated SMAD2/3 dissociates from TGFBR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11034", - "label": "p-T325,T331,S362,S374-FOS [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11033", - "label": "MAPK3 (ERK1) and MAPK1 (ERK2) phosphorylate CEBPB", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11032", - "label": "CEBPB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11031", - "label": "BSG:MCTs cotransport LACT, H+ from cytosol to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11030", - "label": "FGFR1OP-FGFR1 phosphorylates STAT1 and STAT3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11029", - "label": "GYS1 catalyzes the incorporation of phosphoglucose into glycogen-GYG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11028", - "label": "Phosphorylated STAT3 Dimer Translocates to the Nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11027", - "label": "SAA1(19-122) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11026", - "label": "PF4 gene transcription is stimulated by RUNX1:CBFB", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11025", - "label": "PF4(48-101) [platelet alpha granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11024", - "label": "p-Y705-STAT3 dimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11023", - "label": "Vesicle budding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "11022", - "label": "COPI vesicle uncoating at the ER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "11021", - "label": "RAB1:GTP:coatomer:p24 dimers:SEC22B:cargo:NBAS:RINT1:ZW10:STX18:USE1L:BNIP1 [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "11020", - "label": "C3AR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11019", - "label": "2OG [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "11018", - "label": "PF4(32-101) [platelet alpha granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11017", - "label": "The Ligand:GPCR:G12/13 complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11016", - "label": "L-Glu [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "11015", - "label": "RIPK3 binds RIPK1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11014", - "label": "TGFA precursor [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "11013", - "label": "ADORA2B:Ade-Rib:GsGTP dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11012", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11011", - "label": "p-Y705-STAT3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11010", - "label": "Dissociation of the PAR:Gq complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11009", - "label": "Dissociation of Rho GTP:GDP from GDI complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11008", - "label": "AREG precursor [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "11007", - "label": "PPARG [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11006", - "label": "MON1:CCZ1 exchanges GTP for GDP on RAB7", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11005", - "label": "Release of GABA at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11004", - "label": "c-FOS activation by phospho ERK1/2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11003", - "label": "CXCR4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "11002", - "label": "GPR84 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "11001", - "label": "RNF4 ubiquitinates MDC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "11000", - "label": "AREG(101-187) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "10999", - "label": "TMED2:TMED10 tetramer:GPI-CD59, GPI-FOLR1 [endoplasmic reticulum-Golgi intermediate compartment membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "10998", - "label": "PolyUb:misfolded proteins dissociate from PRKN:UBE2N:UBE2V1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10997", - "label": "SEC22B [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10996", - "label": "p-BMAL1:p-CLOCK,NPAS2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "10995", - "label": "RHO [photoreceptor disc membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10994", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon TLR stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "10993", - "label": "Exocytosis of specific granule membrane proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10992", - "label": "FGL2 [ficolin-1-rich granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "10991", - "label": "The Ligand:GPCR:Gz complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10990", - "label": "DNA DNA DSBs:p-MRN:p-S1981,Ac-K3016-ATM:KAT5:K63PolyUb-K14,K16,p-S139-H2AFX,Me2K21-HIST1H4A-Nucleosome:SUMO2:K1840,p-5T-MDC1:p-S102-WHSC1:RNF8:Zn2+:SUMO1:p-T4827-HERC2:UBE2N:UBE2V2:RNF168:PIAS4:p-S25,S1778-TP53BP1:p-5S,2T-BRCA1-A complex [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "10989", - "label": "Release of p-PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10988", - "label": "Stimulation of IL8 transcription in senescent cells", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "10987", - "label": "Dissociation of phosphorylated PLC-gamma 1 from p-EGFRvIII mutant", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10986", - "label": "PPBP(35-128) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10985", - "label": "PolyUb-Misfolded cilia proteins [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "10984", - "label": "PolyUb-Misfolded CETN1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10983", - "label": "Retinoic acid activates HOXB1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "10982", - "label": "Dissociation of the PAR:G12/13 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10981", - "label": "RNF8:Zn2+ [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "10980", - "label": "KIFC1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "10979", - "label": "K48PolyUb-K21,22-p-S32,36-IkBA:NF-kB complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "10978", - "label": "TP53 and AP-1 stimulate MSH2 expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "10977", - "label": "Phosphorylation and activation of PLCG due to FCGR3A effect", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10976", - "label": "Hypophosphorylation of RNA Pol II CTD by FCP1P protein", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10975", - "label": "Dissociation of high activity BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10974", - "label": "AcCho [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "10973", - "label": "LDH tetramer reduces PYR to LACT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10972", - "label": "Acyl Ghrelin and C-Ghrelin are secreted", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "10971", - "label": "p190RhoGEF exchanges GTP for GDP on RHOA, activating it", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10970", - "label": "DNA polymerase delta polymerizes DNA across single stranded gap", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10969", - "label": "RPA:DNA containing single strand gap [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "10968", - "label": "RBBP5 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10967", - "label": "ZFYVE9-1 [early endosome membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10966", - "label": "Activation of NIK", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10965", - "label": "UBE2N:UBE2V1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "10964", - "label": "RUNX1 gene expression is inhibited by RUNX3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "10963", - "label": "HSPA8-mediated ATP hydrolysis promotes vesicle uncoating", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "10962", - "label": "DNA DSB:p-MRN:p-S1981,Ac-K3016-ATM:KAT5 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "10961", - "label": "GABA [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "10960", - "label": "BET1:GOSR2:STX5 bind v-SNARES on tethered vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10959", - "label": "Ca2+ [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "10958", - "label": "PF4(48-101) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10957", - "label": "The Ligand:GPCR:Gi complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10956", - "label": "F2RL3 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10955", - "label": "SLC24A1-4 exchange extracellular 4Na+ for cytosolic Ca2+, K+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10954", - "label": "SNAP25 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10953", - "label": "Dissociation of clathrin-associated proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "10952", - "label": "NFKB1:RELA translocates from the cytosol to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "10951", - "label": "NFKB1(1-433):RELA [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "10950", - "label": "Cytosolic DUSPs dephosphorylate MAPKs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10949", - "label": "EXO1 interacting with MSH2:MSH6 excises single strand DNA containing a mismatch", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "10948", - "label": "Core histone octamer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "10947", - "label": "EDNRB [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10946", - "label": "Polyglutamylated microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "10945", - "label": "26S proteasome processes K48PolyUb-K21,22-p-S32,36-IkBA:NF-kB complex to form NF-kB complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "10944", - "label": "Transfer of SUMO1 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10943", - "label": "Acyl Ghrelin [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "10942", - "label": "O-octanoyl-L-serine-GHRL-1(24-50) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10941", - "label": "Release of PLCG from FCGR3A", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10940", - "label": "IgG:Leishmania surface:p-FCGR3A:p-6Y-SYK:p-3Y-PLCG [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "10939", - "label": "TGFA precursor [ER to Golgi transport vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "10938", - "label": "HDAC1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10937", - "label": "AREG precursor [ER to Golgi transport vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "10936", - "label": "PolyUb-Misfolded IFT88 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10935", - "label": "CLOCK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10934", - "label": "RNF152 polyubiquitinates RRAGA", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "10933", - "label": "ARNTL [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10932", - "label": "NPAS2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10931", - "label": "UBE2N:UBE2V2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "10930", - "label": "Ca2+ [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "10929", - "label": "CASP8(217-374) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10928", - "label": "PPARG:RXRA heterodimer binds to fatty acid-like ligands", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10927", - "label": "GYS2 catalyzes the incorporation of phosphoglucose into glycogen-GYG2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10926", - "label": "UBE2L6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10925", - "label": "Transfer of NEDD8 to AcM-UBE2M", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10924", - "label": "NGEF exchanges GTP for GDP on RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10923", - "label": "Activated FGFR4:p-FRS:p-PTPN11 activates RAS nucleotide exchange", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10922", - "label": "Caspase-8 cleaves IL1B precursor", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10921", - "label": "TRAF6 binding leads to IRAK1:TRAF6 release", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10920", - "label": "Association of Ku heterodimer with ends of DNA double-strand break", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10919", - "label": "p-2S,S376,T,T209,T387-IRAK1:TRAF6 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "10918", - "label": "PP2A dephosphorylates p-RHO to RHO", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10917", - "label": "Estrogen-responsive CCND1 gene expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "10916", - "label": "NR4A2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "10915", - "label": "KDM1A demethylates monomethylated H3K9 (MeK-10-H3) at KLK2 and KLK3 promoters", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10914", - "label": "PIAS4 SUMOylates MDC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10913", - "label": "LEP [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10912", - "label": "CCND1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10911", - "label": "SUMO2:UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "10910", - "label": "CBL [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10909", - "label": "SRC autophosphorylation is positively regulated by InlA-bound CDH1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "10908", - "label": "TC-NER post-incision complex:dsDNA with transcription bubble [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "10907", - "label": "STAT1 and STAT3 dimers translocate to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "10906", - "label": "WNT5A:FZD4 is endocytosed", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "10905", - "label": "viral dsRNA:IFIH1, viral dsRNA:K63polyUb-DDX58:MAVS [mitochondrial outer membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "10904", - "label": "p-Y701-STAT1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10903", - "label": "PL [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "10902", - "label": "TNFRSF1B [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "10901", - "label": "AP-2 Complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "10900", - "label": "Overexpressed HIST1H2AC and ESR1:ESTG bind MYC and BCL2 genes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10899", - "label": "UBE2N [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10898", - "label": "MAP3K14 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10897", - "label": "PolyUb-Misfolded ARL13B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10896", - "label": "TRAF6 is K63 poly-ubiquitinated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10895", - "label": "Retinoic acid activates HOXD4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "10894", - "label": "Expression of PPARG", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "10893", - "label": "TGFBR2 is recruited to tight junctions after TGF-beta stimulation", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10892", - "label": "SPAST (spastin) mediates the severing of microtubules at chromosome attachment sites", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10891", - "label": "GMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "10890", - "label": "MYC gene expression is enhanced by E2F1, STAT3, and CEBPB and repressed by CEBPA", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "10889", - "label": "p-4Y- PLCG1 dissociates from activated FGFR1 mutants and fusions", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10888", - "label": "Dissociation of cytosolic HSF1:HSP90:HDAC6:PTGES3 upon sensing protein aggregates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10887", - "label": "Expression of FGF2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "10886", - "label": "Protesomal degradation of K48polyUb-TRAF3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "10885", - "label": "SCF-beta-TRCP ubiquitinates p-7S-p100:RELB in active NIK:p-176,S180-IKKA dimer:p-7S-p100:SCF-beta-TRCP", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "10884", - "label": "FOS [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10883", - "label": "Histone H2A [nucleoplasm]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "10882", - "label": "NMUR2:NMS [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "10881", - "label": "cholesterol esters [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "10880", - "label": "TAGs [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "10879", - "label": "Disassembly of SR-BI-bound spherical HDL", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10878", - "label": "spherical HDL:SR-BI complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "10877", - "label": "G-protein alpha (12):GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "10876", - "label": "mature GLP-1 [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "10875", - "label": "GLP-1 (7-37) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10874", - "label": "USO1 homodimer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "10873", - "label": "ArgN-GCG(98-127) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10872", - "label": "UBE2N:UBE2V1 dissociates from hp-IRAK1:3xK63-polyUb-TRAF6:3xUBE2N:UBE2V1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "10871", - "label": "K63PolyUb:K14,K16,p-S139-H2AFX,Me2K21-HIST1H4A-Nucleosome [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "10870", - "label": "PER1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "10869", - "label": "coatomer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "10868", - "label": "Phosphorylated heterodimers of ERBB2 TMD/JMD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "10867", - "label": "PAFAH1B1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - } - ], - "edges": [ - { - "id": "12318", - "label": "305153 (-) 299541", - "from": "11441", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12317", - "label": "587783 (-) 140089", - "from": "11440", - "to": "11217", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12316", - "label": "6157 (-) 13130", - "from": "11439", - "to": "11208", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12315", - "label": "6157 (-) 8322", - "from": "11439", - "to": "11412", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12314", - "label": "305167 (-) 299541", - "from": "11438", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12313", - "label": "618516 (-) 1035755", - "from": "11437", - "to": "11015", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12312", - "label": "305175 (-) 299541", - "from": "11436", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12311", - "label": "419867 (-) 960695", - "from": "11435", - "to": "11396", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12310", - "label": "305190 (-) 299541", - "from": "11434", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12309", - "label": "1882150 (-) 2098710", - "from": "11433", - "to": "11006", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12308", - "label": "1341480 (-) 320330", - "from": "11432", - "to": "11209", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12307", - "label": "616491 (-) 550154", - "from": "11431", - "to": "11081", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12306", - "label": "616491 (-) 616607", - "from": "11431", - "to": "11404", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12305", - "label": "616491 (-) 616843", - "from": "11431", - "to": "11351", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12304", - "label": "616491 (-) 616818", - "from": "11431", - "to": "11359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12303", - "label": "616491 (-) 616732", - "from": "11431", - "to": "11371", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12302", - "label": "616492 (-) 616491", - "from": "11430", - "to": "11431", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12301", - "label": "616493 (-) 616491", - "from": "11429", - "to": "11431", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12300", - "label": "1226805 (-) 1243896", - "from": "11428", - "to": "11241", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12299", - "label": "299067 (-) 369394", - "from": "11427", - "to": "11243", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12298", - "label": "299067 (-) 299541", - "from": "11427", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12297", - "label": "299067 (-) 331494", - "from": "11427", - "to": "10957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12296", - "label": "2119743 (-) 254746", - "from": "11426", - "to": "11230", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12295", - "label": "421954 (-) 951458", - "from": "11425", - "to": "11115", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12294", - "label": "98391 (-) 97550", - "from": "11424", - "to": "11077", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12293", - "label": "950359 (-) 569211", - "from": "11423", - "to": "10910", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12292", - "label": "421977 (-) 421954", - "from": "11422", - "to": "11425", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12291", - "label": "964698 (-) 144608", - "from": "11421", - "to": "11095", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12290", - "label": "421979 (-) 421977", - "from": "11420", - "to": "11422", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12289", - "label": "950362 (-) 950359", - "from": "11419", - "to": "11423", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12288", - "label": "712804 (-) 703763", - "from": "11418", - "to": "11075", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12287", - "label": "6250 (-) 8322", - "from": "11417", - "to": "11412", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12286", - "label": "6250 (-) 13130", - "from": "11417", - "to": "11208", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12285", - "label": "159862 (-) 159681", - "from": "11416", - "to": "10887", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12284", - "label": "299127 (-) 299541", - "from": "11415", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12283", - "label": "297083 (-) 296562", - "from": "11414", - "to": "10982", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12282", - "label": "1661054 (-) 1660884", - "from": "11413", - "to": "10878", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12281", - "label": "8322 (-) 8325", - "from": "11412", - "to": "11411", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12280", - "label": "8325 (-) 1934430", - "from": "11411", - "to": "11130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12279", - "label": "8325 (-) 638896", - "from": "11411", - "to": "10892", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12278", - "label": "8327 (-) 1935831", - "from": "11410", - "to": "11340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12277", - "label": "258188 (-) 1793199", - "from": "11409", - "to": "11112", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12276", - "label": "1867917 (-) 1871665", - "from": "11408", - "to": "10934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12275", - "label": "1417364 (-) 1226805", - "from": "11407", - "to": "11428", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12274", - "label": "422042 (-) 421979", - "from": "11406", - "to": "11420", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12273", - "label": "571548 (-) 571803", - "from": "11405", - "to": "11349", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12272", - "label": "616607 (-) 617080", - "from": "11404", - "to": "11287", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12271", - "label": "422049 (-) 422042", - "from": "11403", - "to": "11406", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12270", - "label": "422049 (-) 573953", - "from": "11403", - "to": "11328", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12269", - "label": "565410 (-) 1200984", - "from": "11402", - "to": "11206", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12268", - "label": "133281 (-) 1245648", - "from": "11401", - "to": "11341", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12267", - "label": "133281 (-) 1484122", - "from": "11401", - "to": "11054", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12266", - "label": "133281 (-) 1485345", - "from": "11401", - "to": "11314", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12265", - "label": "133281 (-) 1485501", - "from": "11401", - "to": "11262", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12264", - "label": "133281 (-) 1245450", - "from": "11401", - "to": "11382", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12263", - "label": "133281 (-) 289149", - "from": "11401", - "to": "11357", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12262", - "label": "133281 (-) 291429", - "from": "11401", - "to": "11293", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12261", - "label": "133281 (-) 571202", - "from": "11401", - "to": "10923", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12260", - "label": "133281 (-) 291483", - "from": "11401", - "to": "11276", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12259", - "label": "616621 (-) 616491", - "from": "11400", - "to": "11431", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12258", - "label": "1116334 (-) 593090", - "from": "11399", - "to": "11100", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12257", - "label": "92336 (-) 1243896", - "from": "11398", - "to": "11241", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12256", - "label": "923825 (-) 77681", - "from": "11397", - "to": "10911", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12255", - "label": "960695 (-) 960987", - "from": "11396", - "to": "11337", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12254", - "label": "243911 (-) 2680", - "from": "11395", - "to": "11286", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12253", - "label": "1538253 (-) 293444", - "from": "11394", - "to": "11305", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12252", - "label": "252110 (-) 251201", - "from": "11393", - "to": "11067", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12251", - "label": "252110 (-) 251144", - "from": "11393", - "to": "11083", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12250", - "label": "252110 (-) 250984", - "from": "11393", - "to": "11127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12249", - "label": "2117860 (-) 254746", - "from": "11392", - "to": "11230", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12248", - "label": "1337573 (-) 1337326", - "from": "11391", - "to": "10870", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12247", - "label": "2117862 (-) 2119743", - "from": "11390", - "to": "11426", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12246", - "label": "2117862 (-) 2117860", - "from": "11390", - "to": "11392", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12245", - "label": "336103 (-) 331494", - "from": "11389", - "to": "10957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12244", - "label": "336103 (-) 1538253", - "from": "11389", - "to": "11394", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12243", - "label": "551145 (-) 550854", - "from": "11388", - "to": "10885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12242", - "label": "962799 (-) 1794867", - "from": "11387", - "to": "11219", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12241", - "label": "743664 (-) 1341480", - "from": "11386", - "to": "11432", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12240", - "label": "743664 (-) 1341349", - "from": "11386", - "to": "10895", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12239", - "label": "743664 (-) 1341038", - "from": "11386", - "to": "10983", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12238", - "label": "743664 (-) 1340336", - "from": "11386", - "to": "11178", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12237", - "label": "194803 (-) 1863096", - "from": "11385", - "to": "11031", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12236", - "label": "194803 (-) 1690278", - "from": "11385", - "to": "11271", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12235", - "label": "504065 (-) 504078", - "from": "11384", - "to": "11378", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12234", - "label": "504065 (-) 504360", - "from": "11384", - "to": "11310", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12233", - "label": "504065 (-) 504377", - "from": "11384", - "to": "11306", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12232", - "label": "1886473 (-) 1238218", - "from": "11383", - "to": "11099", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12231", - "label": "1245450 (-) 253191", - "from": "11382", - "to": "11084", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12230", - "label": "1806603 (-) 310723", - "from": "11381", - "to": "11027", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12229", - "label": "504076 (-) 1684283", - "from": "11380", - "to": "11215", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12228", - "label": "504076 (-) 1682942", - "from": "11380", - "to": "11012", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12227", - "label": "504075 (-) 1682942", - "from": "11379", - "to": "11012", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12226", - "label": "504075 (-) 1684283", - "from": "11379", - "to": "11215", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12225", - "label": "504078 (-) 504076", - "from": "11378", - "to": "11380", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12224", - "label": "504078 (-) 504077", - "from": "11378", - "to": "11374", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12223", - "label": "504078 (-) 504075", - "from": "11378", - "to": "11379", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12222", - "label": "1237263 (-) 55093", - "from": "11377", - "to": "10931", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12221", - "label": "973072 (-) 251144", - "from": "11376", - "to": "11083", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12220", - "label": "973072 (-) 251201", - "from": "11376", - "to": "11067", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12219", - "label": "973072 (-) 250984", - "from": "11376", - "to": "11127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12218", - "label": "1237265 (-) 1237263", - "from": "11375", - "to": "11377", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12217", - "label": "504077 (-) 1682942", - "from": "11374", - "to": "11012", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12216", - "label": "504077 (-) 1684283", - "from": "11374", - "to": "11215", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12215", - "label": "1382672 (-) 441773", - "from": "11373", - "to": "11032", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12214", - "label": "1337624 (-) 1337573", - "from": "11372", - "to": "11391", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12213", - "label": "616732 (-) 617080", - "from": "11371", - "to": "11287", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12212", - "label": "874812 (-) 888170", - "from": "11370", - "to": "11053", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12211", - "label": "1272124 (-) 1265996", - "from": "11369", - "to": "11363", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12210", - "label": "1046846 (-) 570878", - "from": "11368", - "to": "11011", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12209", - "label": "241990 (-) 958434", - "from": "11367", - "to": "10872", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12208", - "label": "1534279 (-) 251616", - "from": "11366", - "to": "10959", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12207", - "label": "321865 (-) 1382736", - "from": "11365", - "to": "11362", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12206", - "label": "1265995 (-) 1275213", - "from": "11364", - "to": "11061", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12205", - "label": "1265995 (-) 1275346", - "from": "11364", - "to": "11026", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12204", - "label": "1265996 (-) 1275213", - "from": "11363", - "to": "11061", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12203", - "label": "1265996 (-) 1275346", - "from": "11363", - "to": "11026", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12202", - "label": "1382736 (-) 327533", - "from": "11362", - "to": "10913", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12201", - "label": "1681748 (-) 251616", - "from": "11361", - "to": "10959", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12200", - "label": "616817 (-) 616491", - "from": "11360", - "to": "11431", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12199", - "label": "616818 (-) 617080", - "from": "11359", - "to": "11287", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12198", - "label": "883065 (-) 1200606", - "from": "11358", - "to": "11334", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12197", - "label": "289149 (-) 144608", - "from": "11357", - "to": "11095", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12196", - "label": "616831 (-) 616491", - "from": "11356", - "to": "11431", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12195", - "label": "330112 (-) 409084", - "from": "11355", - "to": "11013", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12194", - "label": "330112 (-) 369394", - "from": "11355", - "to": "11243", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12193", - "label": "330112 (-) 331494", - "from": "11355", - "to": "10957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12192", - "label": "227715 (-) 1336631", - "from": "11354", - "to": "11071", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12191", - "label": "952711 (-) 958275", - "from": "11353", - "to": "10921", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12190", - "label": "391560 (-) 2680", - "from": "11352", - "to": "11286", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12189", - "label": "616843 (-) 617080", - "from": "11351", - "to": "11287", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12188", - "label": "401809 (-) 1428742", - "from": "11350", - "to": "11079", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12187", - "label": "401809 (-) 1266350", - "from": "11350", - "to": "11270", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12186", - "label": "571803 (-) 132458", - "from": "11349", - "to": "11052", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12185", - "label": "149916 (-) 1488882", - "from": "11348", - "to": "10868", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12184", - "label": "149916 (-) 1489512", - "from": "11348", - "to": "11291", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12183", - "label": "149916 (-) 964698", - "from": "11348", - "to": "11421", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12182", - "label": "149916 (-) 1489627", - "from": "11348", - "to": "11253", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12181", - "label": "149916 (-) 289835", - "from": "11348", - "to": "11145", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12180", - "label": "149916 (-) 157322", - "from": "11348", - "to": "10977", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12179", - "label": "1065380 (-) 261355", - "from": "11347", - "to": "11092", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12178", - "label": "301477 (-) 299541", - "from": "11346", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12177", - "label": "1200554 (-) 43842", - "from": "11345", - "to": "11212", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12176", - "label": "616886 (-) 616493", - "from": "11344", - "to": "11429", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12175", - "label": "616886 (-) 616831", - "from": "11344", - "to": "11356", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12174", - "label": "616886 (-) 616621", - "from": "11344", - "to": "11400", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12173", - "label": "616886 (-) 616817", - "from": "11344", - "to": "11360", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12172", - "label": "616886 (-) 616492", - "from": "11344", - "to": "11430", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12171", - "label": "321983 (-) 1275213", - "from": "11343", - "to": "11061", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12170", - "label": "321983 (-) 1382736", - "from": "11343", - "to": "11362", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12169", - "label": "1200581 (-) 1200554", - "from": "11342", - "to": "11345", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12168", - "label": "1245648 (-) 253191", - "from": "11341", - "to": "11084", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12167", - "label": "1935831 (-) 191978", - "from": "11340", - "to": "11016", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12166", - "label": "1477081 (-) 8325", - "from": "11339", - "to": "11411", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12165", - "label": "297434 (-) 296684", - "from": "11338", - "to": "10956", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12164", - "label": "960987 (-) 1272124", - "from": "11337", - "to": "11369", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12163", - "label": "289245 (-) 144608", - "from": "11336", - "to": "11095", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12162", - "label": "2062814 (-) 418544", - "from": "11335", - "to": "11244", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12161", - "label": "1200606 (-) 1200581", - "from": "11334", - "to": "11342", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12160", - "label": "440813 (-) 970337", - "from": "11333", - "to": "10988", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12159", - "label": "1798639 (-) 1911913", - "from": "11332", - "to": "11126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12158", - "label": "2111986 (-) 49150", - "from": "11331", - "to": "10867", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12157", - "label": "1430006 (-) 336103", - "from": "11330", - "to": "11389", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12156", - "label": "193018 (-) 193941", - "from": "11329", - "to": "11040", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12155", - "label": "193018 (-) 194202", - "from": "11329", - "to": "10973", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12154", - "label": "573953 (-) 572417", - "from": "11328", - "to": "11159", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12153", - "label": "1790467 (-) 251616", - "from": "11327", - "to": "10959", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12152", - "label": "248331 (-) 2680", - "from": "11326", - "to": "11286", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12151", - "label": "637452 (-) 193879", - "from": "11325", - "to": "11055", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12150", - "label": "637453 (-) 637452", - "from": "11324", - "to": "11325", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12149", - "label": "1337870 (-) 1337573", - "from": "11323", - "to": "11391", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12148", - "label": "193037 (-) 193018", - "from": "11322", - "to": "11329", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12147", - "label": "299537 (-) 299541", - "from": "11321", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12146", - "label": "653843 (-) 730789", - "from": "11320", - "to": "10971", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12145", - "label": "653843 (-) 737088", - "from": "11320", - "to": "10924", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12144", - "label": "653843 (-) 1538767", - "from": "11320", - "to": "11255", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12143", - "label": "653843 (-) 654138", - "from": "11320", - "to": "11216", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12142", - "label": "299541 (-) 308039", - "from": "11319", - "to": "11210", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12141", - "label": "299541 (-) 309001", - "from": "11319", - "to": "10947", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12140", - "label": "299541 (-) 297979", - "from": "11319", - "to": "11163", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12139", - "label": "299541 (-) 251616", - "from": "11319", - "to": "10959", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12138", - "label": "299541 (-) 297990", - "from": "11319", - "to": "11158", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12137", - "label": "299541 (-) 298000", - "from": "11319", - "to": "11154", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12136", - "label": "299541 (-) 293444", - "from": "11319", - "to": "11305", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12135", - "label": "299541 (-) 296350", - "from": "11319", - "to": "11038", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12134", - "label": "299544 (-) 299541", - "from": "11318", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12133", - "label": "1159708 (-) 2680", - "from": "11317", - "to": "11286", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12132", - "label": "291357 (-) 144608", - "from": "11316", - "to": "11095", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12131", - "label": "653856 (-) 654215", - "from": "11315", - "to": "11190", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12130", - "label": "1485345 (-) 144608", - "from": "11314", - "to": "11095", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12129", - "label": "1083940 (-) 1084519", - "from": "11313", - "to": "11128", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12128", - "label": "231973 (-) 1341349", - "from": "11312", - "to": "10895", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12127", - "label": "231973 (-) 1340263", - "from": "11312", - "to": "11200", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12126", - "label": "231973 (-) 1341480", - "from": "11312", - "to": "11432", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12125", - "label": "231973 (-) 1340336", - "from": "11312", - "to": "11178", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12124", - "label": "231973 (-) 1341038", - "from": "11312", - "to": "10983", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12123", - "label": "1083941 (-) 1083940", - "from": "11311", - "to": "11313", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12122", - "label": "504360 (-) 504077", - "from": "11310", - "to": "11374", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12121", - "label": "504360 (-) 504075", - "from": "11310", - "to": "11379", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12120", - "label": "504360 (-) 504076", - "from": "11310", - "to": "11380", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12119", - "label": "311850 (-) 299541", - "from": "11309", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12118", - "label": "309814 (-) 299541", - "from": "11308", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12117", - "label": "1806903 (-) 412237", - "from": "11307", - "to": "11303", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12116", - "label": "504377 (-) 504076", - "from": "11306", - "to": "11380", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12115", - "label": "504377 (-) 504075", - "from": "11306", - "to": "11379", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12114", - "label": "293444 (-) 299541", - "from": "11305", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12113", - "label": "293444 (-) 329216", - "from": "11305", - "to": "11010", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12112", - "label": "293444 (-) 296562", - "from": "11305", - "to": "10982", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12111", - "label": "293444 (-) 1522955", - "from": "11305", - "to": "11080", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12110", - "label": "1538634 (-) 293444", - "from": "11304", - "to": "11305", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12109", - "label": "412237 (-) 414287", - "from": "11303", - "to": "11302", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12108", - "label": "414287 (-) 227113", - "from": "11302", - "to": "10938", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12107", - "label": "932440 (-) 584382", - "from": "11301", - "to": "11261", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12106", - "label": "389722 (-) 549814", - "from": "11300", - "to": "11175", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12105", - "label": "389722 (-) 616886", - "from": "11300", - "to": "11344", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12104", - "label": "1794651 (-) 962799", - "from": "11299", - "to": "11387", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12103", - "label": "1794651 (-) 1793419", - "from": "11299", - "to": "11042", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12102", - "label": "1794651 (-) 962363", - "from": "11299", - "to": "10926", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12101", - "label": "1794651 (-) 1793418", - "from": "11299", - "to": "11044", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12100", - "label": "555611 (-) 409544", - "from": "11298", - "to": "10884", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12099", - "label": "875101 (-) 875099", - "from": "11297", - "to": "11295", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12098", - "label": "971358 (-) 250984", - "from": "11296", - "to": "11127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12097", - "label": "971358 (-) 251144", - "from": "11296", - "to": "11083", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12096", - "label": "971358 (-) 251201", - "from": "11296", - "to": "11067", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12095", - "label": "875099 (-) 875746", - "from": "11295", - "to": "11094", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12094", - "label": "350818 (-) 555944", - "from": "11294", - "to": "11180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12093", - "label": "291429 (-) 144608", - "from": "11293", - "to": "11095", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12092", - "label": "1159782 (-) 954243", - "from": "11292", - "to": "10905", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12091", - "label": "1489512 (-) 144608", - "from": "11291", - "to": "11095", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12090", - "label": "1477225 (-) 231973", - "from": "11290", - "to": "11312", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12089", - "label": "1378926 (-) 1382736", - "from": "11289", - "to": "11362", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12088", - "label": "2052724 (-) 2059776", - "from": "11288", - "to": "11009", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12087", - "label": "617080 (-) 550651", - "from": "11287", - "to": "10951", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12086", - "label": "2680 (-) 712804", - "from": "11286", - "to": "11418", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12085", - "label": "227964 (-) 324791", - "from": "11285", - "to": "11106", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12084", - "label": "227964 (-) 320128", - "from": "11285", - "to": "11282", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12083", - "label": "227964 (-) 1382203", - "from": "11285", - "to": "10928", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12082", - "label": "227964 (-) 322680", - "from": "11285", - "to": "11122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12081", - "label": "227964 (-) 324862", - "from": "11285", - "to": "11089", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12080", - "label": "227964 (-) 322256", - "from": "11285", - "to": "11256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12079", - "label": "133757 (-) 291429", - "from": "11284", - "to": "11293", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12078", - "label": "133757 (-) 1485501", - "from": "11284", - "to": "11262", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12077", - "label": "133757 (-) 1484122", - "from": "11284", - "to": "11054", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12076", - "label": "133757 (-) 1480635", - "from": "11284", - "to": "10889", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12075", - "label": "133757 (-) 289149", - "from": "11284", - "to": "11357", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12074", - "label": "133757 (-) 1485345", - "from": "11284", - "to": "11314", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12073", - "label": "133757 (-) 289245", - "from": "11284", - "to": "11336", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12072", - "label": "133757 (-) 291483", - "from": "11284", - "to": "11276", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12071", - "label": "637566 (-) 637453", - "from": "11283", - "to": "11324", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12070", - "label": "320128 (-) 320604", - "from": "11282", - "to": "11131", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12069", - "label": "1684105 (-) 330932", - "from": "11281", - "to": "11109", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12068", - "label": "1684105 (-) 330112", - "from": "11281", - "to": "11355", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12067", - "label": "1684105 (-) 298310", - "from": "11281", - "to": "11065", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12066", - "label": "1684105 (-) 299067", - "from": "11281", - "to": "11427", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12065", - "label": "1309325 (-) 1309326", - "from": "11280", - "to": "11279", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12064", - "label": "1309325 (-) 1309385", - "from": "11280", - "to": "11258", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12063", - "label": "1309326 (-) 1309471", - "from": "11279", - "to": "11228", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12062", - "label": "98964 (-) 98391", - "from": "11278", - "to": "11424", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12061", - "label": "98964 (-) 1490531", - "from": "11278", - "to": "10987", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12060", - "label": "98964 (-) 1490324", - "from": "11278", - "to": "11041", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12059", - "label": "98964 (-) 291357", - "from": "11278", - "to": "11316", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12058", - "label": "1806998 (-) 627749", - "from": "11277", - "to": "11147", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12057", - "label": "1806998 (-) 441814", - "from": "11277", - "to": "11024", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12056", - "label": "291483 (-) 144608", - "from": "11276", - "to": "11095", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12055", - "label": "160413 (-) 159862", - "from": "11275", - "to": "11416", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12054", - "label": "1682080 (-) 251616", - "from": "11274", - "to": "10959", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12053", - "label": "719521 (-) 719714", - "from": "11273", - "to": "11204", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12052", - "label": "330402 (-) 331494", - "from": "11272", - "to": "10957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12051", - "label": "1690278 (-) 330402", - "from": "11271", - "to": "11272", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12050", - "label": "1266350 (-) 1265995", - "from": "11270", - "to": "11364", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12049", - "label": "672431 (-) 46171", - "from": "11269", - "to": "11132", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12048", - "label": "1802928 (-) 441814", - "from": "11268", - "to": "11024", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12047", - "label": "1411759 (-) 1411760", - "from": "11267", - "to": "11266", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12046", - "label": "1411760 (-) 1412138", - "from": "11266", - "to": "11146", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12045", - "label": "1807026 (-) 935814", - "from": "11265", - "to": "10904", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12044", - "label": "1807026 (-) 570878", - "from": "11265", - "to": "11011", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12043", - "label": "1807026 (-) 627557", - "from": "11265", - "to": "11201", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12042", - "label": "1673905 (-) 261355", - "from": "11264", - "to": "11092", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12041", - "label": "1231548 (-) 1230506", - "from": "11263", - "to": "10969", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12040", - "label": "1485501 (-) 144608", - "from": "11262", - "to": "11095", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12039", - "label": "584382 (-) 2131650", - "from": "11261", - "to": "10963", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12038", - "label": "322239 (-) 321084", - "from": "11260", - "to": "10996", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12037", - "label": "1411783 (-) 1473433", - "from": "11259", - "to": "11187", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12036", - "label": "1309385 (-) 1309471", - "from": "11258", - "to": "11228", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12035", - "label": "572111 (-) 571548", - "from": "11257", - "to": "11405", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12034", - "label": "322256 (-) 321330", - "from": "11256", - "to": "10933", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12033", - "label": "1538767 (-) 654141", - "from": "11255", - "to": "11213", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12032", - "label": "877267 (-) 875101", - "from": "11254", - "to": "11297", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12031", - "label": "1489627 (-) 144608", - "from": "11253", - "to": "11095", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12030", - "label": "1694430 (-) 330475", - "from": "11252", - "to": "11246", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12029", - "label": "2052833 (-) 2059776", - "from": "11251", - "to": "11009", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12028", - "label": "94950 (-) 1522976", - "from": "11250", - "to": "11072", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12027", - "label": "94950 (-) 548159", - "from": "11250", - "to": "11068", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12026", - "label": "1266408 (-) 1265996", - "from": "11249", - "to": "11363", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12025", - "label": "1266409 (-) 1266408", - "from": "11248", - "to": "11249", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12024", - "label": "1661673 (-) 357229", - "from": "11247", - "to": "11198", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12023", - "label": "330475 (-) 331494", - "from": "11246", - "to": "10957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12022", - "label": "103150 (-) 433546", - "from": "11245", - "to": "11043", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12021", - "label": "103150 (-) 1049381", - "from": "11245", - "to": "11224", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12020", - "label": "418544 (-) 2062227", - "from": "11244", - "to": "10900", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12019", - "label": "369394 (-) 298309", - "from": "11243", - "to": "11066", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12018", - "label": "369394 (-) 304129", - "from": "11243", - "to": "11161", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12017", - "label": "369394 (-) 299127", - "from": "11243", - "to": "11415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12016", - "label": "369394 (-) 298310", - "from": "11243", - "to": "11065", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12015", - "label": "369394 (-) 298315", - "from": "11243", - "to": "11063", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12014", - "label": "369394 (-) 304210", - "from": "11243", - "to": "11133", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12013", - "label": "369394 (-) 299067", - "from": "11243", - "to": "11427", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12012", - "label": "369394 (-) 299537", - "from": "11243", - "to": "11321", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12011", - "label": "369394 (-) 304276", - "from": "11243", - "to": "11118", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12010", - "label": "369394 (-) 301477", - "from": "11243", - "to": "11346", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12009", - "label": "369394 (-) 293444", - "from": "11243", - "to": "11305", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12008", - "label": "369394 (-) 303994", - "from": "11243", - "to": "11195", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12007", - "label": "369394 (-) 301845", - "from": "11243", - "to": "11232", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12006", - "label": "373494 (-) 369394", - "from": "11242", - "to": "11243", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12005", - "label": "1243896 (-) 321983", - "from": "11241", - "to": "11343", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12004", - "label": "1663739 (-) 2131650", - "from": "11240", - "to": "10963", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12003", - "label": "883453 (-) 883065", - "from": "11239", - "to": "11358", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12002", - "label": "883455 (-) 883453", - "from": "11238", - "to": "11239", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12001", - "label": "883456 (-) 883453", - "from": "11237", - "to": "11239", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12000", - "label": "310020 (-) 299541", - "from": "11236", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11999", - "label": "310021 (-) 331494", - "from": "11235", - "to": "10957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11998", - "label": "310021 (-) 299541", - "from": "11235", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11997", - "label": "1884935 (-) 554016", - "from": "11234", - "to": "11149", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11996", - "label": "54026 (-) 743241", - "from": "11233", - "to": "10920", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11995", - "label": "301845 (-) 299541", - "from": "11232", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11994", - "label": "1159958 (-) 618296", - "from": "11231", - "to": "10929", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11993", - "label": "1159958 (-) 618516", - "from": "11231", - "to": "11437", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11992", - "label": "254746 (-) 974036", - "from": "11230", - "to": "11097", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11991", - "label": "254746 (-) 975952", - "from": "11230", - "to": "11136", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11990", - "label": "254746 (-) 973669", - "from": "11230", - "to": "11202", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11989", - "label": "254746 (-) 252110", - "from": "11230", - "to": "11393", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11988", - "label": "254746 (-) 971358", - "from": "11230", - "to": "11296", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11987", - "label": "254746 (-) 973072", - "from": "11230", - "to": "11376", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11986", - "label": "254746 (-) 972439", - "from": "11230", - "to": "10975", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11985", - "label": "586523 (-) 570878", - "from": "11229", - "to": "11011", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11984", - "label": "1309471 (-) 728256", - "from": "11228", - "to": "11101", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11983", - "label": "1663777 (-) 1663739", - "from": "11227", - "to": "11240", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11982", - "label": "883490 (-) 883455", - "from": "11226", - "to": "11238", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11981", - "label": "1082148 (-) 350818", - "from": "11225", - "to": "11294", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11980", - "label": "1049381 (-) 94950", - "from": "11224", - "to": "11250", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11979", - "label": "441126 (-) 440813", - "from": "11223", - "to": "11333", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11978", - "label": "1082151 (-) 1082148", - "from": "11222", - "to": "11225", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11977", - "label": "719655 (-) 719521", - "from": "11221", - "to": "11273", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11976", - "label": "1889063 (-) 64690", - "from": "11220", - "to": "11111", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11975", - "label": "1794867 (-) 1793352", - "from": "11219", - "to": "11064", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11974", - "label": "62263 (-) 743241", - "from": "11218", - "to": "10920", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11973", - "label": "140089 (-) 586523", - "from": "11217", - "to": "11229", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11972", - "label": "654138 (-) 654141", - "from": "11216", - "to": "11213", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11971", - "label": "1684283 (-) 330112", - "from": "11215", - "to": "11355", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11970", - "label": "404285 (-) 707770", - "from": "11214", - "to": "11105", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11969", - "label": "404285 (-) 707416", - "from": "11214", - "to": "11205", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11968", - "label": "654141 (-) 952239", - "from": "11213", - "to": "10893", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11967", - "label": "654141 (-) 719655", - "from": "11213", - "to": "11221", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11966", - "label": "43842 (-) 1952840", - "from": "11212", - "to": "11139", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11965", - "label": "43842 (-) 1477081", - "from": "11212", - "to": "11339", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11964", - "label": "43842 (-) 1952931", - "from": "11212", - "to": "11114", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11963", - "label": "43842 (-) 1953027", - "from": "11212", - "to": "11087", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11962", - "label": "1035074 (-) 1159782", - "from": "11211", - "to": "11292", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11961", - "label": "308039 (-) 299541", - "from": "11210", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11960", - "label": "320330 (-) 324862", - "from": "11209", - "to": "11089", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11959", - "label": "320330 (-) 320128", - "from": "11209", - "to": "11282", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11958", - "label": "320330 (-) 322256", - "from": "11209", - "to": "11256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11957", - "label": "320330 (-) 1382203", - "from": "11209", - "to": "10928", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11956", - "label": "320330 (-) 324791", - "from": "11209", - "to": "11106", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11955", - "label": "320330 (-) 322680", - "from": "11209", - "to": "11122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11954", - "label": "13130 (-) 13588", - "from": "11208", - "to": "11074", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11953", - "label": "13134 (-) 1490324", - "from": "11207", - "to": "11041", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11952", - "label": "13134 (-) 1490531", - "from": "11207", - "to": "10987", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11951", - "label": "1200984 (-) 554324", - "from": "11206", - "to": "11058", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11950", - "label": "707416 (-) 227113", - "from": "11205", - "to": "10938", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11949", - "label": "719714 (-) 565410", - "from": "11204", - "to": "11402", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11948", - "label": "627554 (-) 441814", - "from": "11203", - "to": "11024", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11947", - "label": "627554 (-) 627749", - "from": "11203", - "to": "11147", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11946", - "label": "973669 (-) 250984", - "from": "11202", - "to": "11127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11945", - "label": "973669 (-) 251144", - "from": "11202", - "to": "11083", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11944", - "label": "973669 (-) 251201", - "from": "11202", - "to": "11067", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11943", - "label": "627557 (-) 1806998", - "from": "11201", - "to": "11277", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11942", - "label": "627557 (-) 627554", - "from": "11201", - "to": "11203", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11941", - "label": "1340263 (-) 320330", - "from": "11200", - "to": "11209", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11940", - "label": "2114406 (-) 2114794", - "from": "11199", - "to": "11093", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11939", - "label": "357229 (-) 1663777", - "from": "11198", - "to": "11227", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11938", - "label": "369519 (-) 369394", - "from": "11197", - "to": "11243", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11937", - "label": "2085752 (-) 130871", - "from": "11196", - "to": "10930", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11936", - "label": "303994 (-) 299541", - "from": "11195", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11935", - "label": "924543 (-) 2131650", - "from": "11194", - "to": "10963", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11934", - "label": "998275 (-) 1417364", - "from": "11193", - "to": "11407", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11933", - "label": "998275 (-) 1414797", - "from": "11193", - "to": "10976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11932", - "label": "441219 (-) 441126", - "from": "11192", - "to": "11223", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11931", - "label": "998276 (-) 1417364", - "from": "11191", - "to": "11407", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11930", - "label": "998276 (-) 1414797", - "from": "11191", - "to": "10976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11929", - "label": "654215 (-) 653843", - "from": "11190", - "to": "11320", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11928", - "label": "2114443 (-) 2112991", - "from": "11189", - "to": "11021", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11927", - "label": "998290 (-) 1417364", - "from": "11188", - "to": "11407", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11926", - "label": "998290 (-) 1414797", - "from": "11188", - "to": "10976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11925", - "label": "1473433 (-) 138223", - "from": "11187", - "to": "11165", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11924", - "label": "1473437 (-) 1411783", - "from": "11186", - "to": "11259", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11923", - "label": "1084318 (-) 171672", - "from": "11185", - "to": "10974", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11922", - "label": "1338271 (-) 389722", - "from": "11184", - "to": "11300", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11921", - "label": "1084321 (-) 1084318", - "from": "11183", - "to": "11185", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11920", - "label": "1807269 (-) 418544", - "from": "11182", - "to": "11244", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11919", - "label": "1807269 (-) 401809", - "from": "11182", - "to": "11350", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11918", - "label": "64422 (-) 1238006", - "from": "11181", - "to": "11164", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11917", - "label": "555944 (-) 293444", - "from": "11180", - "to": "11305", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11916", - "label": "54189 (-) 743241", - "from": "11179", - "to": "10920", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11915", - "label": "1340336 (-) 320330", - "from": "11178", - "to": "11209", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11914", - "label": "1340336 (-) 227964", - "from": "11178", - "to": "11285", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11913", - "label": "885683 (-) 887987", - "from": "11177", - "to": "11110", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11912", - "label": "885683 (-) 877790", - "from": "11177", - "to": "11096", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11911", - "label": "1799093 (-) 1035074", - "from": "11176", - "to": "11211", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11910", - "label": "549814 (-) 550522", - "from": "11175", - "to": "10979", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11909", - "label": "1113015 (-) 1107533", - "from": "11174", - "to": "10993", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11908", - "label": "549816 (-) 549814", - "from": "11173", - "to": "11175", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11907", - "label": "433081 (-) 1429185", - "from": "11172", - "to": "10964", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11906", - "label": "433081 (-) 1428672", - "from": "11172", - "to": "11102", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11905", - "label": "1782717 (-) 1391645", - "from": "11171", - "to": "11150", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11904", - "label": "1782717 (-) 333538", - "from": "11171", - "to": "10958", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11903", - "label": "1782717 (-) 333415", - "from": "11171", - "to": "10986", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11902", - "label": "885694 (-) 885683", - "from": "11170", - "to": "11177", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11901", - "label": "1659840 (-) 1207322", - "from": "11169", - "to": "11153", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11900", - "label": "320468 (-) 320128", - "from": "11168", - "to": "11282", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11899", - "label": "992230 (-) 992233", - "from": "11167", - "to": "11166", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11898", - "label": "992233 (-) 495541", - "from": "11166", - "to": "10891", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11897", - "label": "138223 (-) 672431", - "from": "11165", - "to": "11269", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11896", - "label": "1238006 (-) 1237265", - "from": "11164", - "to": "11375", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11895", - "label": "297979 (-) 297434", - "from": "11163", - "to": "11338", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11894", - "label": "572416 (-) 572418", - "from": "11162", - "to": "11160", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11893", - "label": "304129 (-) 299541", - "from": "11161", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11892", - "label": "572418 (-) 1031197", - "from": "11160", - "to": "11152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11891", - "label": "572418 (-) 994566", - "from": "11160", - "to": "11085", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11890", - "label": "572417 (-) 572416", - "from": "11159", - "to": "11162", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11889", - "label": "297990 (-) 299541", - "from": "11158", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11888", - "label": "297990 (-) 297434", - "from": "11158", - "to": "11338", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11887", - "label": "492556 (-) 1684105", - "from": "11157", - "to": "11281", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11886", - "label": "492556 (-) 1682942", - "from": "11157", - "to": "11012", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11885", - "label": "492556 (-) 1684283", - "from": "11157", - "to": "11215", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11884", - "label": "826382 (-) 492556", - "from": "11156", - "to": "11157", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11883", - "label": "672783 (-) 932440", - "from": "11155", - "to": "11301", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11882", - "label": "298000 (-) 297434", - "from": "11154", - "to": "11338", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11881", - "label": "1207322 (-) 1661673", - "from": "11153", - "to": "11247", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11880", - "label": "1207322 (-) 1661054", - "from": "11153", - "to": "11413", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11879", - "label": "1031197 (-) 992230", - "from": "11152", - "to": "11167", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11878", - "label": "289822 (-) 94950", - "from": "11151", - "to": "11250", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11877", - "label": "1391645 (-) 1659840", - "from": "11150", - "to": "11169", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11876", - "label": "554016 (-) 826382", - "from": "11149", - "to": "11156", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11875", - "label": "289823 (-) 289822", - "from": "11148", - "to": "11151", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11874", - "label": "627749 (-) 1806903", - "from": "11147", - "to": "11307", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11873", - "label": "1412138 (-) 1411783", - "from": "11146", - "to": "11259", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11872", - "label": "289835 (-) 289823", - "from": "11145", - "to": "11148", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11871", - "label": "1473583 (-) 1411783", - "from": "11144", - "to": "11259", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11870", - "label": "1668145 (-) 251616", - "from": "11143", - "to": "10959", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11869", - "label": "54322 (-) 743241", - "from": "11142", - "to": "10920", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11868", - "label": "2131002 (-) 2131705", - "from": "11141", - "to": "10953", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11867", - "label": "955460 (-) 955573", - "from": "11140", - "to": "11108", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11866", - "label": "1952840 (-) 998275", - "from": "11139", - "to": "11193", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11865", - "label": "62537 (-) 743241", - "from": "11138", - "to": "10920", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11864", - "label": "2131021 (-) 2131705", - "from": "11137", - "to": "10953", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11863", - "label": "975952 (-) 250984", - "from": "11136", - "to": "11127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11862", - "label": "975952 (-) 251144", - "from": "11136", - "to": "11083", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11861", - "label": "975952 (-) 251201", - "from": "11136", - "to": "11067", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11860", - "label": "703569 (-) 404285", - "from": "11135", - "to": "11214", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11859", - "label": "703570 (-) 1410943", - "from": "11134", - "to": "10909", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11858", - "label": "703570 (-) 703569", - "from": "11134", - "to": "11135", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11857", - "label": "304210 (-) 299541", - "from": "11133", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11856", - "label": "46171 (-) 703760", - "from": "11132", - "to": "11076", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11855", - "label": "320604 (-) 1430006", - "from": "11131", - "to": "11330", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11854", - "label": "320604 (-) 1275213", - "from": "11131", - "to": "11061", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11853", - "label": "1934430 (-) 1935115", - "from": "11130", - "to": "10946", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11852", - "label": "1428580 (-) 1428742", - "from": "11129", - "to": "11079", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11851", - "label": "1084519 (-) 1084321", - "from": "11128", - "to": "11183", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11850", - "label": "250984 (-) 392955", - "from": "11127", - "to": "10950", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11849", - "label": "1911913 (-) 978264", - "from": "11126", - "to": "11056", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11848", - "label": "72811 (-) 1242262", - "from": "11125", - "to": "11117", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11847", - "label": "500848 (-) 492556", - "from": "11124", - "to": "11157", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11846", - "label": "916596 (-) 917308", - "from": "11123", - "to": "10927", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11845", - "label": "916596 (-) 916923", - "from": "11123", - "to": "11029", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11844", - "label": "322680 (-) 321865", - "from": "11122", - "to": "11365", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11843", - "label": "314489 (-) 299541", - "from": "11121", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11842", - "label": "1338496 (-) 301477", - "from": "11120", - "to": "11346", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11841", - "label": "160903 (-) 160413", - "from": "11119", - "to": "11275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11840", - "label": "160903 (-) 1382672", - "from": "11119", - "to": "11373", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11839", - "label": "304276 (-) 299541", - "from": "11118", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11838", - "label": "1242262 (-) 1243009", - "from": "11117", - "to": "10908", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11837", - "label": "1035416 (-) 2085752", - "from": "11116", - "to": "11196", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11836", - "label": "951458 (-) 421558", - "from": "11115", - "to": "10967", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11835", - "label": "1952931 (-) 998276", - "from": "11114", - "to": "11191", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11834", - "label": "1952931 (-) 998290", - "from": "11114", - "to": "11188", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11833", - "label": "255142 (-) 974036", - "from": "11113", - "to": "11097", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11832", - "label": "255142 (-) 973072", - "from": "11113", - "to": "11376", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11831", - "label": "255142 (-) 971358", - "from": "11113", - "to": "11296", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11830", - "label": "255142 (-) 973669", - "from": "11113", - "to": "11202", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11829", - "label": "255142 (-) 972439", - "from": "11113", - "to": "10975", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11828", - "label": "255142 (-) 975952", - "from": "11113", - "to": "11136", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11827", - "label": "255142 (-) 252110", - "from": "11113", - "to": "11393", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11826", - "label": "1793199 (-) 149916", - "from": "11112", - "to": "11348", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11825", - "label": "1793199 (-) 286028", - "from": "11112", - "to": "11062", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11824", - "label": "1793199 (-) 570743", - "from": "11112", - "to": "11050", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11823", - "label": "64690 (-) 1886473", - "from": "11111", - "to": "11383", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11822", - "label": "64690 (-) 923825", - "from": "11111", - "to": "11397", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11821", - "label": "64690 (-) 67353", - "from": "11111", - "to": "10944", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11820", - "label": "887987 (-) 888278", - "from": "11110", - "to": "11023", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11819", - "label": "330932 (-) 331494", - "from": "11109", - "to": "10957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11818", - "label": "330932 (-) 369394", - "from": "11109", - "to": "11243", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11817", - "label": "955573 (-) 952711", - "from": "11108", - "to": "11353", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11816", - "label": "955574 (-) 955573", - "from": "11107", - "to": "11108", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11815", - "label": "324791 (-) 321329", - "from": "11106", - "to": "10935", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11814", - "label": "707770 (-) 707772", - "from": "11105", - "to": "11103", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11813", - "label": "707770 (-) 708267", - "from": "11105", - "to": "10968", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11812", - "label": "707770 (-) 707871", - "from": "11105", - "to": "11073", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11811", - "label": "955580 (-) 955573", - "from": "11104", - "to": "11108", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11810", - "label": "707772 (-) 1275213", - "from": "11103", - "to": "11061", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11809", - "label": "1428672 (-) 1428580", - "from": "11102", - "to": "11129", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11808", - "label": "728256 (-) 728927", - "from": "11101", - "to": "10915", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11807", - "label": "593090 (-) 1411759", - "from": "11100", - "to": "11267", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11806", - "label": "1238218 (-) 1238006", - "from": "11099", - "to": "11164", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11805", - "label": "333006 (-) 331494", - "from": "11098", - "to": "10957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11804", - "label": "974036 (-) 251144", - "from": "11097", - "to": "11083", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11803", - "label": "974036 (-) 251201", - "from": "11097", - "to": "11067", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11802", - "label": "974036 (-) 250984", - "from": "11097", - "to": "11127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11801", - "label": "877790 (-) 877267", - "from": "11096", - "to": "11254", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11800", - "label": "144608 (-) 151325", - "from": "11095", - "to": "10941", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11799", - "label": "144608 (-) 289822", - "from": "11095", - "to": "11151", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11798", - "label": "875746 (-) 2111986", - "from": "11094", - "to": "11331", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11797", - "label": "875746 (-) 1309325", - "from": "11094", - "to": "11280", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11796", - "label": "2114794 (-) 2114795", - "from": "11093", - "to": "11091", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11795", - "label": "261355 (-) 331494", - "from": "11092", - "to": "10957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11794", - "label": "261355 (-) 299541", - "from": "11092", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11793", - "label": "2114795 (-) 2114825", - "from": "11091", - "to": "11078", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11792", - "label": "587004 (-) 570878", - "from": "11090", - "to": "11011", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11791", - "label": "324862 (-) 321328", - "from": "11089", - "to": "10932", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11790", - "label": "660736 (-) 2062814", - "from": "11088", - "to": "11335", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11789", - "label": "1953027 (-) 998275", - "from": "11087", - "to": "11193", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11788", - "label": "955652 (-) 955580", - "from": "11086", - "to": "11104", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11787", - "label": "955652 (-) 955574", - "from": "11086", - "to": "11107", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11786", - "label": "955652 (-) 955460", - "from": "11086", - "to": "11140", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11785", - "label": "994566 (-) 992230", - "from": "11085", - "to": "11167", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11784", - "label": "253191 (-) 973072", - "from": "11084", - "to": "11376", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11783", - "label": "253191 (-) 975952", - "from": "11084", - "to": "11136", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11782", - "label": "253191 (-) 252110", - "from": "11084", - "to": "11393", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11781", - "label": "253191 (-) 1200984", - "from": "11084", - "to": "11206", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11780", - "label": "253191 (-) 971358", - "from": "11084", - "to": "11296", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11779", - "label": "253191 (-) 974036", - "from": "11084", - "to": "11097", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11778", - "label": "253191 (-) 972439", - "from": "11084", - "to": "10975", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11777", - "label": "253191 (-) 973669", - "from": "11084", - "to": "11202", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11776", - "label": "251144 (-) 392955", - "from": "11083", - "to": "10950", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11775", - "label": "1230088 (-) 1230586", - "from": "11082", - "to": "10949", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11774", - "label": "1230088 (-) 1231548", - "from": "11082", - "to": "11263", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11773", - "label": "550154 (-) 617080", - "from": "11081", - "to": "11287", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11772", - "label": "550154 (-) 550650", - "from": "11081", - "to": "10952", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11771", - "label": "550154 (-) 646528", - "from": "11081", - "to": "11045", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11770", - "label": "1522955 (-) 672783", - "from": "11080", - "to": "11155", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11769", - "label": "1428742 (-) 321983", - "from": "11079", - "to": "11343", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11768", - "label": "2114825 (-) 880186", - "from": "11078", - "to": "10997", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11767", - "label": "97550 (-) 587004", - "from": "11077", - "to": "11090", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11766", - "label": "703760 (-) 703570", - "from": "11076", - "to": "11134", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11765", - "label": "703763 (-) 703760", - "from": "11075", - "to": "11076", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11764", - "label": "13588 (-) 1302460", - "from": "11074", - "to": "10888", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11763", - "label": "13588 (-) 1884935", - "from": "11074", - "to": "11234", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11762", - "label": "707871 (-) 1275213", - "from": "11073", - "to": "11061", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11761", - "label": "1522976 (-) 293444", - "from": "11072", - "to": "11305", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11760", - "label": "1336631 (-) 1335037", - "from": "11071", - "to": "10948", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11759", - "label": "955707 (-) 955652", - "from": "11070", - "to": "11086", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11758", - "label": "955707 (-) 1156931", - "from": "11070", - "to": "10922", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11757", - "label": "415036 (-) 97550", - "from": "11069", - "to": "11077", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11756", - "label": "548159 (-) 14012", - "from": "11068", - "to": "10965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11755", - "label": "251201 (-) 392955", - "from": "11067", - "to": "10950", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11754", - "label": "298309 (-) 299541", - "from": "11066", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11753", - "label": "298310 (-) 364005", - "from": "11065", - "to": "11017", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11752", - "label": "298310 (-) 331494", - "from": "11065", - "to": "10957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11751", - "label": "298310 (-) 369394", - "from": "11065", - "to": "11243", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11750", - "label": "298310 (-) 329305", - "from": "11065", - "to": "10991", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11749", - "label": "298310 (-) 299541", - "from": "11065", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11748", - "label": "1793352 (-) 1793199", - "from": "11064", - "to": "11112", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11747", - "label": "298315 (-) 299541", - "from": "11063", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11746", - "label": "286028 (-) 1046846", - "from": "11062", - "to": "11368", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11745", - "label": "286028 (-) 1807026", - "from": "11062", - "to": "11265", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11744", - "label": "1275213 (-) 1275214", - "from": "11061", - "to": "11060", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11743", - "label": "1275214 (-) 1782717", - "from": "11060", - "to": "11171", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11742", - "label": "101711 (-) 1490324", - "from": "11059", - "to": "11041", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11741", - "label": "101711 (-) 1490531", - "from": "11059", - "to": "10987", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11740", - "label": "101711 (-) 555611", - "from": "11059", - "to": "11298", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11739", - "label": "101711 (-) 291357", - "from": "11059", - "to": "11316", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11738", - "label": "554324 (-) 554327", - "from": "11058", - "to": "11057", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11737", - "label": "554327 (-) 98964", - "from": "11057", - "to": "11278", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11736", - "label": "978264 (-) 1916734", - "from": "11056", - "to": "10925", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11735", - "label": "193879 (-) 1083941", - "from": "11055", - "to": "11311", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11734", - "label": "193879 (-) 193037", - "from": "11055", - "to": "11322", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11733", - "label": "1484122 (-) 144608", - "from": "11054", - "to": "11095", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11732", - "label": "888170 (-) 885694", - "from": "11053", - "to": "11170", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11731", - "label": "132458 (-) 587783", - "from": "11052", - "to": "11440", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11730", - "label": "132458 (-) 1214047", - "from": "11052", - "to": "10989", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11729", - "label": "1949040 (-) 374742", - "from": "11051", - "to": "10876", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11728", - "label": "1949040 (-) 374754", - "from": "11051", - "to": "10873", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11727", - "label": "1949040 (-) 374743", - "from": "11051", - "to": "10875", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11726", - "label": "570743 (-) 1482169", - "from": "11050", - "to": "11030", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11725", - "label": "1695098 (-) 330475", - "from": "11049", - "to": "11246", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11724", - "label": "302460 (-) 299541", - "from": "11048", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11723", - "label": "5502 (-) 13130", - "from": "11047", - "to": "11208", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11722", - "label": "5502 (-) 8322", - "from": "11047", - "to": "11412", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11721", - "label": "5503 (-) 8322", - "from": "11046", - "to": "11412", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11720", - "label": "5503 (-) 13130", - "from": "11046", - "to": "11208", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11719", - "label": "646528 (-) 550651", - "from": "11045", - "to": "10951", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11718", - "label": "1793418 (-) 1794867", - "from": "11044", - "to": "11219", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11717", - "label": "433546 (-) 433081", - "from": "11043", - "to": "11172", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11716", - "label": "1793419 (-) 1794867", - "from": "11042", - "to": "11219", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11715", - "label": "1490324 (-) 144608", - "from": "11041", - "to": "11095", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11714", - "label": "193941 (-) 191969", - "from": "11040", - "to": "11019", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11713", - "label": "2131348 (-) 2131705", - "from": "11039", - "to": "10953", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11712", - "label": "296350 (-) 329216", - "from": "11038", - "to": "11010", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11711", - "label": "1035681 (-) 1035416", - "from": "11037", - "to": "11116", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11710", - "label": "1035683 (-) 1035681", - "from": "11036", - "to": "11037", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11709", - "label": "421285 (-) 419867", - "from": "11035", - "to": "11435", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11708", - "label": "439723 (-) 1230467", - "from": "11034", - "to": "10978", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11707", - "label": "441772 (-) 441219", - "from": "11033", - "to": "11192", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11706", - "label": "441773 (-) 1386423", - "from": "11032", - "to": "10890", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11705", - "label": "441773 (-) 1382312", - "from": "11032", - "to": "10894", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11704", - "label": "441773 (-) 441772", - "from": "11032", - "to": "11033", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11703", - "label": "1863096 (-) 330402", - "from": "11031", - "to": "11272", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11702", - "label": "1482169 (-) 570878", - "from": "11030", - "to": "11011", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11701", - "label": "1482169 (-) 935814", - "from": "11030", - "to": "10904", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11700", - "label": "916923 (-) 504065", - "from": "11029", - "to": "11384", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11699", - "label": "587203 (-) 441814", - "from": "11028", - "to": "11024", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11698", - "label": "310723 (-) 299541", - "from": "11027", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11697", - "label": "1275346 (-) 1275348", - "from": "11026", - "to": "11025", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11696", - "label": "1275346 (-) 1275362", - "from": "11026", - "to": "11018", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11695", - "label": "1275348 (-) 1782717", - "from": "11025", - "to": "11171", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11694", - "label": "441814 (-) 1807269", - "from": "11024", - "to": "11182", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11693", - "label": "441814 (-) 1386423", - "from": "11024", - "to": "10890", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11692", - "label": "441814 (-) 1806603", - "from": "11024", - "to": "11381", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11691", - "label": "888278 (-) 883456", - "from": "11023", - "to": "11237", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11690", - "label": "2112990 (-) 874812", - "from": "11022", - "to": "11370", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11689", - "label": "2112990 (-) 2114406", - "from": "11022", - "to": "11199", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11688", - "label": "2112990 (-) 874479", - "from": "11022", - "to": "10869", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11687", - "label": "2112991 (-) 2112990", - "from": "11021", - "to": "11022", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11686", - "label": "335327 (-) 331494", - "from": "11020", - "to": "10957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11685", - "label": "191969 (-) 1694430", - "from": "11019", - "to": "11252", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11684", - "label": "191969 (-) 1695098", - "from": "11019", - "to": "11049", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11683", - "label": "1275362 (-) 1782717", - "from": "11018", - "to": "11171", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11682", - "label": "364005 (-) 296913", - "from": "11017", - "to": "10877", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11681", - "label": "364005 (-) 297083", - "from": "11017", - "to": "11414", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11680", - "label": "364005 (-) 293444", - "from": "11017", - "to": "11305", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11679", - "label": "191978 (-) 1673905", - "from": "11016", - "to": "11264", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11678", - "label": "1035755 (-) 1035683", - "from": "11015", - "to": "11036", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11677", - "label": "882169 (-) 888278", - "from": "11014", - "to": "11023", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11676", - "label": "882169 (-) 883490", - "from": "11014", - "to": "11226", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11675", - "label": "409084 (-) 293444", - "from": "11013", - "to": "11305", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11674", - "label": "1682942 (-) 330112", - "from": "11012", - "to": "11355", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11673", - "label": "570878 (-) 627554", - "from": "11011", - "to": "11203", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11672", - "label": "570878 (-) 1806998", - "from": "11011", - "to": "11277", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11671", - "label": "570878 (-) 1802928", - "from": "11011", - "to": "11268", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11670", - "label": "570878 (-) 935811", - "from": "11011", - "to": "10907", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11669", - "label": "570878 (-) 587203", - "from": "11011", - "to": "11028", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11668", - "label": "329216 (-) 296684", - "from": "11010", - "to": "10956", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11667", - "label": "329216 (-) 293444", - "from": "11010", - "to": "11305", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11666", - "label": "2059776 (-) 653856", - "from": "11009", - "to": "11315", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11665", - "label": "882178 (-) 883490", - "from": "11008", - "to": "11226", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11664", - "label": "882178 (-) 888278", - "from": "11008", - "to": "11023", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11663", - "label": "232970 (-) 1382736", - "from": "11007", - "to": "11362", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11662", - "label": "232970 (-) 1382203", - "from": "11007", - "to": "10928", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11661", - "label": "2098710 (-) 2052724", - "from": "11006", - "to": "11288", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11660", - "label": "2098710 (-) 2052833", - "from": "11006", - "to": "11251", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11659", - "label": "357917 (-) 208591", - "from": "11005", - "to": "10961", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11658", - "label": "439838 (-) 439723", - "from": "11004", - "to": "11034", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11657", - "label": "343583 (-) 331494", - "from": "11003", - "to": "10957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11656", - "label": "372265 (-) 369394", - "from": "11002", - "to": "11243", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11655", - "label": "77362 (-) 62263", - "from": "11001", - "to": "11218", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11654", - "label": "77362 (-) 54189", - "from": "11001", - "to": "11179", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11653", - "label": "77362 (-) 54322", - "from": "11001", - "to": "11142", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11652", - "label": "77362 (-) 55277", - "from": "11001", - "to": "10871", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11651", - "label": "77362 (-) 54900", - "from": "11001", - "to": "10981", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11650", - "label": "77362 (-) 55093", - "from": "11001", - "to": "10931", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11649", - "label": "77362 (-) 61124", - "from": "11001", - "to": "10962", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11648", - "label": "77362 (-) 54026", - "from": "11001", - "to": "11233", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11647", - "label": "77362 (-) 62537", - "from": "11001", - "to": "11138", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11646", - "label": "101938 (-) 555611", - "from": "11000", - "to": "11298", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11645", - "label": "101938 (-) 1490531", - "from": "11000", - "to": "10987", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11644", - "label": "101938 (-) 1490324", - "from": "11000", - "to": "11041", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11643", - "label": "101938 (-) 291357", - "from": "11000", - "to": "11316", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11642", - "label": "878133 (-) 877267", - "from": "10999", - "to": "11254", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11641", - "label": "13879 (-) 6157", - "from": "10998", - "to": "11439", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11640", - "label": "13879 (-) 5503", - "from": "10998", - "to": "11046", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11639", - "label": "13879 (-) 5738", - "from": "10998", - "to": "10984", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11638", - "label": "13879 (-) 6250", - "from": "10998", - "to": "11417", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11637", - "label": "13879 (-) 5737", - "from": "10998", - "to": "10985", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11636", - "label": "13879 (-) 5502", - "from": "10998", - "to": "11047", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11635", - "label": "13879 (-) 5936", - "from": "10998", - "to": "10936", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11634", - "label": "13879 (-) 6042", - "from": "10998", - "to": "10897", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11633", - "label": "880186 (-) 888278", - "from": "10997", - "to": "11023", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11632", - "label": "321084 (-) 1338496", - "from": "10996", - "to": "11120", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11631", - "label": "1519168 (-) 1538634", - "from": "10995", - "to": "11304", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11630", - "label": "616002 (-) 2680", - "from": "10994", - "to": "11286", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11629", - "label": "1107533 (-) 335327", - "from": "10993", - "to": "11020", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11628", - "label": "1107533 (-) 310021", - "from": "10993", - "to": "11235", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11627", - "label": "1107533 (-) 372265", - "from": "10993", - "to": "11002", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11626", - "label": "1107533 (-) 354035", - "from": "10993", - "to": "10954", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11625", - "label": "1119825 (-) 1116334", - "from": "10992", - "to": "11399", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11624", - "label": "329305 (-) 293444", - "from": "10991", - "to": "11305", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11623", - "label": "77403 (-) 77362", - "from": "10990", - "to": "11001", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11622", - "label": "1214047 (-) 144608", - "from": "10989", - "to": "11095", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11621", - "label": "970337 (-) 333006", - "from": "10988", - "to": "11098", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11620", - "label": "1490531 (-) 144608", - "from": "10987", - "to": "11095", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11619", - "label": "333415 (-) 331494", - "from": "10986", - "to": "10957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11618", - "label": "5737 (-) 8322", - "from": "10985", - "to": "11412", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11617", - "label": "5737 (-) 13130", - "from": "10985", - "to": "11208", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11616", - "label": "5738 (-) 8322", - "from": "10984", - "to": "11412", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11615", - "label": "5738 (-) 13130", - "from": "10984", - "to": "11208", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11614", - "label": "1341038 (-) 320330", - "from": "10983", - "to": "11209", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11613", - "label": "296562 (-) 296684", - "from": "10982", - "to": "10956", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11612", - "label": "296562 (-) 293444", - "from": "10982", - "to": "11305", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11611", - "label": "54900 (-) 743241", - "from": "10981", - "to": "10920", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11610", - "label": "1771125 (-) 2114443", - "from": "10980", - "to": "11189", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11609", - "label": "550522 (-) 550679", - "from": "10979", - "to": "10945", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11608", - "label": "1230467 (-) 1230088", - "from": "10978", - "to": "11082", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11607", - "label": "157322 (-) 151326", - "from": "10977", - "to": "10940", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11606", - "label": "1414797 (-) 1226805", - "from": "10976", - "to": "11428", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11605", - "label": "972439 (-) 251201", - "from": "10975", - "to": "11067", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11604", - "label": "972439 (-) 251144", - "from": "10975", - "to": "11083", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11603", - "label": "972439 (-) 250984", - "from": "10975", - "to": "11127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11602", - "label": "171672 (-) 299541", - "from": "10974", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11601", - "label": "171672 (-) 331494", - "from": "10974", - "to": "10957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11600", - "label": "194202 (-) 194803", - "from": "10973", - "to": "11385", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11599", - "label": "327326 (-) 304925", - "from": "10972", - "to": "10942", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11598", - "label": "327326 (-) 304924", - "from": "10972", - "to": "10943", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11597", - "label": "327326 (-) 305175", - "from": "10972", - "to": "11436", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11596", - "label": "327326 (-) 305167", - "from": "10972", - "to": "11438", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11595", - "label": "327326 (-) 305153", - "from": "10972", - "to": "11441", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11594", - "label": "730789 (-) 654141", - "from": "10971", - "to": "11213", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11593", - "label": "1230505 (-) 72811", - "from": "10970", - "to": "11125", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11592", - "label": "1230506 (-) 1230505", - "from": "10969", - "to": "10970", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11591", - "label": "708267 (-) 1275213", - "from": "10968", - "to": "11061", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11590", - "label": "421558 (-) 421285", - "from": "10967", - "to": "11035", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11589", - "label": "1154743 (-) 551145", - "from": "10966", - "to": "11388", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11588", - "label": "14012 (-) 248331", - "from": "10965", - "to": "11326", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11587", - "label": "14012 (-) 13879", - "from": "10965", - "to": "10998", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11586", - "label": "14012 (-) 391560", - "from": "10965", - "to": "11352", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11585", - "label": "14012 (-) 616002", - "from": "10965", - "to": "10994", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11584", - "label": "14012 (-) 243911", - "from": "10965", - "to": "11395", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11583", - "label": "1429185 (-) 1266409", - "from": "10964", - "to": "11248", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11582", - "label": "61124 (-) 743241", - "from": "10962", - "to": "10920", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11581", - "label": "208591 (-) 331494", - "from": "10961", - "to": "10957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11580", - "label": "884435 (-) 874464", - "from": "10960", - "to": "10874", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11579", - "label": "884435 (-) 878133", - "from": "10960", - "to": "10999", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11578", - "label": "251616 (-) 331494", - "from": "10959", - "to": "10957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11577", - "label": "251616 (-) 299541", - "from": "10959", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11576", - "label": "251616 (-) 1410943", - "from": "10959", - "to": "10909", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11575", - "label": "333538 (-) 331494", - "from": "10958", - "to": "10957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11574", - "label": "331494 (-) 310020", - "from": "10957", - "to": "11236", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11573", - "label": "331494 (-) 309814", - "from": "10957", - "to": "11308", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11572", - "label": "331494 (-) 305190", - "from": "10957", - "to": "11434", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11571", - "label": "331494 (-) 293444", - "from": "10957", - "to": "11305", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11570", - "label": "331494 (-) 311850", - "from": "10957", - "to": "11309", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11569", - "label": "331494 (-) 299544", - "from": "10957", - "to": "11318", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11568", - "label": "331494 (-) 302460", - "from": "10957", - "to": "11048", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11567", - "label": "331494 (-) 309196", - "from": "10957", - "to": "10882", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11566", - "label": "296684 (-) 329216", - "from": "10956", - "to": "11010", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11565", - "label": "296684 (-) 296562", - "from": "10956", - "to": "10982", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11564", - "label": "1681138 (-) 251616", - "from": "10955", - "to": "10959", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11563", - "label": "354035 (-) 1668145", - "from": "10954", - "to": "11143", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11562", - "label": "2131705 (-) 698257", - "from": "10953", - "to": "10901", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11561", - "label": "2131705 (-) 2117862", - "from": "10953", - "to": "11390", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11560", - "label": "550650 (-) 550651", - "from": "10952", - "to": "10951", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11559", - "label": "550651 (-) 1382312", - "from": "10951", - "to": "10894", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11558", - "label": "550651 (-) 970337", - "from": "10951", - "to": "10988", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11557", - "label": "392955 (-) 258188", - "from": "10950", - "to": "11409", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11556", - "label": "1230586 (-) 1230506", - "from": "10949", - "to": "10969", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11555", - "label": "1335037 (-) 1477225", - "from": "10948", - "to": "11290", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11554", - "label": "309001 (-) 299541", - "from": "10947", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11553", - "label": "1935115 (-) 1935831", - "from": "10946", - "to": "11340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11552", - "label": "550679 (-) 550154", - "from": "10945", - "to": "11081", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11551", - "label": "67353 (-) 64422", - "from": "10944", - "to": "11181", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11550", - "label": "304924 (-) 299541", - "from": "10943", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11549", - "label": "304925 (-) 299541", - "from": "10942", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11548", - "label": "151325 (-) 94950", - "from": "10941", - "to": "11250", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11547", - "label": "151326 (-) 151325", - "from": "10940", - "to": "10941", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11546", - "label": "884516 (-) 884435", - "from": "10939", - "to": "10960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11545", - "label": "884516 (-) 885683", - "from": "10939", - "to": "11177", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11544", - "label": "227113 (-) 1275213", - "from": "10938", - "to": "11061", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11543", - "label": "884524 (-) 884435", - "from": "10937", - "to": "10960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11542", - "label": "884524 (-) 885683", - "from": "10937", - "to": "11177", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11541", - "label": "5936 (-) 13130", - "from": "10936", - "to": "11208", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11540", - "label": "5936 (-) 8322", - "from": "10936", - "to": "11412", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11539", - "label": "321329 (-) 322239", - "from": "10935", - "to": "11260", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11538", - "label": "1871665 (-) 14228", - "from": "10934", - "to": "10899", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11537", - "label": "321330 (-) 322239", - "from": "10933", - "to": "11260", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11536", - "label": "321328 (-) 322239", - "from": "10932", - "to": "11260", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11535", - "label": "55093 (-) 743241", - "from": "10931", - "to": "10920", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11534", - "label": "130871 (-) 1681138", - "from": "10930", - "to": "10955", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11533", - "label": "130871 (-) 1681748", - "from": "10930", - "to": "11361", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11532", - "label": "130871 (-) 1529686", - "from": "10930", - "to": "10918", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11531", - "label": "130871 (-) 1065380", - "from": "10930", - "to": "11347", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11530", - "label": "130871 (-) 1682080", - "from": "10930", - "to": "11274", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11529", - "label": "130871 (-) 1790467", - "from": "10930", - "to": "11327", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11528", - "label": "130871 (-) 357917", - "from": "10930", - "to": "11005", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11527", - "label": "130871 (-) 1668145", - "from": "10930", - "to": "11143", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11526", - "label": "130871 (-) 1534279", - "from": "10930", - "to": "11366", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11525", - "label": "618296 (-) 1035755", - "from": "10929", - "to": "11015", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11524", - "label": "1382203 (-) 1378926", - "from": "10928", - "to": "11289", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11523", - "label": "1382203 (-) 320468", - "from": "10928", - "to": "11168", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11522", - "label": "1382203 (-) 227964", - "from": "10928", - "to": "11285", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11521", - "label": "1382203 (-) 320330", - "from": "10928", - "to": "11209", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11520", - "label": "917308 (-) 504065", - "from": "10927", - "to": "11384", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11519", - "label": "962363 (-) 1794867", - "from": "10926", - "to": "11219", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11518", - "label": "1916734 (-) 950362", - "from": "10925", - "to": "11419", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11517", - "label": "737088 (-) 654141", - "from": "10924", - "to": "11213", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11516", - "label": "571202 (-) 253191", - "from": "10923", - "to": "11084", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11515", - "label": "1156931 (-) 955460", - "from": "10922", - "to": "11140", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11514", - "label": "958275 (-) 958290", - "from": "10921", - "to": "10919", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11513", - "label": "743241 (-) 743664", - "from": "10920", - "to": "11386", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11512", - "label": "958290 (-) 958368", - "from": "10919", - "to": "10896", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11511", - "label": "1529686 (-) 1519168", - "from": "10918", - "to": "10995", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11510", - "label": "409434 (-) 403309", - "from": "10917", - "to": "10912", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11509", - "label": "1466203 (-) 1889063", - "from": "10916", - "to": "11220", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11508", - "label": "728927 (-) 227715", - "from": "10915", - "to": "11354", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11507", - "label": "77671 (-) 77403", - "from": "10914", - "to": "10990", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11506", - "label": "327533 (-) 327326", - "from": "10913", - "to": "10972", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11505", - "label": "327533 (-) 1949040", - "from": "10913", - "to": "11051", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11504", - "label": "403309 (-) 415036", - "from": "10912", - "to": "11069", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11503", - "label": "77681 (-) 1238006", - "from": "10911", - "to": "11164", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11502", - "label": "77681 (-) 77671", - "from": "10911", - "to": "10914", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11501", - "label": "569211 (-) 572111", - "from": "10910", - "to": "11257", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11500", - "label": "1410943 (-) 103150", - "from": "10909", - "to": "11245", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11499", - "label": "1243009 (-) 1243896", - "from": "10908", - "to": "11241", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11498", - "label": "935811 (-) 441814", - "from": "10907", - "to": "11024", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11497", - "label": "698244 (-) 255142", - "from": "10906", - "to": "11113", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11496", - "label": "954243 (-) 1159958", - "from": "10905", - "to": "11231", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11495", - "label": "954243 (-) 1159708", - "from": "10905", - "to": "11317", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11494", - "label": "935814 (-) 935811", - "from": "10904", - "to": "10907", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11493", - "label": "935814 (-) 1806998", - "from": "10904", - "to": "11277", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11492", - "label": "1660808 (-) 2131650", - "from": "10903", - "to": "10963", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11491", - "label": "1116044 (-) 1155013", - "from": "10902", - "to": "10886", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11490", - "label": "1116044 (-) 1799093", - "from": "10902", - "to": "11176", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11489", - "label": "698257 (-) 1473583", - "from": "10901", - "to": "11144", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11488", - "label": "698257 (-) 1473437", - "from": "10901", - "to": "11186", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11487", - "label": "698257 (-) 698244", - "from": "10901", - "to": "10906", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11486", - "label": "2062227 (-) 79817", - "from": "10900", - "to": "10883", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11485", - "label": "14228 (-) 391560", - "from": "10899", - "to": "11352", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11484", - "label": "14228 (-) 243911", - "from": "10899", - "to": "11395", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11483", - "label": "14228 (-) 248331", - "from": "10899", - "to": "11326", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11482", - "label": "14228 (-) 616002", - "from": "10899", - "to": "10994", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11481", - "label": "14228 (-) 13879", - "from": "10899", - "to": "10998", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11480", - "label": "14228 (-) 1794651", - "from": "10899", - "to": "11299", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11479", - "label": "673684 (-) 1154743", - "from": "10898", - "to": "10966", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11478", - "label": "6042 (-) 8322", - "from": "10897", - "to": "11412", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11477", - "label": "6042 (-) 13130", - "from": "10897", - "to": "11208", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11476", - "label": "958368 (-) 241990", - "from": "10896", - "to": "11367", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11475", - "label": "1341349 (-) 320330", - "from": "10895", - "to": "11209", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11474", - "label": "1382312 (-) 232970", - "from": "10894", - "to": "11007", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11473", - "label": "952239 (-) 422049", - "from": "10893", - "to": "11403", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11472", - "label": "638896 (-) 8327", - "from": "10892", - "to": "11410", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11471", - "label": "495541 (-) 500848", - "from": "10891", - "to": "11124", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11470", - "label": "1386423 (-) 418544", - "from": "10890", - "to": "11244", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11469", - "label": "1480635 (-) 144608", - "from": "10889", - "to": "11095", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11468", - "label": "1302460 (-) 13134", - "from": "10888", - "to": "11207", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11467", - "label": "159681 (-) 133757", - "from": "10887", - "to": "11284", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11466", - "label": "1155013 (-) 673684", - "from": "10886", - "to": "10898", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11465", - "label": "550854 (-) 549816", - "from": "10885", - "to": "11173", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11464", - "label": "409544 (-) 439838", - "from": "10884", - "to": "11004", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11463", - "label": "409544 (-) 409434", - "from": "10884", - "to": "10917", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11462", - "label": "79817 (-) 1275213", - "from": "10883", - "to": "11061", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11461", - "label": "79817 (-) 970337", - "from": "10883", - "to": "10988", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11460", - "label": "309196 (-) 299541", - "from": "10882", - "to": "11319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11459", - "label": "1660881 (-) 2131650", - "from": "10881", - "to": "10963", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11458", - "label": "1660882 (-) 2131650", - "from": "10880", - "to": "10963", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11457", - "label": "1660883 (-) 1660808", - "from": "10879", - "to": "10903", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11456", - "label": "1660883 (-) 924543", - "from": "10879", - "to": "11194", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11455", - "label": "1660883 (-) 1660881", - "from": "10879", - "to": "10881", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11454", - "label": "1660883 (-) 1660882", - "from": "10879", - "to": "10880", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11453", - "label": "1660884 (-) 1660883", - "from": "10878", - "to": "10879", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11452", - "label": "296913 (-) 296562", - "from": "10877", - "to": "10982", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11451", - "label": "374742 (-) 369394", - "from": "10876", - "to": "11243", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11450", - "label": "374743 (-) 369394", - "from": "10875", - "to": "11243", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11449", - "label": "874464 (-) 877267", - "from": "10874", - "to": "11254", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11448", - "label": "374754 (-) 369394", - "from": "10873", - "to": "11243", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11447", - "label": "958434 (-) 14012", - "from": "10872", - "to": "10965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11446", - "label": "55277 (-) 743241", - "from": "10871", - "to": "10920", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11445", - "label": "1337326 (-) 1338271", - "from": "10870", - "to": "11184", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11444", - "label": "874479 (-) 877267", - "from": "10869", - "to": "11254", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11443", - "label": "1488882 (-) 144608", - "from": "10868", - "to": "11095", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11442", - "label": "49150 (-) 637566", - "from": "10867", - "to": "11283", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/Interleukin-1 family are secreted.json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/Interleukin-1 family are secreted.json deleted file mode 100644 index ce875cd99e..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/Interleukin-1 family are secreted.json +++ /dev/null @@ -1,13406 +0,0 @@ -{ - "nodes": [ - { - "id": "448", - "label": "Dissociation of phosphorylated 4EBP1 from eIF4E", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "447", - "label": "DecS-GHRL-1(24-50) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "446", - "label": "P2RY11 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "445", - "label": "EIF4E [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "444", - "label": "eIF4E:4E-BP1-P [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "443", - "label": "F2RL3(18-385) [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "442", - "label": "Ade-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "441", - "label": "PolyUb-Misfolded PCNT [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "440", - "label": "AHCY:NAD+ tetramer hydrolyses AdoHcy", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "439", - "label": "DecS-GHRL-1(24-51) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "438", - "label": "CASP8(385-479) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "437", - "label": "O-octanoyl-L-serine-GHRL-1(24-51) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "436", - "label": "PARN deadenylates mRNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "435", - "label": "Release of PLCG from FCGR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "434", - "label": "clustered IgG-Ag:p-FCGRs:p-6Y-SYK:p-3Y-PLCG [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "433", - "label": "AdoHcy [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "432", - "label": "Bradykinin receptor:Bradykinin [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "431", - "label": "GGC-RAB7B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "430", - "label": "Retinoic acid activates HOXB4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "429", - "label": "Disintegration of matrix layer", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "428", - "label": "Ubiquitinated IkB is degraded", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "427", - "label": "NF-kappaB p50,p65,c-Rel:ub-p-IKB [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "426", - "label": "NF-kappaB p65:p65:ub-p-IkB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "425", - "label": "Phosphorylation and activation of PLCG", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "424", - "label": "Degradation of CD8", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "423", - "label": "Exocytosis of Insulin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "422", - "label": "SUMO1:p-T4827-HERC2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "421", - "label": "TGFA(24-98) [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "420", - "label": "5HT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "419", - "label": "trans-Golgi Network Derived Vesicle Uncoating", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "418", - "label": "IL1B(117-269) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "417", - "label": "p-S25,S1778-TP53BP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "416", - "label": "AREG(101-187) [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "415", - "label": "Dissociation of BRAF/RAF fusion complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "414", - "label": "CTNNB1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "413", - "label": "NPS [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "412", - "label": "CBL neddylates TGFBR2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "411", - "label": "PLCG1 phosphorylation by p-EGFR:p-ERBB2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "410", - "label": "NEDD8-AcM-UBE2M [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "409", - "label": "PP2A [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "408", - "label": "SIN3A [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "407", - "label": "TTLLs polyglutamylate tubulin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "406", - "label": "Loading of acetylcholine in synaptic vesicles", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "405", - "label": "p-T185,Y187-MAPK1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "404", - "label": "COP9 signalosome deneddylates cytosolic CRL E3 ubiquitin ligase complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "403", - "label": "PolyUb-Misfolded PARK7 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "402", - "label": "NFkB complex is transported from cytosol to nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "401", - "label": "NFkB Complex [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "400", - "label": "(d)AMP, (d)GMP, or (d)IMP + H2O => (deoxy)adenosine, (deoxy)guanosine, or (deoxy)inosine + orthophosphate (NT5C1A)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "399", - "label": "PPP1R3C [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "398", - "label": "Hist [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "397", - "label": "Expression of PPARGC1A (PGC-1alpha)", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "396", - "label": "AGTR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "395", - "label": "Expression of AVP", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "394", - "label": "Aggresome dissociates from dynein and microtubule", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "393", - "label": "Microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "392", - "label": "alpha-beta tubulin dimer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "391", - "label": "KLF4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "390", - "label": "MAPK3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "389", - "label": "RNF152 [lysosomal membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "388", - "label": "NPSR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "387", - "label": "p-S166-RIPK1:p-S199,227-RIPK3 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "386", - "label": "PP2A (A:C) [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "385", - "label": "NF-kappaB p65:p65 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "384", - "label": "FKBP1A [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "383", - "label": "RASA1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "382", - "label": "FGF18 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "381", - "label": "ARRB2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "380", - "label": "NF-kappaB p50:c-Rel:ub-p-IKB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "379", - "label": "Exocytosis of ficolin-rich granule lumen proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "378", - "label": "Regulation of protein ISGylation by ISG15 deconjugating enzyme USP18", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "377", - "label": "CCNH [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "376", - "label": "Transfer of SUMO2 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "375", - "label": "UBE2I [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "374", - "label": "SEC31A:SEC13:SEC23IP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "373", - "label": "Interleukin-1 family are secreted", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "372", - "label": "Interleukin-1 family [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "371", - "label": "Expression of CLOCK", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "370", - "label": "IL18 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "369", - "label": "PPIA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "368", - "label": "SUMO3:UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "367", - "label": "The receptor:G-protein complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "366", - "label": "Dissociation of RAS:RAF complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "365", - "label": "IL8 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "364", - "label": "Dissociation of RAS:RAF1 mutant complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "363", - "label": "RAB1:GTP [endoplasmic reticulum-Golgi intermediate compartment membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "362", - "label": "p-4Y-PLCG1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "361", - "label": "Dynein:Dynactin:microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "360", - "label": "trans-Golgi Network Derived Lysosomal Vesicle Uncoating", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "359", - "label": "Expression of PERIOD-1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "358", - "label": "DNAJC6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "357", - "label": "OPRM1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "356", - "label": "L-Glu [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "355", - "label": "PAXIP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "354", - "label": "Expression of NPAS2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "353", - "label": "FOSB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "352", - "label": "UMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "351", - "label": "Interleukin-1 family precursors are cleaved by caspase-1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "350", - "label": "CCR4-NOT complex deadenylates mRNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "349", - "label": "p-T202,Y204-MAPK3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "348", - "label": "Transfer of SUMO3 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "347", - "label": "NFKB1(1-433):RELA [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "346", - "label": "Expression of STAT3-upregulated extracellular proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "345", - "label": "Thy-dRib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "344", - "label": "Cyt-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "343", - "label": "Ura-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "342", - "label": "RNF111 ubiquitinates SUMOylated XPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "341", - "label": "Dissociation of moderate activity BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "340", - "label": "Ub,SUMO:XPC:RAD23:CETN2:Open bubble-dsDNA:PAR-UV-DDB:TFIIH Core:XPA:PAR-PARP1, PAR-PARP2:CHD1L [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "339", - "label": "(d)CMP, TMP, or (d)UMP + H2O => (deoxy)cytidine, thymidine, or (deoxy)uridine + orthophosphate (NT5C3)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "338", - "label": "Expression of CEBPB in adipogenesis", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "337", - "label": "Beta-catenin is released from the destruction complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "336", - "label": "VCP [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "335", - "label": "CREM isoform 6 (ICER1) [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "334", - "label": "NF-kappaB p50:c-Rel [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "333", - "label": "PIP3:BTK:G beta-gamma complex dissociates to Active BTK, PIP3 and G beta-gamma complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "332", - "label": "IL1B(1-269) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "331", - "label": "p-Y701-STAT1, p-Y705-STAT3, p-Y649-STAT5 dissociates from IL9:p-Y116-IL9R:JAK1:IL2RG:p-904,939-JAK3:p-Y705-STAT3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "330", - "label": "p-T,Y MAPKs [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "329", - "label": "ADR, NAd [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "328", - "label": "hp-IRAK1:3xK63-polyUb-TRAF6:3xUBE2N:UBE2V1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "327", - "label": "SLC24A1 exchanges 4Na+ for Ca2+, K+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "326", - "label": "NAd [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "325", - "label": "PPARGC1A [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "324", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "323", - "label": "JAK1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "322", - "label": "TGFA(24-98) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "321", - "label": "Expression of Leptin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "320", - "label": "K+-independent Li+/Ca2+ exchanger transport", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "319", - "label": "S1P [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "318", - "label": "MMPs cleave HB-EGF", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "317", - "label": "NEDD8 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "316", - "label": "Ac-CoA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "315", - "label": "p-4Y-PLCG1 dissociates from activated FGFR3 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "314", - "label": "GRB2-1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "313", - "label": "NF-KappaB p50:p50:ub-p-IKBA [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "312", - "label": "NF-kappaB p50:p50 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "311", - "label": "STAT1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "310", - "label": "SAR1B:GTP [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "309", - "label": "LPAR1,2,3,5:LPA [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "308", - "label": "p-4Y-PLCG1 dissociates from activated FGFR3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "307", - "label": "PolyUb-Misfolded Proteins [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "306", - "label": "NF-kappaB p50:p65:ub-p-IKB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "305", - "label": "Ade-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "304", - "label": "PolyUb-misfolded nascent CFTR [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "303", - "label": "NF-kB migrates to the nucleus and turns on transcription", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "302", - "label": "IL1B [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "301", - "label": "NF-kappaB p50,p65,c-Rel dimer [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "300", - "label": "Dissociation of phosphorylated PLCG1 from ligand-responsive p-6Y-EGFR mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "299", - "label": "AGTR1 [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "298", - "label": "PPTN11 dephosphorylates SPRY2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "297", - "label": "PLCG1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "296", - "label": "RIPK3 is phosphorylated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "295", - "label": "RIPK1:RIPK3 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "294", - "label": "Release of L-Glutamate at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "293", - "label": "AVP(20-28) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "292", - "label": "Disassembly of COPII coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "291", - "label": "CEBPB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "290", - "label": "SCF-beta-TrCP ubiquitinylates IkB", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "289", - "label": "FGFR1OP-FGFR1 phosphorylates STAT1 and STAT3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "288", - "label": "GYS1 catalyzes the incorporation of phosphoglucose into glycogen-GYG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "287", - "label": "EP300 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "286", - "label": "Phosphorylated STAT3 Dimer Translocates to the Nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "285", - "label": "SAA1(19-122) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "284", - "label": "COPII vesicle with MHC class I [ER to Golgi transport vesicle membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "283", - "label": "p-Y705-STAT3 dimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "282", - "label": "CCPs deglutamylate tubulin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "281", - "label": "Vesicle budding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "280", - "label": "HCMV Nuclear Pore Docking", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "279", - "label": "Estrogen-responsive MYC gene expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "278", - "label": "Budding of COPII coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "277", - "label": "COPI vesicle uncoating at the ER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "276", - "label": "RAB1:GTP:coatomer:p24 dimers:SEC22B:cargo:NBAS:RINT1:ZW10:STX18:USE1L:BNIP1 [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "275", - "label": "L-Glu [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "274", - "label": "RIPK3 binds RIPK1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "273", - "label": "SOCS2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "272", - "label": "RAB6:GTP displaces PAFAH1B1 from dynein:dynactin complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "271", - "label": "OPRM1 gene expression is repressed by MECP2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "270", - "label": "TGFA precursor [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "269", - "label": "ADORA2B:Ade-Rib:GsGTP dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "268", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "267", - "label": "p-Y705-STAT3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "266", - "label": "Dissociation of Rho GTP:GDP from GDI complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "265", - "label": "Phosphorylation of 4E-BP1 by activated mTORC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "264", - "label": "AREG precursor [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "263", - "label": "ATP2B1-4 transport cytosolic Ca2+ to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "262", - "label": "PPARG [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "261", - "label": "Deacetylation of cleaved cohesin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "260", - "label": "Cleaved Cohesin:PDS5:WAPAL [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "259", - "label": "SIK1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "258", - "label": "PGE2 [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "257", - "label": "RHOA:GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "256", - "label": "The Ligand:GPCR:Gq complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "255", - "label": "MON1:CCZ1 exchanges GTP for GDP on RAB7", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "254", - "label": "CASR:Ca2+ [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "253", - "label": "Active PLC-gamma1 dissociates from EGFR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "252", - "label": "CXCR4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "251", - "label": "ARHGDIA [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "250", - "label": "p-4Y-PLCG1 dissociates from activated FGFR2 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "249", - "label": "AcCho [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "248", - "label": "Cho is acetylated to AcCho by CHAT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "247", - "label": "(d)CMP, TMP, or (d)UMP + H2O => (deoxy)cytidine, thymidine, or (deoxy)uridine + orthophosphate (NT5C1A)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "246", - "label": "MCHR1,MCHR2:PMCH(147-165) [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "245", - "label": "RNF4 ubiquitinates MDC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "244", - "label": "AREG(101-187) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "243", - "label": "TMED2:TMED10 tetramer:GPI-CD59, GPI-FOLR1 [endoplasmic reticulum-Golgi intermediate compartment membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "242", - "label": "NMUR1,NMUR2:NMU [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "241", - "label": "PolyUb:misfolded proteins dissociate from PRKN:UBE2N:UBE2V1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "240", - "label": "TMP, uridine 2', 3', or 5' monophosphates, or deoxyuridine 3' or 5' monophosphates + H2O => thymidine or (deoxy)uridine + orthophosphate [NT5C]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "239", - "label": "p-BMAL1:p-CLOCK,NPAS2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "238", - "label": "G-protein beta-gamma complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "237", - "label": "Exocytosis of specific granule membrane proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "236", - "label": "FGL2 [ficolin-1-rich granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "235", - "label": "BTRC [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "234", - "label": "Vesicle is tethered through binding GOLGA2:GORASP1, GOLGB1 and the COG complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "233", - "label": "DNA DNA DSBs:p-MRN:p-S1981,Ac-K3016-ATM:KAT5:K63PolyUb-K14,K16,p-S139-H2AFX,Me2K21-HIST1H4A-Nucleosome:SUMO2:K1840,p-5T-MDC1:p-S102-WHSC1:RNF8:Zn2+:SUMO1:p-T4827-HERC2:UBE2N:UBE2V2:RNF168:PIAS4:p-S25,S1778-TP53BP1:p-5S,2T-BRCA1-A complex [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "232", - "label": "RAB1:GTP:USO1:coatomer:PalmC-YKT6:p24 dimers:cargo:spectrin:anykrin [transport vesicle]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "231", - "label": "Dissociation of oncogenic RAS:RAF complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "230", - "label": "Release of p-PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "229", - "label": "Stimulation of IL8 transcription in senescent cells", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "228", - "label": "G-protein alpha (i):GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "227", - "label": "Dissociation of phosphorylated PLC-gamma 1 from p-EGFRvIII mutant", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "226", - "label": "p-4Y-PLCG1 dissociates from activated FGFR2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "225", - "label": "Negative regulation of DDX58/IFIH1 signaling by RNF216", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "224", - "label": "Phosphorylated heterodimers of ERBB2 KD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "223", - "label": "PolyUb-Misfolded cilia proteins [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "222", - "label": "PolyUb-Misfolded CETN1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "221", - "label": "PPARG:Fatty Acid:RXRA:Mediator:Coactivator Complex [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "220", - "label": "Retinoic acid activates HOXB1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "219", - "label": "GDI1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "218", - "label": "RNF8:Zn2+ [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "217", - "label": "KIFC1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "216", - "label": "NF-kappaB translocates from the cytosol to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "215", - "label": "K48PolyUb-K21,22-p-S32,36-IkBA:NF-kB complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "214", - "label": "HDAC3 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "213", - "label": "Separation of sister chromatids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "212", - "label": "Fatty acid ligands activate PPARA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "211", - "label": "Equilibrative transport (export) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "210", - "label": "Phosphorylation and activation of PLCG due to FCGR3A effect", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "209", - "label": "HBEGF(63-148) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "208", - "label": "p-Y-STATs translocate to nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "207", - "label": "Dissociation of high activity BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "206", - "label": "AcCho [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "205", - "label": "p-4Y-PLCG1 dissociates from activated FGFR4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "204", - "label": "Acyl Ghrelin and C-Ghrelin are secreted", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "203", - "label": "SLC8A1,2,3 exchange 3Na+ for Ca2+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "202", - "label": "p-Y1105-ARHGAP35 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "201", - "label": "p190RhoGEF exchanges GTP for GDP on RHOA, activating it", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "200", - "label": "Phosphorylation of CTLA-4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "199", - "label": "p-Y705-STAT3 dimer translocates from cytosol to nucleoplasm", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "198", - "label": "Fusion of viral membrane with host cell membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "197", - "label": "Viral core surrounded by Matrix layer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "196", - "label": "p-Y-STATs dissociate", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "195", - "label": "SLC7A11-mediated exchange of extracellular cysteine and cytosolic glutamate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "194", - "label": "UBE2N:UBE2V1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "193", - "label": "p-4Y-PLCG1 dissociates from activated FGFR4 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "192", - "label": "BMAL1:CLOCK,NPAS2 heterodimer is phosphorylated and translocates to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "191", - "label": "DNA DSB:p-MRN:p-S1981,Ac-K3016-ATM:KAT5 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "190", - "label": "myristoylated nef [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "189", - "label": "SPRY2 binds CBL", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "188", - "label": "Expression of BMAL1 (ARNTL).", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "187", - "label": "p115-RhoGEF activation of RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "186", - "label": "ARFGAPs stimulate ARF GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "185", - "label": "BET1:GOSR2:STX5 bind v-SNARES on tethered vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "184", - "label": "Phosphorylated heterodimers of ERBB2 ECD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "183", - "label": "Ca2+ [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "182", - "label": "GDI2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "181", - "label": "PI(3,4,5)P3 [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "180", - "label": "The Ligand:GPCR:Gi complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "179", - "label": "MyrG-p-Y419-SRC [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "178", - "label": "MYC [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "177", - "label": "The Ligand:GPCR:Gs complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "176", - "label": "SLC24A1-4 exchange extracellular 4Na+ for cytosolic Ca2+, K+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "175", - "label": "PTHLH [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "174", - "label": "Recovery of RNA synthesis after TC-NER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "173", - "label": "Dissociation of clathrin-associated proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "172", - "label": "NFKB1:RELA translocates from the cytosol to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "171", - "label": "NFKB1(1-433):RELA [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "170", - "label": "Cytosolic DUSPs dephosphorylate MAPKs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "169", - "label": "SAR1 Activation And Membrane Binding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "168", - "label": "SAR1B:GDP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "167", - "label": "SAR1B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "166", - "label": "FPR2:FPR2 ligands [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "165", - "label": "FPR2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "164", - "label": "VCPKMT (METTL21D) transfers 3xCH3 from 3xAdoMet to VCP", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "163", - "label": "EDNRB [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "162", - "label": "PIAS4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "161", - "label": "Polyglutamylated microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "160", - "label": "GPR39 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "159", - "label": "Processing of caspases", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "158", - "label": "26S proteasome processes K48PolyUb-K21,22-p-S32,36-IkBA:NF-kB complex to form NF-kB complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "157", - "label": "Transfer of SUMO1 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "156", - "label": "ARRB1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "155", - "label": "Acyl Ghrelin [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "154", - "label": "O-octanoyl-L-serine-GHRL-1(24-50) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "153", - "label": "Release of PLCG from FCGR3A", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "152", - "label": "IgG:Leishmania surface:p-FCGR3A:p-6Y-SYK:p-3Y-PLCG [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "151", - "label": "Loss of SAR1B GTPase", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "150", - "label": "Dissociation of the Gi alpha:G olf complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "149", - "label": "Activated NTRK3 stimulates PI3K activity", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "148", - "label": "TGFA precursor [ER to Golgi transport vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "147", - "label": "GNAL [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "146", - "label": "ARHGAP35 stimulates RHOA GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "145", - "label": "PIAS4 SUMOylates NR4A2 with SUMO2,3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "144", - "label": "AREG precursor [ER to Golgi transport vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "143", - "label": "PolyUb-Misfolded IFT88 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "142", - "label": "CLOCK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "141", - "label": "RNF152 polyubiquitinates RRAGA", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "140", - "label": "ARNTL [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "139", - "label": "NPAS2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "138", - "label": "UBE2N:UBE2V2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "137", - "label": "p-S102-WHSC1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "136", - "label": "Ca2+ [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "135", - "label": "CASP8(217-374) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "134", - "label": "RhoA is activated by nucleotide exchange and inhibits axonal growth", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "133", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "132", - "label": "PPARG:RXRA heterodimer binds to fatty acid-like ligands", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "131", - "label": "RHOA:GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "130", - "label": "GYS2 catalyzes the incorporation of phosphoglucose into glycogen-GYG2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "129", - "label": "Transfer of NEDD8 to AcM-UBE2M", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "128", - "label": "NGEF exchanges GTP for GDP on RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "127", - "label": "SEC13 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "126", - "label": "TRAF3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "125", - "label": "Caspase-8 cleaves IL1B precursor", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "124", - "label": "TRAF6 binding leads to IRAK1:TRAF6 release", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "123", - "label": "GPR4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "122", - "label": "Association of Ku heterodimer with ends of DNA double-strand break", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "121", - "label": "NCOR1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "120", - "label": "PolyUb-Misfolded Proteins:HDAC6 dissociate from complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "119", - "label": "p-2S,S376,T,T209,T387-IRAK1:TRAF6 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "118", - "label": "p-SPHK1 phosphorylates sphingosine to sphingosine 1-phosphate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "117", - "label": "NR4A2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "116", - "label": "RASA1 stimulates RAS GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "115", - "label": "p-Y705-STAT3 dimer, p-Y641-STAT6 dimer translocate to nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "114", - "label": "APP(672-713) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "113", - "label": "Dissociation of paradoxically activated RAS:BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "112", - "label": "p-Y641-STAT6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "111", - "label": "PIAS4 SUMOylates MDC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "110", - "label": "LEP [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "109", - "label": "CGA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "108", - "label": "SUMO2:UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "107", - "label": "TRPs transport extracellular Ca2+ to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "106", - "label": "GCG(53-81) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "105", - "label": "CBL [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "104", - "label": "SRC autophosphorylation is positively regulated by InlA-bound CDH1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "103", - "label": "STAT1 and STAT3 dimers translocate to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "102", - "label": "WNT5A:FZD4 is endocytosed", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "101", - "label": "viral dsRNA:IFIH1, viral dsRNA:K63polyUb-DDX58:MAVS [mitochondrial outer membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "100", - "label": "p-Y701-STAT1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "99", - "label": "The p75NTR:NgR:MDGI complex reduces RHOA-GDI activity, displacing RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "98", - "label": "Retrograde vesicle is tethered at the ER by the NRZ complex and t-SNAREs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "97", - "label": "TNFRSF1B [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "96", - "label": "AP-2 Complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "95", - "label": "Overexpressed HIST1H2AC and ESR1:ESTG bind MYC and BCL2 genes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "94", - "label": "UBE2N [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "93", - "label": "Nef mediated disruption of CD4:Lck Complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "92", - "label": "PolyUb-Misfolded ARL13B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "91", - "label": "Degradation of CD4", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "90", - "label": "Release of acetylcholine at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "89", - "label": "BTRC:CUL1:SKP1 (SCF-beta-TrCP1) ubiquitinylates PER proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "88", - "label": "TRAF6 is K63 poly-ubiquitinated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "87", - "label": "Acetylcholine Loaded Synaptic Vesicle [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "86", - "label": "Retinoic acid activates HOXD4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "85", - "label": "SUMO1:C93-UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "84", - "label": "G-proteins dissociate from plasma-membrane estrogen receptors", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "83", - "label": "Expression of PPARG", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "82", - "label": "RNF168 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "81", - "label": "TGFBR2 is recruited to tight junctions after TGF-beta stimulation", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "80", - "label": "Retinoic acid activates HOXA1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "79", - "label": "SPAST (spastin) mediates the severing of microtubules at chromosome attachment sites", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "78", - "label": "CSNK1D phosphorylates SEC23", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "77", - "label": "cIAP1,2 ubiquitinates NIK in cIAP1,2:TRAF2::TRAF3:NIK", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "76", - "label": "beta-TRCP ubiquitinates IkB-alpha in p-S32,33-IkB-alpha:NF-kB complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "75", - "label": "TNFRSF1B [specific granule membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "74", - "label": "GMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "73", - "label": "Histone H2A [nucleoplasm]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "72", - "label": "NMUR2:NMS [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "71", - "label": "USO1 homodimer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "70", - "label": "UBE2N:UBE2V1 dissociates from hp-IRAK1:3xK63-polyUb-TRAF6:3xUBE2N:UBE2V1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "69", - "label": "mature mRNA (eukaryotic, capped and deadenylated) [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "68", - "label": "Exosome Complex hydrolyzes mRNA by 3' to 5' exoribonuclease digestion", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "67", - "label": "K63PolyUb:K14,K16,p-S139-H2AFX,Me2K21-HIST1H4A-Nucleosome [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "66", - "label": "PER1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "65", - "label": "LCK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "64", - "label": "coatomer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "63", - "label": "Phosphorylated heterodimers of ERBB2 TMD/JMD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "62", - "label": "SUMOylation of XPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "61", - "label": "PAFAH1B1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - } - ], - "edges": [ - { - "id": "1012", - "label": "572416 (-) 572418", - "from": "448", - "to": "445", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1011", - "label": "305153 (-) 299541", - "from": "447", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1010", - "label": "304129 (-) 299541", - "from": "446", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1009", - "label": "572418 (-) 1031197", - "from": "445", - "to": "436", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1008", - "label": "572418 (-) 994566", - "from": "445", - "to": "350", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1007", - "label": "572417 (-) 572416", - "from": "444", - "to": "448", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1006", - "label": "297990 (-) 299541", - "from": "443", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1005", - "label": "492556 (-) 1684105", - "from": "442", - "to": "211", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1004", - "label": "6157 (-) 13130", - "from": "441", - "to": "120", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1003", - "label": "6157 (-) 8322", - "from": "441", - "to": "394", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1002", - "label": "826382 (-) 492556", - "from": "440", - "to": "442", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1001", - "label": "305167 (-) 299541", - "from": "439", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1000", - "label": "618516 (-) 1035755", - "from": "438", - "to": "274", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "999", - "label": "305175 (-) 299541", - "from": "437", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "998", - "label": "1031197 (-) 992230", - "from": "436", - "to": "69", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "997", - "label": "289822 (-) 94950", - "from": "435", - "to": "181", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "996", - "label": "289823 (-) 289822", - "from": "434", - "to": "435", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "995", - "label": "554016 (-) 826382", - "from": "433", - "to": "440", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "994", - "label": "305190 (-) 299541", - "from": "432", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "993", - "label": "1882150 (-) 2098710", - "from": "431", - "to": "255", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "992", - "label": "1341480 (-) 320330", - "from": "430", - "to": "121", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "991", - "label": "1412138 (-) 1411783", - "from": "429", - "to": "190", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "990", - "label": "616491 (-) 550154", - "from": "428", - "to": "347", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "989", - "label": "616491 (-) 616607", - "from": "428", - "to": "385", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "988", - "label": "616491 (-) 616843", - "from": "428", - "to": "301", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "987", - "label": "616491 (-) 616818", - "from": "428", - "to": "312", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "986", - "label": "616491 (-) 616732", - "from": "428", - "to": "334", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "985", - "label": "616492 (-) 616491", - "from": "427", - "to": "428", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "984", - "label": "616493 (-) 616491", - "from": "426", - "to": "428", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "983", - "label": "289835 (-) 289823", - "from": "425", - "to": "434", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "982", - "label": "1473583 (-) 1411783", - "from": "424", - "to": "190", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "981", - "label": "1668145 (-) 251616", - "from": "423", - "to": "183", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "980", - "label": "54322 (-) 743241", - "from": "422", - "to": "122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "979", - "label": "2131002 (-) 2131705", - "from": "421", - "to": "173", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "978", - "label": "299067 (-) 299541", - "from": "420", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "977", - "label": "2119743 (-) 254746", - "from": "419", - "to": "156", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "976", - "label": "955460 (-) 955573", - "from": "418", - "to": "373", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "975", - "label": "62537 (-) 743241", - "from": "417", - "to": "122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "974", - "label": "2131021 (-) 2131705", - "from": "416", - "to": "173", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "973", - "label": "975952 (-) 250984", - "from": "415", - "to": "405", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "972", - "label": "975952 (-) 251144", - "from": "415", - "to": "349", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "971", - "label": "975952 (-) 251201", - "from": "415", - "to": "330", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "970", - "label": "703570 (-) 1410943", - "from": "414", - "to": "104", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "969", - "label": "304210 (-) 299541", - "from": "413", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "968", - "label": "950359 (-) 569211", - "from": "412", - "to": "105", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "967", - "label": "964698 (-) 144608", - "from": "411", - "to": "362", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "966", - "label": "950362 (-) 950359", - "from": "410", - "to": "412", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "965", - "label": "46171 (-) 703760", - "from": "409", - "to": "337", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "964", - "label": "320604 (-) 1430006", - "from": "408", - "to": "271", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "963", - "label": "1934430 (-) 1935115", - "from": "407", - "to": "161", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "962", - "label": "1084519 (-) 1084321", - "from": "406", - "to": "87", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "961", - "label": "250984 (-) 392955", - "from": "405", - "to": "170", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "960", - "label": "1911913 (-) 978264", - "from": "404", - "to": "317", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "959", - "label": "6250 (-) 8322", - "from": "403", - "to": "394", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "958", - "label": "6250 (-) 13130", - "from": "403", - "to": "120", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "957", - "label": "954479 (-) 954480", - "from": "402", - "to": "401", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "956", - "label": "954480 (-) 955652", - "from": "401", - "to": "351", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "955", - "label": "500848 (-) 492556", - "from": "400", - "to": "442", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "954", - "label": "916596 (-) 917308", - "from": "399", - "to": "130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "953", - "label": "916596 (-) 916923", - "from": "399", - "to": "288", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "952", - "label": "299127 (-) 299541", - "from": "398", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "951", - "label": "322680 (-) 321865", - "from": "397", - "to": "325", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "950", - "label": "314489 (-) 299541", - "from": "396", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "949", - "label": "1338496 (-) 301477", - "from": "395", - "to": "293", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "948", - "label": "8322 (-) 8325", - "from": "394", - "to": "393", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "947", - "label": "8325 (-) 1934430", - "from": "393", - "to": "407", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "946", - "label": "8325 (-) 638896", - "from": "393", - "to": "79", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "945", - "label": "8327 (-) 1935831", - "from": "392", - "to": "282", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "944", - "label": "160903 (-) 1382672", - "from": "391", - "to": "338", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "943", - "label": "258188 (-) 1793199", - "from": "390", - "to": "378", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "942", - "label": "1867917 (-) 1871665", - "from": "389", - "to": "141", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "941", - "label": "304276 (-) 299541", - "from": "388", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "940", - "label": "1035416 (-) 2085752", - "from": "387", - "to": "107", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "939", - "label": "571548 (-) 571803", - "from": "386", - "to": "298", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "938", - "label": "616607 (-) 617080", - "from": "385", - "to": "216", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "937", - "label": "422049 (-) 573953", - "from": "384", - "to": "265", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "936", - "label": "565410 (-) 1200984", - "from": "383", - "to": "118", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "935", - "label": "133281 (-) 1484122", - "from": "382", - "to": "315", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "934", - "label": "133281 (-) 1485345", - "from": "382", - "to": "250", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "933", - "label": "133281 (-) 1485501", - "from": "382", - "to": "193", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "932", - "label": "133281 (-) 289149", - "from": "382", - "to": "308", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "931", - "label": "133281 (-) 291429", - "from": "382", - "to": "226", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "930", - "label": "133281 (-) 291483", - "from": "382", - "to": "205", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "929", - "label": "255142 (-) 974036", - "from": "381", - "to": "364", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "928", - "label": "255142 (-) 973072", - "from": "381", - "to": "341", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "927", - "label": "255142 (-) 971358", - "from": "381", - "to": "231", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "926", - "label": "255142 (-) 973669", - "from": "381", - "to": "113", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "925", - "label": "255142 (-) 972439", - "from": "381", - "to": "207", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "924", - "label": "255142 (-) 975952", - "from": "381", - "to": "415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "923", - "label": "255142 (-) 252110", - "from": "381", - "to": "366", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "922", - "label": "616621 (-) 616491", - "from": "380", - "to": "428", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "921", - "label": "1116334 (-) 593090", - "from": "379", - "to": "369", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "920", - "label": "1793199 (-) 149916", - "from": "378", - "to": "297", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "919", - "label": "1793199 (-) 286028", - "from": "378", - "to": "323", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "918", - "label": "1793199 (-) 570743", - "from": "378", - "to": "311", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "917", - "label": "92336 (-) 1243896", - "from": "377", - "to": "174", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "916", - "label": "923825 (-) 77681", - "from": "376", - "to": "108", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "915", - "label": "64690 (-) 1886473", - "from": "375", - "to": "348", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "914", - "label": "64690 (-) 923825", - "from": "375", - "to": "376", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "913", - "label": "64690 (-) 67353", - "from": "375", - "to": "157", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "912", - "label": "887987 (-) 888278", - "from": "374", - "to": "281", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "911", - "label": "955573 (-) 952711", - "from": "373", - "to": "302", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "910", - "label": "955574 (-) 955573", - "from": "372", - "to": "373", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "909", - "label": "324791 (-) 321329", - "from": "371", - "to": "142", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "908", - "label": "955580 (-) 955573", - "from": "370", - "to": "373", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "907", - "label": "593090 (-) 1411759", - "from": "369", - "to": "198", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "906", - "label": "1238218 (-) 1238006", - "from": "368", - "to": "62", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "905", - "label": "1538253 (-) 293444", - "from": "367", - "to": "238", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "904", - "label": "252110 (-) 251201", - "from": "366", - "to": "330", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "903", - "label": "252110 (-) 251144", - "from": "366", - "to": "349", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "902", - "label": "252110 (-) 250984", - "from": "366", - "to": "405", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "901", - "label": "333006 (-) 331494", - "from": "365", - "to": "180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "900", - "label": "974036 (-) 251144", - "from": "364", - "to": "349", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "899", - "label": "974036 (-) 251201", - "from": "364", - "to": "330", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "898", - "label": "974036 (-) 250984", - "from": "364", - "to": "405", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "897", - "label": "877790 (-) 877267", - "from": "363", - "to": "186", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "896", - "label": "144608 (-) 151325", - "from": "362", - "to": "153", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "895", - "label": "144608 (-) 289822", - "from": "362", - "to": "435", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "894", - "label": "875746 (-) 2111986", - "from": "361", - "to": "272", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "893", - "label": "2117860 (-) 254746", - "from": "360", - "to": "156", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "892", - "label": "1337573 (-) 1337326", - "from": "359", - "to": "66", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "891", - "label": "2117862 (-) 2119743", - "from": "358", - "to": "419", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "890", - "label": "2117862 (-) 2117860", - "from": "358", - "to": "360", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "889", - "label": "336103 (-) 331494", - "from": "357", - "to": "180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "888", - "label": "336103 (-) 1538253", - "from": "357", - "to": "367", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "887", - "label": "261355 (-) 299541", - "from": "356", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "886", - "label": "743664 (-) 1341480", - "from": "355", - "to": "430", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "885", - "label": "743664 (-) 1341349", - "from": "355", - "to": "86", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "884", - "label": "743664 (-) 1341038", - "from": "355", - "to": "220", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "883", - "label": "743664 (-) 1340336", - "from": "355", - "to": "80", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "882", - "label": "324862 (-) 321328", - "from": "354", - "to": "139", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "881", - "label": "660736 (-) 2062814", - "from": "353", - "to": "279", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "880", - "label": "504065 (-) 504078", - "from": "352", - "to": "339", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "879", - "label": "504065 (-) 504360", - "from": "352", - "to": "247", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "878", - "label": "504065 (-) 504377", - "from": "352", - "to": "240", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "877", - "label": "955652 (-) 955580", - "from": "351", - "to": "370", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "876", - "label": "955652 (-) 955574", - "from": "351", - "to": "372", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "875", - "label": "955652 (-) 955460", - "from": "351", - "to": "418", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "874", - "label": "994566 (-) 992230", - "from": "350", - "to": "69", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "873", - "label": "251144 (-) 392955", - "from": "349", - "to": "170", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "872", - "label": "1886473 (-) 1238218", - "from": "348", - "to": "368", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "871", - "label": "550154 (-) 617080", - "from": "347", - "to": "216", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "870", - "label": "550154 (-) 550650", - "from": "347", - "to": "172", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "869", - "label": "550154 (-) 646528", - "from": "347", - "to": "303", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "868", - "label": "1806603 (-) 310723", - "from": "346", - "to": "285", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "867", - "label": "504076 (-) 1684283", - "from": "345", - "to": "133", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "866", - "label": "504076 (-) 1682942", - "from": "345", - "to": "268", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "865", - "label": "504077 (-) 1682942", - "from": "344", - "to": "268", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "864", - "label": "504077 (-) 1684283", - "from": "344", - "to": "133", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "863", - "label": "504075 (-) 1682942", - "from": "343", - "to": "268", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "862", - "label": "504075 (-) 1684283", - "from": "343", - "to": "133", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "861", - "label": "1237263 (-) 55093", - "from": "342", - "to": "138", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "860", - "label": "973072 (-) 251144", - "from": "341", - "to": "349", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "859", - "label": "973072 (-) 251201", - "from": "341", - "to": "330", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "858", - "label": "973072 (-) 250984", - "from": "341", - "to": "405", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "857", - "label": "1237265 (-) 1237263", - "from": "340", - "to": "342", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "856", - "label": "504078 (-) 504076", - "from": "339", - "to": "345", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "855", - "label": "504078 (-) 504077", - "from": "339", - "to": "344", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "854", - "label": "504078 (-) 504075", - "from": "339", - "to": "343", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "853", - "label": "1382672 (-) 441773", - "from": "338", - "to": "291", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "852", - "label": "703760 (-) 703570", - "from": "337", - "to": "414", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "851", - "label": "13588 (-) 1884935", - "from": "336", - "to": "164", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "850", - "label": "1337624 (-) 1337573", - "from": "335", - "to": "359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "849", - "label": "616732 (-) 617080", - "from": "334", - "to": "216", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "848", - "label": "1522976 (-) 293444", - "from": "333", - "to": "238", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "847", - "label": "955707 (-) 955652", - "from": "332", - "to": "351", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "846", - "label": "955707 (-) 1156931", - "from": "332", - "to": "125", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "845", - "label": "1046846 (-) 570878", - "from": "331", - "to": "267", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "844", - "label": "251201 (-) 392955", - "from": "330", - "to": "170", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "843", - "label": "298309 (-) 299541", - "from": "329", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "842", - "label": "241990 (-) 958434", - "from": "328", - "to": "70", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "841", - "label": "1534279 (-) 251616", - "from": "327", - "to": "183", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "840", - "label": "298310 (-) 299541", - "from": "326", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "839", - "label": "321865 (-) 1382736", - "from": "325", - "to": "321", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "838", - "label": "298315 (-) 299541", - "from": "324", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "837", - "label": "286028 (-) 1046846", - "from": "323", - "to": "331", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "836", - "label": "286028 (-) 1807026", - "from": "323", - "to": "196", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "835", - "label": "101711 (-) 1490324", - "from": "322", - "to": "300", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "834", - "label": "101711 (-) 1490531", - "from": "322", - "to": "227", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "833", - "label": "101711 (-) 291357", - "from": "322", - "to": "253", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "832", - "label": "1382736 (-) 327533", - "from": "321", - "to": "110", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "831", - "label": "1681748 (-) 251616", - "from": "320", - "to": "183", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "830", - "label": "554324 (-) 554327", - "from": "319", - "to": "318", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "829", - "label": "554327 (-) 98964", - "from": "318", - "to": "209", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "828", - "label": "978264 (-) 1916734", - "from": "317", - "to": "129", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "827", - "label": "193879 (-) 1083941", - "from": "316", - "to": "248", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "826", - "label": "1484122 (-) 144608", - "from": "315", - "to": "362", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "825", - "label": "132458 (-) 1214047", - "from": "314", - "to": "230", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "824", - "label": "616817 (-) 616491", - "from": "313", - "to": "428", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "823", - "label": "616818 (-) 617080", - "from": "312", - "to": "216", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "822", - "label": "570743 (-) 1482169", - "from": "311", - "to": "289", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "821", - "label": "883065 (-) 1200606", - "from": "310", - "to": "278", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "820", - "label": "302460 (-) 299541", - "from": "309", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "819", - "label": "289149 (-) 144608", - "from": "308", - "to": "362", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "818", - "label": "5502 (-) 13130", - "from": "307", - "to": "120", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "817", - "label": "5502 (-) 8322", - "from": "307", - "to": "394", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "816", - "label": "616831 (-) 616491", - "from": "306", - "to": "428", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "815", - "label": "330112 (-) 409084", - "from": "305", - "to": "269", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "814", - "label": "330112 (-) 369394", - "from": "305", - "to": "177", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "813", - "label": "330112 (-) 331494", - "from": "305", - "to": "180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "812", - "label": "5503 (-) 8322", - "from": "304", - "to": "394", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "811", - "label": "5503 (-) 13130", - "from": "304", - "to": "120", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "810", - "label": "646528 (-) 550651", - "from": "303", - "to": "171", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "809", - "label": "952711 (-) 958275", - "from": "302", - "to": "124", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "808", - "label": "616843 (-) 617080", - "from": "301", - "to": "216", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "807", - "label": "1490324 (-) 144608", - "from": "300", - "to": "362", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "806", - "label": "2131348 (-) 2131705", - "from": "299", - "to": "173", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "805", - "label": "571803 (-) 132458", - "from": "298", - "to": "314", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "804", - "label": "149916 (-) 1488882", - "from": "297", - "to": "63", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "803", - "label": "149916 (-) 1489512", - "from": "297", - "to": "224", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "802", - "label": "149916 (-) 964698", - "from": "297", - "to": "411", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "801", - "label": "149916 (-) 1489627", - "from": "297", - "to": "184", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "800", - "label": "149916 (-) 289835", - "from": "297", - "to": "425", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "799", - "label": "149916 (-) 157322", - "from": "297", - "to": "210", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "798", - "label": "1035681 (-) 1035416", - "from": "296", - "to": "387", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "797", - "label": "1035683 (-) 1035681", - "from": "295", - "to": "296", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "796", - "label": "1065380 (-) 261355", - "from": "294", - "to": "356", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "795", - "label": "301477 (-) 299541", - "from": "293", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "794", - "label": "1200554 (-) 43842", - "from": "292", - "to": "127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "793", - "label": "441773 (-) 1382312", - "from": "291", - "to": "83", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "792", - "label": "616886 (-) 616493", - "from": "290", - "to": "426", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "791", - "label": "616886 (-) 616831", - "from": "290", - "to": "306", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "790", - "label": "616886 (-) 616621", - "from": "290", - "to": "380", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "789", - "label": "616886 (-) 616817", - "from": "290", - "to": "313", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "788", - "label": "616886 (-) 616492", - "from": "290", - "to": "427", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "787", - "label": "1482169 (-) 570878", - "from": "289", - "to": "267", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "786", - "label": "1482169 (-) 935814", - "from": "289", - "to": "100", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "785", - "label": "916923 (-) 504065", - "from": "288", - "to": "352", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "784", - "label": "321983 (-) 1382736", - "from": "287", - "to": "321", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "783", - "label": "587203 (-) 441814", - "from": "286", - "to": "283", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "782", - "label": "310723 (-) 954479", - "from": "285", - "to": "402", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "781", - "label": "310723 (-) 299541", - "from": "285", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "780", - "label": "1200581 (-) 1200554", - "from": "284", - "to": "292", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "779", - "label": "441814 (-) 1806603", - "from": "283", - "to": "346", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "778", - "label": "1935831 (-) 191978", - "from": "282", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "777", - "label": "888278 (-) 883456", - "from": "281", - "to": "167", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "776", - "label": "1477081 (-) 8325", - "from": "280", - "to": "393", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "775", - "label": "2062814 (-) 418544", - "from": "279", - "to": "178", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "774", - "label": "1200606 (-) 1200581", - "from": "278", - "to": "284", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "773", - "label": "2112990 (-) 874479", - "from": "277", - "to": "64", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "772", - "label": "2112991 (-) 2112990", - "from": "276", - "to": "277", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "771", - "label": "191978 (-) 1673905", - "from": "275", - "to": "195", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "770", - "label": "1035755 (-) 1035683", - "from": "274", - "to": "295", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "769", - "label": "1798639 (-) 1911913", - "from": "273", - "to": "404", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "768", - "label": "2111986 (-) 49150", - "from": "272", - "to": "61", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "767", - "label": "1430006 (-) 336103", - "from": "271", - "to": "357", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "766", - "label": "882169 (-) 888278", - "from": "270", - "to": "281", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "765", - "label": "882169 (-) 883490", - "from": "270", - "to": "151", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "764", - "label": "409084 (-) 293444", - "from": "269", - "to": "238", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "763", - "label": "1682942 (-) 330112", - "from": "268", - "to": "305", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "762", - "label": "570878 (-) 627554", - "from": "267", - "to": "115", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "761", - "label": "570878 (-) 1806998", - "from": "267", - "to": "208", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "760", - "label": "570878 (-) 1802928", - "from": "267", - "to": "199", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "759", - "label": "570878 (-) 935811", - "from": "267", - "to": "103", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "758", - "label": "570878 (-) 587203", - "from": "267", - "to": "286", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "757", - "label": "2059776 (-) 653856", - "from": "266", - "to": "251", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "756", - "label": "573953 (-) 572417", - "from": "265", - "to": "444", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "755", - "label": "882178 (-) 883490", - "from": "264", - "to": "151", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "754", - "label": "882178 (-) 888278", - "from": "264", - "to": "281", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "753", - "label": "1790467 (-) 251616", - "from": "263", - "to": "183", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "752", - "label": "232970 (-) 1382736", - "from": "262", - "to": "321", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "751", - "label": "637452 (-) 193879", - "from": "261", - "to": "316", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "750", - "label": "637453 (-) 637452", - "from": "260", - "to": "261", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "749", - "label": "1337870 (-) 1337573", - "from": "259", - "to": "359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "748", - "label": "299537 (-) 299541", - "from": "258", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "747", - "label": "653843 (-) 730789", - "from": "257", - "to": "201", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "746", - "label": "653843 (-) 737088", - "from": "257", - "to": "128", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "745", - "label": "653843 (-) 1538767", - "from": "257", - "to": "187", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "744", - "label": "653843 (-) 654138", - "from": "257", - "to": "134", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "743", - "label": "299541 (-) 308039", - "from": "256", - "to": "123", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "742", - "label": "299541 (-) 309001", - "from": "256", - "to": "163", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "741", - "label": "299541 (-) 297990", - "from": "256", - "to": "443", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "740", - "label": "299541 (-) 310723", - "from": "256", - "to": "285", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "739", - "label": "299541 (-) 310116", - "from": "256", - "to": "114", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "738", - "label": "2098710 (-) 2052724", - "from": "255", - "to": "219", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "737", - "label": "2098710 (-) 2052833", - "from": "255", - "to": "182", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "736", - "label": "299544 (-) 299541", - "from": "254", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "735", - "label": "291357 (-) 144608", - "from": "253", - "to": "362", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "734", - "label": "343583 (-) 331494", - "from": "252", - "to": "180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "733", - "label": "653856 (-) 654215", - "from": "251", - "to": "99", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "732", - "label": "1485345 (-) 144608", - "from": "250", - "to": "362", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "731", - "label": "1083940 (-) 1084519", - "from": "249", - "to": "406", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "730", - "label": "1083941 (-) 1083940", - "from": "248", - "to": "249", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "729", - "label": "504360 (-) 504077", - "from": "247", - "to": "344", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "728", - "label": "504360 (-) 504075", - "from": "247", - "to": "343", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "727", - "label": "504360 (-) 504076", - "from": "247", - "to": "345", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "726", - "label": "311850 (-) 299541", - "from": "246", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "725", - "label": "77362 (-) 62263", - "from": "245", - "to": "137", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "724", - "label": "77362 (-) 54189", - "from": "245", - "to": "82", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "723", - "label": "77362 (-) 54322", - "from": "245", - "to": "422", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "722", - "label": "77362 (-) 55277", - "from": "245", - "to": "67", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "721", - "label": "77362 (-) 54900", - "from": "245", - "to": "218", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "720", - "label": "77362 (-) 55093", - "from": "245", - "to": "138", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "719", - "label": "77362 (-) 61124", - "from": "245", - "to": "191", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "718", - "label": "77362 (-) 54026", - "from": "245", - "to": "162", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "717", - "label": "77362 (-) 62537", - "from": "245", - "to": "417", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "716", - "label": "101938 (-) 1490531", - "from": "244", - "to": "227", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "715", - "label": "101938 (-) 1490324", - "from": "244", - "to": "300", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "714", - "label": "101938 (-) 291357", - "from": "244", - "to": "253", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "713", - "label": "878133 (-) 877267", - "from": "243", - "to": "186", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "712", - "label": "309814 (-) 299541", - "from": "242", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "711", - "label": "13879 (-) 6157", - "from": "241", - "to": "441", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "710", - "label": "13879 (-) 5503", - "from": "241", - "to": "304", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "709", - "label": "13879 (-) 5738", - "from": "241", - "to": "222", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "708", - "label": "13879 (-) 6250", - "from": "241", - "to": "403", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "707", - "label": "13879 (-) 5737", - "from": "241", - "to": "223", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "706", - "label": "13879 (-) 5502", - "from": "241", - "to": "307", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "705", - "label": "13879 (-) 5936", - "from": "241", - "to": "143", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "704", - "label": "13879 (-) 6042", - "from": "241", - "to": "92", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "703", - "label": "504377 (-) 504076", - "from": "240", - "to": "345", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "702", - "label": "504377 (-) 504075", - "from": "240", - "to": "343", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "701", - "label": "321084 (-) 1338496", - "from": "239", - "to": "395", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "700", - "label": "293444 (-) 299541", - "from": "238", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "699", - "label": "1107533 (-) 310021", - "from": "237", - "to": "165", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "698", - "label": "1119825 (-) 1116334", - "from": "236", - "to": "379", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "697", - "label": "389722 (-) 549814", - "from": "235", - "to": "76", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "696", - "label": "389722 (-) 616886", - "from": "235", - "to": "290", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "695", - "label": "875099 (-) 875746", - "from": "234", - "to": "361", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "694", - "label": "77403 (-) 77362", - "from": "233", - "to": "245", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "693", - "label": "875101 (-) 875099", - "from": "232", - "to": "234", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "692", - "label": "971358 (-) 250984", - "from": "231", - "to": "405", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "691", - "label": "971358 (-) 251144", - "from": "231", - "to": "349", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "690", - "label": "971358 (-) 251201", - "from": "231", - "to": "330", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "689", - "label": "1214047 (-) 144608", - "from": "230", - "to": "362", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "688", - "label": "970337 (-) 333006", - "from": "229", - "to": "365", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "687", - "label": "350818 (-) 555944", - "from": "228", - "to": "84", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "686", - "label": "1490531 (-) 144608", - "from": "227", - "to": "362", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "685", - "label": "291429 (-) 144608", - "from": "226", - "to": "362", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "684", - "label": "1159782 (-) 954243", - "from": "225", - "to": "101", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "683", - "label": "1489512 (-) 144608", - "from": "224", - "to": "362", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "682", - "label": "5737 (-) 8322", - "from": "223", - "to": "394", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "681", - "label": "5737 (-) 13130", - "from": "223", - "to": "120", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "680", - "label": "5738 (-) 8322", - "from": "222", - "to": "394", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "679", - "label": "5738 (-) 13130", - "from": "222", - "to": "120", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "678", - "label": "1378926 (-) 1382736", - "from": "221", - "to": "321", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "677", - "label": "1341038 (-) 320330", - "from": "220", - "to": "121", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "676", - "label": "2052724 (-) 2059776", - "from": "219", - "to": "266", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "675", - "label": "54900 (-) 743241", - "from": "218", - "to": "122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "674", - "label": "1771125 (-) 2114443", - "from": "217", - "to": "98", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "673", - "label": "617080 (-) 550651", - "from": "216", - "to": "171", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "672", - "label": "550522 (-) 550679", - "from": "215", - "to": "158", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "671", - "label": "227964 (-) 324791", - "from": "214", - "to": "371", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "670", - "label": "227964 (-) 320128", - "from": "214", - "to": "212", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "669", - "label": "227964 (-) 1382203", - "from": "214", - "to": "132", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "668", - "label": "227964 (-) 322680", - "from": "214", - "to": "397", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "667", - "label": "227964 (-) 324862", - "from": "214", - "to": "354", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "666", - "label": "227964 (-) 322256", - "from": "214", - "to": "188", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "665", - "label": "637566 (-) 637453", - "from": "213", - "to": "260", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "664", - "label": "320128 (-) 320604", - "from": "212", - "to": "408", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "663", - "label": "1684105 (-) 298310", - "from": "211", - "to": "326", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "662", - "label": "1684105 (-) 299067", - "from": "211", - "to": "420", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "661", - "label": "157322 (-) 151326", - "from": "210", - "to": "152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "660", - "label": "98964 (-) 1490531", - "from": "209", - "to": "227", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "659", - "label": "98964 (-) 1490324", - "from": "209", - "to": "300", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "658", - "label": "98964 (-) 291357", - "from": "209", - "to": "253", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "657", - "label": "1806998 (-) 441814", - "from": "208", - "to": "283", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "656", - "label": "972439 (-) 251201", - "from": "207", - "to": "330", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "655", - "label": "972439 (-) 251144", - "from": "207", - "to": "349", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "654", - "label": "972439 (-) 250984", - "from": "207", - "to": "405", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "653", - "label": "171672 (-) 299541", - "from": "206", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "652", - "label": "291483 (-) 144608", - "from": "205", - "to": "362", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "651", - "label": "327326 (-) 304925", - "from": "204", - "to": "154", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "650", - "label": "327326 (-) 304924", - "from": "204", - "to": "155", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "649", - "label": "327326 (-) 305175", - "from": "204", - "to": "437", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "648", - "label": "327326 (-) 305167", - "from": "204", - "to": "439", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "647", - "label": "327326 (-) 305153", - "from": "204", - "to": "447", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "646", - "label": "1682080 (-) 251616", - "from": "203", - "to": "183", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "645", - "label": "719521 (-) 719714", - "from": "202", - "to": "116", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "644", - "label": "730789 (-) 654141", - "from": "201", - "to": "131", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "643", - "label": "672431 (-) 46171", - "from": "200", - "to": "409", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "642", - "label": "1802928 (-) 441814", - "from": "199", - "to": "283", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "641", - "label": "1411759 (-) 1411760", - "from": "198", - "to": "197", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "640", - "label": "1411760 (-) 1412138", - "from": "197", - "to": "429", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "639", - "label": "1807026 (-) 935814", - "from": "196", - "to": "100", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "638", - "label": "1807026 (-) 570878", - "from": "196", - "to": "267", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "637", - "label": "1807026 (-) 627557", - "from": "196", - "to": "112", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "636", - "label": "1673905 (-) 261355", - "from": "195", - "to": "356", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "635", - "label": "14012 (-) 13879", - "from": "194", - "to": "241", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "634", - "label": "1485501 (-) 144608", - "from": "193", - "to": "362", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "633", - "label": "322239 (-) 321084", - "from": "192", - "to": "239", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "632", - "label": "61124 (-) 743241", - "from": "191", - "to": "122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "631", - "label": "1411783 (-) 1473433", - "from": "190", - "to": "93", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "630", - "label": "572111 (-) 571548", - "from": "189", - "to": "386", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "629", - "label": "322256 (-) 321330", - "from": "188", - "to": "140", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "628", - "label": "1538767 (-) 654141", - "from": "187", - "to": "131", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "627", - "label": "877267 (-) 875101", - "from": "186", - "to": "232", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "626", - "label": "884435 (-) 874464", - "from": "185", - "to": "71", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "625", - "label": "884435 (-) 878133", - "from": "185", - "to": "243", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "624", - "label": "1489627 (-) 144608", - "from": "184", - "to": "362", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "623", - "label": "251616 (-) 299541", - "from": "183", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "622", - "label": "2052833 (-) 2059776", - "from": "182", - "to": "266", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "621", - "label": "94950 (-) 1522976", - "from": "181", - "to": "333", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "620", - "label": "331494 (-) 310020", - "from": "180", - "to": "166", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "619", - "label": "331494 (-) 309814", - "from": "180", - "to": "242", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "618", - "label": "331494 (-) 305190", - "from": "180", - "to": "432", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "617", - "label": "331494 (-) 293444", - "from": "180", - "to": "238", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "616", - "label": "331494 (-) 311850", - "from": "180", - "to": "246", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "615", - "label": "331494 (-) 299544", - "from": "180", - "to": "254", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "614", - "label": "331494 (-) 302460", - "from": "180", - "to": "309", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "613", - "label": "331494 (-) 309196", - "from": "180", - "to": "72", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "612", - "label": "103150 (-) 1049381", - "from": "179", - "to": "149", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "611", - "label": "418544 (-) 2062227", - "from": "178", - "to": "95", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "610", - "label": "369394 (-) 298309", - "from": "177", - "to": "329", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "609", - "label": "369394 (-) 304129", - "from": "177", - "to": "446", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "608", - "label": "369394 (-) 299127", - "from": "177", - "to": "398", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "607", - "label": "369394 (-) 298310", - "from": "177", - "to": "326", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "606", - "label": "369394 (-) 298315", - "from": "177", - "to": "324", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "605", - "label": "369394 (-) 304210", - "from": "177", - "to": "413", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "604", - "label": "369394 (-) 299067", - "from": "177", - "to": "420", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "603", - "label": "369394 (-) 299537", - "from": "177", - "to": "258", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "602", - "label": "369394 (-) 304276", - "from": "177", - "to": "388", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "601", - "label": "369394 (-) 301477", - "from": "177", - "to": "293", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "600", - "label": "369394 (-) 293444", - "from": "177", - "to": "238", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "599", - "label": "369394 (-) 303994", - "from": "177", - "to": "106", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "598", - "label": "369394 (-) 301845", - "from": "177", - "to": "160", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "597", - "label": "1681138 (-) 251616", - "from": "176", - "to": "183", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "596", - "label": "373494 (-) 369394", - "from": "175", - "to": "177", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "595", - "label": "1243896 (-) 321983", - "from": "174", - "to": "287", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "594", - "label": "2131705 (-) 698257", - "from": "173", - "to": "96", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "593", - "label": "2131705 (-) 2117862", - "from": "173", - "to": "358", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "592", - "label": "550650 (-) 550651", - "from": "172", - "to": "171", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "591", - "label": "550651 (-) 970337", - "from": "171", - "to": "229", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "590", - "label": "392955 (-) 258188", - "from": "170", - "to": "390", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "589", - "label": "883453 (-) 883065", - "from": "169", - "to": "310", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "588", - "label": "883455 (-) 883453", - "from": "168", - "to": "169", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "587", - "label": "883456 (-) 883453", - "from": "167", - "to": "169", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "586", - "label": "310020 (-) 299541", - "from": "166", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "585", - "label": "310021 (-) 299541", - "from": "165", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "584", - "label": "1884935 (-) 554016", - "from": "164", - "to": "433", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "583", - "label": "309001 (-) 299541", - "from": "163", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "582", - "label": "54026 (-) 743241", - "from": "162", - "to": "122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "581", - "label": "1935115 (-) 1935831", - "from": "161", - "to": "282", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "580", - "label": "301845 (-) 299541", - "from": "160", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "579", - "label": "1159958 (-) 618296", - "from": "159", - "to": "135", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "578", - "label": "1159958 (-) 618516", - "from": "159", - "to": "438", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "577", - "label": "550679 (-) 550154", - "from": "158", - "to": "347", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "576", - "label": "67353 (-) 64422", - "from": "157", - "to": "85", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "575", - "label": "254746 (-) 974036", - "from": "156", - "to": "364", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "574", - "label": "254746 (-) 975952", - "from": "156", - "to": "415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "573", - "label": "254746 (-) 973669", - "from": "156", - "to": "113", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "572", - "label": "254746 (-) 252110", - "from": "156", - "to": "366", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "571", - "label": "254746 (-) 971358", - "from": "156", - "to": "231", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "570", - "label": "254746 (-) 973072", - "from": "156", - "to": "341", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "569", - "label": "254746 (-) 972439", - "from": "156", - "to": "207", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "568", - "label": "304924 (-) 299541", - "from": "155", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "567", - "label": "304925 (-) 299541", - "from": "154", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "566", - "label": "151325 (-) 94950", - "from": "153", - "to": "181", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "565", - "label": "151326 (-) 151325", - "from": "152", - "to": "153", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "564", - "label": "883490 (-) 883455", - "from": "151", - "to": "168", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "563", - "label": "1082148 (-) 350818", - "from": "150", - "to": "228", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "562", - "label": "1049381 (-) 94950", - "from": "149", - "to": "181", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "561", - "label": "884516 (-) 884435", - "from": "148", - "to": "185", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "560", - "label": "884516 (-) 885683", - "from": "148", - "to": "78", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "559", - "label": "1082151 (-) 1082148", - "from": "147", - "to": "150", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "558", - "label": "719655 (-) 719521", - "from": "146", - "to": "202", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "557", - "label": "1889063 (-) 64690", - "from": "145", - "to": "375", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "556", - "label": "884524 (-) 884435", - "from": "144", - "to": "185", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "555", - "label": "884524 (-) 885683", - "from": "144", - "to": "78", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "554", - "label": "5936 (-) 13130", - "from": "143", - "to": "120", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "553", - "label": "5936 (-) 8322", - "from": "143", - "to": "394", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "552", - "label": "321329 (-) 322239", - "from": "142", - "to": "192", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "551", - "label": "1871665 (-) 14228", - "from": "141", - "to": "94", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "550", - "label": "321330 (-) 322239", - "from": "140", - "to": "192", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "549", - "label": "321328 (-) 322239", - "from": "139", - "to": "192", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "548", - "label": "55093 (-) 743241", - "from": "138", - "to": "122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "547", - "label": "62263 (-) 743241", - "from": "137", - "to": "122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "546", - "label": "130871 (-) 1681138", - "from": "136", - "to": "176", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "545", - "label": "130871 (-) 1681748", - "from": "136", - "to": "320", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "544", - "label": "130871 (-) 1065380", - "from": "136", - "to": "294", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "543", - "label": "130871 (-) 1682080", - "from": "136", - "to": "203", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "542", - "label": "130871 (-) 1790467", - "from": "136", - "to": "263", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "541", - "label": "130871 (-) 1668145", - "from": "136", - "to": "423", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "540", - "label": "130871 (-) 1534279", - "from": "136", - "to": "327", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "539", - "label": "618296 (-) 1035755", - "from": "135", - "to": "274", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "538", - "label": "654138 (-) 654141", - "from": "134", - "to": "131", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "537", - "label": "1684283 (-) 330112", - "from": "133", - "to": "305", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "536", - "label": "1382203 (-) 1378926", - "from": "132", - "to": "221", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "535", - "label": "654141 (-) 952239", - "from": "131", - "to": "81", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "534", - "label": "654141 (-) 719655", - "from": "131", - "to": "146", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "533", - "label": "917308 (-) 504065", - "from": "130", - "to": "352", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "532", - "label": "1916734 (-) 950362", - "from": "129", - "to": "410", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "531", - "label": "737088 (-) 654141", - "from": "128", - "to": "131", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "530", - "label": "43842 (-) 1477081", - "from": "127", - "to": "280", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "529", - "label": "1035074 (-) 1159782", - "from": "126", - "to": "225", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "528", - "label": "1156931 (-) 955460", - "from": "125", - "to": "418", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "527", - "label": "958275 (-) 958290", - "from": "124", - "to": "119", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "526", - "label": "308039 (-) 299541", - "from": "123", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "525", - "label": "743241 (-) 743664", - "from": "122", - "to": "355", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "524", - "label": "320330 (-) 324862", - "from": "121", - "to": "354", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "523", - "label": "320330 (-) 320128", - "from": "121", - "to": "212", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "522", - "label": "320330 (-) 322256", - "from": "121", - "to": "188", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "521", - "label": "320330 (-) 1382203", - "from": "121", - "to": "132", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "520", - "label": "320330 (-) 324791", - "from": "121", - "to": "371", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "519", - "label": "320330 (-) 322680", - "from": "121", - "to": "397", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "518", - "label": "13130 (-) 13588", - "from": "120", - "to": "336", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "517", - "label": "958290 (-) 958368", - "from": "119", - "to": "88", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "516", - "label": "1200984 (-) 554324", - "from": "118", - "to": "319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "515", - "label": "1466203 (-) 1889063", - "from": "117", - "to": "145", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "514", - "label": "719714 (-) 565410", - "from": "116", - "to": "383", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "513", - "label": "627554 (-) 441814", - "from": "115", - "to": "283", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "512", - "label": "310116 (-) 954479", - "from": "114", - "to": "402", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "511", - "label": "973669 (-) 250984", - "from": "113", - "to": "405", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "510", - "label": "973669 (-) 251144", - "from": "113", - "to": "349", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "509", - "label": "973669 (-) 251201", - "from": "113", - "to": "330", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "508", - "label": "627557 (-) 1806998", - "from": "112", - "to": "208", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "507", - "label": "627557 (-) 627554", - "from": "112", - "to": "115", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "506", - "label": "77671 (-) 77403", - "from": "111", - "to": "233", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "505", - "label": "327533 (-) 327326", - "from": "110", - "to": "204", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "504", - "label": "369519 (-) 369394", - "from": "109", - "to": "177", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "503", - "label": "77681 (-) 1238006", - "from": "108", - "to": "62", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "502", - "label": "77681 (-) 77671", - "from": "108", - "to": "111", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "501", - "label": "2085752 (-) 130871", - "from": "107", - "to": "136", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "500", - "label": "303994 (-) 299541", - "from": "106", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "499", - "label": "569211 (-) 572111", - "from": "105", - "to": "189", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "498", - "label": "1410943 (-) 103150", - "from": "104", - "to": "179", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "497", - "label": "935811 (-) 441814", - "from": "103", - "to": "283", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "496", - "label": "698244 (-) 255142", - "from": "102", - "to": "381", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "495", - "label": "954243 (-) 1159958", - "from": "101", - "to": "159", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "494", - "label": "935814 (-) 935811", - "from": "100", - "to": "103", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "493", - "label": "935814 (-) 1806998", - "from": "100", - "to": "208", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "492", - "label": "654215 (-) 653843", - "from": "99", - "to": "257", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "491", - "label": "2114443 (-) 2112991", - "from": "98", - "to": "276", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "490", - "label": "1116044 (-) 1799093", - "from": "97", - "to": "77", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "489", - "label": "698257 (-) 1473583", - "from": "96", - "to": "424", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "488", - "label": "698257 (-) 1473437", - "from": "96", - "to": "91", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "487", - "label": "698257 (-) 698244", - "from": "96", - "to": "102", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "486", - "label": "2062227 (-) 79817", - "from": "95", - "to": "73", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "485", - "label": "14228 (-) 13879", - "from": "94", - "to": "241", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "484", - "label": "1473433 (-) 138223", - "from": "93", - "to": "65", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "483", - "label": "6042 (-) 8322", - "from": "92", - "to": "394", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "482", - "label": "6042 (-) 13130", - "from": "92", - "to": "120", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "481", - "label": "1473437 (-) 1411783", - "from": "91", - "to": "190", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "480", - "label": "1084318 (-) 171672", - "from": "90", - "to": "206", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "479", - "label": "1338271 (-) 389722", - "from": "89", - "to": "235", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "478", - "label": "958368 (-) 241990", - "from": "88", - "to": "328", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "477", - "label": "1084321 (-) 1084318", - "from": "87", - "to": "90", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "476", - "label": "1341349 (-) 320330", - "from": "86", - "to": "121", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "475", - "label": "64422 (-) 1238006", - "from": "85", - "to": "62", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "474", - "label": "555944 (-) 293444", - "from": "84", - "to": "238", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "473", - "label": "1382312 (-) 232970", - "from": "83", - "to": "262", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "472", - "label": "54189 (-) 743241", - "from": "82", - "to": "122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "471", - "label": "952239 (-) 422049", - "from": "81", - "to": "384", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "470", - "label": "1340336 (-) 320330", - "from": "80", - "to": "121", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "469", - "label": "1340336 (-) 227964", - "from": "80", - "to": "214", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "468", - "label": "638896 (-) 8327", - "from": "79", - "to": "392", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "467", - "label": "885683 (-) 887987", - "from": "78", - "to": "374", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "466", - "label": "885683 (-) 877790", - "from": "78", - "to": "363", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "465", - "label": "1799093 (-) 1035074", - "from": "77", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "464", - "label": "549814 (-) 550522", - "from": "76", - "to": "215", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "463", - "label": "1113015 (-) 1107533", - "from": "75", - "to": "237", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "462", - "label": "495541 (-) 500848", - "from": "74", - "to": "400", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "461", - "label": "79817 (-) 970337", - "from": "73", - "to": "229", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "460", - "label": "309196 (-) 299541", - "from": "72", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "459", - "label": "874464 (-) 877267", - "from": "71", - "to": "186", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "458", - "label": "958434 (-) 14012", - "from": "70", - "to": "194", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "457", - "label": "992230 (-) 992233", - "from": "69", - "to": "68", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "456", - "label": "992233 (-) 495541", - "from": "68", - "to": "74", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "455", - "label": "55277 (-) 743241", - "from": "67", - "to": "122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "454", - "label": "1337326 (-) 1338271", - "from": "66", - "to": "89", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "453", - "label": "138223 (-) 672431", - "from": "65", - "to": "200", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "452", - "label": "874479 (-) 877267", - "from": "64", - "to": "186", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "451", - "label": "1488882 (-) 144608", - "from": "63", - "to": "362", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "450", - "label": "1238006 (-) 1237265", - "from": "62", - "to": "340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "449", - "label": "49150 (-) 637566", - "from": "61", - "to": "213", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/PER1 [cytosol].json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/PER1 [cytosol].json deleted file mode 100644 index 6e020aff56..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/PER1 [cytosol].json +++ /dev/null @@ -1,11886 +0,0 @@ -{ - "nodes": [ - { - "id": "7998", - "label": "Dissociation of phosphorylated 4EBP1 from eIF4E", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7997", - "label": "P2RY11 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7996", - "label": "EIF4E [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7995", - "label": "eIF4E:4E-BP1-P [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7994", - "label": "JAG1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7993", - "label": "Ade-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "7992", - "label": "p-S423,S425-SMAD3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7991", - "label": "PARN deadenylates mRNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7990", - "label": "Release of PLCG from FCGR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7989", - "label": "Bradykinin receptor:Bradykinin [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7988", - "label": "GGC-RAB7B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7987", - "label": "Retinoic acid activates HOXB4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7986", - "label": "Disintegration of matrix layer", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "7985", - "label": "Ubiquitinated IkB is degraded", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7984", - "label": "NF-kappaB p50,p65,c-Rel:ub-p-IKB [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "7983", - "label": "NF-kappaB p65:p65:ub-p-IkB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7982", - "label": "Degradation of CD8", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7981", - "label": "Exocytosis of Insulin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7980", - "label": "SUMO1:p-T4827-HERC2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7979", - "label": "TFIIH [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7978", - "label": "TGFA(24-98) [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7977", - "label": "5HT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "7976", - "label": "TGFB1:TGFBR2:p-TGFBR1 [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7975", - "label": "IL1B(117-269) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7974", - "label": "Docking of Mature Histone mRNA complex:TAP at the NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7973", - "label": "p-S25,S1778-TP53BP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7972", - "label": "AREG(101-187) [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7971", - "label": "CTNNB1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7970", - "label": "NPS [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7969", - "label": "CREBBP [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7968", - "label": "CBL neddylates TGFBR2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7967", - "label": "TGFBR2 phosphorylates TGFBR1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7966", - "label": "NEDD8-AcM-UBE2M [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7965", - "label": "TGFB1:TGFBR2:TGFBR1 [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7964", - "label": "PP2A [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7963", - "label": "SIN3A [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7962", - "label": "APC is K63-polyubiquitinated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7961", - "label": "Loading of acetylcholine in synaptic vesicles", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7960", - "label": "COP9 signalosome deneddylates cytosolic CRL E3 ubiquitin ligase complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7959", - "label": "(d)AMP, (d)GMP, or (d)IMP + H2O => (deoxy)adenosine, (deoxy)guanosine, or (deoxy)inosine + orthophosphate (NT5C1A)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7958", - "label": "PPP1R3C [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7957", - "label": "Hist [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "7956", - "label": "AGTR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7955", - "label": "KLF4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7954", - "label": "RNF152 [lysosomal membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7953", - "label": "Hypophosphorylation of RNA Pol II CTD by FCP1P protein", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7952", - "label": "NPSR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7951", - "label": "TGFBR2 recruits TGFBR1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7950", - "label": "PP2A (A:C) [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7949", - "label": "NF-kappaB p65:p65 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7948", - "label": "FKBP1A [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7947", - "label": "RASA1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7946", - "label": "FGF18 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7945", - "label": "PP1 dephosphorylates TGFBR1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7944", - "label": "Docking of Mature Replication Dependent Histone mRNA with the NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7943", - "label": "NF-kappaB p50:c-Rel:ub-p-IKB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7942", - "label": "Exocytosis of ficolin-rich granule lumen proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7941", - "label": "Regulation of protein ISGylation by ISG15 deconjugating enzyme USP18", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7940", - "label": "CCNH [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7939", - "label": "Transfer of SUMO2 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7938", - "label": "UBE2I [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7937", - "label": "SEC31A:SEC13:SEC23IP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7936", - "label": "Interleukin-1 family are secreted", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "7935", - "label": "Interleukin-1 family [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "7934", - "label": "PTPNs gene transcription and translation", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7933", - "label": "IL18 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7932", - "label": "PPIA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7931", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "7930", - "label": "SUMO3:UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7929", - "label": "IL8 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7928", - "label": "p-4Y-PLCG1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7927", - "label": "Dynein:Dynactin:microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7926", - "label": "Expression of PERIOD-1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "7925", - "label": "HERC5 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7924", - "label": "PAXIP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7923", - "label": "UBE2E1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7922", - "label": "Expression of NPAS2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7921", - "label": "FOSB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7920", - "label": "UMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "7919", - "label": "Docking of the Mature intronless derived transcript derived mRNA, TAP and Aly/Ref at the NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7918", - "label": "Interleukin-1 family precursors are cleaved by caspase-1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7917", - "label": "CCR4-NOT complex deadenylates mRNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7916", - "label": "Transfer of SUMO3 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7915", - "label": "NFKB1(1-433):RELA [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7914", - "label": "Ura-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "7913", - "label": "Thy-dRib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "7912", - "label": "Cyt-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "7911", - "label": "(d)CMP, TMP, or (d)UMP + H2O => (deoxy)cytidine, thymidine, or (deoxy)uridine + orthophosphate (NT5C3)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7910", - "label": "RNF111 ubiquitinates SUMOylated XPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7909", - "label": "Expression of CEBPB in adipogenesis", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7908", - "label": "Ub,SUMO:XPC:RAD23:CETN2:Open bubble-dsDNA:PAR-UV-DDB:TFIIH Core:XPA:PAR-PARP1, PAR-PARP2:CHD1L [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7907", - "label": "Beta-catenin is released from the destruction complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7906", - "label": "K63polyUb-APC [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7905", - "label": "CREM isoform 6 (ICER1) [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7904", - "label": "NF-kappaB p50:c-Rel [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7903", - "label": "PIP3:BTK:G beta-gamma complex dissociates to Active BTK, PIP3 and G beta-gamma complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7902", - "label": "IL1B(1-269) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7901", - "label": "PTPN11 dephosphorylates RUNX1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7900", - "label": "ADR, NAd [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "7899", - "label": "hp-IRAK1:3xK63-polyUb-TRAF6:3xUBE2N:UBE2V1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7898", - "label": "NAd [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "7897", - "label": "ISGylated host proteins [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7896", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "7895", - "label": "RUNX1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7894", - "label": "THBS1 gene transcription is stimulated by the complex containing RUNX1, PRMT1 and GATA1 and inhibited by the complex of RUNX1, SIN3A and PRMT6", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7893", - "label": "THBS1 trimer [platelet alpha granule lumen]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7892", - "label": "TGFA(24-98) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7891", - "label": "S1P [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "7890", - "label": "MMPs cleave HB-EGF", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7889", - "label": "NEDD8 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7888", - "label": "Ac-CoA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "7887", - "label": "p-4Y-PLCG1 dissociates from activated FGFR3 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7886", - "label": "NICD1 Q2440* [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7885", - "label": "NICD1 Q2395* [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7884", - "label": "NICD1 P2474Afs*4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7883", - "label": "NICD1 P2514Rfs*4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7882", - "label": "GRB2-1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7881", - "label": "NICD1 PEST domain mutants translocate from cytosol to nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7880", - "label": "NICD1 PEST Domain Mutants [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "7879", - "label": "NICD1 Q2440* [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7878", - "label": "NICD1 P2474Afs*4 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7877", - "label": "NF-KappaB p50:p50:ub-p-IKBA [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7876", - "label": "NF-kappaB p50:p50 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7875", - "label": "NICD1 is phosphorylated by CDK8", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7874", - "label": "NICD1 Q2395* [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7873", - "label": "NICD1 P2514Rfs*4 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7872", - "label": "NEXT1 PEST domain mutants are cleaved to produce NICD1 PEST domain mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7871", - "label": "NEXT1 PEST domain mutants [plasma membrane]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "7870", - "label": "NEXT1 P2514Rfs*4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7869", - "label": "SAR1B:GTP [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7868", - "label": "2xviral dsRNA:2xK63polyUb-DDX58:2xRNF135,TRIM25:2xATP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7867", - "label": "NEXT1 Q2440* [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7866", - "label": "NEXT1 Q2395* [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7865", - "label": "p-4Y-PLCG1 dissociates from activated FGFR3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7864", - "label": "NEXT1 P2474Afs*4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7863", - "label": "NF-kappaB p50:p65:ub-p-IKB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7862", - "label": "Ade-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "7861", - "label": "NOTCH1 HD+PEST domain mutants are cleaved by ADAM10/17 irrespective of ligand binding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7860", - "label": "LPAR1,2,3,5:LPA [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7859", - "label": "NF-kB migrates to the nucleus and turns on transcription", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7858", - "label": "IL1B [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7857", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon ALPK1:ADP-heptose stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "7856", - "label": "RUNX3 translocates to the nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7855", - "label": "NF-kappaB p50,p65,c-Rel dimer [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "7854", - "label": "Dissociation of phosphorylated PLCG1 from ligand-responsive p-6Y-EGFR mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7853", - "label": "AGTR1 [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7852", - "label": "PPTN11 dephosphorylates SPRY2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7851", - "label": "AVP(20-28) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7850", - "label": "Phosphorylated SMAD2/3 dissociates from TGFBR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7849", - "label": "Disassembly of COPII coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7848", - "label": "CEBPB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7847", - "label": "SCF-beta-TrCP ubiquitinylates IkB", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7846", - "label": "GYS1 catalyzes the incorporation of phosphoglucose into glycogen-GYG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7845", - "label": "EP300 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7844", - "label": "COPII vesicle with MHC class I [ER to Golgi transport vesicle membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7843", - "label": "PF4 gene transcription is stimulated by RUNX1:CBFB", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7842", - "label": "PF4(48-101) [platelet alpha granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7841", - "label": "Vesicle budding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "7840", - "label": "PTPN11 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7839", - "label": "CDK8 phosphorylates NICD1 PEST domain mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7838", - "label": "Estrogen-responsive MYC gene expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7837", - "label": "Budding of COPII coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7836", - "label": "COPI vesicle uncoating at the ER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7835", - "label": "RAB1:GTP:coatomer:p24 dimers:SEC22B:cargo:NBAS:RINT1:ZW10:STX18:USE1L:BNIP1 [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7834", - "label": "PF4(32-101) [platelet alpha granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7833", - "label": "SOCS2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7832", - "label": "RAB6:GTP displaces PAFAH1B1 from dynein:dynactin complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7831", - "label": "NICD1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7830", - "label": "ADAM10/17 cleaves ligand-bound NOTCH1 PEST domain mutants to produce NEXT1 PEST domain mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7829", - "label": "TGFA precursor [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7828", - "label": "ADORA2B:Ade-Rib:GsGTP dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7827", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7826", - "label": "Dissociation of Rho GTP:GDP from GDI complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7825", - "label": "Phosphorylation of 4E-BP1 by activated mTORC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7824", - "label": "AREG precursor [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7823", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon TLR3 stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "7822", - "label": "Deacetylation of cleaved cohesin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7821", - "label": "Cleaved Cohesin:PDS5:WAPAL [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7820", - "label": "SIK1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7819", - "label": "PGE2 [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "7818", - "label": "RHOA:GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7817", - "label": "The Ligand:GPCR:Gq complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7816", - "label": "MON1:CCZ1 exchanges GTP for GDP on RAB7", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7815", - "label": "CASR:Ca2+ [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7814", - "label": "OTUD5 deubiquitinates TRAF3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7813", - "label": "Active PLC-gamma1 dissociates from EGFR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7812", - "label": "CXCR4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7811", - "label": "ARHGDIA [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7810", - "label": "p-4Y-PLCG1 dissociates from activated FGFR2 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7809", - "label": "TGFB1 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7808", - "label": "AcCho [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "7807", - "label": "Cho is acetylated to AcCho by CHAT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7806", - "label": "(d)CMP, TMP, or (d)UMP + H2O => (deoxy)cytidine, thymidine, or (deoxy)uridine + orthophosphate (NT5C1A)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7805", - "label": "MCHR1,MCHR2:PMCH(147-165) [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7804", - "label": "RNF4 ubiquitinates MDC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7803", - "label": "AREG(101-187) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7802", - "label": "NMUR1,NMUR2:NMU [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7801", - "label": "TMP, uridine 2', 3', or 5' monophosphates, or deoxyuridine 3' or 5' monophosphates + H2O => thymidine or (deoxy)uridine + orthophosphate [NT5C]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7800", - "label": "p-BMAL1:p-CLOCK,NPAS2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7799", - "label": "NICD1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7798", - "label": "NICD1 traffics to nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7797", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon TLR stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "7796", - "label": "G-protein beta-gamma complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7795", - "label": "Exocytosis of specific granule membrane proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7794", - "label": "FGL2 [ficolin-1-rich granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7793", - "label": "NEXT1 is cleaved to produce NICD1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7792", - "label": "BTRC [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7791", - "label": "Vesicle is tethered through binding GOLGA2:GORASP1, GOLGB1 and the COG complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7790", - "label": "DNA DNA DSBs:p-MRN:p-S1981,Ac-K3016-ATM:KAT5:K63PolyUb-K14,K16,p-S139-H2AFX,Me2K21-HIST1H4A-Nucleosome:SUMO2:K1840,p-5T-MDC1:p-S102-WHSC1:RNF8:Zn2+:SUMO1:p-T4827-HERC2:UBE2N:UBE2V2:RNF168:PIAS4:p-S25,S1778-TP53BP1:p-5S,2T-BRCA1-A complex [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7789", - "label": "RAB1:GTP:USO1:coatomer:PalmC-YKT6:p24 dimers:cargo:spectrin:anykrin [transport vesicle]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7788", - "label": "Release of p-PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7787", - "label": "Stimulation of IL8 transcription in senescent cells", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7786", - "label": "G-protein alpha (i):GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7785", - "label": "Dissociation of phosphorylated PLC-gamma 1 from p-EGFRvIII mutant", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7784", - "label": "p-4Y-PLCG1 dissociates from activated FGFR2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7783", - "label": "Negative regulation of DDX58/IFIH1 signaling by RNF216", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7782", - "label": "Retinoic acid activates HOXB1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7781", - "label": "GDI1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7780", - "label": "RNF8:Zn2+ [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7779", - "label": "KIFC1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7778", - "label": "NF-kappaB translocates from the cytosol to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7777", - "label": "K63polyUb [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "7776", - "label": "K48PolyUb-K21,22-p-S32,36-IkBA:NF-kB complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7775", - "label": "HDAC3 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7774", - "label": "Separation of sister chromatids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7773", - "label": "Release of E3 from polyubiquitinated substrate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7772", - "label": "Fatty acid ligands activate PPARA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7771", - "label": "NEXT1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7770", - "label": "Equilibrative transport (export) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7769", - "label": "Hypophosphorylation of RNA Pol II CTD by FCP1P protein", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7768", - "label": "HBEGF(63-148) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7767", - "label": "AcCho [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "7766", - "label": "p-4Y-PLCG1 dissociates from activated FGFR4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7765", - "label": "p-Y1105-ARHGAP35 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7764", - "label": "p190RhoGEF exchanges GTP for GDP on RHOA, activating it", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7763", - "label": "JAG1 gene expression is inhibited by RUNX3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7762", - "label": "Phosphorylation of CTLA-4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7761", - "label": "Fusion of viral membrane with host cell membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7760", - "label": "Viral core surrounded by Matrix layer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7759", - "label": "ZFYVE9-1 [early endosome membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7758", - "label": "UBE2N:UBE2V1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7757", - "label": "p-4Y-PLCG1 dissociates from activated FGFR4 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7756", - "label": "BMAL1:CLOCK,NPAS2 heterodimer is phosphorylated and translocates to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7755", - "label": "DNA DSB:p-MRN:p-S1981,Ac-K3016-ATM:KAT5 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7754", - "label": "myristoylated nef [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7753", - "label": "SPRY2 binds CBL", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7752", - "label": "Expression of BMAL1 (ARNTL).", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7751", - "label": "p115-RhoGEF activation of RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7750", - "label": "ARFGAPs stimulate ARF GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7749", - "label": "Ca2+ [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "7748", - "label": "GDI2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7747", - "label": "Complex of NOTCH1 with its ligand is cleaved to produce NEXT1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7746", - "label": "PI(3,4,5)P3 [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "7745", - "label": "The Ligand:GPCR:Gi complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7744", - "label": "NOTCH1 HD domain mutants are cleaved to produce NEXT1 irrespective of ligand binding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7743", - "label": "MyrG-p-Y419-SRC [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7742", - "label": "MYC [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7741", - "label": "The Ligand:GPCR:Gs complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "7740", - "label": "SNAP25 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7739", - "label": "PTHLH [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7738", - "label": "Recovery of RNA synthesis after TC-NER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7737", - "label": "Dissociation of clathrin-associated proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7736", - "label": "NFKB1:RELA translocates from the cytosol to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7735", - "label": "NFKB1(1-433):RELA [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7734", - "label": "SAR1 Activation And Membrane Binding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7733", - "label": "SAR1B:GDP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7732", - "label": "SAR1B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7731", - "label": "FPR2:FPR2 ligands [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7730", - "label": "FPR2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7729", - "label": "PIAS4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7728", - "label": "GPR39 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7727", - "label": "26S proteasome processes K48PolyUb-K21,22-p-S32,36-IkBA:NF-kB complex to form NF-kB complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7726", - "label": "Transfer of SUMO1 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7725", - "label": "Release of PLCG from FCGR3A", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7724", - "label": "Loss of SAR1B GTPase", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7723", - "label": "Dissociation of the Gi alpha:G olf complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7722", - "label": "TGFA precursor [ER to Golgi transport vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7721", - "label": "GNAL [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7720", - "label": "ARHGAP35 stimulates RHOA GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7719", - "label": "PIAS4 SUMOylates NR4A2 with SUMO2,3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7718", - "label": "DDX58 is K63 polyubiquitinated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7717", - "label": "AREG precursor [ER to Golgi transport vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7716", - "label": "2x DDX58 ligand:2x DDX58:2xATP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7715", - "label": "NPAS2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7714", - "label": "RNF152 polyubiquitinates RRAGA", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7713", - "label": "ARNTL [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7712", - "label": "ISGylation of host proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7711", - "label": "UBE2N:UBE2V2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7710", - "label": "p-S102-WHSC1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7709", - "label": "viral dsRNA binds DDX58", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7708", - "label": "RhoA is activated by nucleotide exchange and inhibits axonal growth", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7707", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7706", - "label": "GYS2 catalyzes the incorporation of phosphoglucose into glycogen-GYG2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7705", - "label": "RHOA:GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7704", - "label": "Transfer of NEDD8 to AcM-UBE2M", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7703", - "label": "NGEF exchanges GTP for GDP on RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7702", - "label": "SEC13 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7701", - "label": "TRAF3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7700", - "label": "Caspase-8 cleaves IL1B precursor", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7699", - "label": "TRAF6 binding leads to IRAK1:TRAF6 release", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7698", - "label": "Association of Ku heterodimer with ends of DNA double-strand break", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7697", - "label": "NCOR1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7696", - "label": "p-2S,S376,T,T209,T387-IRAK1:TRAF6 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7695", - "label": "p-SPHK1 phosphorylates sphingosine to sphingosine 1-phosphate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7694", - "label": "NR4A2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7693", - "label": "RASA1 stimulates RAS GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7692", - "label": "PIAS4 SUMOylates MDC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7691", - "label": "CGA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7690", - "label": "SUMO2:UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7689", - "label": "GCG(53-81) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7688", - "label": "CBL [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7687", - "label": "SRC autophosphorylation is positively regulated by InlA-bound CDH1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7686", - "label": "Cap Binding Complex (CBC) [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7685", - "label": "NCBP2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7684", - "label": "viral dsRNA:IFIH1, viral dsRNA:K63polyUb-DDX58:MAVS [mitochondrial outer membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7683", - "label": "The p75NTR:NgR:MDGI complex reduces RHOA-GDI activity, displacing RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7682", - "label": "Retrograde vesicle is tethered at the ER by the NRZ complex and t-SNAREs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7681", - "label": "TNFRSF1B [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7680", - "label": "AP-2 Complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7679", - "label": "NCBP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7678", - "label": "Overexpressed HIST1H2AC and ESR1:ESTG bind MYC and BCL2 genes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7677", - "label": "UBE2N [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7676", - "label": "Nef mediated disruption of CD4:Lck Complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7675", - "label": "Degradation of CD4", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7674", - "label": "Release of acetylcholine at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7673", - "label": "BTRC:CUL1:SKP1 (SCF-beta-TrCP1) ubiquitinylates PER proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7672", - "label": "TRAF6 is K63 poly-ubiquitinated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7671", - "label": "Acetylcholine Loaded Synaptic Vesicle [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7670", - "label": "Retinoic acid activates HOXD4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7669", - "label": "SUMO1:C93-UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7668", - "label": "G-proteins dissociate from plasma-membrane estrogen receptors", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7667", - "label": "RNF168 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7666", - "label": "TGFBR2 is recruited to tight junctions after TGF-beta stimulation", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7665", - "label": "Retinoic acid activates HOXA1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7664", - "label": "CSNK1D phosphorylates SEC23", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7663", - "label": "cIAP1,2 ubiquitinates NIK in cIAP1,2:TRAF2::TRAF3:NIK", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7662", - "label": "beta-TRCP ubiquitinates IkB-alpha in p-S32,33-IkB-alpha:NF-kB complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7661", - "label": "TNFRSF1B [specific granule membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "7660", - "label": "GMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "7659", - "label": "RUNX3 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7658", - "label": "MYC gene expression is enhanced by E2F1, STAT3, and CEBPB and repressed by CEBPA", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7657", - "label": "Exocytosis of platelet alpha granule contents", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7656", - "label": "Histone H2A [nucleoplasm]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "7655", - "label": "NMUR2:NMS [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7654", - "label": "UBE2N:UBE2V1 dissociates from hp-IRAK1:3xK63-polyUb-TRAF6:3xUBE2N:UBE2V1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "7653", - "label": "mature mRNA (eukaryotic, capped and deadenylated) [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "7652", - "label": "Exosome Complex hydrolyzes mRNA by 3' to 5' exoribonuclease digestion", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7651", - "label": "K63PolyUb:K14,K16,p-S139-H2AFX,Me2K21-HIST1H4A-Nucleosome [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7650", - "label": "PER1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "7649", - "label": "LCK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "7648", - "label": "coatomer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "7647", - "label": "SUMOylation of XPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "7646", - "label": "PAFAH1B1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - } - ], - "edges": [ - { - "id": "8480", - "label": "572416 (-) 572418", - "from": "7998", - "to": "7996", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8479", - "label": "304129 (-) 299541", - "from": "7997", - "to": "7817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8478", - "label": "572418 (-) 1031197", - "from": "7996", - "to": "7991", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8477", - "label": "572418 (-) 994566", - "from": "7996", - "to": "7917", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8476", - "label": "572417 (-) 572416", - "from": "7995", - "to": "7998", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8475", - "label": "427012 (-) 1488375", - "from": "7994", - "to": "7830", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8474", - "label": "427012 (-) 426722", - "from": "7994", - "to": "7747", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8473", - "label": "427012 (-) 1488252", - "from": "7994", - "to": "7861", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8472", - "label": "427012 (-) 1488616", - "from": "7994", - "to": "7744", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8471", - "label": "492556 (-) 1684105", - "from": "7993", - "to": "7770", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8470", - "label": "419867 (-) 960695", - "from": "7992", - "to": "7934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8469", - "label": "1031197 (-) 992230", - "from": "7991", - "to": "7653", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8468", - "label": "289822 (-) 94950", - "from": "7990", - "to": "7746", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8467", - "label": "305190 (-) 299541", - "from": "7989", - "to": "7817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8466", - "label": "1882150 (-) 2098710", - "from": "7988", - "to": "7816", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8465", - "label": "1341480 (-) 320330", - "from": "7987", - "to": "7697", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8464", - "label": "1412138 (-) 1411783", - "from": "7986", - "to": "7754", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8463", - "label": "616491 (-) 550154", - "from": "7985", - "to": "7915", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8462", - "label": "616491 (-) 616607", - "from": "7985", - "to": "7949", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8461", - "label": "616491 (-) 616843", - "from": "7985", - "to": "7855", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8460", - "label": "616491 (-) 616818", - "from": "7985", - "to": "7876", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8459", - "label": "616491 (-) 616732", - "from": "7985", - "to": "7904", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8458", - "label": "616492 (-) 616491", - "from": "7984", - "to": "7985", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8457", - "label": "616493 (-) 616491", - "from": "7983", - "to": "7985", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8456", - "label": "1473583 (-) 1411783", - "from": "7982", - "to": "7754", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8455", - "label": "1668145 (-) 251616", - "from": "7981", - "to": "7749", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8454", - "label": "54322 (-) 743241", - "from": "7980", - "to": "7698", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8453", - "label": "1226805 (-) 1243896", - "from": "7979", - "to": "7738", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8452", - "label": "2131002 (-) 2131705", - "from": "7978", - "to": "7737", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8451", - "label": "299067 (-) 299541", - "from": "7977", - "to": "7817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8450", - "label": "421954 (-) 951458", - "from": "7976", - "to": "7945", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8449", - "label": "955460 (-) 955573", - "from": "7975", - "to": "7936", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8448", - "label": "1952840 (-) 998275", - "from": "7974", - "to": "7686", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8447", - "label": "62537 (-) 743241", - "from": "7973", - "to": "7698", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8446", - "label": "2131021 (-) 2131705", - "from": "7972", - "to": "7737", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8445", - "label": "703570 (-) 1410943", - "from": "7971", - "to": "7687", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8444", - "label": "304210 (-) 299541", - "from": "7970", - "to": "7817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8443", - "label": "318548 (-) 324862", - "from": "7969", - "to": "7922", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8442", - "label": "950359 (-) 569211", - "from": "7968", - "to": "7688", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8441", - "label": "421977 (-) 421954", - "from": "7967", - "to": "7976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8440", - "label": "950362 (-) 950359", - "from": "7966", - "to": "7968", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8439", - "label": "421979 (-) 421977", - "from": "7965", - "to": "7967", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8438", - "label": "46171 (-) 703760", - "from": "7964", - "to": "7907", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8437", - "label": "320604 (-) 1275213", - "from": "7963", - "to": "7894", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8436", - "label": "712804 (-) 703763", - "from": "7962", - "to": "7906", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8435", - "label": "1084519 (-) 1084321", - "from": "7961", - "to": "7671", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8434", - "label": "1911913 (-) 978264", - "from": "7960", - "to": "7889", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8433", - "label": "500848 (-) 492556", - "from": "7959", - "to": "7993", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8432", - "label": "916596 (-) 917308", - "from": "7958", - "to": "7706", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8431", - "label": "916596 (-) 916923", - "from": "7958", - "to": "7846", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8430", - "label": "299127 (-) 299541", - "from": "7957", - "to": "7817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8429", - "label": "314489 (-) 299541", - "from": "7956", - "to": "7817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8428", - "label": "160903 (-) 1382672", - "from": "7955", - "to": "7909", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8427", - "label": "1867917 (-) 1871665", - "from": "7954", - "to": "7714", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8426", - "label": "1417364 (-) 1226805", - "from": "7953", - "to": "7979", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8425", - "label": "304276 (-) 299541", - "from": "7952", - "to": "7817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8424", - "label": "422042 (-) 421979", - "from": "7951", - "to": "7965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8423", - "label": "571548 (-) 571803", - "from": "7950", - "to": "7852", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8422", - "label": "616607 (-) 617080", - "from": "7949", - "to": "7778", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8421", - "label": "422049 (-) 422042", - "from": "7948", - "to": "7951", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8420", - "label": "422049 (-) 573953", - "from": "7948", - "to": "7825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8419", - "label": "565410 (-) 1200984", - "from": "7947", - "to": "7695", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8418", - "label": "133281 (-) 1484122", - "from": "7946", - "to": "7887", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8417", - "label": "133281 (-) 1485345", - "from": "7946", - "to": "7810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8416", - "label": "133281 (-) 1485501", - "from": "7946", - "to": "7757", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8415", - "label": "133281 (-) 289149", - "from": "7946", - "to": "7865", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8414", - "label": "133281 (-) 291429", - "from": "7946", - "to": "7784", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8413", - "label": "133281 (-) 291483", - "from": "7946", - "to": "7766", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8412", - "label": "951458 (-) 421558", - "from": "7945", - "to": "7759", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8411", - "label": "1952931 (-) 998276", - "from": "7944", - "to": "7685", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8410", - "label": "1952931 (-) 998290", - "from": "7944", - "to": "7679", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8409", - "label": "616621 (-) 616491", - "from": "7943", - "to": "7985", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8408", - "label": "1116334 (-) 593090", - "from": "7942", - "to": "7932", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8407", - "label": "1793199 (-) 51443", - "from": "7941", - "to": "7923", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8406", - "label": "92336 (-) 1243896", - "from": "7940", - "to": "7738", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8405", - "label": "923825 (-) 77681", - "from": "7939", - "to": "7690", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8404", - "label": "64690 (-) 1886473", - "from": "7938", - "to": "7916", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8403", - "label": "64690 (-) 923825", - "from": "7938", - "to": "7939", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8402", - "label": "64690 (-) 67353", - "from": "7938", - "to": "7726", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8401", - "label": "887987 (-) 888278", - "from": "7937", - "to": "7841", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8400", - "label": "955573 (-) 952711", - "from": "7936", - "to": "7858", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8399", - "label": "955574 (-) 955573", - "from": "7935", - "to": "7936", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8398", - "label": "960695 (-) 960987", - "from": "7934", - "to": "7840", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8397", - "label": "955580 (-) 955573", - "from": "7933", - "to": "7936", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8396", - "label": "593090 (-) 1411759", - "from": "7932", - "to": "7761", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8395", - "label": "243911 (-) 2680", - "from": "7931", - "to": "7777", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8394", - "label": "1238218 (-) 1238006", - "from": "7930", - "to": "7647", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8393", - "label": "333006 (-) 331494", - "from": "7929", - "to": "7745", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8392", - "label": "144608 (-) 151325", - "from": "7928", - "to": "7725", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8391", - "label": "144608 (-) 289822", - "from": "7928", - "to": "7990", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8390", - "label": "875746 (-) 2111986", - "from": "7927", - "to": "7832", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8389", - "label": "1337573 (-) 1337326", - "from": "7926", - "to": "7650", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8388", - "label": "962799 (-) 962359", - "from": "7925", - "to": "7709", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8387", - "label": "962799 (-) 1794867", - "from": "7925", - "to": "7712", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8386", - "label": "743664 (-) 1341480", - "from": "7924", - "to": "7987", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8385", - "label": "743664 (-) 1341349", - "from": "7924", - "to": "7670", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8384", - "label": "743664 (-) 1341038", - "from": "7924", - "to": "7782", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8383", - "label": "743664 (-) 1340336", - "from": "7924", - "to": "7665", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8382", - "label": "51443 (-) 243911", - "from": "7923", - "to": "7931", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8381", - "label": "51443 (-) 391560", - "from": "7923", - "to": "7857", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8380", - "label": "51443 (-) 248331", - "from": "7923", - "to": "7823", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8379", - "label": "51443 (-) 616002", - "from": "7923", - "to": "7797", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8378", - "label": "324862 (-) 321328", - "from": "7922", - "to": "7715", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8377", - "label": "660736 (-) 2062814", - "from": "7921", - "to": "7838", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8376", - "label": "504065 (-) 504078", - "from": "7920", - "to": "7911", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8375", - "label": "504065 (-) 504360", - "from": "7920", - "to": "7806", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8374", - "label": "504065 (-) 504377", - "from": "7920", - "to": "7801", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8373", - "label": "1953027 (-) 998275", - "from": "7919", - "to": "7686", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8372", - "label": "955652 (-) 955580", - "from": "7918", - "to": "7933", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8371", - "label": "955652 (-) 955574", - "from": "7918", - "to": "7935", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8370", - "label": "955652 (-) 955460", - "from": "7918", - "to": "7975", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8369", - "label": "994566 (-) 992230", - "from": "7917", - "to": "7653", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8368", - "label": "1886473 (-) 1238218", - "from": "7916", - "to": "7930", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8367", - "label": "550154 (-) 617080", - "from": "7915", - "to": "7778", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8366", - "label": "550154 (-) 550650", - "from": "7915", - "to": "7736", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8365", - "label": "550154 (-) 646528", - "from": "7915", - "to": "7859", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8364", - "label": "504075 (-) 1682942", - "from": "7914", - "to": "7827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8363", - "label": "504075 (-) 1684283", - "from": "7914", - "to": "7707", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8362", - "label": "504076 (-) 1684283", - "from": "7913", - "to": "7707", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8361", - "label": "504076 (-) 1682942", - "from": "7913", - "to": "7827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8360", - "label": "504077 (-) 1682942", - "from": "7912", - "to": "7827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8359", - "label": "504077 (-) 1684283", - "from": "7912", - "to": "7707", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8358", - "label": "504078 (-) 504076", - "from": "7911", - "to": "7913", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8357", - "label": "504078 (-) 504077", - "from": "7911", - "to": "7912", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8356", - "label": "504078 (-) 504075", - "from": "7911", - "to": "7914", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8355", - "label": "1237263 (-) 55093", - "from": "7910", - "to": "7711", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8354", - "label": "1382672 (-) 441773", - "from": "7909", - "to": "7848", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8353", - "label": "1237265 (-) 1237263", - "from": "7908", - "to": "7910", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8352", - "label": "703760 (-) 703570", - "from": "7907", - "to": "7971", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8351", - "label": "703763 (-) 703760", - "from": "7906", - "to": "7907", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8350", - "label": "1337624 (-) 1337573", - "from": "7905", - "to": "7926", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8349", - "label": "616732 (-) 617080", - "from": "7904", - "to": "7778", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8348", - "label": "1522976 (-) 293444", - "from": "7903", - "to": "7796", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8347", - "label": "955707 (-) 955652", - "from": "7902", - "to": "7918", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8346", - "label": "955707 (-) 1156931", - "from": "7902", - "to": "7700", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8345", - "label": "1272124 (-) 1265996", - "from": "7901", - "to": "7895", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8344", - "label": "298309 (-) 299541", - "from": "7900", - "to": "7817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8343", - "label": "241990 (-) 958434", - "from": "7899", - "to": "7654", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8342", - "label": "298310 (-) 299541", - "from": "7898", - "to": "7817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8341", - "label": "1793352 (-) 1793199", - "from": "7897", - "to": "7941", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8340", - "label": "298315 (-) 299541", - "from": "7896", - "to": "7817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8339", - "label": "1265996 (-) 1275213", - "from": "7895", - "to": "7894", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8338", - "label": "1265996 (-) 1275346", - "from": "7895", - "to": "7843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8337", - "label": "1275213 (-) 1275214", - "from": "7894", - "to": "7893", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8336", - "label": "1275214 (-) 1782717", - "from": "7893", - "to": "7657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8335", - "label": "101711 (-) 1490324", - "from": "7892", - "to": "7854", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8334", - "label": "101711 (-) 1490531", - "from": "7892", - "to": "7785", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8333", - "label": "101711 (-) 291357", - "from": "7892", - "to": "7813", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8332", - "label": "554324 (-) 554327", - "from": "7891", - "to": "7890", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8331", - "label": "554327 (-) 98964", - "from": "7890", - "to": "7768", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8330", - "label": "978264 (-) 1916734", - "from": "7889", - "to": "7704", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8329", - "label": "193879 (-) 1083941", - "from": "7888", - "to": "7807", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8328", - "label": "1484122 (-) 144608", - "from": "7887", - "to": "7928", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8327", - "label": "1488222 (-) 1488347", - "from": "7886", - "to": "7839", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8326", - "label": "1488225 (-) 1488347", - "from": "7885", - "to": "7839", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8325", - "label": "1488226 (-) 1488347", - "from": "7884", - "to": "7839", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8324", - "label": "1488228 (-) 1488347", - "from": "7883", - "to": "7839", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8323", - "label": "132458 (-) 1214047", - "from": "7882", - "to": "7788", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8322", - "label": "1488236 (-) 1488225", - "from": "7881", - "to": "7885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8321", - "label": "1488236 (-) 1488228", - "from": "7881", - "to": "7883", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8320", - "label": "1488236 (-) 1488222", - "from": "7881", - "to": "7886", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8319", - "label": "1488236 (-) 1488226", - "from": "7881", - "to": "7884", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8318", - "label": "1488238 (-) 1488236", - "from": "7880", - "to": "7881", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8317", - "label": "1488239 (-) 1488236", - "from": "7879", - "to": "7881", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8316", - "label": "1488240 (-) 1488236", - "from": "7878", - "to": "7881", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8315", - "label": "616817 (-) 616491", - "from": "7877", - "to": "7985", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8314", - "label": "616818 (-) 617080", - "from": "7876", - "to": "7778", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8313", - "label": "1279345 (-) 318548", - "from": "7875", - "to": "7969", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8312", - "label": "1279345 (-) 321983", - "from": "7875", - "to": "7845", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8311", - "label": "1488242 (-) 1488236", - "from": "7874", - "to": "7881", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8310", - "label": "1488241 (-) 1488236", - "from": "7873", - "to": "7881", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8309", - "label": "1488243 (-) 1488239", - "from": "7872", - "to": "7879", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8308", - "label": "1488243 (-) 1488240", - "from": "7872", - "to": "7878", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8307", - "label": "1488243 (-) 1488241", - "from": "7872", - "to": "7873", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8306", - "label": "1488243 (-) 1488242", - "from": "7872", - "to": "7874", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8305", - "label": "1488243 (-) 1488238", - "from": "7872", - "to": "7880", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8304", - "label": "1488245 (-) 1488243", - "from": "7871", - "to": "7872", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8303", - "label": "1488246 (-) 1488243", - "from": "7870", - "to": "7872", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8302", - "label": "883065 (-) 1200606", - "from": "7869", - "to": "7837", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8301", - "label": "953713 (-) 1159708", - "from": "7868", - "to": "7814", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8300", - "label": "1488248 (-) 1488243", - "from": "7867", - "to": "7872", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8299", - "label": "1488249 (-) 1488243", - "from": "7866", - "to": "7872", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8298", - "label": "289149 (-) 144608", - "from": "7865", - "to": "7928", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8297", - "label": "1488250 (-) 1488243", - "from": "7864", - "to": "7872", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8296", - "label": "616831 (-) 616491", - "from": "7863", - "to": "7985", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8295", - "label": "330112 (-) 409084", - "from": "7862", - "to": "7828", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8294", - "label": "330112 (-) 369394", - "from": "7862", - "to": "7741", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8293", - "label": "330112 (-) 331494", - "from": "7862", - "to": "7745", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8292", - "label": "1488252 (-) 1488248", - "from": "7861", - "to": "7867", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8291", - "label": "1488252 (-) 1488246", - "from": "7861", - "to": "7870", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8290", - "label": "1488252 (-) 1488245", - "from": "7861", - "to": "7871", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8289", - "label": "1488252 (-) 1488250", - "from": "7861", - "to": "7864", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8288", - "label": "1488252 (-) 1488249", - "from": "7861", - "to": "7866", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8287", - "label": "302460 (-) 299541", - "from": "7860", - "to": "7817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8286", - "label": "646528 (-) 550651", - "from": "7859", - "to": "7735", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8285", - "label": "952711 (-) 958275", - "from": "7858", - "to": "7699", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8284", - "label": "391560 (-) 2680", - "from": "7857", - "to": "7777", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8283", - "label": "433546 (-) 433081", - "from": "7856", - "to": "7659", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8282", - "label": "616843 (-) 617080", - "from": "7855", - "to": "7778", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8281", - "label": "1490324 (-) 144608", - "from": "7854", - "to": "7928", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8280", - "label": "2131348 (-) 2131705", - "from": "7853", - "to": "7737", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8279", - "label": "571803 (-) 132458", - "from": "7852", - "to": "7882", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8278", - "label": "301477 (-) 299541", - "from": "7851", - "to": "7817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8277", - "label": "421285 (-) 419867", - "from": "7850", - "to": "7992", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8276", - "label": "1200554 (-) 43842", - "from": "7849", - "to": "7702", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8275", - "label": "441773 (-) 1386423", - "from": "7848", - "to": "7658", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8274", - "label": "616886 (-) 616493", - "from": "7847", - "to": "7983", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8273", - "label": "616886 (-) 616831", - "from": "7847", - "to": "7863", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8272", - "label": "616886 (-) 616621", - "from": "7847", - "to": "7943", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8271", - "label": "616886 (-) 616817", - "from": "7847", - "to": "7877", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8270", - "label": "616886 (-) 616492", - "from": "7847", - "to": "7984", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8269", - "label": "916923 (-) 504065", - "from": "7846", - "to": "7920", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8268", - "label": "321983 (-) 322256", - "from": "7845", - "to": "7752", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8267", - "label": "321983 (-) 1275213", - "from": "7845", - "to": "7894", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8266", - "label": "321983 (-) 324862", - "from": "7845", - "to": "7922", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8265", - "label": "1200581 (-) 1200554", - "from": "7844", - "to": "7849", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8264", - "label": "1275346 (-) 1275348", - "from": "7843", - "to": "7842", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8263", - "label": "1275346 (-) 1275362", - "from": "7843", - "to": "7834", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8262", - "label": "1275348 (-) 1782717", - "from": "7842", - "to": "7657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8261", - "label": "888278 (-) 883456", - "from": "7841", - "to": "7732", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8260", - "label": "960987 (-) 1272124", - "from": "7840", - "to": "7901", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8259", - "label": "1488347 (-) 318548", - "from": "7839", - "to": "7969", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8258", - "label": "1488347 (-) 321983", - "from": "7839", - "to": "7845", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8257", - "label": "2062814 (-) 418544", - "from": "7838", - "to": "7742", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8256", - "label": "1200606 (-) 1200581", - "from": "7837", - "to": "7844", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8255", - "label": "2112990 (-) 874479", - "from": "7836", - "to": "7648", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8254", - "label": "2112991 (-) 2112990", - "from": "7835", - "to": "7836", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8253", - "label": "1275362 (-) 1782717", - "from": "7834", - "to": "7657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8252", - "label": "1798639 (-) 1911913", - "from": "7833", - "to": "7960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8251", - "label": "2111986 (-) 49150", - "from": "7832", - "to": "7646", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8250", - "label": "423413 (-) 1488347", - "from": "7831", - "to": "7839", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8249", - "label": "423413 (-) 1279345", - "from": "7831", - "to": "7875", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8248", - "label": "1488375 (-) 1488250", - "from": "7830", - "to": "7864", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8247", - "label": "1488375 (-) 1488246", - "from": "7830", - "to": "7870", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8246", - "label": "1488375 (-) 1488245", - "from": "7830", - "to": "7871", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8245", - "label": "1488375 (-) 1488248", - "from": "7830", - "to": "7867", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8244", - "label": "1488375 (-) 1488249", - "from": "7830", - "to": "7866", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8243", - "label": "882169 (-) 888278", - "from": "7829", - "to": "7841", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8242", - "label": "882169 (-) 883490", - "from": "7829", - "to": "7724", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8241", - "label": "409084 (-) 293444", - "from": "7828", - "to": "7796", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8240", - "label": "1682942 (-) 330112", - "from": "7827", - "to": "7862", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8239", - "label": "2059776 (-) 653856", - "from": "7826", - "to": "7811", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8238", - "label": "573953 (-) 572417", - "from": "7825", - "to": "7995", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8237", - "label": "882178 (-) 883490", - "from": "7824", - "to": "7724", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8236", - "label": "882178 (-) 888278", - "from": "7824", - "to": "7841", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8235", - "label": "248331 (-) 2680", - "from": "7823", - "to": "7777", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8234", - "label": "637452 (-) 193879", - "from": "7822", - "to": "7888", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8233", - "label": "637453 (-) 637452", - "from": "7821", - "to": "7822", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8232", - "label": "1337870 (-) 1337573", - "from": "7820", - "to": "7926", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8231", - "label": "299537 (-) 299541", - "from": "7819", - "to": "7817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8230", - "label": "653843 (-) 730789", - "from": "7818", - "to": "7764", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8229", - "label": "653843 (-) 737088", - "from": "7818", - "to": "7703", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8228", - "label": "653843 (-) 1538767", - "from": "7818", - "to": "7751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8227", - "label": "653843 (-) 654138", - "from": "7818", - "to": "7708", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8226", - "label": "299541 (-) 251616", - "from": "7817", - "to": "7749", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8225", - "label": "2098710 (-) 2052724", - "from": "7816", - "to": "7781", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8224", - "label": "2098710 (-) 2052833", - "from": "7816", - "to": "7748", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8223", - "label": "299544 (-) 299541", - "from": "7815", - "to": "7817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8222", - "label": "1159708 (-) 2680", - "from": "7814", - "to": "7777", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8221", - "label": "291357 (-) 144608", - "from": "7813", - "to": "7928", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8220", - "label": "343583 (-) 331494", - "from": "7812", - "to": "7745", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8219", - "label": "653856 (-) 654215", - "from": "7811", - "to": "7683", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8218", - "label": "1485345 (-) 144608", - "from": "7810", - "to": "7928", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8217", - "label": "421410 (-) 433546", - "from": "7809", - "to": "7856", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8216", - "label": "1083940 (-) 1084519", - "from": "7808", - "to": "7961", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8215", - "label": "1083941 (-) 1083940", - "from": "7807", - "to": "7808", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8214", - "label": "504360 (-) 504077", - "from": "7806", - "to": "7912", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8213", - "label": "504360 (-) 504075", - "from": "7806", - "to": "7914", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8212", - "label": "504360 (-) 504076", - "from": "7806", - "to": "7913", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8211", - "label": "311850 (-) 299541", - "from": "7805", - "to": "7817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8210", - "label": "77362 (-) 62263", - "from": "7804", - "to": "7710", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8209", - "label": "77362 (-) 54189", - "from": "7804", - "to": "7667", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8208", - "label": "77362 (-) 54322", - "from": "7804", - "to": "7980", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8207", - "label": "77362 (-) 55277", - "from": "7804", - "to": "7651", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8206", - "label": "77362 (-) 54900", - "from": "7804", - "to": "7780", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8205", - "label": "77362 (-) 55093", - "from": "7804", - "to": "7711", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8204", - "label": "77362 (-) 61124", - "from": "7804", - "to": "7755", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8203", - "label": "77362 (-) 54026", - "from": "7804", - "to": "7729", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8202", - "label": "77362 (-) 62537", - "from": "7804", - "to": "7973", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8201", - "label": "101938 (-) 1490531", - "from": "7803", - "to": "7785", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8200", - "label": "101938 (-) 1490324", - "from": "7803", - "to": "7854", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8199", - "label": "101938 (-) 291357", - "from": "7803", - "to": "7813", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8198", - "label": "309814 (-) 299541", - "from": "7802", - "to": "7817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8197", - "label": "504377 (-) 504076", - "from": "7801", - "to": "7913", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8196", - "label": "504377 (-) 504075", - "from": "7801", - "to": "7914", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8195", - "label": "321084 (-) 1337573", - "from": "7800", - "to": "7926", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8194", - "label": "425533 (-) 425532", - "from": "7799", - "to": "7798", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8193", - "label": "425533 (-) 1488236", - "from": "7799", - "to": "7881", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8192", - "label": "425532 (-) 423413", - "from": "7798", - "to": "7831", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8191", - "label": "616002 (-) 2680", - "from": "7797", - "to": "7777", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8190", - "label": "293444 (-) 299541", - "from": "7796", - "to": "7817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8189", - "label": "1107533 (-) 310021", - "from": "7795", - "to": "7730", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8188", - "label": "1107533 (-) 354035", - "from": "7795", - "to": "7740", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8187", - "label": "1119825 (-) 1116334", - "from": "7794", - "to": "7942", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8186", - "label": "425561 (-) 425533", - "from": "7793", - "to": "7799", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8185", - "label": "389722 (-) 549814", - "from": "7792", - "to": "7662", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8184", - "label": "389722 (-) 616886", - "from": "7792", - "to": "7847", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8183", - "label": "389722 (-) 1196670", - "from": "7792", - "to": "7773", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8182", - "label": "875099 (-) 875746", - "from": "7791", - "to": "7927", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8181", - "label": "77403 (-) 77362", - "from": "7790", - "to": "7804", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8180", - "label": "875101 (-) 875099", - "from": "7789", - "to": "7791", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8179", - "label": "1214047 (-) 144608", - "from": "7788", - "to": "7928", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8178", - "label": "970337 (-) 333006", - "from": "7787", - "to": "7929", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8177", - "label": "350818 (-) 555944", - "from": "7786", - "to": "7668", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8176", - "label": "1490531 (-) 144608", - "from": "7785", - "to": "7928", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8175", - "label": "291429 (-) 144608", - "from": "7784", - "to": "7928", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8174", - "label": "1159782 (-) 954243", - "from": "7783", - "to": "7684", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8173", - "label": "1341038 (-) 320330", - "from": "7782", - "to": "7697", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8172", - "label": "2052724 (-) 2059776", - "from": "7781", - "to": "7826", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8171", - "label": "54900 (-) 743241", - "from": "7780", - "to": "7698", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8170", - "label": "1771125 (-) 2114443", - "from": "7779", - "to": "7682", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8169", - "label": "617080 (-) 550651", - "from": "7778", - "to": "7735", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8168", - "label": "2680 (-) 712804", - "from": "7777", - "to": "7962", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8167", - "label": "550522 (-) 550679", - "from": "7776", - "to": "7727", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8166", - "label": "227964 (-) 320128", - "from": "7775", - "to": "7772", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8165", - "label": "637566 (-) 637453", - "from": "7774", - "to": "7821", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8164", - "label": "1196670 (-) 962799", - "from": "7773", - "to": "7925", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8163", - "label": "320128 (-) 320604", - "from": "7772", - "to": "7963", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8162", - "label": "426633 (-) 425561", - "from": "7771", - "to": "7793", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8161", - "label": "426633 (-) 1488243", - "from": "7771", - "to": "7872", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8160", - "label": "1684105 (-) 298310", - "from": "7770", - "to": "7898", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8159", - "label": "1684105 (-) 299067", - "from": "7770", - "to": "7977", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8158", - "label": "1414797 (-) 1226805", - "from": "7769", - "to": "7979", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8157", - "label": "98964 (-) 1490531", - "from": "7768", - "to": "7785", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8156", - "label": "98964 (-) 1490324", - "from": "7768", - "to": "7854", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8155", - "label": "98964 (-) 291357", - "from": "7768", - "to": "7813", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8154", - "label": "171672 (-) 299541", - "from": "7767", - "to": "7817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8153", - "label": "291483 (-) 144608", - "from": "7766", - "to": "7928", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8152", - "label": "719521 (-) 719714", - "from": "7765", - "to": "7693", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8151", - "label": "730789 (-) 654141", - "from": "7764", - "to": "7705", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8150", - "label": "1428135 (-) 427012", - "from": "7763", - "to": "7994", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8149", - "label": "672431 (-) 46171", - "from": "7762", - "to": "7964", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8148", - "label": "1411759 (-) 1411760", - "from": "7761", - "to": "7760", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8147", - "label": "1411760 (-) 1412138", - "from": "7760", - "to": "7986", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8146", - "label": "421558 (-) 421285", - "from": "7759", - "to": "7850", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8145", - "label": "14012 (-) 248331", - "from": "7758", - "to": "7823", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8144", - "label": "14012 (-) 391560", - "from": "7758", - "to": "7857", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8143", - "label": "14012 (-) 616002", - "from": "7758", - "to": "7797", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8142", - "label": "14012 (-) 243911", - "from": "7758", - "to": "7931", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8141", - "label": "1485501 (-) 144608", - "from": "7757", - "to": "7928", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8140", - "label": "322239 (-) 321084", - "from": "7756", - "to": "7800", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8139", - "label": "61124 (-) 743241", - "from": "7755", - "to": "7698", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8138", - "label": "1411783 (-) 1473433", - "from": "7754", - "to": "7676", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8137", - "label": "572111 (-) 571548", - "from": "7753", - "to": "7950", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8136", - "label": "322256 (-) 321330", - "from": "7752", - "to": "7713", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8135", - "label": "1538767 (-) 654141", - "from": "7751", - "to": "7705", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8134", - "label": "877267 (-) 875101", - "from": "7750", - "to": "7789", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8133", - "label": "251616 (-) 1410943", - "from": "7749", - "to": "7687", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8132", - "label": "2052833 (-) 2059776", - "from": "7748", - "to": "7826", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8131", - "label": "426722 (-) 426633", - "from": "7747", - "to": "7771", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8130", - "label": "94950 (-) 1522976", - "from": "7746", - "to": "7903", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8129", - "label": "331494 (-) 310020", - "from": "7745", - "to": "7731", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8128", - "label": "331494 (-) 309814", - "from": "7745", - "to": "7802", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8127", - "label": "331494 (-) 305190", - "from": "7745", - "to": "7989", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8126", - "label": "331494 (-) 293444", - "from": "7745", - "to": "7796", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8125", - "label": "331494 (-) 311850", - "from": "7745", - "to": "7805", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8124", - "label": "331494 (-) 299544", - "from": "7745", - "to": "7815", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8123", - "label": "331494 (-) 302460", - "from": "7745", - "to": "7860", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8122", - "label": "331494 (-) 309196", - "from": "7745", - "to": "7655", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8121", - "label": "1488616 (-) 426633", - "from": "7744", - "to": "7771", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8120", - "label": "103150 (-) 433546", - "from": "7743", - "to": "7856", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8119", - "label": "418544 (-) 2062227", - "from": "7742", - "to": "7678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8118", - "label": "369394 (-) 298309", - "from": "7741", - "to": "7900", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8117", - "label": "369394 (-) 304129", - "from": "7741", - "to": "7997", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8116", - "label": "369394 (-) 299127", - "from": "7741", - "to": "7957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8115", - "label": "369394 (-) 298310", - "from": "7741", - "to": "7898", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8114", - "label": "369394 (-) 298315", - "from": "7741", - "to": "7896", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8113", - "label": "369394 (-) 304210", - "from": "7741", - "to": "7970", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8112", - "label": "369394 (-) 299067", - "from": "7741", - "to": "7977", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8111", - "label": "369394 (-) 299537", - "from": "7741", - "to": "7819", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8110", - "label": "369394 (-) 304276", - "from": "7741", - "to": "7952", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8109", - "label": "369394 (-) 301477", - "from": "7741", - "to": "7851", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8108", - "label": "369394 (-) 293444", - "from": "7741", - "to": "7796", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8107", - "label": "369394 (-) 303994", - "from": "7741", - "to": "7689", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8106", - "label": "369394 (-) 301845", - "from": "7741", - "to": "7728", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8105", - "label": "354035 (-) 1668145", - "from": "7740", - "to": "7981", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8104", - "label": "373494 (-) 369394", - "from": "7739", - "to": "7741", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8103", - "label": "1243896 (-) 321983", - "from": "7738", - "to": "7845", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8102", - "label": "2131705 (-) 698257", - "from": "7737", - "to": "7680", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8101", - "label": "550650 (-) 550651", - "from": "7736", - "to": "7735", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8100", - "label": "550651 (-) 970337", - "from": "7735", - "to": "7787", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8099", - "label": "883453 (-) 883065", - "from": "7734", - "to": "7869", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8098", - "label": "883455 (-) 883453", - "from": "7733", - "to": "7734", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8097", - "label": "883456 (-) 883453", - "from": "7732", - "to": "7734", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8096", - "label": "310020 (-) 299541", - "from": "7731", - "to": "7817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8095", - "label": "310021 (-) 299541", - "from": "7730", - "to": "7817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8094", - "label": "54026 (-) 743241", - "from": "7729", - "to": "7698", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8093", - "label": "301845 (-) 299541", - "from": "7728", - "to": "7817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8092", - "label": "550679 (-) 550154", - "from": "7727", - "to": "7915", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8091", - "label": "67353 (-) 64422", - "from": "7726", - "to": "7669", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8090", - "label": "151325 (-) 94950", - "from": "7725", - "to": "7746", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8089", - "label": "883490 (-) 883455", - "from": "7724", - "to": "7733", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8088", - "label": "1082148 (-) 350818", - "from": "7723", - "to": "7786", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8087", - "label": "884516 (-) 885683", - "from": "7722", - "to": "7664", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8086", - "label": "1082151 (-) 1082148", - "from": "7721", - "to": "7723", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8085", - "label": "719655 (-) 719521", - "from": "7720", - "to": "7765", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8084", - "label": "1889063 (-) 64690", - "from": "7719", - "to": "7938", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8083", - "label": "962344 (-) 953713", - "from": "7718", - "to": "7868", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8082", - "label": "884524 (-) 885683", - "from": "7717", - "to": "7664", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8081", - "label": "962348 (-) 962344", - "from": "7716", - "to": "7718", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8080", - "label": "321328 (-) 322239", - "from": "7715", - "to": "7756", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8079", - "label": "1871665 (-) 14228", - "from": "7714", - "to": "7677", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8078", - "label": "321330 (-) 322239", - "from": "7713", - "to": "7756", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8077", - "label": "1794867 (-) 1793352", - "from": "7712", - "to": "7897", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8076", - "label": "55093 (-) 743241", - "from": "7711", - "to": "7698", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8075", - "label": "62263 (-) 743241", - "from": "7710", - "to": "7698", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8074", - "label": "962359 (-) 962348", - "from": "7709", - "to": "7716", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8073", - "label": "654138 (-) 654141", - "from": "7708", - "to": "7705", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8072", - "label": "1684283 (-) 330112", - "from": "7707", - "to": "7862", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8071", - "label": "917308 (-) 504065", - "from": "7706", - "to": "7920", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8070", - "label": "654141 (-) 952239", - "from": "7705", - "to": "7666", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8069", - "label": "654141 (-) 719655", - "from": "7705", - "to": "7720", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8068", - "label": "1916734 (-) 950362", - "from": "7704", - "to": "7966", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8067", - "label": "737088 (-) 654141", - "from": "7703", - "to": "7705", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8066", - "label": "43842 (-) 1952840", - "from": "7702", - "to": "7974", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8065", - "label": "43842 (-) 1952931", - "from": "7702", - "to": "7944", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8064", - "label": "43842 (-) 1953027", - "from": "7702", - "to": "7919", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8063", - "label": "1035074 (-) 1159782", - "from": "7701", - "to": "7783", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8062", - "label": "1156931 (-) 955460", - "from": "7700", - "to": "7975", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8061", - "label": "958275 (-) 958290", - "from": "7699", - "to": "7696", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8060", - "label": "743241 (-) 743664", - "from": "7698", - "to": "7924", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8059", - "label": "320330 (-) 320128", - "from": "7697", - "to": "7772", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8058", - "label": "958290 (-) 958368", - "from": "7696", - "to": "7672", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8057", - "label": "1200984 (-) 554324", - "from": "7695", - "to": "7891", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8056", - "label": "1466203 (-) 1889063", - "from": "7694", - "to": "7719", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8055", - "label": "719714 (-) 565410", - "from": "7693", - "to": "7947", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8054", - "label": "77671 (-) 77403", - "from": "7692", - "to": "7790", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8053", - "label": "369519 (-) 369394", - "from": "7691", - "to": "7741", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8052", - "label": "77681 (-) 1238006", - "from": "7690", - "to": "7647", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8051", - "label": "77681 (-) 77671", - "from": "7690", - "to": "7692", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8050", - "label": "303994 (-) 299541", - "from": "7689", - "to": "7817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8049", - "label": "569211 (-) 572111", - "from": "7688", - "to": "7753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8048", - "label": "1410943 (-) 103150", - "from": "7687", - "to": "7743", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8047", - "label": "998275 (-) 1417364", - "from": "7686", - "to": "7953", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8046", - "label": "998275 (-) 1414797", - "from": "7686", - "to": "7769", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8045", - "label": "998276 (-) 1417364", - "from": "7685", - "to": "7953", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8044", - "label": "998276 (-) 1414797", - "from": "7685", - "to": "7769", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8043", - "label": "954243 (-) 1159708", - "from": "7684", - "to": "7814", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8042", - "label": "654215 (-) 653843", - "from": "7683", - "to": "7818", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8041", - "label": "2114443 (-) 2112991", - "from": "7682", - "to": "7835", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8040", - "label": "1116044 (-) 1799093", - "from": "7681", - "to": "7663", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8039", - "label": "698257 (-) 1473583", - "from": "7680", - "to": "7982", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8038", - "label": "698257 (-) 1473437", - "from": "7680", - "to": "7675", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8037", - "label": "998290 (-) 1417364", - "from": "7679", - "to": "7953", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8036", - "label": "998290 (-) 1414797", - "from": "7679", - "to": "7769", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8035", - "label": "2062227 (-) 79817", - "from": "7678", - "to": "7656", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8034", - "label": "14228 (-) 391560", - "from": "7677", - "to": "7857", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8033", - "label": "14228 (-) 243911", - "from": "7677", - "to": "7931", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8032", - "label": "14228 (-) 248331", - "from": "7677", - "to": "7823", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8031", - "label": "14228 (-) 616002", - "from": "7677", - "to": "7797", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8030", - "label": "1473433 (-) 138223", - "from": "7676", - "to": "7649", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8029", - "label": "1473437 (-) 1411783", - "from": "7675", - "to": "7754", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8028", - "label": "1084318 (-) 171672", - "from": "7674", - "to": "7767", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8027", - "label": "1338271 (-) 389722", - "from": "7673", - "to": "7792", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8026", - "label": "958368 (-) 241990", - "from": "7672", - "to": "7899", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8025", - "label": "1084321 (-) 1084318", - "from": "7671", - "to": "7674", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8024", - "label": "1341349 (-) 320330", - "from": "7670", - "to": "7697", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8023", - "label": "64422 (-) 1238006", - "from": "7669", - "to": "7647", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8022", - "label": "555944 (-) 293444", - "from": "7668", - "to": "7796", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8021", - "label": "54189 (-) 743241", - "from": "7667", - "to": "7698", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8020", - "label": "952239 (-) 422049", - "from": "7666", - "to": "7948", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8019", - "label": "1340336 (-) 320330", - "from": "7665", - "to": "7697", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8018", - "label": "1340336 (-) 227964", - "from": "7665", - "to": "7775", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8017", - "label": "885683 (-) 887987", - "from": "7664", - "to": "7937", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8016", - "label": "1799093 (-) 1035074", - "from": "7663", - "to": "7701", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8015", - "label": "549814 (-) 550522", - "from": "7662", - "to": "7776", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8014", - "label": "1113015 (-) 1107533", - "from": "7661", - "to": "7795", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8013", - "label": "495541 (-) 500848", - "from": "7660", - "to": "7959", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8012", - "label": "433081 (-) 1428135", - "from": "7659", - "to": "7763", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8011", - "label": "1386423 (-) 418544", - "from": "7658", - "to": "7742", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8010", - "label": "1782717 (-) 421410", - "from": "7657", - "to": "7809", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8009", - "label": "79817 (-) 1275213", - "from": "7656", - "to": "7894", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8008", - "label": "309196 (-) 299541", - "from": "7655", - "to": "7817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8007", - "label": "958434 (-) 14012", - "from": "7654", - "to": "7758", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8006", - "label": "992230 (-) 992233", - "from": "7653", - "to": "7652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8005", - "label": "992233 (-) 495541", - "from": "7652", - "to": "7660", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8004", - "label": "55277 (-) 743241", - "from": "7651", - "to": "7698", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8003", - "label": "1337326 (-) 1338271", - "from": "7650", - "to": "7673", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8002", - "label": "138223 (-) 672431", - "from": "7649", - "to": "7762", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8001", - "label": "874479 (-) 877267", - "from": "7648", - "to": "7750", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8000", - "label": "1238006 (-) 1237265", - "from": "7647", - "to": "7908", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "7999", - "label": "49150 (-) 637566", - "from": "7646", - "to": "7774", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/PTHLH2Ca2metab_shortPage_graphml.json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/PTHLH2Ca2metab_shortPage_graphml.json deleted file mode 100644 index caed0ad678..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/PTHLH2Ca2metab_shortPage_graphml.json +++ /dev/null @@ -1,886 +0,0 @@ -{ - "nodes": [ - { - "id": "1643", - "label": "Ade-Rib [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1642", - "label": "SLC29A3 transports nucleosides from cytosol to lysosomal lumen", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1641", - "label": "Equilibrative transport (import) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1640", - "label": "NAd [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1639", - "label": "ADR [clathrin-sculpted monoamine transport vesicle lumen]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1638", - "label": "Ura-Rib [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1637", - "label": "Ura-Rib [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1636", - "label": "Ade-Rib [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1635", - "label": "ADR [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1634", - "label": "The Ligand:GPCR:Gq complex dissociates", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1633", - "label": "BUT [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1632", - "label": "ADR [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1631", - "label": "OCT2 mediates tubular uptake of organic cations in the kidney", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1630", - "label": "CH3COO- [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1629", - "label": "EtCOO- or C2H5COO- [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1628", - "label": "Ca2+ [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1627", - "label": "LACT [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1626", - "label": "SLC22A12 exchanges extracellular urate for cytosolic LACT", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1625", - "label": "SLC5A8 transports monocarboxylates from extracellular region to cytosol", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1624", - "label": "The Ligand:GPCR:Gs complex dissociates", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1623", - "label": "LACT [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1622", - "label": "VMAT1/2 can mediate the transport of biogenic amines", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1621", - "label": "Ura-Rib [lysosomal lumen]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1620", - "label": "PTHLH [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1619", - "label": "OCT1 transports organic cations out of hepatic cells", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1618", - "label": "ADR [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1617", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1616", - "label": "Equilibrative transport (import) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - } - ], - "edges": [ - { - "id": "1675", - "label": "330112 (-) 1684282", - "from": "1643", - "to": "1616", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1674", - "label": "1684482 (-) 1684022", - "from": "1642", - "to": "1621", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1673", - "label": "1684347 (-) 492556", - "from": "1641", - "to": "1636", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1672", - "label": "298310 (-) 1695833", - "from": "1640", - "to": "1631", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1671", - "label": "298310 (-) 1684347", - "from": "1640", - "to": "1641", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1670", - "label": "492556 (-) 1684482", - "from": "1636", - "to": "1642", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1669", - "label": "492556 (-) 1684283", - "from": "1636", - "to": "1617", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1668", - "label": "298315 (-) 299541", - "from": "1635", - "to": "1634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1667", - "label": "298315 (-) 369394", - "from": "1635", - "to": "1624", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1666", - "label": "299541 (-) 298656", - "from": "1634", - "to": "1629", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1665", - "label": "299541 (-) 298645", - "from": "1634", - "to": "1633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1664", - "label": "299541 (-) 251616", - "from": "1634", - "to": "1628", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1663", - "label": "299541 (-) 298315", - "from": "1634", - "to": "1635", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1662", - "label": "299541 (-) 298310", - "from": "1634", - "to": "1640", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1661", - "label": "299541 (-) 298651", - "from": "1634", - "to": "1630", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1660", - "label": "298645 (-) 791020", - "from": "1633", - "to": "1625", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1659", - "label": "1695833 (-) 835002", - "from": "1631", - "to": "1618", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1658", - "label": "298651 (-) 791020", - "from": "1630", - "to": "1625", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1657", - "label": "298656 (-) 791020", - "from": "1629", - "to": "1625", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1656", - "label": "251616 (-) 299541", - "from": "1628", - "to": "1634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1655", - "label": "1690278 (-) 330402", - "from": "1626", - "to": "1627", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1654", - "label": "791020 (-) 194803", - "from": "1625", - "to": "1623", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1653", - "label": "369394 (-) 330112", - "from": "1624", - "to": "1643", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1652", - "label": "369394 (-) 298315", - "from": "1624", - "to": "1635", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1651", - "label": "194803 (-) 1690278", - "from": "1623", - "to": "1626", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1650", - "label": "1690356 (-) 1690504", - "from": "1622", - "to": "1639", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1649", - "label": "373494 (-) 369394", - "from": "1620", - "to": "1624", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1648", - "label": "1695353 (-) 1684248", - "from": "1619", - "to": "1632", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1647", - "label": "835002 (-) 1695353", - "from": "1618", - "to": "1619", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1646", - "label": "835002 (-) 1690356", - "from": "1618", - "to": "1622", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1645", - "label": "1684283 (-) 504010", - "from": "1617", - "to": "1638", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1644", - "label": "1684282 (-) 504075", - "from": "1616", - "to": "1637", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/PTHLH2metab_shortPage_graphml.json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/PTHLH2metab_shortPage_graphml.json deleted file mode 100644 index bc6a5e95cf..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/PTHLH2metab_shortPage_graphml.json +++ /dev/null @@ -1,2016 +0,0 @@ -{ - "nodes": [ - { - "id": "126", - "label": "PYR [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "125", - "label": "Unknown carnitine exporter transports CAR from the cytosol to the extracellular space", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "124", - "label": "PTHLH [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "123", - "label": "VMAT1/2 can mediate the transport of biogenic amines", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "122", - "label": "LACT [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "121", - "label": "The Ligand:GPCR:Gs complex dissociates", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "120", - "label": "SLC5A8 transports monocarboxylates from extracellular region to cytosol", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "119", - "label": "MAT1A multimers transfer Ado from ATP to L-Met", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "118", - "label": "L-Met [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "117", - "label": "2OG [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "116", - "label": "Ura-Rib [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "115", - "label": "malate [mitochondrial matrix] + alpha-ketoglutarate [cytosol] <=> malate [cytosol] + alpha-ketoglutarate [mitochondrial matrix]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "114", - "label": "CAR translocates from the cytosol to the mitochondrial intermembrane space", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "113", - "label": "CAR [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "112", - "label": "AKR1B1 reduces Glc to D-sorbitol", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "111", - "label": "palmitoylcarnitine + CoASH => palmitoyl-CoA + carnitine", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "110", - "label": "ADR [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "109", - "label": "CAR [mitochondrial matrix]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "108", - "label": "L-PCARN [mitochondrial matrix]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "107", - "label": "PYR [mitochondrial matrix]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "106", - "label": "SLC6A14 cotransports SLC6A14 ligands, Cl-, 2Na+ from extracellular region to cytosol", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "105", - "label": "LACT [mitochondrial matrix]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "104", - "label": "SLC22A12 exchanges extracellular urate for cytosolic LACT", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "103", - "label": "LACT [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "102", - "label": "D-sorbitol [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "101", - "label": "EtCOO- or C2H5COO- [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "100", - "label": "CH3COO- [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "99", - "label": "PXLP-K314-GPT transaminates PYR to form L-Ala", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "98", - "label": "Succinate <=> Fumarate (with FAD redox reaction on enzyme)", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "97", - "label": "SLC2A9 transports Fru, Glc, urate", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "96", - "label": "BUT [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "95", - "label": "SUCCA [mitochondrial matrix]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "94", - "label": "ADR [clathrin-sculpted monoamine transport vesicle lumen]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "93", - "label": "LDHAL6B reduces PYR to LACT", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "92", - "label": "AdoMet [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "91", - "label": "Ade-Rib [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "90", - "label": "OCT1 transports organic cations out of hepatic cells", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "89", - "label": "L-Arg [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "88", - "label": "FUMA [mitochondrial matrix]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "87", - "label": "MAT2B:MAT2A:K+:2Mg2+ transfers Ado from ATP to L-Met", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "86", - "label": "L-Lys [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "85", - "label": "CRET [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "84", - "label": "CAR [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "83", - "label": "Exchange of palmitoylcarnitine and carnitine across the inner mitochondrial membrane", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "82", - "label": "CAR [mitochondrial intermembrane space]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "81", - "label": "L-PCARN [mitochondrial intermembrane space]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "80", - "label": "OCT2 mediates tubular uptake of organic cations in the kidney", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "79", - "label": "ADR [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "78", - "label": "guanidinoacetate + S-adenosylmethionine => creatine + S-adenosylhomocysteine", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "77", - "label": "NAd [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "76", - "label": "urate [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "75", - "label": "CPT1A,B transfers PALM to CAR", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "74", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "73", - "label": "Equilibrative transport (import) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "72", - "label": "Glc [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "71", - "label": "Ura-Rib [lysosomal lumen]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "70", - "label": "TMLHE dimer dioxygenates TMLYS and 2OG to form HTMLYS and SUCCA", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "69", - "label": "PXLP-K341-GPT2 transaminates L-Ala to form PYR", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "68", - "label": "SLC17A3-2 transports cytosolic urate to extracellular region", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "67", - "label": "urate [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "66", - "label": "ADR [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "65", - "label": "The Ligand:GPCR:Gq complex dissociates", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "64", - "label": "Ura-Rib [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "63", - "label": "BBOX1:AscH-:Fe2+ dimer dioxygenates TEABT and 2OG to form CAR and SUCCA", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "62", - "label": "SLC29A3 transports nucleosides from cytosol to lysosomal lumen", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "61", - "label": "2OG [mitochondrial matrix]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - } - ], - "edges": [ - { - "id": "195", - "label": "193018 (-) 193941", - "from": "126", - "to": "99", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "194", - "label": "843513 (-) 760931", - "from": "125", - "to": "84", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "193", - "label": "373494 (-) 369394", - "from": "124", - "to": "121", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "192", - "label": "1690356 (-) 1690504", - "from": "123", - "to": "94", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "191", - "label": "194803 (-) 1690278", - "from": "122", - "to": "104", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "190", - "label": "369394 (-) 298315", - "from": "121", - "to": "79", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "189", - "label": "369394 (-) 298310", - "from": "121", - "to": "77", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "188", - "label": "369394 (-) 330112", - "from": "121", - "to": "91", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "187", - "label": "791020 (-) 193018", - "from": "120", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "186", - "label": "791020 (-) 194803", - "from": "120", - "to": "122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "185", - "label": "780267 (-) 557190", - "from": "119", - "to": "92", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "184", - "label": "780263 (-) 826488", - "from": "118", - "to": "87", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "183", - "label": "780263 (-) 780267", - "from": "118", - "to": "119", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "182", - "label": "191969 (-) 843528", - "from": "117", - "to": "63", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "181", - "label": "191969 (-) 209864", - "from": "117", - "to": "115", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "180", - "label": "209864 (-) 192256", - "from": "115", - "to": "61", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "179", - "label": "760767 (-) 759647", - "from": "114", - "to": "82", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "178", - "label": "760768 (-) 843513", - "from": "113", - "to": "125", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "177", - "label": "760768 (-) 760767", - "from": "113", - "to": "114", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "176", - "label": "917695 (-) 917666", - "from": "112", - "to": "102", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "175", - "label": "759483 (-) 759479", - "from": "111", - "to": "109", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "174", - "label": "835002 (-) 1690356", - "from": "110", - "to": "123", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "173", - "label": "835002 (-) 1695353", - "from": "110", - "to": "90", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "172", - "label": "759475 (-) 759483", - "from": "108", - "to": "111", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "171", - "label": "192688 (-) 1863046", - "from": "107", - "to": "93", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "170", - "label": "1676716 (-) 780263", - "from": "106", - "to": "118", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "169", - "label": "1690278 (-) 330402", - "from": "104", - "to": "103", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "168", - "label": "1690278 (-) 501018", - "from": "104", - "to": "67", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "167", - "label": "298656 (-) 791020", - "from": "101", - "to": "120", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "166", - "label": "298651 (-) 791020", - "from": "100", - "to": "120", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "165", - "label": "193941 (-) 191969", - "from": "99", - "to": "117", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "164", - "label": "195989 (-) 195705", - "from": "98", - "to": "88", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "163", - "label": "1688214 (-) 181558", - "from": "97", - "to": "72", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "162", - "label": "298645 (-) 791020", - "from": "96", - "to": "120", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "161", - "label": "195984 (-) 195989", - "from": "95", - "to": "98", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "160", - "label": "1863046 (-) 1863083", - "from": "93", - "to": "105", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "159", - "label": "557190 (-) 842569", - "from": "92", - "to": "78", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "158", - "label": "330112 (-) 1684282", - "from": "91", - "to": "73", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "157", - "label": "1695353 (-) 1684248", - "from": "90", - "to": "66", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "156", - "label": "298618 (-) 1676716", - "from": "89", - "to": "106", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "155", - "label": "826488 (-) 557190", - "from": "87", - "to": "92", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "154", - "label": "298614 (-) 1676716", - "from": "86", - "to": "106", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "153", - "label": "759648 (-) 759475", - "from": "83", - "to": "108", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "152", - "label": "759647 (-) 759867", - "from": "82", - "to": "75", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "151", - "label": "759646 (-) 759648", - "from": "81", - "to": "83", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "150", - "label": "1695833 (-) 835002", - "from": "80", - "to": "110", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "149", - "label": "298315 (-) 299541", - "from": "79", - "to": "65", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "148", - "label": "842569 (-) 842092", - "from": "78", - "to": "85", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "147", - "label": "298310 (-) 1695833", - "from": "77", - "to": "80", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "146", - "label": "1688388 (-) 1688214", - "from": "76", - "to": "97", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "145", - "label": "759867 (-) 759646", - "from": "75", - "to": "81", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "144", - "label": "1684283 (-) 504010", - "from": "74", - "to": "116", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "143", - "label": "1684282 (-) 504075", - "from": "73", - "to": "64", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "142", - "label": "181558 (-) 917695", - "from": "72", - "to": "112", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "141", - "label": "843309 (-) 195984", - "from": "70", - "to": "95", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "140", - "label": "836646 (-) 192688", - "from": "69", - "to": "107", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "139", - "label": "2083872 (-) 1688388", - "from": "68", - "to": "76", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "138", - "label": "501018 (-) 2083872", - "from": "67", - "to": "68", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "137", - "label": "299541 (-) 298614", - "from": "65", - "to": "86", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "136", - "label": "299541 (-) 298651", - "from": "65", - "to": "100", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "135", - "label": "299541 (-) 298618", - "from": "65", - "to": "89", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "134", - "label": "299541 (-) 298645", - "from": "65", - "to": "96", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "133", - "label": "299541 (-) 298656", - "from": "65", - "to": "101", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "132", - "label": "504075 (-) 1684283", - "from": "64", - "to": "74", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "131", - "label": "504075 (-) 1684482", - "from": "64", - "to": "62", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "130", - "label": "843528 (-) 760768", - "from": "63", - "to": "113", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "129", - "label": "1684482 (-) 1684022", - "from": "62", - "to": "71", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "128", - "label": "192256 (-) 836646", - "from": "61", - "to": "69", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "127", - "label": "192256 (-) 843309", - "from": "61", - "to": "70", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/PTHLH2metab_short_graphml.json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/PTHLH2metab_short_graphml.json deleted file mode 100644 index 4141b9beae..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/PTHLH2metab_short_graphml.json +++ /dev/null @@ -1,7626 +0,0 @@ -{ - "nodes": [ - { - "id": "1219", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1218", - "label": "Equilibrative transport (import) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1217", - "label": "PALM [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1216", - "label": "PYR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1215", - "label": "Thy [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1214", - "label": "PYR [mitochondrial intermembrane space]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1213", - "label": "AGM [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1212", - "label": "CoA-SH [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1211", - "label": "oxaloacetate + glutamate <=> aspartate + alpha-ketoglutarate [GOT1]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1210", - "label": "SLC5A8 transports monocarboxylates from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1209", - "label": "MAT1A multimers transfer Ado from ATP to L-Met", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1208", - "label": "L-Glu [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1207", - "label": "L-Met [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1206", - "label": "2OG [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1205", - "label": "PALM [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1204", - "label": "p-hydroxyphenylpyruvate + glutamate <=> tyrosine + alpha-ketoglutarate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1203", - "label": "Exchange of alpha-ketoglutarate (2-oxoglutarate) and malate across the inner mitochondrial membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1202", - "label": "malate [mitochondrial matrix] + alpha-ketoglutarate [cytosol] <=> malate [cytosol] + alpha-ketoglutarate [mitochondrial matrix]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1201", - "label": "glutamate uptake by astrocytes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1200", - "label": "Cho [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1199", - "label": "CAR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1198", - "label": "Concentrative transport (import) of nucleosides plus sodium ions by solute carrier family 28 (sodium-coupled nucleoside transporter), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1197", - "label": "CAR translocates from the cytosol to the mitochondrial intermembrane space", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1196", - "label": "a-ketoisocaproate, a-keto-b-methylvalerate, or a-ketoisovalerate + glutamate <=> leu, ile, or val + alpha-ketoglutarate [BCAT1]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1195", - "label": "Gua-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1194", - "label": "ADR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1193", - "label": "BSG:MCTs cotransport LACT, H+ from cytosol to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1192", - "label": "Sulfate is exported to the cytosol in exchange for dicarboxylate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1191", - "label": "5HT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1190", - "label": "PALM-CoA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1189", - "label": "LACT [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1188", - "label": "SLC6A14 cotransports SLC6A14 ligands, Cl-, 2Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1187", - "label": "oxaloacetate + glutamate <=> aspartate + alpha-ketoglutarate [GOT2]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1186", - "label": "SLC6A2 cotransports NAd, Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1185", - "label": "L-Glu [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1184", - "label": "Reuptake of serotonin from the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1183", - "label": "AVP(20-28) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1182", - "label": "Transport of Citrate from Mitochondrial Matrix to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1181", - "label": "MPC1:MPC2 cotransports PYR, H+ from cytosol to mitochondrial matrix", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1180", - "label": "Hist [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1179", - "label": "ligands of SLC28A3 & 29A1 [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1178", - "label": "SLC7A8-mediated uptake of neutral amino acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1177", - "label": "Succinate <=> Fumarate (with FAD redox reaction on enzyme)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1176", - "label": "PXLP-K314-GPT transaminates PYR to form L-Ala", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1175", - "label": "Concentrative transport (import) of a nucleoside and a sodium ions by solute carrier family 28 (sodium-coupled nucleoside transporter), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1174", - "label": "SUCCA [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1173", - "label": "SLC25A12,13 exchange cytosolic L-Glu for mitochondrial matrix L-Asp", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1172", - "label": "ADR [clathrin-sculpted monoamine transport vesicle lumen]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1171", - "label": "LDHAL6B reduces PYR to LACT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1170", - "label": "L-Ala [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1169", - "label": "Ade-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1168", - "label": "Two DITs combine to form thyroxine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1167", - "label": "SLC6A3 cotransports DA, Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1166", - "label": "Equilibrative transport (import) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1165", - "label": "GCG(53-81) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1164", - "label": "CD36 (FAT) translocates palmitate from the extracellular region to the cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1163", - "label": "MNA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1162", - "label": "glutamate + NAD(P)+ => alpha-ketoglutarate + NH4+ + NAD(P)H + H+ [GLUD1]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1161", - "label": "glutamate + L-glutamate gamma-semialdehyde <=> ornithine + alpha-ketoglutarate [OAT]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1160", - "label": "CRET [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1159", - "label": "DIT and MIT combine to form triiodothyronine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1158", - "label": "Exchange of palmitoylcarnitine and carnitine across the inner mitochondrial membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1157", - "label": "CAR [mitochondrial intermembrane space]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1156", - "label": "L-PCARN [mitochondrial intermembrane space]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1155", - "label": "cAMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1154", - "label": "Noradrenaline clearance from the synaptic cleft", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1153", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1152", - "label": "guanidinoacetate + S-adenosylmethionine => creatine + S-adenosylhomocysteine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1151", - "label": "Cyt [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1150", - "label": "CIM [cytosol]", - "databaseLabel": "ChemicalDrug", - "font": { - "color": "#ff9900" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff9900", - "hover": { - "background": "#FFFFFF", - "border": "#ff9900" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff9900" - } - } - }, - { - "id": "1149", - "label": "ligands of SLC29A2 [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1148", - "label": "NAd [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1147", - "label": "ADR, NAd [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1146", - "label": "urate [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1145", - "label": "SPM [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1144", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1143", - "label": "Equilibrative transport (import) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1142", - "label": "Spermidine => N-acetylated spermidine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1141", - "label": "Guanine + H2O => Xanthine + NH4+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1140", - "label": "Glc [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1139", - "label": "SLC6A4 co-transports 5HT, Cl-, Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1138", - "label": "Ura [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1137", - "label": "SLC1A1-3,6,7 exchange L-Glu, H+ and 3Na+ for K+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1136", - "label": "MAL [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1135", - "label": "SLC1A1,2,3,6,7 cotransport L-Glu,L-Asp,D-Asp,H+,3Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1134", - "label": "Xanthine + H2O + O2 => Urate + H2O2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1133", - "label": "urate [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1132", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1131", - "label": "ligands of SLC29A4 [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1130", - "label": "GPR39 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1129", - "label": "MAL [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1128", - "label": "Cyt-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1127", - "label": "NAd [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1126", - "label": "Thy-dRib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1125", - "label": "Ura-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1124", - "label": "BBOX1:AscH-:Fe2+ dimer dioxygenates TEABT and 2OG to form CAR and SUCCA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1123", - "label": "SPN [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1122", - "label": "2OG [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1121", - "label": "Unknown carnitine exporter transports CAR from the cytosol to the extracellular space", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1120", - "label": "Hyp [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1119", - "label": "PTHLH [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1118", - "label": "VMAT1/2 can mediate the transport of biogenic amines", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1117", - "label": "LACT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1116", - "label": "The Ligand:GPCR:Gs complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1115", - "label": "G alpha (s):GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1114", - "label": "L-Glu [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1113", - "label": "Ino [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1112", - "label": "Ade [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1111", - "label": "acetyl-CoA + bicarbonate + ATP => malonyl-CoA + H2O + ADP + orthophosphate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1110", - "label": "PXLP-K200-PSAT1 dimer transfers amino group from L-Glu to 3POPA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1109", - "label": "HCO3- [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1108", - "label": "Cl- [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1107", - "label": "SLC6A15-mediated amino acid uptake", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1106", - "label": "Ura-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1105", - "label": "a-ketoisocaproate, a-keto-b-methylvalerate, or a-ketoisovalerate + glutamate <=> leu, ile, or val + alpha-ketoglutarate [BCAT2]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1104", - "label": "AKR1B1 reduces Glc to D-sorbitol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1103", - "label": "GDP + Orthophosphate + Succinyl-CoA <=> GTP + Succinate + CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1102", - "label": "CREAT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1101", - "label": "palmitoylcarnitine + CoASH => palmitoyl-CoA + carnitine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1100", - "label": "SLC6A19 cotransports neutral amino acids, Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1099", - "label": "CAR [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1098", - "label": "N-acetylation of serotonin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1097", - "label": "DA [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1096", - "label": "PYR [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1095", - "label": "SLC22A12 exchanges extracellular urate for cytosolic LACT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1094", - "label": "D-sorbitol [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1093", - "label": "LACT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1092", - "label": "EtCOO- or C2H5COO- [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1091", - "label": "CH3COO- [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1090", - "label": "SLC2A9 transports Fru, Glc, urate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1089", - "label": "BUT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1088", - "label": "NPSR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1087", - "label": "QN [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1086", - "label": "alpha-ketoadipate + glutamate <=> alpha-aminoadipate + alpha-ketoglutarate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1085", - "label": "4-Di-2-ASP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1084", - "label": "AdoMet [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1083", - "label": "SLC38A2 (ATA2)-mediated uptake of neutral amino acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1082", - "label": "Equilibrative transport (export) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1081", - "label": "MTF [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1080", - "label": "Concentrative transport (import) of a nucleoside and two sodium ions by solute carrier family 28 (sodium-coupled nucleoside transporter), member 3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1079", - "label": "OCT1 substrates [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1078", - "label": "(S)-Malate <=> Fumarate + H2O", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1077", - "label": "MAT2B:MAT2A:K+:2Mg2+ transfers Ado from ATP to L-Met", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1076", - "label": "FUMA [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1075", - "label": "L-Arg [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1074", - "label": "OCT1 transports organic cations out of hepatic cells", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1073", - "label": "OCT1 transports organic cations into hepatic cells", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1072", - "label": "Hist [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1071", - "label": "L-Lys [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1070", - "label": "SLC38A1 (ATA1)-mediated uptake of neutral amino acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1069", - "label": "Btn-ACACB:2Mn2+ polymer carboxylates Ac-CoA to form Mal-CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1068", - "label": "CAR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1067", - "label": "Oxaliplatin [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1066", - "label": "OCT2 substrates [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1065", - "label": "Uptake of Noradrenaline", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1064", - "label": "ADP + Orthophosphate + Succinyl-CoA <=> ATP + Succinate + CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1063", - "label": "CoA-SH [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1062", - "label": "SUCC-CoA [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1061", - "label": "OCT2 mediates tubular uptake of organic cations in the kidney", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1060", - "label": "OCT2 mediates tubular secretion of organic cations in the kidney", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1059", - "label": "SLC25A16 transports cytosolic CoA-SH to mitichondrial matrix", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1058", - "label": "NPS [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1057", - "label": "OXCT dimers transfer CoA from SUCC-CoA to ACA, forming ACA-CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1056", - "label": "Hypoxanthine + H2O + O2 => Xanthine + H2O2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1055", - "label": "MPP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1054", - "label": "XAN [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1053", - "label": "Gu [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1052", - "label": "TMAM [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1051", - "label": "ACSL1,3,5,6 ligate CoA to PALM to form PALM-CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1050", - "label": "G-protein beta-gamma complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1049", - "label": "5HT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1048", - "label": "Btn-ACACA:2Mn2+ polymer carboxylates Ac-CoA to form Mal-CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1047", - "label": "CPT1A,B transfers PALM to CAR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1046", - "label": "Ura-Rib [lysosomal lumen]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1045", - "label": "Mal-CoA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1044", - "label": "TMLHE dimer dioxygenates TMLYS and 2OG to form HTMLYS and SUCCA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1043", - "label": "GPR161 promotes cAMP production in a G alpha(s)-dependent manner", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1042", - "label": "Gua [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1041", - "label": "Spermine => N-acetylated spermine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1040", - "label": "Cho is acetylated to AcCho by CHAT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1039", - "label": "PXLP-K341-GPT2 transaminates PYR to form L-Ala", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1038", - "label": "SLC17A3-2 transports cytosolic urate to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1037", - "label": "SLC25A18,A22 cotransport Glu, H+ from cytosol to mitochondrial matrix", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1036", - "label": "Thyrotropin [extracellular region]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1035", - "label": "The Ligand:GPCR:Gq complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1034", - "label": "PGE2 [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1033", - "label": "phosphoenolpyruvate + ADP => pyruvate + ATP", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1032", - "label": "Band 3 Anion Exchanger (AE1, SLC4A1) exchanges cytosolic chloride for extracellular bicarbonate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1031", - "label": "Ade-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1030", - "label": "ACSL3,4 ligates coenzyme A (CoA-SH) to palmitate yielding palmitoyl-coenzyme A in the pancreatic beta cell", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1029", - "label": "DA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1028", - "label": "Na+-driven Cl-/HCO3- exchanger transport", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1027", - "label": "VDAC1 transports PYR from cytosol to mitochondrial intermembrane space", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1026", - "label": "alpha-ketoglutarate + CoASH + NAD+ => succinyl-CoA + CO2 + NADH + H+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1025", - "label": "SLC29A3 transports nucleosides from cytosol to lysosomal lumen", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1024", - "label": "P2RY11 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - } - ], - "edges": [ - { - "id": "1589", - "label": "1682942 (-) 504010", - "from": "1219", - "to": "1106", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1588", - "label": "1682941 (-) 492262", - "from": "1218", - "to": "1113", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1587", - "label": "1682941 (-) 1683355", - "from": "1218", - "to": "1179", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1586", - "label": "1682941 (-) 504075", - "from": "1218", - "to": "1125", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1585", - "label": "1682941 (-) 492556", - "from": "1218", - "to": "1031", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1584", - "label": "1682941 (-) 504077", - "from": "1218", - "to": "1128", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1583", - "label": "1682941 (-) 504076", - "from": "1218", - "to": "1126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1582", - "label": "1682941 (-) 495549", - "from": "1218", - "to": "1195", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1581", - "label": "760316 (-) 760331", - "from": "1217", - "to": "1030", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1580", - "label": "760316 (-) 1837125", - "from": "1217", - "to": "1051", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1579", - "label": "193018 (-) 1863175", - "from": "1216", - "to": "1027", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1578", - "label": "193018 (-) 193941", - "from": "1216", - "to": "1176", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1577", - "label": "503799 (-) 1684283", - "from": "1215", - "to": "1144", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1576", - "label": "193011 (-) 192932", - "from": "1214", - "to": "1181", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1575", - "label": "779764 (-) 1695832", - "from": "1213", - "to": "1060", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1574", - "label": "173043 (-) 1504342", - "from": "1212", - "to": "1059", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1573", - "label": "173043 (-) 760331", - "from": "1212", - "to": "1030", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1572", - "label": "173043 (-) 1837125", - "from": "1212", - "to": "1051", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1571", - "label": "191983 (-) 191969", - "from": "1211", - "to": "1206", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1570", - "label": "791020 (-) 193018", - "from": "1210", - "to": "1216", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1569", - "label": "791020 (-) 194803", - "from": "1210", - "to": "1117", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1568", - "label": "780267 (-) 557190", - "from": "1209", - "to": "1084", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1567", - "label": "191978 (-) 793816", - "from": "1208", - "to": "1110", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1566", - "label": "191978 (-) 1678366", - "from": "1208", - "to": "1037", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1565", - "label": "191978 (-) 193941", - "from": "1208", - "to": "1176", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1564", - "label": "191978 (-) 778121", - "from": "1208", - "to": "1173", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1563", - "label": "191978 (-) 796094", - "from": "1208", - "to": "1196", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1562", - "label": "191978 (-) 191983", - "from": "1208", - "to": "1211", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1561", - "label": "191978 (-) 776650", - "from": "1208", - "to": "1204", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1560", - "label": "780263 (-) 826488", - "from": "1207", - "to": "1077", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1559", - "label": "780263 (-) 780267", - "from": "1207", - "to": "1209", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1558", - "label": "191969 (-) 843528", - "from": "1206", - "to": "1124", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1557", - "label": "191969 (-) 209864", - "from": "1206", - "to": "1202", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1556", - "label": "280539 (-) 760692", - "from": "1205", - "to": "1164", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1555", - "label": "776650 (-) 191969", - "from": "1204", - "to": "1206", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1554", - "label": "209865 (-) 195340", - "from": "1203", - "to": "1129", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1553", - "label": "209864 (-) 194852", - "from": "1202", - "to": "1136", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1552", - "label": "209864 (-) 192256", - "from": "1202", - "to": "1122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1551", - "label": "488902 (-) 191978", - "from": "1201", - "to": "1208", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1550", - "label": "170436 (-) 1695353", - "from": "1200", - "to": "1074", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1549", - "label": "170436 (-) 1695832", - "from": "1200", - "to": "1060", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1548", - "label": "170436 (-) 1083941", - "from": "1200", - "to": "1040", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1547", - "label": "760768 (-) 843513", - "from": "1199", - "to": "1121", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1546", - "label": "760768 (-) 760767", - "from": "1199", - "to": "1197", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1545", - "label": "1683390 (-) 495549", - "from": "1198", - "to": "1195", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1544", - "label": "1683390 (-) 492262", - "from": "1198", - "to": "1113", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1543", - "label": "1683390 (-) 492556", - "from": "1198", - "to": "1031", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1542", - "label": "1683390 (-) 504075", - "from": "1198", - "to": "1125", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1541", - "label": "760767 (-) 759647", - "from": "1197", - "to": "1157", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1540", - "label": "796094 (-) 191969", - "from": "1196", - "to": "1206", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1539", - "label": "495549 (-) 1682942", - "from": "1195", - "to": "1219", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1538", - "label": "495549 (-) 1684283", - "from": "1195", - "to": "1144", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1537", - "label": "495549 (-) 1684482", - "from": "1195", - "to": "1025", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1536", - "label": "835002 (-) 1695832", - "from": "1194", - "to": "1060", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1535", - "label": "835002 (-) 1690356", - "from": "1194", - "to": "1118", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1534", - "label": "835002 (-) 1684105", - "from": "1194", - "to": "1082", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1533", - "label": "835002 (-) 1695353", - "from": "1194", - "to": "1074", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1532", - "label": "1863096 (-) 330402", - "from": "1193", - "to": "1093", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1531", - "label": "832950 (-) 195340", - "from": "1192", - "to": "1129", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1530", - "label": "354741 (-) 836276", - "from": "1191", - "to": "1098", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1529", - "label": "354741 (-) 1690356", - "from": "1191", - "to": "1118", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1528", - "label": "354741 (-) 1695832", - "from": "1191", - "to": "1060", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1527", - "label": "354741 (-) 1684105", - "from": "1191", - "to": "1082", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1526", - "label": "213934 (-) 759867", - "from": "1190", - "to": "1047", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1525", - "label": "1676716 (-) 780263", - "from": "1188", - "to": "1207", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1524", - "label": "192427 (-) 192256", - "from": "1187", - "to": "1122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1523", - "label": "1690536 (-) 834827", - "from": "1186", - "to": "1127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1522", - "label": "192424 (-) 836645", - "from": "1185", - "to": "1039", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1521", - "label": "192424 (-) 825712", - "from": "1185", - "to": "1162", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1520", - "label": "192424 (-) 199874", - "from": "1185", - "to": "1105", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1519", - "label": "192424 (-) 772464", - "from": "1185", - "to": "1161", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1518", - "label": "192424 (-) 192427", - "from": "1185", - "to": "1187", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1517", - "label": "192424 (-) 840846", - "from": "1185", - "to": "1086", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1516", - "label": "1690532 (-) 354741", - "from": "1184", - "to": "1191", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1515", - "label": "301477 (-) 299541", - "from": "1183", - "to": "1035", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1514", - "label": "1835429 (-) 195340", - "from": "1182", - "to": "1129", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1513", - "label": "192932 (-) 192688", - "from": "1181", - "to": "1096", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1512", - "label": "784286 (-) 1695353", - "from": "1180", - "to": "1074", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1511", - "label": "784286 (-) 1690356", - "from": "1180", - "to": "1118", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1510", - "label": "784286 (-) 1695832", - "from": "1180", - "to": "1060", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1509", - "label": "1683355 (-) 1682942", - "from": "1179", - "to": "1219", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1508", - "label": "1676693 (-) 780263", - "from": "1178", - "to": "1207", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1507", - "label": "195989 (-) 195705", - "from": "1177", - "to": "1076", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1506", - "label": "193941 (-) 191969", - "from": "1176", - "to": "1206", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1505", - "label": "1684368 (-) 492556", - "from": "1175", - "to": "1031", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1504", - "label": "1684368 (-) 504076", - "from": "1175", - "to": "1126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1503", - "label": "1684368 (-) 504077", - "from": "1175", - "to": "1128", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1502", - "label": "1684368 (-) 504075", - "from": "1175", - "to": "1125", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1501", - "label": "195984 (-) 195989", - "from": "1174", - "to": "1177", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1500", - "label": "778121 (-) 192424", - "from": "1173", - "to": "1185", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1499", - "label": "1863046 (-) 1863083", - "from": "1171", - "to": "1189", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1498", - "label": "835458 (-) 1676693", - "from": "1170", - "to": "1178", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1497", - "label": "835458 (-) 1676716", - "from": "1170", - "to": "1188", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1496", - "label": "835458 (-) 1669819", - "from": "1170", - "to": "1100", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1495", - "label": "835458 (-) 1675402", - "from": "1170", - "to": "1083", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1494", - "label": "835458 (-) 1677011", - "from": "1170", - "to": "1107", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1493", - "label": "835458 (-) 1676402", - "from": "1170", - "to": "1070", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1492", - "label": "330112 (-) 1682941", - "from": "1169", - "to": "1218", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1491", - "label": "330112 (-) 1683390", - "from": "1169", - "to": "1198", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1490", - "label": "330112 (-) 1684282", - "from": "1169", - "to": "1143", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1489", - "label": "330112 (-) 1683591", - "from": "1169", - "to": "1080", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1488", - "label": "330112 (-) 1684347", - "from": "1169", - "to": "1166", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1487", - "label": "330112 (-) 1684368", - "from": "1169", - "to": "1175", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1486", - "label": "835453 (-) 835458", - "from": "1168", - "to": "1170", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1485", - "label": "1085307 (-) 834570", - "from": "1167", - "to": "1029", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1484", - "label": "1684347 (-) 835002", - "from": "1166", - "to": "1194", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1483", - "label": "1684347 (-) 1684246", - "from": "1166", - "to": "1131", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1482", - "label": "1684347 (-) 492556", - "from": "1166", - "to": "1031", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1481", - "label": "1684347 (-) 834570", - "from": "1166", - "to": "1029", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1480", - "label": "1684347 (-) 354741", - "from": "1166", - "to": "1191", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1479", - "label": "1684347 (-) 834827", - "from": "1166", - "to": "1127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1478", - "label": "303994 (-) 299541", - "from": "1165", - "to": "1035", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1477", - "label": "760692 (-) 760316", - "from": "1164", - "to": "1217", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1476", - "label": "791922 (-) 1695353", - "from": "1163", - "to": "1074", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1475", - "label": "791922 (-) 1695832", - "from": "1163", - "to": "1060", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1474", - "label": "825712 (-) 192256", - "from": "1162", - "to": "1122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1473", - "label": "772464 (-) 192256", - "from": "1161", - "to": "1122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1472", - "label": "835948 (-) 835458", - "from": "1159", - "to": "1170", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1471", - "label": "759648 (-) 759647", - "from": "1158", - "to": "1157", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1470", - "label": "759646 (-) 759648", - "from": "1156", - "to": "1158", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1469", - "label": "193872 (-) 193037", - "from": "1155", - "to": "1033", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1468", - "label": "1085261 (-) 834827", - "from": "1154", - "to": "1127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1467", - "label": "298315 (-) 299541", - "from": "1153", - "to": "1035", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1466", - "label": "842569 (-) 842092", - "from": "1152", - "to": "1160", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1465", - "label": "1684295 (-) 1684283", - "from": "1151", - "to": "1144", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1464", - "label": "1695048 (-) 1695832", - "from": "1150", - "to": "1060", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1463", - "label": "1684294 (-) 1684283", - "from": "1149", - "to": "1144", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1462", - "label": "298310 (-) 1684347", - "from": "1148", - "to": "1166", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1461", - "label": "298310 (-) 1690536", - "from": "1148", - "to": "1186", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1460", - "label": "298310 (-) 299541", - "from": "1148", - "to": "1035", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1459", - "label": "298310 (-) 1085261", - "from": "1148", - "to": "1154", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1458", - "label": "298310 (-) 1695352", - "from": "1148", - "to": "1073", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1457", - "label": "298310 (-) 1695833", - "from": "1148", - "to": "1061", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1456", - "label": "298310 (-) 1082975", - "from": "1148", - "to": "1065", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1455", - "label": "298309 (-) 299541", - "from": "1147", - "to": "1035", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1454", - "label": "1688388 (-) 1688214", - "from": "1146", - "to": "1090", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1453", - "label": "781114 (-) 1695353", - "from": "1145", - "to": "1074", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1452", - "label": "781114 (-) 781113", - "from": "1145", - "to": "1142", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1451", - "label": "1684283 (-) 504010", - "from": "1144", - "to": "1106", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1450", - "label": "1684282 (-) 503799", - "from": "1143", - "to": "1215", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1449", - "label": "1684282 (-) 492279", - "from": "1143", - "to": "1120", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1448", - "label": "1684282 (-) 504076", - "from": "1143", - "to": "1126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1447", - "label": "1684282 (-) 495549", - "from": "1143", - "to": "1195", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1446", - "label": "1684282 (-) 496865", - "from": "1143", - "to": "1112", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1445", - "label": "1684282 (-) 503591", - "from": "1143", - "to": "1138", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1444", - "label": "1684282 (-) 1684294", - "from": "1143", - "to": "1149", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1443", - "label": "1684282 (-) 492262", - "from": "1143", - "to": "1113", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1442", - "label": "1684282 (-) 504077", - "from": "1143", - "to": "1128", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1441", - "label": "1684282 (-) 492077", - "from": "1143", - "to": "1042", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1440", - "label": "1684282 (-) 504075", - "from": "1143", - "to": "1125", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1439", - "label": "1684282 (-) 1684295", - "from": "1143", - "to": "1151", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1438", - "label": "1684282 (-) 492556", - "from": "1143", - "to": "1031", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1437", - "label": "781113 (-) 173043", - "from": "1142", - "to": "1212", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1436", - "label": "501047 (-) 495691", - "from": "1141", - "to": "1054", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1435", - "label": "181558 (-) 917695", - "from": "1140", - "to": "1104", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1434", - "label": "1084713 (-) 354741", - "from": "1139", - "to": "1191", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1433", - "label": "1084713 (-) 208598", - "from": "1139", - "to": "1108", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1432", - "label": "503591 (-) 1684283", - "from": "1138", - "to": "1144", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1431", - "label": "1065763 (-) 191978", - "from": "1137", - "to": "1208", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1430", - "label": "194852 (-) 209865", - "from": "1136", - "to": "1203", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1429", - "label": "194852 (-) 1835429", - "from": "1136", - "to": "1182", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1428", - "label": "194852 (-) 832950", - "from": "1136", - "to": "1192", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1427", - "label": "1679651 (-) 191978", - "from": "1135", - "to": "1208", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1426", - "label": "501023 (-) 501018", - "from": "1134", - "to": "1133", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1425", - "label": "501018 (-) 2083872", - "from": "1133", - "to": "1038", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1424", - "label": "1684246 (-) 1684105", - "from": "1131", - "to": "1082", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1423", - "label": "301845 (-) 299541", - "from": "1130", - "to": "1035", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1422", - "label": "195340 (-) 195711", - "from": "1129", - "to": "1078", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1421", - "label": "504077 (-) 1684283", - "from": "1128", - "to": "1144", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1420", - "label": "504077 (-) 1682942", - "from": "1128", - "to": "1219", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1419", - "label": "504077 (-) 1684482", - "from": "1128", - "to": "1025", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1418", - "label": "834827 (-) 1695353", - "from": "1127", - "to": "1074", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1417", - "label": "834827 (-) 1684105", - "from": "1127", - "to": "1082", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1416", - "label": "834827 (-) 1695832", - "from": "1127", - "to": "1060", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1415", - "label": "834827 (-) 1690356", - "from": "1127", - "to": "1118", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1414", - "label": "504076 (-) 1682942", - "from": "1126", - "to": "1219", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1413", - "label": "504076 (-) 1684283", - "from": "1126", - "to": "1144", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1412", - "label": "504076 (-) 1684482", - "from": "1126", - "to": "1025", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1411", - "label": "504075 (-) 1684283", - "from": "1125", - "to": "1144", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1410", - "label": "504075 (-) 1682942", - "from": "1125", - "to": "1219", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1409", - "label": "504075 (-) 1684482", - "from": "1125", - "to": "1025", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1408", - "label": "843528 (-) 760768", - "from": "1124", - "to": "1199", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1407", - "label": "781057 (-) 780841", - "from": "1123", - "to": "1041", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1406", - "label": "781057 (-) 1695353", - "from": "1123", - "to": "1074", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1405", - "label": "192256 (-) 209865", - "from": "1122", - "to": "1203", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1404", - "label": "192256 (-) 843309", - "from": "1122", - "to": "1044", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1403", - "label": "843513 (-) 760931", - "from": "1121", - "to": "1068", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1402", - "label": "492279 (-) 495696", - "from": "1120", - "to": "1056", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1401", - "label": "492279 (-) 1684283", - "from": "1120", - "to": "1144", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1400", - "label": "373494 (-) 369394", - "from": "1119", - "to": "1116", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1399", - "label": "1690356 (-) 1690504", - "from": "1118", - "to": "1172", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1398", - "label": "194803 (-) 1690278", - "from": "1117", - "to": "1095", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1397", - "label": "194803 (-) 1863096", - "from": "1117", - "to": "1193", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1396", - "label": "369394 (-) 379628", - "from": "1116", - "to": "1115", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1395", - "label": "369394 (-) 301845", - "from": "1116", - "to": "1130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1394", - "label": "369394 (-) 303994", - "from": "1116", - "to": "1165", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1393", - "label": "369394 (-) 330932", - "from": "1116", - "to": "1097", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1392", - "label": "369394 (-) 293444", - "from": "1116", - "to": "1050", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1391", - "label": "369394 (-) 301477", - "from": "1116", - "to": "1183", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1390", - "label": "369394 (-) 304276", - "from": "1116", - "to": "1088", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1389", - "label": "369394 (-) 299537", - "from": "1116", - "to": "1034", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1388", - "label": "369394 (-) 299067", - "from": "1116", - "to": "1049", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1387", - "label": "369394 (-) 304210", - "from": "1116", - "to": "1058", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1386", - "label": "369394 (-) 298315", - "from": "1116", - "to": "1153", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1385", - "label": "369394 (-) 298310", - "from": "1116", - "to": "1148", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1384", - "label": "369394 (-) 299127", - "from": "1116", - "to": "1072", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1383", - "label": "369394 (-) 330112", - "from": "1116", - "to": "1169", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1382", - "label": "369394 (-) 304129", - "from": "1116", - "to": "1024", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1381", - "label": "369394 (-) 298309", - "from": "1116", - "to": "1147", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1380", - "label": "369394 (-) 371225", - "from": "1116", - "to": "1036", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1379", - "label": "379628 (-) 1259054", - "from": "1115", - "to": "1043", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1378", - "label": "261355 (-) 488902", - "from": "1114", - "to": "1201", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1377", - "label": "261355 (-) 1065763", - "from": "1114", - "to": "1137", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1376", - "label": "261355 (-) 1679651", - "from": "1114", - "to": "1135", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1375", - "label": "492262 (-) 1684283", - "from": "1113", - "to": "1144", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1374", - "label": "492262 (-) 1684482", - "from": "1113", - "to": "1025", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1373", - "label": "492262 (-) 1682942", - "from": "1113", - "to": "1219", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1372", - "label": "496865 (-) 1684283", - "from": "1112", - "to": "1144", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1371", - "label": "496865 (-) 1684482", - "from": "1112", - "to": "1025", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1370", - "label": "1835230 (-) 759862", - "from": "1111", - "to": "1045", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1369", - "label": "793816 (-) 191969", - "from": "1110", - "to": "1206", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1368", - "label": "529112 (-) 1848892", - "from": "1109", - "to": "1048", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1367", - "label": "529112 (-) 1848946", - "from": "1109", - "to": "1069", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1366", - "label": "529112 (-) 1835230", - "from": "1109", - "to": "1111", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1365", - "label": "208598 (-) 1672201", - "from": "1108", - "to": "1028", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1364", - "label": "208598 (-) 1701898", - "from": "1108", - "to": "1032", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1363", - "label": "1677011 (-) 780263", - "from": "1107", - "to": "1207", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1362", - "label": "199874 (-) 192256", - "from": "1105", - "to": "1122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1361", - "label": "917695 (-) 917666", - "from": "1104", - "to": "1094", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1360", - "label": "202943 (-) 195984", - "from": "1103", - "to": "1174", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1359", - "label": "842940 (-) 1695832", - "from": "1102", - "to": "1060", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1358", - "label": "759483 (-) 759479", - "from": "1101", - "to": "1099", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1357", - "label": "1669819 (-) 780263", - "from": "1100", - "to": "1207", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1356", - "label": "759479 (-) 759648", - "from": "1099", - "to": "1158", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1355", - "label": "836276 (-) 173043", - "from": "1098", - "to": "1212", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1354", - "label": "330932 (-) 1695833", - "from": "1097", - "to": "1061", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1353", - "label": "330932 (-) 1085307", - "from": "1097", - "to": "1167", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1352", - "label": "330932 (-) 1684347", - "from": "1097", - "to": "1166", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1351", - "label": "330932 (-) 1695352", - "from": "1097", - "to": "1073", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1350", - "label": "192688 (-) 1863046", - "from": "1096", - "to": "1171", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1349", - "label": "1690278 (-) 330402", - "from": "1095", - "to": "1093", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1348", - "label": "1690278 (-) 501018", - "from": "1095", - "to": "1133", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1347", - "label": "298656 (-) 791020", - "from": "1092", - "to": "1210", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1346", - "label": "298651 (-) 791020", - "from": "1091", - "to": "1210", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1345", - "label": "1688214 (-) 181558", - "from": "1090", - "to": "1140", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1344", - "label": "298645 (-) 791020", - "from": "1089", - "to": "1210", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1343", - "label": "304276 (-) 299541", - "from": "1088", - "to": "1035", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1342", - "label": "1695374 (-) 1695353", - "from": "1087", - "to": "1074", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1341", - "label": "840846 (-) 192256", - "from": "1086", - "to": "1122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1340", - "label": "1695372 (-) 1695353", - "from": "1085", - "to": "1074", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1339", - "label": "1695372 (-) 1695832", - "from": "1085", - "to": "1060", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1338", - "label": "557190 (-) 842569", - "from": "1084", - "to": "1152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1337", - "label": "1675402 (-) 780263", - "from": "1083", - "to": "1207", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1336", - "label": "1684105 (-) 1684248", - "from": "1082", - "to": "1132", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1335", - "label": "1695367 (-) 1695353", - "from": "1081", - "to": "1074", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1334", - "label": "1695367 (-) 1695832", - "from": "1081", - "to": "1060", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1333", - "label": "1683591 (-) 504076", - "from": "1080", - "to": "1126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1332", - "label": "1683591 (-) 504077", - "from": "1080", - "to": "1128", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1331", - "label": "1683591 (-) 492262", - "from": "1080", - "to": "1113", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1330", - "label": "1683591 (-) 495549", - "from": "1080", - "to": "1195", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1329", - "label": "1683591 (-) 1683355", - "from": "1080", - "to": "1179", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1328", - "label": "1683591 (-) 504075", - "from": "1080", - "to": "1125", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1327", - "label": "1683591 (-) 492556", - "from": "1080", - "to": "1031", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1326", - "label": "1695366 (-) 1695353", - "from": "1079", - "to": "1074", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1325", - "label": "195711 (-) 195705", - "from": "1078", - "to": "1076", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1324", - "label": "826488 (-) 557190", - "from": "1077", - "to": "1084", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1323", - "label": "298618 (-) 1676716", - "from": "1075", - "to": "1188", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1322", - "label": "1695353 (-) 1684248", - "from": "1074", - "to": "1132", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1321", - "label": "1695352 (-) 170436", - "from": "1073", - "to": "1200", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1320", - "label": "1695352 (-) 791922", - "from": "1073", - "to": "1163", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1319", - "label": "1695352 (-) 834827", - "from": "1073", - "to": "1127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1318", - "label": "1695352 (-) 835002", - "from": "1073", - "to": "1194", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1317", - "label": "1695352 (-) 1695372", - "from": "1073", - "to": "1085", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1316", - "label": "1695352 (-) 781057", - "from": "1073", - "to": "1123", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1315", - "label": "1695352 (-) 1695366", - "from": "1073", - "to": "1079", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1314", - "label": "1695352 (-) 1695374", - "from": "1073", - "to": "1087", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1313", - "label": "1695352 (-) 781114", - "from": "1073", - "to": "1145", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1312", - "label": "1695352 (-) 1695307", - "from": "1073", - "to": "1053", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1311", - "label": "1695352 (-) 1695306", - "from": "1073", - "to": "1052", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1310", - "label": "1695352 (-) 834570", - "from": "1073", - "to": "1029", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1309", - "label": "1695352 (-) 1695367", - "from": "1073", - "to": "1081", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1308", - "label": "1695352 (-) 1695310", - "from": "1073", - "to": "1055", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1307", - "label": "1695352 (-) 784286", - "from": "1073", - "to": "1180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1306", - "label": "299127 (-) 1695352", - "from": "1072", - "to": "1073", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1305", - "label": "299127 (-) 299541", - "from": "1072", - "to": "1035", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1304", - "label": "299127 (-) 1695833", - "from": "1072", - "to": "1061", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1303", - "label": "298614 (-) 1676716", - "from": "1071", - "to": "1188", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1302", - "label": "1676402 (-) 780263", - "from": "1070", - "to": "1207", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1301", - "label": "1848946 (-) 759862", - "from": "1069", - "to": "1045", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1300", - "label": "1695843 (-) 1695832", - "from": "1067", - "to": "1060", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1299", - "label": "1695842 (-) 1695832", - "from": "1066", - "to": "1060", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1298", - "label": "1082975 (-) 834827", - "from": "1065", - "to": "1127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1297", - "label": "196704 (-) 195984", - "from": "1064", - "to": "1174", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1296", - "label": "196703 (-) 197125", - "from": "1063", - "to": "1026", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1295", - "label": "196703 (-) 759483", - "from": "1063", - "to": "1101", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1294", - "label": "196700 (-) 202943", - "from": "1062", - "to": "1103", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1293", - "label": "196700 (-) 762961", - "from": "1062", - "to": "1057", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1292", - "label": "196700 (-) 196704", - "from": "1062", - "to": "1064", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1291", - "label": "1695833 (-) 1695843", - "from": "1061", - "to": "1067", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1290", - "label": "1695833 (-) 1695367", - "from": "1061", - "to": "1081", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1289", - "label": "1695833 (-) 1695310", - "from": "1061", - "to": "1055", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1288", - "label": "1695833 (-) 354741", - "from": "1061", - "to": "1191", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1287", - "label": "1695833 (-) 835002", - "from": "1061", - "to": "1194", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1286", - "label": "1695833 (-) 784286", - "from": "1061", - "to": "1180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1285", - "label": "1695833 (-) 791922", - "from": "1061", - "to": "1163", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1284", - "label": "1695833 (-) 1695372", - "from": "1061", - "to": "1085", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1283", - "label": "1695833 (-) 842940", - "from": "1061", - "to": "1102", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1282", - "label": "1695833 (-) 1695048", - "from": "1061", - "to": "1150", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1281", - "label": "1695833 (-) 834827", - "from": "1061", - "to": "1127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1280", - "label": "1695833 (-) 1695306", - "from": "1061", - "to": "1052", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1279", - "label": "1695833 (-) 834570", - "from": "1061", - "to": "1029", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1278", - "label": "1695833 (-) 1695842", - "from": "1061", - "to": "1066", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1277", - "label": "1695833 (-) 170436", - "from": "1061", - "to": "1200", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1276", - "label": "1695833 (-) 779764", - "from": "1061", - "to": "1213", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1275", - "label": "1695832 (-) 1684248", - "from": "1060", - "to": "1132", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1274", - "label": "1504342 (-) 196703", - "from": "1059", - "to": "1063", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1273", - "label": "304210 (-) 299541", - "from": "1058", - "to": "1035", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1272", - "label": "762961 (-) 195984", - "from": "1057", - "to": "1174", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1271", - "label": "495696 (-) 495691", - "from": "1056", - "to": "1054", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1270", - "label": "1695310 (-) 1695832", - "from": "1055", - "to": "1060", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1269", - "label": "1695310 (-) 1695353", - "from": "1055", - "to": "1074", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1268", - "label": "495691 (-) 501023", - "from": "1054", - "to": "1134", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1267", - "label": "1695307 (-) 1695353", - "from": "1053", - "to": "1074", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1266", - "label": "1695306 (-) 1695353", - "from": "1052", - "to": "1074", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1265", - "label": "1695306 (-) 1695832", - "from": "1052", - "to": "1060", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1264", - "label": "1837125 (-) 213934", - "from": "1051", - "to": "1190", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1263", - "label": "293444 (-) 299541", - "from": "1050", - "to": "1035", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1262", - "label": "299067 (-) 1690532", - "from": "1049", - "to": "1184", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1261", - "label": "299067 (-) 1695833", - "from": "1049", - "to": "1061", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1260", - "label": "299067 (-) 1684347", - "from": "1049", - "to": "1166", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1259", - "label": "299067 (-) 299541", - "from": "1049", - "to": "1035", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1258", - "label": "299067 (-) 1084713", - "from": "1049", - "to": "1139", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1257", - "label": "1848892 (-) 759862", - "from": "1048", - "to": "1045", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1256", - "label": "759867 (-) 759646", - "from": "1047", - "to": "1156", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1255", - "label": "759862 (-) 759867", - "from": "1045", - "to": "1047", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1254", - "label": "843309 (-) 195984", - "from": "1044", - "to": "1174", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1253", - "label": "1259054 (-) 193872", - "from": "1043", - "to": "1155", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1252", - "label": "492077 (-) 1684283", - "from": "1042", - "to": "1144", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1251", - "label": "492077 (-) 501047", - "from": "1042", - "to": "1141", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1250", - "label": "780841 (-) 173043", - "from": "1041", - "to": "1212", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1249", - "label": "1083941 (-) 173043", - "from": "1040", - "to": "1212", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1248", - "label": "836645 (-) 192256", - "from": "1039", - "to": "1122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1247", - "label": "2083872 (-) 1688388", - "from": "1038", - "to": "1146", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1246", - "label": "1678366 (-) 192424", - "from": "1037", - "to": "1185", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1245", - "label": "371225 (-) 835948", - "from": "1036", - "to": "1159", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1244", - "label": "371225 (-) 835453", - "from": "1036", - "to": "1168", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1243", - "label": "299541 (-) 298614", - "from": "1035", - "to": "1071", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1242", - "label": "299541 (-) 298651", - "from": "1035", - "to": "1091", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1241", - "label": "299541 (-) 298618", - "from": "1035", - "to": "1075", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1240", - "label": "299541 (-) 280539", - "from": "1035", - "to": "1205", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1239", - "label": "299541 (-) 298645", - "from": "1035", - "to": "1089", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1238", - "label": "299541 (-) 261355", - "from": "1035", - "to": "1114", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1237", - "label": "299541 (-) 298656", - "from": "1035", - "to": "1092", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1236", - "label": "299537 (-) 299541", - "from": "1034", - "to": "1035", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1235", - "label": "193037 (-) 193018", - "from": "1033", - "to": "1216", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1234", - "label": "1701898 (-) 529112", - "from": "1032", - "to": "1109", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1233", - "label": "492556 (-) 1684283", - "from": "1031", - "to": "1144", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1232", - "label": "492556 (-) 1682942", - "from": "1031", - "to": "1219", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1231", - "label": "492556 (-) 1684482", - "from": "1031", - "to": "1025", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1230", - "label": "492556 (-) 1684105", - "from": "1031", - "to": "1082", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1229", - "label": "760331 (-) 213934", - "from": "1030", - "to": "1190", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1228", - "label": "834570 (-) 1690356", - "from": "1029", - "to": "1118", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1227", - "label": "834570 (-) 1695832", - "from": "1029", - "to": "1060", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1226", - "label": "834570 (-) 1684105", - "from": "1029", - "to": "1082", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1225", - "label": "834570 (-) 1695353", - "from": "1029", - "to": "1074", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1224", - "label": "1672201 (-) 529112", - "from": "1028", - "to": "1109", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1223", - "label": "1863175 (-) 193011", - "from": "1027", - "to": "1214", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1222", - "label": "197125 (-) 196700", - "from": "1026", - "to": "1062", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1221", - "label": "1684482 (-) 1684022", - "from": "1025", - "to": "1046", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1220", - "label": "304129 (-) 299541", - "from": "1024", - "to": "1035", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/The Ligand_GPCR_Gs complex dissociates.json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/The Ligand_GPCR_Gs complex dissociates.json deleted file mode 100644 index 5324e07c9d..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/The Ligand_GPCR_Gs complex dissociates.json +++ /dev/null @@ -1,16436 +0,0 @@ -{ - "nodes": [ - { - "id": "2976", - "label": "Dissociation of phosphorylated 4EBP1 from eIF4E", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2975", - "label": "DecS-GHRL-1(24-50) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2974", - "label": "P2RY11 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2973", - "label": "EIF4E [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2972", - "label": "eIF4E:4E-BP1-P [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2971", - "label": "F2RL3(18-385) [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2970", - "label": "Ade-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2969", - "label": "PolyUb-Misfolded PCNT [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2968", - "label": "AHCY:NAD+ tetramer hydrolyses AdoHcy", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2967", - "label": "DecS-GHRL-1(24-51) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2966", - "label": "F2R(27-425) [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2965", - "label": "CASP8(385-479) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2964", - "label": "O-octanoyl-L-serine-GHRL-1(24-51) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2963", - "label": "PARN deadenylates mRNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2962", - "label": "Release of PLCG from FCGR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2961", - "label": "clustered IgG-Ag:p-FCGRs:p-6Y-SYK:p-3Y-PLCG [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2960", - "label": "AdoHcy [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2959", - "label": "Bradykinin receptor:Bradykinin [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2958", - "label": "GGC-RAB7B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2957", - "label": "Retinoic acid activates HOXB4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2956", - "label": "Disintegration of matrix layer", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "2955", - "label": "Ubiquitinated IkB is degraded", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2954", - "label": "NF-kappaB p50,p65,c-Rel:ub-p-IKB [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "2953", - "label": "NF-kappaB p65:p65:ub-p-IkB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2952", - "label": "Phosphorylation and activation of PLCG", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2951", - "label": "Degradation of CD8", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2950", - "label": "Exocytosis of Insulin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2949", - "label": "CYSLTR2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2948", - "label": "SUMO1:p-T4827-HERC2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2947", - "label": "TGFA(24-98) [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2946", - "label": "5HT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2945", - "label": "trans-Golgi Network Derived Vesicle Uncoating", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2944", - "label": "IL1B(117-269) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2943", - "label": "p-S25,S1778-TP53BP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2942", - "label": "AREG(101-187) [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2941", - "label": "Dissociation of BRAF/RAF fusion complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2940", - "label": "CTNNB1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2939", - "label": "NPS [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2938", - "label": "CBL neddylates TGFBR2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2937", - "label": "PLCG1 phosphorylation by p-EGFR:p-ERBB2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2936", - "label": "NEDD8-AcM-UBE2M [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2935", - "label": "PP2A [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2934", - "label": "SIN3A [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2933", - "label": "TTLLs polyglutamylate tubulin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2932", - "label": "APC is K63-polyubiquitinated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2931", - "label": "Loading of acetylcholine in synaptic vesicles", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2930", - "label": "p-T185,Y187-MAPK1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2929", - "label": "COP9 signalosome deneddylates cytosolic CRL E3 ubiquitin ligase complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2928", - "label": "PolyUb-Misfolded PARK7 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2927", - "label": "(d)AMP, (d)GMP, or (d)IMP + H2O => (deoxy)adenosine, (deoxy)guanosine, or (deoxy)inosine + orthophosphate (NT5C1A)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2926", - "label": "PPP1R3C [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2925", - "label": "NANOG [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2924", - "label": "Hist [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2923", - "label": "Expression of PPARGC1A (PGC-1alpha)", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2922", - "label": "AGTR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2921", - "label": "G-protein alpha (13):GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2920", - "label": "Expression of AVP", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2919", - "label": "Aggresome dissociates from dynein and microtubule", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2918", - "label": "Microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2917", - "label": "alpha-beta tubulin dimer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2916", - "label": "KLF4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2915", - "label": "MAPK3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2914", - "label": "RNF152 [lysosomal membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2913", - "label": "NPSR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2912", - "label": "p-S166-RIPK1:p-S199,227-RIPK3 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2911", - "label": "PP2A (A:C) [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2910", - "label": "NF-kappaB p65:p65 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2909", - "label": "FKBP1A [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2908", - "label": "RASA1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2907", - "label": "FGF18 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2906", - "label": "ARRB2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2905", - "label": "NF-kappaB p50:c-Rel:ub-p-IKB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2904", - "label": "Exocytosis of ficolin-rich granule lumen proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2903", - "label": "Regulation of protein ISGylation by ISG15 deconjugating enzyme USP18", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2902", - "label": "CCNH [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2901", - "label": "Transfer of SUMO2 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2900", - "label": "UBE2I [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2899", - "label": "SEC31A:SEC13:SEC23IP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2898", - "label": "DA [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2897", - "label": "Interleukin-1 family are secreted", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2896", - "label": "Interleukin-1 family [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "2895", - "label": "Expression of CLOCK", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2894", - "label": "IL18 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2893", - "label": "PPIA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2892", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "2891", - "label": "SUMO3:UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2890", - "label": "The receptor:G-protein complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2889", - "label": "Dissociation of RAS:RAF complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2888", - "label": "IL8 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2887", - "label": "Dissociation of RAS:RAF1 mutant complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2886", - "label": "RAB1:GTP [endoplasmic reticulum-Golgi intermediate compartment membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2885", - "label": "p-4Y-PLCG1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2884", - "label": "Dynein:Dynactin:microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2883", - "label": "trans-Golgi Network Derived Lysosomal Vesicle Uncoating", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2882", - "label": "Expression of PERIOD-1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2881", - "label": "DNAJC6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2880", - "label": "OPRM1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2879", - "label": "Active NIK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2878", - "label": "L-Glu [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2877", - "label": "HERC5 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2876", - "label": "PAXIP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2875", - "label": "LACT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2874", - "label": "Expression of NPAS2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2873", - "label": "FOSB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2872", - "label": "UMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2871", - "label": "Interleukin-1 family precursors are cleaved by caspase-1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2870", - "label": "CCR4-NOT complex deadenylates mRNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2869", - "label": "p-T202,Y204-MAPK3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2868", - "label": "Transfer of SUMO3 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2867", - "label": "NFKB1(1-433):RELA [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2866", - "label": "Expression of STAT3-upregulated extracellular proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2865", - "label": "Thy-dRib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2864", - "label": "Cyt-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2863", - "label": "Ura-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2862", - "label": "RNF111 ubiquitinates SUMOylated XPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2861", - "label": "Dissociation of moderate activity BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2860", - "label": "Ub,SUMO:XPC:RAD23:CETN2:Open bubble-dsDNA:PAR-UV-DDB:TFIIH Core:XPA:PAR-PARP1, PAR-PARP2:CHD1L [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2859", - "label": "(d)CMP, TMP, or (d)UMP + H2O => (deoxy)cytidine, thymidine, or (deoxy)uridine + orthophosphate (NT5C3)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2858", - "label": "Expression of CEBPB in adipogenesis", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2857", - "label": "Beta-catenin is released from the destruction complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2856", - "label": "K63polyUb-APC [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2855", - "label": "VCP [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2854", - "label": "CREM isoform 6 (ICER1) [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2853", - "label": "NF-kappaB p50:c-Rel [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2852", - "label": "PIP3:BTK:G beta-gamma complex dissociates to Active BTK, PIP3 and G beta-gamma complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2851", - "label": "IL1B(1-269) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2850", - "label": "p-Y701-STAT1, p-Y705-STAT3, p-Y649-STAT5 dissociates from IL9:p-Y116-IL9R:JAK1:IL2RG:p-904,939-JAK3:p-Y705-STAT3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2849", - "label": "p-T,Y MAPKs [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "2848", - "label": "ADR, NAd [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "2847", - "label": "hp-IRAK1:3xK63-polyUb-TRAF6:3xUBE2N:UBE2V1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2846", - "label": "SLC24A1 exchanges 4Na+ for Ca2+, K+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2845", - "label": "NAd [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2844", - "label": "PPARGC1A [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2843", - "label": "ISGylated host proteins [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2842", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2841", - "label": "JAK1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2840", - "label": "THBS1 gene transcription is stimulated by the complex containing RUNX1, PRMT1 and GATA1 and inhibited by the complex of RUNX1, SIN3A and PRMT6", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2839", - "label": "THBS1 trimer [platelet alpha granule lumen]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2838", - "label": "TGFA(24-98) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2837", - "label": "Expression of Leptin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2836", - "label": "K+-independent Li+/Ca2+ exchanger transport", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2835", - "label": "S1P [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2834", - "label": "MMPs cleave HB-EGF", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2833", - "label": "NEDD8 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2832", - "label": "Ac-CoA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2831", - "label": "p-4Y-PLCG1 dissociates from activated FGFR3 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2830", - "label": "GRB2-1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2829", - "label": "Glucagon-like Peptide 1 is secreted from intestinal L cells", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2828", - "label": "NF-KappaB p50:p50:ub-p-IKBA [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2827", - "label": "NF-kappaB p50:p50 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2826", - "label": "STAT1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2825", - "label": "SAR1B:GTP [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2824", - "label": "OAT2 and OAT4 mediate transport of sulphate conjugates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2823", - "label": "LPAR1,2,3,5:LPA [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2822", - "label": "p-4Y-PLCG1 dissociates from activated FGFR3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2821", - "label": "PolyUb-Misfolded Proteins [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "2820", - "label": "NF-kappaB p50:p65:ub-p-IKB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2819", - "label": "Ade-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2818", - "label": "PolyUb-misfolded nascent CFTR [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2817", - "label": "NF-kB migrates to the nucleus and turns on transcription", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2816", - "label": "IL1B [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2815", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon ALPK1:ADP-heptose stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "2814", - "label": "ISG15 E3 ligases [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "2813", - "label": "NF-kappaB p50,p65,c-Rel dimer [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "2812", - "label": "ARIH1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2811", - "label": "Dissociation of phosphorylated PLCG1 from ligand-responsive p-6Y-EGFR mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2810", - "label": "PXLP-K314-GPT transaminates PYR to form L-Ala", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2809", - "label": "AGTR1 [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2808", - "label": "PPTN11 dephosphorylates SPRY2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2807", - "label": "PLCG1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2806", - "label": "G-protein alpha (q/11): GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2805", - "label": "RIPK3 is phosphorylated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2804", - "label": "RIPK1:RIPK3 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2803", - "label": "Release of L-Glutamate at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2802", - "label": "AVP(20-28) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2801", - "label": "Disassembly of COPII coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2800", - "label": "MAPK3 (ERK1) and MAPK1 (ERK2) phosphorylate CEBPB", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2799", - "label": "CEBPB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2798", - "label": "SCF-beta-TrCP ubiquitinylates IkB", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2797", - "label": "BSG:MCTs cotransport LACT, H+ from cytosol to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2796", - "label": "FGFR1OP-FGFR1 phosphorylates STAT1 and STAT3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2795", - "label": "GYS1 catalyzes the incorporation of phosphoglucose into glycogen-GYG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2794", - "label": "EP300 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2793", - "label": "Phosphorylated STAT3 Dimer Translocates to the Nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2792", - "label": "SAA1(19-122) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2791", - "label": "COPII vesicle with MHC class I [ER to Golgi transport vesicle membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2790", - "label": "p-Y705-STAT3 dimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2789", - "label": "CCPs deglutamylate tubulin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2788", - "label": "Vesicle budding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "2787", - "label": "HCMV Nuclear Pore Docking", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2786", - "label": "Thrombin-mediated activation of Proteinase-activated receptors", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2785", - "label": "p-4Y-PLCG1 dissociates from activated FGFR1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2784", - "label": "Estrogen-responsive MYC gene expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2783", - "label": "Budding of COPII coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2782", - "label": "COPI vesicle uncoating at the ER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2781", - "label": "RAB1:GTP:coatomer:p24 dimers:SEC22B:cargo:NBAS:RINT1:ZW10:STX18:USE1L:BNIP1 [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2780", - "label": "C3AR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2779", - "label": "2OG [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2778", - "label": "The Ligand:GPCR:G12/13 complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2777", - "label": "L-Glu [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2776", - "label": "RIPK3 binds RIPK1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2775", - "label": "p-T235, S321-CEBPB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2774", - "label": "SOCS2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2773", - "label": "RAB6:GTP displaces PAFAH1B1 from dynein:dynactin complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2772", - "label": "OPRM1 gene expression is repressed by MECP2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2771", - "label": "TGFA precursor [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2770", - "label": "PYR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2769", - "label": "ADORA2B:Ade-Rib:GsGTP dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2768", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2767", - "label": "p-Y705-STAT3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2766", - "label": "Dissociation of the PAR:Gq complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2765", - "label": "Phosphorylation of 4E-BP1 by activated mTORC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2764", - "label": "Dissociation of Rho GTP:GDP from GDI complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2763", - "label": "ATP2B1-4 transport cytosolic Ca2+ to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2762", - "label": "AREG precursor [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2761", - "label": "PPARG [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2760", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon TLR3 stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "2759", - "label": "Deacetylation of cleaved cohesin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2758", - "label": "Cleaved Cohesin:PDS5:WAPAL [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2757", - "label": "SIK1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2756", - "label": "phosphoenolpyruvate + ADP => pyruvate + ATP", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2755", - "label": "PGE2 [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2754", - "label": "RHOA:GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2753", - "label": "The Ligand:GPCR:Gq complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2752", - "label": "MON1:CCZ1 exchanges GTP for GDP on RAB7", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2751", - "label": "CASR:Ca2+ [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2750", - "label": "OTUD5 deubiquitinates TRAF3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2749", - "label": "Active PLC-gamma1 dissociates from EGFR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2748", - "label": "Release of GABA at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2747", - "label": "CXCR4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2746", - "label": "ARHGDIA [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2745", - "label": "p-4Y-PLCG1 dissociates from activated FGFR2 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2744", - "label": "AcCho [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2743", - "label": "Cho is acetylated to AcCho by CHAT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2742", - "label": "(d)CMP, TMP, or (d)UMP + H2O => (deoxy)cytidine, thymidine, or (deoxy)uridine + orthophosphate (NT5C1A)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2741", - "label": "GPR84 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2740", - "label": "MCHR1,MCHR2:PMCH(147-165) [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2739", - "label": "RNF4 ubiquitinates MDC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2738", - "label": "AREG(101-187) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2737", - "label": "TMED2:TMED10 tetramer:GPI-CD59, GPI-FOLR1 [endoplasmic reticulum-Golgi intermediate compartment membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2736", - "label": "NMUR1,NMUR2:NMU [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2735", - "label": "PolyUb:misfolded proteins dissociate from PRKN:UBE2N:UBE2V1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2734", - "label": "TMP, uridine 2', 3', or 5' monophosphates, or deoxyuridine 3' or 5' monophosphates + H2O => thymidine or (deoxy)uridine + orthophosphate [NT5C]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2733", - "label": "p-BMAL1:p-CLOCK,NPAS2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2732", - "label": "RHO [photoreceptor disc membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2731", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon TLR stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "2730", - "label": "G-protein beta-gamma complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2729", - "label": "G-alpha(t):G-beta-gamma:Opsins complex dissociates to active G-alpha(t)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2728", - "label": "Exocytosis of specific granule membrane proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2727", - "label": "FGL2 [ficolin-1-rich granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2726", - "label": "The Ligand:GPCR:Gz complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2725", - "label": "BTRC [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2724", - "label": "ISGylation of E2 conjugating enzymes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2723", - "label": "Vesicle is tethered through binding GOLGA2:GORASP1, GOLGB1 and the COG complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2722", - "label": "RAB1:GTP:USO1:coatomer:PalmC-YKT6:p24 dimers:cargo:spectrin:anykrin [transport vesicle]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2721", - "label": "Dissociation of oncogenic RAS:RAF complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2720", - "label": "DNA DNA DSBs:p-MRN:p-S1981,Ac-K3016-ATM:KAT5:K63PolyUb-K14,K16,p-S139-H2AFX,Me2K21-HIST1H4A-Nucleosome:SUMO2:K1840,p-5T-MDC1:p-S102-WHSC1:RNF8:Zn2+:SUMO1:p-T4827-HERC2:UBE2N:UBE2V2:RNF168:PIAS4:p-S25,S1778-TP53BP1:p-5S,2T-BRCA1-A complex [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2719", - "label": "Release of p-PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2718", - "label": "Stimulation of IL8 transcription in senescent cells", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2717", - "label": "G-protein alpha (i):GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2716", - "label": "Dissociation of phosphorylated PLC-gamma 1 from p-EGFRvIII mutant", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2715", - "label": "p-4Y-PLCG1 dissociates from activated FGFR2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2714", - "label": "Negative regulation of DDX58/IFIH1 signaling by RNF216", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2713", - "label": "PPBP(35-128) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2712", - "label": "Phosphorylated heterodimers of ERBB2 KD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2711", - "label": "PolyUb-Misfolded cilia proteins [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "2710", - "label": "PolyUb-Misfolded CETN1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2709", - "label": "PPARG:Fatty Acid:RXRA:Mediator:Coactivator Complex [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2708", - "label": "Retinoic acid activates HOXB1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2707", - "label": "Dissociation of the PAR:G12/13 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2706", - "label": "GDI1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2705", - "label": "RNF8:Zn2+ [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2704", - "label": "KIFC1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2703", - "label": "NF-kappaB translocates from the cytosol to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2702", - "label": "K63polyUb [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "2701", - "label": "K48PolyUb-K21,22-p-S32,36-IkBA:NF-kB complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2700", - "label": "HDAC3 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2699", - "label": "FGF2(10-155) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2698", - "label": "Separation of sister chromatids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2697", - "label": "Fatty acid ligands activate PPARA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2696", - "label": "Equilibrative transport (export) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2695", - "label": "Phosphorylation and activation of PLCG due to FCGR3A effect", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2694", - "label": "HBEGF(63-148) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2693", - "label": "p-Y-STATs translocate to nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2692", - "label": "Dissociation of high activity BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2691", - "label": "AcCho [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2690", - "label": "LDH tetramer reduces PYR to LACT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2689", - "label": "p-4Y-PLCG1 dissociates from activated FGFR4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2688", - "label": "Expression of NANOG", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2687", - "label": "Acyl Ghrelin and C-Ghrelin are secreted", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2686", - "label": "SLC8A1,2,3 exchange 3Na+ for Ca2+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2685", - "label": "p-Y1105-ARHGAP35 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2684", - "label": "LACT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2683", - "label": "p190RhoGEF exchanges GTP for GDP on RHOA, activating it", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2682", - "label": "SLC22A12 exchanges extracellular urate for cytosolic LACT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2681", - "label": "Phosphorylation of CTLA-4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2680", - "label": "p-Y705-STAT3 dimer translocates from cytosol to nucleoplasm", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2679", - "label": "Fusion of viral membrane with host cell membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2678", - "label": "Viral core surrounded by Matrix layer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2677", - "label": "p-Y-STATs dissociate", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2676", - "label": "SLC7A11-mediated exchange of extracellular cysteine and cytosolic glutamate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2675", - "label": "Activation of NIK", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2674", - "label": "UBE2N:UBE2V1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2673", - "label": "p-4Y-PLCG1 dissociates from activated FGFR4 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2672", - "label": "BMAL1:CLOCK,NPAS2 heterodimer is phosphorylated and translocates to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2671", - "label": "DNA DSB:p-MRN:p-S1981,Ac-K3016-ATM:KAT5 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2670", - "label": "myristoylated nef [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2669", - "label": "SPRY2 binds CBL", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2668", - "label": "Expression of BMAL1 (ARNTL).", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2667", - "label": "p115-RhoGEF activation of RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2666", - "label": "GABA [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2665", - "label": "ARFGAPs stimulate ARF GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2664", - "label": "BET1:GOSR2:STX5 bind v-SNARES on tethered vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2663", - "label": "Phosphorylated heterodimers of ERBB2 ECD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2662", - "label": "OAT1-3 transport organic anions with antiport of dicarboxylic acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2661", - "label": "Ca2+ [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2660", - "label": "GDI2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2659", - "label": "PF4(48-101) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2658", - "label": "PI(3,4,5)P3 [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2657", - "label": "The Ligand:GPCR:Gi complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2656", - "label": "2OG [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2655", - "label": "F2RL3 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2654", - "label": "MyrG-p-Y419-SRC [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2653", - "label": "MYC [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2652", - "label": "The Ligand:GPCR:Gs complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "2651", - "label": "SLC24A1-4 exchange extracellular 4Na+ for cytosolic Ca2+, K+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2650", - "label": "PTHLH [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2649", - "label": "Recovery of RNA synthesis after TC-NER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2648", - "label": "Dissociation of clathrin-associated proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2647", - "label": "NFKB1:RELA translocates from the cytosol to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2646", - "label": "NFKB1(1-433):RELA [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2645", - "label": "Cytosolic DUSPs dephosphorylate MAPKs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2644", - "label": "SAR1 Activation And Membrane Binding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2643", - "label": "SAR1B:GDP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2642", - "label": "SAR1B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2641", - "label": "FPR2:FPR2 ligands [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2640", - "label": "FPR2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2639", - "label": "VCPKMT (METTL21D) transfers 3xCH3 from 3xAdoMet to VCP", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2638", - "label": "EDNRB [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2637", - "label": "PIAS4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2636", - "label": "Polyglutamylated microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2635", - "label": "GPR39 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2634", - "label": "Processing of caspases", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2633", - "label": "26S proteasome processes K48PolyUb-K21,22-p-S32,36-IkBA:NF-kB complex to form NF-kB complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2632", - "label": "Transfer of SUMO1 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2631", - "label": "ARRB1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2630", - "label": "Acyl Ghrelin [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "2629", - "label": "O-octanoyl-L-serine-GHRL-1(24-50) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2628", - "label": "Release of PLCG from FCGR3A", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2627", - "label": "IgG:Leishmania surface:p-FCGR3A:p-6Y-SYK:p-3Y-PLCG [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2626", - "label": "Loss of SAR1B GTPase", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2625", - "label": "Dissociation of the Gi alpha:G olf complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2624", - "label": "Activated NTRK3 stimulates PI3K activity", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2623", - "label": "RPS6KA1/2/3 phosphorylates CEBPB on S321", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2622", - "label": "GNAL [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2621", - "label": "ARHGAP35 stimulates RHOA GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2620", - "label": "PIAS4 SUMOylates NR4A2 with SUMO2,3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2619", - "label": "TGFA precursor [ER to Golgi transport vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2618", - "label": "AREG precursor [ER to Golgi transport vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2617", - "label": "PolyUb-Misfolded IFT88 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2616", - "label": "CLOCK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2615", - "label": "RNF152 polyubiquitinates RRAGA", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2614", - "label": "ISGylation of host proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2613", - "label": "ARNTL [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2612", - "label": "NPAS2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2611", - "label": "UBE2N:UBE2V2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2610", - "label": "p-S102-WHSC1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2609", - "label": "Ca2+ [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2608", - "label": "CASP8(217-374) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2607", - "label": "RhoA is activated by nucleotide exchange and inhibits axonal growth", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2606", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2605", - "label": "PPARG:RXRA heterodimer binds to fatty acid-like ligands", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2604", - "label": "RHOA:GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2603", - "label": "GYS2 catalyzes the incorporation of phosphoglucose into glycogen-GYG2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2602", - "label": "UBE2L6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2601", - "label": "Transfer of NEDD8 to AcM-UBE2M", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2600", - "label": "NGEF exchanges GTP for GDP on RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2599", - "label": "SEC13 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2598", - "label": "TRAF3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2597", - "label": "Caspase-8 cleaves IL1B precursor", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2596", - "label": "TRAF6 binding leads to IRAK1:TRAF6 release", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2595", - "label": "GPR4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2594", - "label": "Association of Ku heterodimer with ends of DNA double-strand break", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2593", - "label": "NCOR1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2592", - "label": "PolyUb-Misfolded Proteins:HDAC6 dissociate from complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2591", - "label": "HSP90 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2590", - "label": "p-2S,S376,T,T209,T387-IRAK1:TRAF6 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2589", - "label": "PP2A dephosphorylates p-RHO to RHO", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2588", - "label": "p-SPHK1 phosphorylates sphingosine to sphingosine 1-phosphate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2587", - "label": "NR4A2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2586", - "label": "RASA1 stimulates RAS GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2585", - "label": "p-Y705-STAT3 dimer, p-Y641-STAT6 dimer translocate to nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2584", - "label": "Dissociation of paradoxically activated RAS:BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2583", - "label": "p-Y641-STAT6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2582", - "label": "PIAS4 SUMOylates MDC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2581", - "label": "LEP [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2580", - "label": "CGA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2579", - "label": "SUMO2:UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2578", - "label": "TRPs transport extracellular Ca2+ to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2577", - "label": "GCG(53-81) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2576", - "label": "CBL [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2575", - "label": "SRC autophosphorylation is positively regulated by InlA-bound CDH1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2574", - "label": "p-T235-CEBPB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2573", - "label": "STAT1 and STAT3 dimers translocate to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2572", - "label": "WNT5A:FZD4 is endocytosed", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2571", - "label": "viral dsRNA:IFIH1, viral dsRNA:K63polyUb-DDX58:MAVS [mitochondrial outer membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2570", - "label": "The p75NTR:NgR:MDGI complex reduces RHOA-GDI activity, displacing RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2569", - "label": "p-Y701-STAT1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2568", - "label": "Retrograde vesicle is tethered at the ER by the NRZ complex and t-SNAREs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2567", - "label": "TNFRSF1B [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2566", - "label": "AP-2 Complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2565", - "label": "Overexpressed HIST1H2AC and ESR1:ESTG bind MYC and BCL2 genes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2564", - "label": "UBE2N [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2563", - "label": "MAP3K14 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2562", - "label": "Nef mediated disruption of CD4:Lck Complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2561", - "label": "PolyUb-Misfolded ARL13B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2560", - "label": "Degradation of CD4", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2559", - "label": "Release of acetylcholine at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2558", - "label": "BTRC:CUL1:SKP1 (SCF-beta-TrCP1) ubiquitinylates PER proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2557", - "label": "TRAF6 is K63 poly-ubiquitinated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2556", - "label": "Acetylcholine Loaded Synaptic Vesicle [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2555", - "label": "Retinoic acid activates HOXD4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2554", - "label": "SUMO1:C93-UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2553", - "label": "G-proteins dissociate from plasma-membrane estrogen receptors", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2552", - "label": "Expression of PPARG", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2551", - "label": "RNF168 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2550", - "label": "TGFBR2 is recruited to tight junctions after TGF-beta stimulation", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2549", - "label": "Retinoic acid activates HOXA1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2548", - "label": "SPAST (spastin) mediates the severing of microtubules at chromosome attachment sites", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2547", - "label": "CSNK1D phosphorylates SEC23", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2546", - "label": "cIAP1,2 ubiquitinates NIK in cIAP1,2:TRAF2::TRAF3:NIK", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2545", - "label": "beta-TRCP ubiquitinates IkB-alpha in p-S32,33-IkB-alpha:NF-kB complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2544", - "label": "TNFRSF1B [specific granule membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "2543", - "label": "SCF-beta-TRCP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2542", - "label": "GMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "2541", - "label": "MYC gene expression is enhanced by E2F1, STAT3, and CEBPB and repressed by CEBPA", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2540", - "label": "p-4Y- PLCG1 dissociates from activated FGFR1 mutants and fusions", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2539", - "label": "Dissociation of cytosolic HSF1:HSP90:HDAC6:PTGES3 upon sensing protein aggregates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2538", - "label": "Exocytosis of platelet alpha granule contents", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2537", - "label": "Expression of FGF2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2536", - "label": "Protesomal degradation of K48polyUb-TRAF3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2535", - "label": "SCF-beta-TRCP ubiquitinates p-7S-p100:RELB in active NIK:p-176,S180-IKKA dimer:p-7S-p100:SCF-beta-TRCP", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2534", - "label": "Histone H2A [nucleoplasm]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "2533", - "label": "NMUR2:NMS [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2532", - "label": "G-protein alpha (12):GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2531", - "label": "mature GLP-1 [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "2530", - "label": "GLP-1 (7-37) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2529", - "label": "USO1 homodimer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2528", - "label": "ArgN-GCG(98-127) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2527", - "label": "UBE2N:UBE2V1 dissociates from hp-IRAK1:3xK63-polyUb-TRAF6:3xUBE2N:UBE2V1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "2526", - "label": "mature mRNA (eukaryotic, capped and deadenylated) [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "2525", - "label": "Exosome Complex hydrolyzes mRNA by 3' to 5' exoribonuclease digestion", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2524", - "label": "K63PolyUb:K14,K16,p-S139-H2AFX,Me2K21-HIST1H4A-Nucleosome [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2523", - "label": "PER1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2522", - "label": "LCK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2521", - "label": "coatomer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "2520", - "label": "Phosphorylated heterodimers of ERBB2 TMD/JMD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2519", - "label": "SUMOylation of XPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2518", - "label": "F2RL2(22-374) [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "2517", - "label": "PAFAH1B1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - } - ], - "edges": [ - { - "id": "3699", - "label": "572416 (-) 572418", - "from": "2976", - "to": "2973", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3698", - "label": "305153 (-) 299541", - "from": "2975", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3697", - "label": "304129 (-) 369394", - "from": "2974", - "to": "2652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3696", - "label": "304129 (-) 299541", - "from": "2974", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3695", - "label": "572418 (-) 1031197", - "from": "2973", - "to": "2963", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3694", - "label": "572418 (-) 994566", - "from": "2973", - "to": "2870", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3693", - "label": "572417 (-) 572416", - "from": "2972", - "to": "2976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3692", - "label": "297990 (-) 299541", - "from": "2971", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3691", - "label": "297990 (-) 297434", - "from": "2971", - "to": "2786", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3690", - "label": "492556 (-) 1684105", - "from": "2970", - "to": "2696", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3689", - "label": "492556 (-) 1682942", - "from": "2970", - "to": "2768", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3688", - "label": "492556 (-) 1684283", - "from": "2970", - "to": "2606", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3687", - "label": "6157 (-) 13130", - "from": "2969", - "to": "2592", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3686", - "label": "6157 (-) 8322", - "from": "2969", - "to": "2919", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3685", - "label": "826382 (-) 492556", - "from": "2968", - "to": "2970", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3684", - "label": "305167 (-) 299541", - "from": "2967", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3683", - "label": "298000 (-) 297434", - "from": "2966", - "to": "2786", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3682", - "label": "618516 (-) 1035755", - "from": "2965", - "to": "2776", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3681", - "label": "305175 (-) 299541", - "from": "2964", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3680", - "label": "1031197 (-) 992230", - "from": "2963", - "to": "2526", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3679", - "label": "289822 (-) 94950", - "from": "2962", - "to": "2658", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3678", - "label": "289823 (-) 289822", - "from": "2961", - "to": "2962", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3677", - "label": "554016 (-) 826382", - "from": "2960", - "to": "2968", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3676", - "label": "305190 (-) 299541", - "from": "2959", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3675", - "label": "1882150 (-) 2098710", - "from": "2958", - "to": "2752", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3674", - "label": "1341480 (-) 320330", - "from": "2957", - "to": "2593", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3673", - "label": "1412138 (-) 1411783", - "from": "2956", - "to": "2670", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3672", - "label": "616491 (-) 550154", - "from": "2955", - "to": "2867", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3671", - "label": "616491 (-) 616607", - "from": "2955", - "to": "2910", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3670", - "label": "616491 (-) 616843", - "from": "2955", - "to": "2813", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3669", - "label": "616491 (-) 616818", - "from": "2955", - "to": "2827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3668", - "label": "616491 (-) 616732", - "from": "2955", - "to": "2853", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3667", - "label": "616492 (-) 616491", - "from": "2954", - "to": "2955", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3666", - "label": "616493 (-) 616491", - "from": "2953", - "to": "2955", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3665", - "label": "289835 (-) 289823", - "from": "2952", - "to": "2961", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3664", - "label": "1473583 (-) 1411783", - "from": "2951", - "to": "2670", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3663", - "label": "1668145 (-) 251616", - "from": "2950", - "to": "2661", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3662", - "label": "303154 (-) 369394", - "from": "2949", - "to": "2652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3661", - "label": "54322 (-) 743241", - "from": "2948", - "to": "2594", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3660", - "label": "2131002 (-) 2131705", - "from": "2947", - "to": "2648", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3659", - "label": "299067 (-) 369394", - "from": "2946", - "to": "2652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3658", - "label": "299067 (-) 299541", - "from": "2946", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3657", - "label": "299067 (-) 331494", - "from": "2946", - "to": "2657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3656", - "label": "2119743 (-) 254746", - "from": "2945", - "to": "2631", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3655", - "label": "955460 (-) 955573", - "from": "2944", - "to": "2897", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3654", - "label": "62537 (-) 743241", - "from": "2943", - "to": "2594", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3653", - "label": "2131021 (-) 2131705", - "from": "2942", - "to": "2648", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3652", - "label": "975952 (-) 250984", - "from": "2941", - "to": "2930", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3651", - "label": "975952 (-) 251144", - "from": "2941", - "to": "2869", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3650", - "label": "975952 (-) 251201", - "from": "2941", - "to": "2849", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3649", - "label": "703570 (-) 1410943", - "from": "2940", - "to": "2575", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3648", - "label": "304210 (-) 369394", - "from": "2939", - "to": "2652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3647", - "label": "304210 (-) 299541", - "from": "2939", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3646", - "label": "950359 (-) 569211", - "from": "2938", - "to": "2576", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3645", - "label": "964698 (-) 144608", - "from": "2937", - "to": "2885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3644", - "label": "950362 (-) 950359", - "from": "2936", - "to": "2938", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3643", - "label": "46171 (-) 703760", - "from": "2935", - "to": "2857", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3642", - "label": "320604 (-) 1430006", - "from": "2934", - "to": "2772", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3641", - "label": "1934430 (-) 1935115", - "from": "2933", - "to": "2636", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3640", - "label": "712804 (-) 703763", - "from": "2932", - "to": "2856", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3639", - "label": "1084519 (-) 1084321", - "from": "2931", - "to": "2556", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3638", - "label": "250984 (-) 392955", - "from": "2930", - "to": "2645", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3637", - "label": "1911913 (-) 978264", - "from": "2929", - "to": "2833", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3636", - "label": "6250 (-) 8322", - "from": "2928", - "to": "2919", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3635", - "label": "6250 (-) 13130", - "from": "2928", - "to": "2592", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3634", - "label": "500848 (-) 492556", - "from": "2927", - "to": "2970", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3633", - "label": "916596 (-) 917308", - "from": "2926", - "to": "2603", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3632", - "label": "916596 (-) 916923", - "from": "2926", - "to": "2795", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3631", - "label": "159862 (-) 159681", - "from": "2925", - "to": "2537", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3630", - "label": "299127 (-) 369394", - "from": "2924", - "to": "2652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3629", - "label": "299127 (-) 299541", - "from": "2924", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3628", - "label": "322680 (-) 321865", - "from": "2923", - "to": "2844", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3627", - "label": "314489 (-) 299541", - "from": "2922", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3626", - "label": "297083 (-) 296562", - "from": "2921", - "to": "2707", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3625", - "label": "1338496 (-) 301477", - "from": "2920", - "to": "2802", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3624", - "label": "8322 (-) 8325", - "from": "2919", - "to": "2918", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3623", - "label": "8325 (-) 1934430", - "from": "2918", - "to": "2933", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3622", - "label": "8325 (-) 638896", - "from": "2918", - "to": "2548", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3621", - "label": "8327 (-) 1935831", - "from": "2917", - "to": "2789", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3620", - "label": "160903 (-) 160413", - "from": "2916", - "to": "2688", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3619", - "label": "160903 (-) 1382672", - "from": "2916", - "to": "2858", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3618", - "label": "258188 (-) 1793199", - "from": "2915", - "to": "2903", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3617", - "label": "1867917 (-) 1871665", - "from": "2914", - "to": "2615", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3616", - "label": "304276 (-) 299541", - "from": "2913", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3615", - "label": "304276 (-) 369394", - "from": "2913", - "to": "2652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3614", - "label": "1035416 (-) 2085752", - "from": "2912", - "to": "2578", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3613", - "label": "571548 (-) 571803", - "from": "2911", - "to": "2808", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3612", - "label": "616607 (-) 617080", - "from": "2910", - "to": "2703", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3611", - "label": "422049 (-) 573953", - "from": "2909", - "to": "2765", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3610", - "label": "565410 (-) 1200984", - "from": "2908", - "to": "2588", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3609", - "label": "133281 (-) 1484122", - "from": "2907", - "to": "2831", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3608", - "label": "133281 (-) 1485345", - "from": "2907", - "to": "2745", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3607", - "label": "133281 (-) 1485501", - "from": "2907", - "to": "2673", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3606", - "label": "133281 (-) 289149", - "from": "2907", - "to": "2822", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3605", - "label": "133281 (-) 291429", - "from": "2907", - "to": "2715", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3604", - "label": "133281 (-) 291483", - "from": "2907", - "to": "2689", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3603", - "label": "255142 (-) 974036", - "from": "2906", - "to": "2887", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3602", - "label": "255142 (-) 973072", - "from": "2906", - "to": "2861", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3601", - "label": "255142 (-) 971358", - "from": "2906", - "to": "2721", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3600", - "label": "255142 (-) 973669", - "from": "2906", - "to": "2584", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3599", - "label": "255142 (-) 972439", - "from": "2906", - "to": "2692", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3598", - "label": "255142 (-) 975952", - "from": "2906", - "to": "2941", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3597", - "label": "255142 (-) 252110", - "from": "2906", - "to": "2889", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3596", - "label": "616621 (-) 616491", - "from": "2905", - "to": "2955", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3595", - "label": "1116334 (-) 593090", - "from": "2904", - "to": "2893", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3594", - "label": "1793199 (-) 149916", - "from": "2903", - "to": "2807", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3593", - "label": "1793199 (-) 286028", - "from": "2903", - "to": "2841", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3592", - "label": "1793199 (-) 570743", - "from": "2903", - "to": "2826", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3591", - "label": "92336 (-) 1243896", - "from": "2902", - "to": "2649", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3590", - "label": "923825 (-) 77681", - "from": "2901", - "to": "2579", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3589", - "label": "64690 (-) 1886473", - "from": "2900", - "to": "2868", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3588", - "label": "64690 (-) 923825", - "from": "2900", - "to": "2901", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3587", - "label": "64690 (-) 67353", - "from": "2900", - "to": "2632", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3586", - "label": "887987 (-) 888278", - "from": "2899", - "to": "2788", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3585", - "label": "330932 (-) 331494", - "from": "2898", - "to": "2657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3584", - "label": "330932 (-) 369394", - "from": "2898", - "to": "2652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3583", - "label": "955573 (-) 952711", - "from": "2897", - "to": "2816", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3582", - "label": "955574 (-) 955573", - "from": "2896", - "to": "2897", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3581", - "label": "324791 (-) 321329", - "from": "2895", - "to": "2616", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3580", - "label": "955580 (-) 955573", - "from": "2894", - "to": "2897", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3579", - "label": "593090 (-) 1411759", - "from": "2893", - "to": "2679", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3578", - "label": "243911 (-) 2680", - "from": "2892", - "to": "2702", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3577", - "label": "1238218 (-) 1238006", - "from": "2891", - "to": "2519", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3576", - "label": "1538253 (-) 293444", - "from": "2890", - "to": "2730", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3575", - "label": "252110 (-) 251201", - "from": "2889", - "to": "2849", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3574", - "label": "252110 (-) 251144", - "from": "2889", - "to": "2869", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3573", - "label": "252110 (-) 250984", - "from": "2889", - "to": "2930", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3572", - "label": "333006 (-) 331494", - "from": "2888", - "to": "2657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3571", - "label": "974036 (-) 251144", - "from": "2887", - "to": "2869", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3570", - "label": "974036 (-) 251201", - "from": "2887", - "to": "2849", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3569", - "label": "974036 (-) 250984", - "from": "2887", - "to": "2930", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3568", - "label": "877790 (-) 877267", - "from": "2886", - "to": "2665", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3567", - "label": "144608 (-) 151325", - "from": "2885", - "to": "2628", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3566", - "label": "144608 (-) 289822", - "from": "2885", - "to": "2962", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3565", - "label": "875746 (-) 2111986", - "from": "2884", - "to": "2773", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3564", - "label": "2117860 (-) 254746", - "from": "2883", - "to": "2631", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3563", - "label": "1337573 (-) 1337326", - "from": "2882", - "to": "2523", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3562", - "label": "2117862 (-) 2119743", - "from": "2881", - "to": "2945", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3561", - "label": "2117862 (-) 2117860", - "from": "2881", - "to": "2883", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3560", - "label": "336103 (-) 331494", - "from": "2880", - "to": "2657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3559", - "label": "336103 (-) 1538253", - "from": "2880", - "to": "2890", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3558", - "label": "551145 (-) 550854", - "from": "2879", - "to": "2535", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3557", - "label": "261355 (-) 331494", - "from": "2878", - "to": "2657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3556", - "label": "261355 (-) 299541", - "from": "2878", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3555", - "label": "962799 (-) 1794867", - "from": "2877", - "to": "2614", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3554", - "label": "743664 (-) 1341480", - "from": "2876", - "to": "2957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3553", - "label": "743664 (-) 1341349", - "from": "2876", - "to": "2555", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3552", - "label": "743664 (-) 1341038", - "from": "2876", - "to": "2708", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3551", - "label": "743664 (-) 1340336", - "from": "2876", - "to": "2549", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3550", - "label": "194803 (-) 1863096", - "from": "2875", - "to": "2797", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3549", - "label": "194803 (-) 1690278", - "from": "2875", - "to": "2682", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3548", - "label": "324862 (-) 321328", - "from": "2874", - "to": "2612", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3547", - "label": "660736 (-) 2062814", - "from": "2873", - "to": "2784", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3546", - "label": "504065 (-) 504078", - "from": "2872", - "to": "2859", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3545", - "label": "504065 (-) 504360", - "from": "2872", - "to": "2742", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3544", - "label": "504065 (-) 504377", - "from": "2872", - "to": "2734", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3543", - "label": "955652 (-) 955580", - "from": "2871", - "to": "2894", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3542", - "label": "955652 (-) 955574", - "from": "2871", - "to": "2896", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3541", - "label": "955652 (-) 955460", - "from": "2871", - "to": "2944", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3540", - "label": "994566 (-) 992230", - "from": "2870", - "to": "2526", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3539", - "label": "251144 (-) 392955", - "from": "2869", - "to": "2645", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3538", - "label": "1886473 (-) 1238218", - "from": "2868", - "to": "2891", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3537", - "label": "550154 (-) 617080", - "from": "2867", - "to": "2703", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3536", - "label": "550154 (-) 550650", - "from": "2867", - "to": "2647", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3535", - "label": "550154 (-) 646528", - "from": "2867", - "to": "2817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3534", - "label": "1806603 (-) 310723", - "from": "2866", - "to": "2792", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3533", - "label": "504076 (-) 1684283", - "from": "2865", - "to": "2606", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3532", - "label": "504076 (-) 1682942", - "from": "2865", - "to": "2768", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3531", - "label": "504077 (-) 1682942", - "from": "2864", - "to": "2768", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3530", - "label": "504077 (-) 1684283", - "from": "2864", - "to": "2606", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3529", - "label": "504075 (-) 1682942", - "from": "2863", - "to": "2768", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3528", - "label": "504075 (-) 1684283", - "from": "2863", - "to": "2606", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3527", - "label": "1237263 (-) 55093", - "from": "2862", - "to": "2611", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3526", - "label": "973072 (-) 251144", - "from": "2861", - "to": "2869", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3525", - "label": "973072 (-) 251201", - "from": "2861", - "to": "2849", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3524", - "label": "973072 (-) 250984", - "from": "2861", - "to": "2930", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3523", - "label": "1237265 (-) 1237263", - "from": "2860", - "to": "2862", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3522", - "label": "504078 (-) 504076", - "from": "2859", - "to": "2865", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3521", - "label": "504078 (-) 504077", - "from": "2859", - "to": "2864", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3520", - "label": "504078 (-) 504075", - "from": "2859", - "to": "2863", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3519", - "label": "1382672 (-) 441773", - "from": "2858", - "to": "2799", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3518", - "label": "703760 (-) 703570", - "from": "2857", - "to": "2940", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3517", - "label": "703763 (-) 703760", - "from": "2856", - "to": "2857", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3516", - "label": "13588 (-) 1302460", - "from": "2855", - "to": "2539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3515", - "label": "13588 (-) 1884935", - "from": "2855", - "to": "2639", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3514", - "label": "1337624 (-) 1337573", - "from": "2854", - "to": "2882", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3513", - "label": "616732 (-) 617080", - "from": "2853", - "to": "2703", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3512", - "label": "1522976 (-) 293444", - "from": "2852", - "to": "2730", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3511", - "label": "955707 (-) 955652", - "from": "2851", - "to": "2871", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3510", - "label": "955707 (-) 1156931", - "from": "2851", - "to": "2597", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3509", - "label": "1046846 (-) 570878", - "from": "2850", - "to": "2767", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3508", - "label": "251201 (-) 392955", - "from": "2849", - "to": "2645", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3507", - "label": "298309 (-) 299541", - "from": "2848", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3506", - "label": "298309 (-) 369394", - "from": "2848", - "to": "2652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3505", - "label": "241990 (-) 958434", - "from": "2847", - "to": "2527", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3504", - "label": "1534279 (-) 251616", - "from": "2846", - "to": "2661", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3503", - "label": "298310 (-) 364005", - "from": "2845", - "to": "2778", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3502", - "label": "298310 (-) 331494", - "from": "2845", - "to": "2657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3501", - "label": "298310 (-) 369394", - "from": "2845", - "to": "2652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3500", - "label": "298310 (-) 329305", - "from": "2845", - "to": "2726", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3499", - "label": "298310 (-) 299541", - "from": "2845", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3498", - "label": "321865 (-) 1382736", - "from": "2844", - "to": "2837", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3497", - "label": "1793352 (-) 1793199", - "from": "2843", - "to": "2903", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3496", - "label": "298315 (-) 299541", - "from": "2842", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3495", - "label": "298315 (-) 369394", - "from": "2842", - "to": "2652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3494", - "label": "286028 (-) 1046846", - "from": "2841", - "to": "2850", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3493", - "label": "286028 (-) 1807026", - "from": "2841", - "to": "2677", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3492", - "label": "1275213 (-) 1275214", - "from": "2840", - "to": "2839", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3491", - "label": "1275214 (-) 1782717", - "from": "2839", - "to": "2538", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3490", - "label": "101711 (-) 1490324", - "from": "2838", - "to": "2811", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3489", - "label": "101711 (-) 1490531", - "from": "2838", - "to": "2716", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3488", - "label": "101711 (-) 291357", - "from": "2838", - "to": "2749", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3487", - "label": "1382736 (-) 327533", - "from": "2837", - "to": "2581", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3486", - "label": "1681748 (-) 251616", - "from": "2836", - "to": "2661", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3485", - "label": "554324 (-) 554327", - "from": "2835", - "to": "2834", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3484", - "label": "554327 (-) 98964", - "from": "2834", - "to": "2694", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3483", - "label": "978264 (-) 1916734", - "from": "2833", - "to": "2601", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3482", - "label": "193879 (-) 1083941", - "from": "2832", - "to": "2743", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3481", - "label": "193879 (-) 193037", - "from": "2832", - "to": "2756", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3480", - "label": "1484122 (-) 144608", - "from": "2831", - "to": "2885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3479", - "label": "132458 (-) 1214047", - "from": "2830", - "to": "2719", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3478", - "label": "1949040 (-) 374742", - "from": "2829", - "to": "2531", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3477", - "label": "1949040 (-) 374754", - "from": "2829", - "to": "2528", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3476", - "label": "1949040 (-) 374743", - "from": "2829", - "to": "2530", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3475", - "label": "616817 (-) 616491", - "from": "2828", - "to": "2955", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3474", - "label": "616818 (-) 617080", - "from": "2827", - "to": "2703", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3473", - "label": "570743 (-) 1482169", - "from": "2826", - "to": "2796", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3472", - "label": "883065 (-) 1200606", - "from": "2825", - "to": "2783", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3471", - "label": "1695098 (-) 330475", - "from": "2824", - "to": "2656", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3470", - "label": "302460 (-) 299541", - "from": "2823", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3469", - "label": "289149 (-) 144608", - "from": "2822", - "to": "2885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3468", - "label": "5502 (-) 13130", - "from": "2821", - "to": "2592", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3467", - "label": "5502 (-) 8322", - "from": "2821", - "to": "2919", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3466", - "label": "616831 (-) 616491", - "from": "2820", - "to": "2955", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3465", - "label": "330112 (-) 409084", - "from": "2819", - "to": "2769", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3464", - "label": "330112 (-) 369394", - "from": "2819", - "to": "2652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3463", - "label": "330112 (-) 331494", - "from": "2819", - "to": "2657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3462", - "label": "5503 (-) 8322", - "from": "2818", - "to": "2919", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3461", - "label": "5503 (-) 13130", - "from": "2818", - "to": "2592", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3460", - "label": "646528 (-) 550651", - "from": "2817", - "to": "2646", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3459", - "label": "952711 (-) 958275", - "from": "2816", - "to": "2596", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3458", - "label": "391560 (-) 2680", - "from": "2815", - "to": "2702", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3457", - "label": "1793418 (-) 1794867", - "from": "2814", - "to": "2614", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3456", - "label": "616843 (-) 617080", - "from": "2813", - "to": "2703", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3455", - "label": "1793419 (-) 1794867", - "from": "2812", - "to": "2614", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3454", - "label": "1490324 (-) 144608", - "from": "2811", - "to": "2885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3453", - "label": "193941 (-) 191969", - "from": "2810", - "to": "2779", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3452", - "label": "2131348 (-) 2131705", - "from": "2809", - "to": "2648", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3451", - "label": "571803 (-) 132458", - "from": "2808", - "to": "2830", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3450", - "label": "149916 (-) 1488882", - "from": "2807", - "to": "2520", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3449", - "label": "149916 (-) 1489512", - "from": "2807", - "to": "2712", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3448", - "label": "149916 (-) 964698", - "from": "2807", - "to": "2937", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3447", - "label": "149916 (-) 1489627", - "from": "2807", - "to": "2663", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3446", - "label": "149916 (-) 289835", - "from": "2807", - "to": "2952", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3445", - "label": "149916 (-) 157322", - "from": "2807", - "to": "2695", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3444", - "label": "296350 (-) 329216", - "from": "2806", - "to": "2766", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3443", - "label": "1035681 (-) 1035416", - "from": "2805", - "to": "2912", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3442", - "label": "1035683 (-) 1035681", - "from": "2804", - "to": "2805", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3441", - "label": "1065380 (-) 261355", - "from": "2803", - "to": "2878", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3440", - "label": "301477 (-) 369394", - "from": "2802", - "to": "2652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3439", - "label": "301477 (-) 299541", - "from": "2802", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3438", - "label": "1200554 (-) 43842", - "from": "2801", - "to": "2599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3437", - "label": "441772 (-) 441219", - "from": "2800", - "to": "2574", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3436", - "label": "441773 (-) 1386423", - "from": "2799", - "to": "2541", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3435", - "label": "441773 (-) 1382312", - "from": "2799", - "to": "2552", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3434", - "label": "441773 (-) 441772", - "from": "2799", - "to": "2800", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3433", - "label": "616886 (-) 616493", - "from": "2798", - "to": "2953", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3432", - "label": "616886 (-) 616831", - "from": "2798", - "to": "2820", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3431", - "label": "616886 (-) 616621", - "from": "2798", - "to": "2905", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3430", - "label": "616886 (-) 616817", - "from": "2798", - "to": "2828", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3429", - "label": "616886 (-) 616492", - "from": "2798", - "to": "2954", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3428", - "label": "1863096 (-) 330402", - "from": "2797", - "to": "2684", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3427", - "label": "1482169 (-) 570878", - "from": "2796", - "to": "2767", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3426", - "label": "1482169 (-) 935814", - "from": "2796", - "to": "2569", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3425", - "label": "916923 (-) 504065", - "from": "2795", - "to": "2872", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3424", - "label": "321983 (-) 1275213", - "from": "2794", - "to": "2840", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3423", - "label": "321983 (-) 1382736", - "from": "2794", - "to": "2837", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3422", - "label": "587203 (-) 441814", - "from": "2793", - "to": "2790", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3421", - "label": "310723 (-) 299541", - "from": "2792", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3420", - "label": "1200581 (-) 1200554", - "from": "2791", - "to": "2801", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3419", - "label": "441814 (-) 1806603", - "from": "2790", - "to": "2866", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3418", - "label": "1935831 (-) 191978", - "from": "2789", - "to": "2777", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3417", - "label": "888278 (-) 883456", - "from": "2788", - "to": "2642", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3416", - "label": "1477081 (-) 8325", - "from": "2787", - "to": "2918", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3415", - "label": "297434 (-) 296684", - "from": "2786", - "to": "2655", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3414", - "label": "289245 (-) 144608", - "from": "2785", - "to": "2885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3413", - "label": "2062814 (-) 418544", - "from": "2784", - "to": "2653", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3412", - "label": "1200606 (-) 1200581", - "from": "2783", - "to": "2791", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3411", - "label": "2112990 (-) 874479", - "from": "2782", - "to": "2521", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3410", - "label": "2112991 (-) 2112990", - "from": "2781", - "to": "2782", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3409", - "label": "335327 (-) 331494", - "from": "2780", - "to": "2657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3408", - "label": "191969 (-) 1694430", - "from": "2779", - "to": "2662", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3407", - "label": "191969 (-) 1695098", - "from": "2779", - "to": "2824", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3406", - "label": "364005 (-) 296913", - "from": "2778", - "to": "2532", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3405", - "label": "364005 (-) 297083", - "from": "2778", - "to": "2921", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3404", - "label": "364005 (-) 293444", - "from": "2778", - "to": "2730", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3403", - "label": "191978 (-) 1673905", - "from": "2777", - "to": "2676", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3402", - "label": "1035755 (-) 1035683", - "from": "2776", - "to": "2804", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3401", - "label": "440813 (-) 970337", - "from": "2775", - "to": "2718", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3400", - "label": "1798639 (-) 1911913", - "from": "2774", - "to": "2929", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3399", - "label": "2111986 (-) 49150", - "from": "2773", - "to": "2517", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3398", - "label": "1430006 (-) 336103", - "from": "2772", - "to": "2880", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3397", - "label": "882169 (-) 888278", - "from": "2771", - "to": "2788", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3396", - "label": "882169 (-) 883490", - "from": "2771", - "to": "2626", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3395", - "label": "193018 (-) 193941", - "from": "2770", - "to": "2810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3394", - "label": "193018 (-) 194202", - "from": "2770", - "to": "2690", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3393", - "label": "409084 (-) 293444", - "from": "2769", - "to": "2730", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3392", - "label": "1682942 (-) 330112", - "from": "2768", - "to": "2819", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3391", - "label": "570878 (-) 627554", - "from": "2767", - "to": "2585", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3390", - "label": "570878 (-) 1806998", - "from": "2767", - "to": "2693", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3389", - "label": "570878 (-) 1802928", - "from": "2767", - "to": "2680", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3388", - "label": "570878 (-) 935811", - "from": "2767", - "to": "2573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3387", - "label": "570878 (-) 587203", - "from": "2767", - "to": "2793", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3386", - "label": "329216 (-) 296684", - "from": "2766", - "to": "2655", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3385", - "label": "329216 (-) 293444", - "from": "2766", - "to": "2730", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3384", - "label": "573953 (-) 572417", - "from": "2765", - "to": "2972", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3383", - "label": "2059776 (-) 653856", - "from": "2764", - "to": "2746", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3382", - "label": "1790467 (-) 251616", - "from": "2763", - "to": "2661", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3381", - "label": "882178 (-) 883490", - "from": "2762", - "to": "2626", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3380", - "label": "882178 (-) 888278", - "from": "2762", - "to": "2788", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3379", - "label": "232970 (-) 1382736", - "from": "2761", - "to": "2837", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3378", - "label": "248331 (-) 2680", - "from": "2760", - "to": "2702", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3377", - "label": "637452 (-) 193879", - "from": "2759", - "to": "2832", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3376", - "label": "637453 (-) 637452", - "from": "2758", - "to": "2759", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3375", - "label": "1337870 (-) 1337573", - "from": "2757", - "to": "2882", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3374", - "label": "193037 (-) 193018", - "from": "2756", - "to": "2770", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3373", - "label": "299537 (-) 369394", - "from": "2755", - "to": "2652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3372", - "label": "299537 (-) 299541", - "from": "2755", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3371", - "label": "653843 (-) 730789", - "from": "2754", - "to": "2683", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3370", - "label": "653843 (-) 737088", - "from": "2754", - "to": "2600", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3369", - "label": "653843 (-) 1538767", - "from": "2754", - "to": "2667", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3368", - "label": "653843 (-) 654138", - "from": "2754", - "to": "2607", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3367", - "label": "299541 (-) 303154", - "from": "2753", - "to": "2949", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3366", - "label": "299541 (-) 303994", - "from": "2753", - "to": "2577", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3365", - "label": "299541 (-) 304210", - "from": "2753", - "to": "2939", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3364", - "label": "299541 (-) 308039", - "from": "2753", - "to": "2595", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3363", - "label": "299541 (-) 301477", - "from": "2753", - "to": "2802", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3362", - "label": "299541 (-) 299537", - "from": "2753", - "to": "2755", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3361", - "label": "299541 (-) 309001", - "from": "2753", - "to": "2638", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3360", - "label": "299541 (-) 297979", - "from": "2753", - "to": "2518", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3359", - "label": "299541 (-) 298315", - "from": "2753", - "to": "2842", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3358", - "label": "299541 (-) 297990", - "from": "2753", - "to": "2971", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3357", - "label": "299541 (-) 298309", - "from": "2753", - "to": "2848", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3356", - "label": "299541 (-) 298310", - "from": "2753", - "to": "2845", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3355", - "label": "299541 (-) 298000", - "from": "2753", - "to": "2966", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3354", - "label": "299541 (-) 299127", - "from": "2753", - "to": "2924", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3353", - "label": "299541 (-) 293444", - "from": "2753", - "to": "2730", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3352", - "label": "299541 (-) 301845", - "from": "2753", - "to": "2635", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3351", - "label": "299541 (-) 304129", - "from": "2753", - "to": "2974", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3350", - "label": "299541 (-) 299067", - "from": "2753", - "to": "2946", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3349", - "label": "299541 (-) 304276", - "from": "2753", - "to": "2913", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3348", - "label": "299541 (-) 296350", - "from": "2753", - "to": "2806", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3347", - "label": "2098710 (-) 2052724", - "from": "2752", - "to": "2706", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3346", - "label": "2098710 (-) 2052833", - "from": "2752", - "to": "2660", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3345", - "label": "299544 (-) 299541", - "from": "2751", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3344", - "label": "1159708 (-) 2680", - "from": "2750", - "to": "2702", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3343", - "label": "291357 (-) 144608", - "from": "2749", - "to": "2885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3342", - "label": "357917 (-) 208591", - "from": "2748", - "to": "2666", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3341", - "label": "343583 (-) 331494", - "from": "2747", - "to": "2657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3340", - "label": "653856 (-) 654215", - "from": "2746", - "to": "2570", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3339", - "label": "1485345 (-) 144608", - "from": "2745", - "to": "2885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3338", - "label": "1083940 (-) 1084519", - "from": "2744", - "to": "2931", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3337", - "label": "1083941 (-) 1083940", - "from": "2743", - "to": "2744", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3336", - "label": "504360 (-) 504077", - "from": "2742", - "to": "2864", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3335", - "label": "504360 (-) 504075", - "from": "2742", - "to": "2863", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3334", - "label": "504360 (-) 504076", - "from": "2742", - "to": "2865", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3333", - "label": "372265 (-) 369394", - "from": "2741", - "to": "2652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3332", - "label": "311850 (-) 299541", - "from": "2740", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3331", - "label": "77362 (-) 62263", - "from": "2739", - "to": "2610", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3330", - "label": "77362 (-) 54189", - "from": "2739", - "to": "2551", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3329", - "label": "77362 (-) 54322", - "from": "2739", - "to": "2948", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3328", - "label": "77362 (-) 55277", - "from": "2739", - "to": "2524", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3327", - "label": "77362 (-) 54900", - "from": "2739", - "to": "2705", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3326", - "label": "77362 (-) 55093", - "from": "2739", - "to": "2611", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3325", - "label": "77362 (-) 61124", - "from": "2739", - "to": "2671", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3324", - "label": "77362 (-) 54026", - "from": "2739", - "to": "2637", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3323", - "label": "77362 (-) 62537", - "from": "2739", - "to": "2943", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3322", - "label": "101938 (-) 1490531", - "from": "2738", - "to": "2716", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3321", - "label": "101938 (-) 1490324", - "from": "2738", - "to": "2811", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3320", - "label": "101938 (-) 291357", - "from": "2738", - "to": "2749", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3319", - "label": "878133 (-) 877267", - "from": "2737", - "to": "2665", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3318", - "label": "309814 (-) 299541", - "from": "2736", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3317", - "label": "13879 (-) 6157", - "from": "2735", - "to": "2969", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3316", - "label": "13879 (-) 5503", - "from": "2735", - "to": "2818", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3315", - "label": "13879 (-) 5738", - "from": "2735", - "to": "2710", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3314", - "label": "13879 (-) 6250", - "from": "2735", - "to": "2928", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3313", - "label": "13879 (-) 5737", - "from": "2735", - "to": "2711", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3312", - "label": "13879 (-) 5502", - "from": "2735", - "to": "2821", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3311", - "label": "13879 (-) 5936", - "from": "2735", - "to": "2617", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3310", - "label": "13879 (-) 6042", - "from": "2735", - "to": "2561", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3309", - "label": "504377 (-) 504076", - "from": "2734", - "to": "2865", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3308", - "label": "504377 (-) 504075", - "from": "2734", - "to": "2863", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3307", - "label": "321084 (-) 1338496", - "from": "2733", - "to": "2920", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3306", - "label": "1519168 (-) 1538634", - "from": "2732", - "to": "2729", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3305", - "label": "616002 (-) 2680", - "from": "2731", - "to": "2702", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3304", - "label": "293444 (-) 299541", - "from": "2730", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3303", - "label": "293444 (-) 329216", - "from": "2730", - "to": "2766", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3302", - "label": "293444 (-) 369394", - "from": "2730", - "to": "2652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3301", - "label": "293444 (-) 296562", - "from": "2730", - "to": "2707", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3300", - "label": "1538634 (-) 293444", - "from": "2729", - "to": "2730", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3299", - "label": "1107533 (-) 335327", - "from": "2728", - "to": "2780", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3298", - "label": "1107533 (-) 310021", - "from": "2728", - "to": "2640", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3297", - "label": "1107533 (-) 372265", - "from": "2728", - "to": "2741", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3296", - "label": "1119825 (-) 1116334", - "from": "2727", - "to": "2904", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3295", - "label": "329305 (-) 293444", - "from": "2726", - "to": "2730", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3294", - "label": "389722 (-) 549814", - "from": "2725", - "to": "2545", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3293", - "label": "389722 (-) 616886", - "from": "2725", - "to": "2798", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3292", - "label": "1794651 (-) 962799", - "from": "2724", - "to": "2877", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3291", - "label": "1794651 (-) 1793419", - "from": "2724", - "to": "2812", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3290", - "label": "1794651 (-) 962363", - "from": "2724", - "to": "2602", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3289", - "label": "1794651 (-) 1793418", - "from": "2724", - "to": "2814", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3288", - "label": "875099 (-) 875746", - "from": "2723", - "to": "2884", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3287", - "label": "875101 (-) 875099", - "from": "2722", - "to": "2723", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3286", - "label": "971358 (-) 250984", - "from": "2721", - "to": "2930", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3285", - "label": "971358 (-) 251144", - "from": "2721", - "to": "2869", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3284", - "label": "971358 (-) 251201", - "from": "2721", - "to": "2849", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3283", - "label": "77403 (-) 77362", - "from": "2720", - "to": "2739", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3282", - "label": "1214047 (-) 144608", - "from": "2719", - "to": "2885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3281", - "label": "970337 (-) 333006", - "from": "2718", - "to": "2888", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3280", - "label": "350818 (-) 555944", - "from": "2717", - "to": "2553", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3279", - "label": "1490531 (-) 144608", - "from": "2716", - "to": "2885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3278", - "label": "291429 (-) 144608", - "from": "2715", - "to": "2885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3277", - "label": "1159782 (-) 954243", - "from": "2714", - "to": "2571", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3276", - "label": "333415 (-) 331494", - "from": "2713", - "to": "2657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3275", - "label": "1489512 (-) 144608", - "from": "2712", - "to": "2885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3274", - "label": "5737 (-) 8322", - "from": "2711", - "to": "2919", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3273", - "label": "5737 (-) 13130", - "from": "2711", - "to": "2592", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3272", - "label": "5738 (-) 8322", - "from": "2710", - "to": "2919", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3271", - "label": "5738 (-) 13130", - "from": "2710", - "to": "2592", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3270", - "label": "1378926 (-) 1382736", - "from": "2709", - "to": "2837", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3269", - "label": "1341038 (-) 320330", - "from": "2708", - "to": "2593", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3268", - "label": "296562 (-) 296684", - "from": "2707", - "to": "2655", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3267", - "label": "296562 (-) 293444", - "from": "2707", - "to": "2730", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3266", - "label": "2052724 (-) 2059776", - "from": "2706", - "to": "2764", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3265", - "label": "54900 (-) 743241", - "from": "2705", - "to": "2594", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3264", - "label": "1771125 (-) 2114443", - "from": "2704", - "to": "2568", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3263", - "label": "617080 (-) 550651", - "from": "2703", - "to": "2646", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3262", - "label": "2680 (-) 712804", - "from": "2702", - "to": "2932", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3261", - "label": "550522 (-) 550679", - "from": "2701", - "to": "2633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3260", - "label": "227964 (-) 324791", - "from": "2700", - "to": "2895", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3259", - "label": "227964 (-) 320128", - "from": "2700", - "to": "2697", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3258", - "label": "227964 (-) 1382203", - "from": "2700", - "to": "2605", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3257", - "label": "227964 (-) 322680", - "from": "2700", - "to": "2923", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3256", - "label": "227964 (-) 324862", - "from": "2700", - "to": "2874", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3255", - "label": "227964 (-) 322256", - "from": "2700", - "to": "2668", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3254", - "label": "133757 (-) 291429", - "from": "2699", - "to": "2715", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3253", - "label": "133757 (-) 1485501", - "from": "2699", - "to": "2673", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3252", - "label": "133757 (-) 1484122", - "from": "2699", - "to": "2831", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3251", - "label": "133757 (-) 1480635", - "from": "2699", - "to": "2540", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3250", - "label": "133757 (-) 289149", - "from": "2699", - "to": "2822", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3249", - "label": "133757 (-) 1485345", - "from": "2699", - "to": "2745", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3248", - "label": "133757 (-) 289245", - "from": "2699", - "to": "2785", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3247", - "label": "133757 (-) 291483", - "from": "2699", - "to": "2689", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3246", - "label": "637566 (-) 637453", - "from": "2698", - "to": "2758", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3245", - "label": "320128 (-) 320604", - "from": "2697", - "to": "2934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3244", - "label": "1684105 (-) 330932", - "from": "2696", - "to": "2898", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3243", - "label": "1684105 (-) 330112", - "from": "2696", - "to": "2819", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3242", - "label": "1684105 (-) 298310", - "from": "2696", - "to": "2845", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3241", - "label": "1684105 (-) 299067", - "from": "2696", - "to": "2946", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3240", - "label": "157322 (-) 151326", - "from": "2695", - "to": "2627", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3239", - "label": "98964 (-) 1490531", - "from": "2694", - "to": "2716", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3238", - "label": "98964 (-) 1490324", - "from": "2694", - "to": "2811", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3237", - "label": "98964 (-) 291357", - "from": "2694", - "to": "2749", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3236", - "label": "1806998 (-) 441814", - "from": "2693", - "to": "2790", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3235", - "label": "972439 (-) 251201", - "from": "2692", - "to": "2849", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3234", - "label": "972439 (-) 251144", - "from": "2692", - "to": "2869", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3233", - "label": "972439 (-) 250984", - "from": "2692", - "to": "2930", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3232", - "label": "171672 (-) 299541", - "from": "2691", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3231", - "label": "171672 (-) 331494", - "from": "2691", - "to": "2657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3230", - "label": "194202 (-) 194803", - "from": "2690", - "to": "2875", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3229", - "label": "291483 (-) 144608", - "from": "2689", - "to": "2885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3228", - "label": "160413 (-) 159862", - "from": "2688", - "to": "2925", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3227", - "label": "327326 (-) 304925", - "from": "2687", - "to": "2629", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3226", - "label": "327326 (-) 304924", - "from": "2687", - "to": "2630", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3225", - "label": "327326 (-) 305175", - "from": "2687", - "to": "2964", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3224", - "label": "327326 (-) 305167", - "from": "2687", - "to": "2967", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3223", - "label": "327326 (-) 305153", - "from": "2687", - "to": "2975", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3222", - "label": "1682080 (-) 251616", - "from": "2686", - "to": "2661", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3221", - "label": "719521 (-) 719714", - "from": "2685", - "to": "2586", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3220", - "label": "330402 (-) 331494", - "from": "2684", - "to": "2657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3219", - "label": "730789 (-) 654141", - "from": "2683", - "to": "2604", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3218", - "label": "1690278 (-) 330402", - "from": "2682", - "to": "2684", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3217", - "label": "672431 (-) 46171", - "from": "2681", - "to": "2935", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3216", - "label": "1802928 (-) 441814", - "from": "2680", - "to": "2790", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3215", - "label": "1411759 (-) 1411760", - "from": "2679", - "to": "2678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3214", - "label": "1411760 (-) 1412138", - "from": "2678", - "to": "2956", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3213", - "label": "1807026 (-) 935814", - "from": "2677", - "to": "2569", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3212", - "label": "1807026 (-) 570878", - "from": "2677", - "to": "2767", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3211", - "label": "1807026 (-) 627557", - "from": "2677", - "to": "2583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3210", - "label": "1673905 (-) 261355", - "from": "2676", - "to": "2878", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3209", - "label": "1154743 (-) 551145", - "from": "2675", - "to": "2879", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3208", - "label": "14012 (-) 248331", - "from": "2674", - "to": "2760", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3207", - "label": "14012 (-) 13879", - "from": "2674", - "to": "2735", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3206", - "label": "14012 (-) 391560", - "from": "2674", - "to": "2815", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3205", - "label": "14012 (-) 616002", - "from": "2674", - "to": "2731", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3204", - "label": "14012 (-) 243911", - "from": "2674", - "to": "2892", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3203", - "label": "1485501 (-) 144608", - "from": "2673", - "to": "2885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3202", - "label": "322239 (-) 321084", - "from": "2672", - "to": "2733", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3201", - "label": "61124 (-) 743241", - "from": "2671", - "to": "2594", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3200", - "label": "1411783 (-) 1473433", - "from": "2670", - "to": "2562", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3199", - "label": "572111 (-) 571548", - "from": "2669", - "to": "2911", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3198", - "label": "322256 (-) 321330", - "from": "2668", - "to": "2613", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3197", - "label": "1538767 (-) 654141", - "from": "2667", - "to": "2604", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3196", - "label": "208591 (-) 331494", - "from": "2666", - "to": "2657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3195", - "label": "877267 (-) 875101", - "from": "2665", - "to": "2722", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3194", - "label": "884435 (-) 874464", - "from": "2664", - "to": "2529", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3193", - "label": "884435 (-) 878133", - "from": "2664", - "to": "2737", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3192", - "label": "1489627 (-) 144608", - "from": "2663", - "to": "2885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3191", - "label": "1694430 (-) 330475", - "from": "2662", - "to": "2656", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3190", - "label": "251616 (-) 331494", - "from": "2661", - "to": "2657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3189", - "label": "251616 (-) 299541", - "from": "2661", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3188", - "label": "2052833 (-) 2059776", - "from": "2660", - "to": "2764", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3187", - "label": "333538 (-) 331494", - "from": "2659", - "to": "2657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3186", - "label": "94950 (-) 1522976", - "from": "2658", - "to": "2852", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3185", - "label": "331494 (-) 310020", - "from": "2657", - "to": "2641", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3184", - "label": "331494 (-) 309814", - "from": "2657", - "to": "2736", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3183", - "label": "331494 (-) 305190", - "from": "2657", - "to": "2959", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3182", - "label": "331494 (-) 293444", - "from": "2657", - "to": "2730", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3181", - "label": "331494 (-) 311850", - "from": "2657", - "to": "2740", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3180", - "label": "331494 (-) 299544", - "from": "2657", - "to": "2751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3179", - "label": "331494 (-) 302460", - "from": "2657", - "to": "2823", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3178", - "label": "331494 (-) 309196", - "from": "2657", - "to": "2533", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3177", - "label": "330475 (-) 331494", - "from": "2656", - "to": "2657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3176", - "label": "296684 (-) 329216", - "from": "2655", - "to": "2766", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3175", - "label": "296684 (-) 296562", - "from": "2655", - "to": "2707", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3174", - "label": "103150 (-) 1049381", - "from": "2654", - "to": "2624", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3173", - "label": "418544 (-) 2062227", - "from": "2653", - "to": "2565", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3172", - "label": "369394 (-) 298309", - "from": "2652", - "to": "2848", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3171", - "label": "369394 (-) 304129", - "from": "2652", - "to": "2974", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3170", - "label": "369394 (-) 299127", - "from": "2652", - "to": "2924", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3169", - "label": "369394 (-) 298310", - "from": "2652", - "to": "2845", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3168", - "label": "369394 (-) 298315", - "from": "2652", - "to": "2842", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3167", - "label": "369394 (-) 304210", - "from": "2652", - "to": "2939", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3166", - "label": "369394 (-) 299067", - "from": "2652", - "to": "2946", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3165", - "label": "369394 (-) 299537", - "from": "2652", - "to": "2755", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3164", - "label": "369394 (-) 304276", - "from": "2652", - "to": "2913", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3163", - "label": "369394 (-) 301477", - "from": "2652", - "to": "2802", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3162", - "label": "369394 (-) 293444", - "from": "2652", - "to": "2730", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3161", - "label": "369394 (-) 303994", - "from": "2652", - "to": "2577", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3160", - "label": "369394 (-) 301845", - "from": "2652", - "to": "2635", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3159", - "label": "1681138 (-) 251616", - "from": "2651", - "to": "2661", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3158", - "label": "373494 (-) 369394", - "from": "2650", - "to": "2652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3157", - "label": "1243896 (-) 321983", - "from": "2649", - "to": "2794", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3156", - "label": "2131705 (-) 698257", - "from": "2648", - "to": "2566", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3155", - "label": "2131705 (-) 2117862", - "from": "2648", - "to": "2881", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3154", - "label": "550650 (-) 550651", - "from": "2647", - "to": "2646", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3153", - "label": "550651 (-) 970337", - "from": "2646", - "to": "2718", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3152", - "label": "392955 (-) 258188", - "from": "2645", - "to": "2915", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3151", - "label": "883453 (-) 883065", - "from": "2644", - "to": "2825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3150", - "label": "883455 (-) 883453", - "from": "2643", - "to": "2644", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3149", - "label": "883456 (-) 883453", - "from": "2642", - "to": "2644", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3148", - "label": "310020 (-) 299541", - "from": "2641", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3147", - "label": "310021 (-) 331494", - "from": "2640", - "to": "2657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3146", - "label": "310021 (-) 299541", - "from": "2640", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3145", - "label": "1884935 (-) 554016", - "from": "2639", - "to": "2960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3144", - "label": "309001 (-) 299541", - "from": "2638", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3143", - "label": "54026 (-) 743241", - "from": "2637", - "to": "2594", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3142", - "label": "1935115 (-) 1935831", - "from": "2636", - "to": "2789", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3141", - "label": "301845 (-) 369394", - "from": "2635", - "to": "2652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3140", - "label": "301845 (-) 299541", - "from": "2635", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3139", - "label": "1159958 (-) 618296", - "from": "2634", - "to": "2608", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3138", - "label": "1159958 (-) 618516", - "from": "2634", - "to": "2965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3137", - "label": "550679 (-) 550154", - "from": "2633", - "to": "2867", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3136", - "label": "67353 (-) 64422", - "from": "2632", - "to": "2554", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3135", - "label": "254746 (-) 974036", - "from": "2631", - "to": "2887", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3134", - "label": "254746 (-) 975952", - "from": "2631", - "to": "2941", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3133", - "label": "254746 (-) 973669", - "from": "2631", - "to": "2584", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3132", - "label": "254746 (-) 252110", - "from": "2631", - "to": "2889", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3131", - "label": "254746 (-) 971358", - "from": "2631", - "to": "2721", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3130", - "label": "254746 (-) 973072", - "from": "2631", - "to": "2861", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3129", - "label": "254746 (-) 972439", - "from": "2631", - "to": "2692", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3128", - "label": "304924 (-) 299541", - "from": "2630", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3127", - "label": "304925 (-) 299541", - "from": "2629", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3126", - "label": "151325 (-) 94950", - "from": "2628", - "to": "2658", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3125", - "label": "151326 (-) 151325", - "from": "2627", - "to": "2628", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3124", - "label": "883490 (-) 883455", - "from": "2626", - "to": "2643", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3123", - "label": "1082148 (-) 350818", - "from": "2625", - "to": "2717", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3122", - "label": "1049381 (-) 94950", - "from": "2624", - "to": "2658", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3121", - "label": "441126 (-) 440813", - "from": "2623", - "to": "2775", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3120", - "label": "1082151 (-) 1082148", - "from": "2622", - "to": "2625", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3119", - "label": "719655 (-) 719521", - "from": "2621", - "to": "2685", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3118", - "label": "1889063 (-) 64690", - "from": "2620", - "to": "2900", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3117", - "label": "884516 (-) 884435", - "from": "2619", - "to": "2664", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3116", - "label": "884516 (-) 885683", - "from": "2619", - "to": "2547", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3115", - "label": "884524 (-) 884435", - "from": "2618", - "to": "2664", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3114", - "label": "884524 (-) 885683", - "from": "2618", - "to": "2547", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3113", - "label": "5936 (-) 13130", - "from": "2617", - "to": "2592", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3112", - "label": "5936 (-) 8322", - "from": "2617", - "to": "2919", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3111", - "label": "321329 (-) 322239", - "from": "2616", - "to": "2672", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3110", - "label": "1871665 (-) 14228", - "from": "2615", - "to": "2564", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3109", - "label": "1794867 (-) 1793352", - "from": "2614", - "to": "2843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3108", - "label": "321330 (-) 322239", - "from": "2613", - "to": "2672", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3107", - "label": "321328 (-) 322239", - "from": "2612", - "to": "2672", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3106", - "label": "55093 (-) 743241", - "from": "2611", - "to": "2594", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3105", - "label": "62263 (-) 743241", - "from": "2610", - "to": "2594", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3104", - "label": "130871 (-) 1681138", - "from": "2609", - "to": "2651", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3103", - "label": "130871 (-) 1681748", - "from": "2609", - "to": "2836", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3102", - "label": "130871 (-) 1529686", - "from": "2609", - "to": "2589", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3101", - "label": "130871 (-) 1065380", - "from": "2609", - "to": "2803", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3100", - "label": "130871 (-) 1682080", - "from": "2609", - "to": "2686", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3099", - "label": "130871 (-) 1790467", - "from": "2609", - "to": "2763", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3098", - "label": "130871 (-) 357917", - "from": "2609", - "to": "2748", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3097", - "label": "130871 (-) 1668145", - "from": "2609", - "to": "2950", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3096", - "label": "130871 (-) 1534279", - "from": "2609", - "to": "2846", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3095", - "label": "618296 (-) 1035755", - "from": "2608", - "to": "2776", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3094", - "label": "654138 (-) 654141", - "from": "2607", - "to": "2604", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3093", - "label": "1684283 (-) 330112", - "from": "2606", - "to": "2819", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3092", - "label": "1382203 (-) 1378926", - "from": "2605", - "to": "2709", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3091", - "label": "654141 (-) 952239", - "from": "2604", - "to": "2550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3090", - "label": "654141 (-) 719655", - "from": "2604", - "to": "2621", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3089", - "label": "917308 (-) 504065", - "from": "2603", - "to": "2872", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3088", - "label": "962363 (-) 1794867", - "from": "2602", - "to": "2614", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3087", - "label": "1916734 (-) 950362", - "from": "2601", - "to": "2936", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3086", - "label": "737088 (-) 654141", - "from": "2600", - "to": "2604", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3085", - "label": "43842 (-) 1477081", - "from": "2599", - "to": "2787", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3084", - "label": "1035074 (-) 1159782", - "from": "2598", - "to": "2714", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3083", - "label": "1156931 (-) 955460", - "from": "2597", - "to": "2944", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3082", - "label": "958275 (-) 958290", - "from": "2596", - "to": "2590", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3081", - "label": "308039 (-) 299541", - "from": "2595", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3080", - "label": "743241 (-) 743664", - "from": "2594", - "to": "2876", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3079", - "label": "320330 (-) 324862", - "from": "2593", - "to": "2874", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3078", - "label": "320330 (-) 320128", - "from": "2593", - "to": "2697", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3077", - "label": "320330 (-) 322256", - "from": "2593", - "to": "2668", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3076", - "label": "320330 (-) 1382203", - "from": "2593", - "to": "2605", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3075", - "label": "320330 (-) 324791", - "from": "2593", - "to": "2895", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3074", - "label": "320330 (-) 322680", - "from": "2593", - "to": "2923", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3073", - "label": "13130 (-) 13588", - "from": "2592", - "to": "2855", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3072", - "label": "13134 (-) 1490324", - "from": "2591", - "to": "2811", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3071", - "label": "13134 (-) 1490531", - "from": "2591", - "to": "2716", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3070", - "label": "958290 (-) 958368", - "from": "2590", - "to": "2557", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3069", - "label": "1529686 (-) 1519168", - "from": "2589", - "to": "2732", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3068", - "label": "1200984 (-) 554324", - "from": "2588", - "to": "2835", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3067", - "label": "1466203 (-) 1889063", - "from": "2587", - "to": "2620", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3066", - "label": "719714 (-) 565410", - "from": "2586", - "to": "2908", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3065", - "label": "627554 (-) 441814", - "from": "2585", - "to": "2790", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3064", - "label": "973669 (-) 250984", - "from": "2584", - "to": "2930", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3063", - "label": "973669 (-) 251144", - "from": "2584", - "to": "2869", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3062", - "label": "973669 (-) 251201", - "from": "2584", - "to": "2849", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3061", - "label": "627557 (-) 1806998", - "from": "2583", - "to": "2693", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3060", - "label": "627557 (-) 627554", - "from": "2583", - "to": "2585", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3059", - "label": "77671 (-) 77403", - "from": "2582", - "to": "2720", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3058", - "label": "327533 (-) 327326", - "from": "2581", - "to": "2687", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3057", - "label": "327533 (-) 1949040", - "from": "2581", - "to": "2829", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3056", - "label": "369519 (-) 369394", - "from": "2580", - "to": "2652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3055", - "label": "77681 (-) 1238006", - "from": "2579", - "to": "2519", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3054", - "label": "77681 (-) 77671", - "from": "2579", - "to": "2582", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3053", - "label": "2085752 (-) 130871", - "from": "2578", - "to": "2609", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3052", - "label": "303994 (-) 299541", - "from": "2577", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3051", - "label": "303994 (-) 369394", - "from": "2577", - "to": "2652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3050", - "label": "569211 (-) 572111", - "from": "2576", - "to": "2669", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3049", - "label": "1410943 (-) 103150", - "from": "2575", - "to": "2654", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3048", - "label": "441219 (-) 441126", - "from": "2574", - "to": "2623", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3047", - "label": "935811 (-) 441814", - "from": "2573", - "to": "2790", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3046", - "label": "698244 (-) 255142", - "from": "2572", - "to": "2906", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3045", - "label": "954243 (-) 1159958", - "from": "2571", - "to": "2634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3044", - "label": "954243 (-) 1159708", - "from": "2571", - "to": "2750", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3043", - "label": "654215 (-) 653843", - "from": "2570", - "to": "2754", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3042", - "label": "935814 (-) 935811", - "from": "2569", - "to": "2573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3041", - "label": "935814 (-) 1806998", - "from": "2569", - "to": "2693", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3040", - "label": "2114443 (-) 2112991", - "from": "2568", - "to": "2781", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3039", - "label": "1116044 (-) 1155013", - "from": "2567", - "to": "2536", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3038", - "label": "1116044 (-) 1799093", - "from": "2567", - "to": "2546", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3037", - "label": "698257 (-) 1473583", - "from": "2566", - "to": "2951", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3036", - "label": "698257 (-) 1473437", - "from": "2566", - "to": "2560", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3035", - "label": "698257 (-) 698244", - "from": "2566", - "to": "2572", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3034", - "label": "2062227 (-) 79817", - "from": "2565", - "to": "2534", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3033", - "label": "14228 (-) 391560", - "from": "2564", - "to": "2815", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3032", - "label": "14228 (-) 243911", - "from": "2564", - "to": "2892", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3031", - "label": "14228 (-) 248331", - "from": "2564", - "to": "2760", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3030", - "label": "14228 (-) 616002", - "from": "2564", - "to": "2731", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3029", - "label": "14228 (-) 13879", - "from": "2564", - "to": "2735", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3028", - "label": "14228 (-) 1794651", - "from": "2564", - "to": "2724", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3027", - "label": "673684 (-) 1154743", - "from": "2563", - "to": "2675", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3026", - "label": "1473433 (-) 138223", - "from": "2562", - "to": "2522", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3025", - "label": "6042 (-) 8322", - "from": "2561", - "to": "2919", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3024", - "label": "6042 (-) 13130", - "from": "2561", - "to": "2592", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3023", - "label": "1473437 (-) 1411783", - "from": "2560", - "to": "2670", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3022", - "label": "1084318 (-) 171672", - "from": "2559", - "to": "2691", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3021", - "label": "1338271 (-) 389722", - "from": "2558", - "to": "2725", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3020", - "label": "958368 (-) 241990", - "from": "2557", - "to": "2847", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3019", - "label": "1084321 (-) 1084318", - "from": "2556", - "to": "2559", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3018", - "label": "1341349 (-) 320330", - "from": "2555", - "to": "2593", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3017", - "label": "64422 (-) 1238006", - "from": "2554", - "to": "2519", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3016", - "label": "555944 (-) 293444", - "from": "2553", - "to": "2730", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3015", - "label": "1382312 (-) 232970", - "from": "2552", - "to": "2761", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3014", - "label": "54189 (-) 743241", - "from": "2551", - "to": "2594", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3013", - "label": "952239 (-) 422049", - "from": "2550", - "to": "2909", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3012", - "label": "1340336 (-) 320330", - "from": "2549", - "to": "2593", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3011", - "label": "1340336 (-) 227964", - "from": "2549", - "to": "2700", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3010", - "label": "638896 (-) 8327", - "from": "2548", - "to": "2917", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3009", - "label": "885683 (-) 887987", - "from": "2547", - "to": "2899", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3008", - "label": "885683 (-) 877790", - "from": "2547", - "to": "2886", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3007", - "label": "1799093 (-) 1035074", - "from": "2546", - "to": "2598", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3006", - "label": "549814 (-) 550522", - "from": "2545", - "to": "2701", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3005", - "label": "1113015 (-) 1107533", - "from": "2544", - "to": "2728", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3004", - "label": "549816 (-) 549814", - "from": "2543", - "to": "2545", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3003", - "label": "495541 (-) 500848", - "from": "2542", - "to": "2927", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3002", - "label": "1386423 (-) 418544", - "from": "2541", - "to": "2653", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3001", - "label": "1480635 (-) 144608", - "from": "2540", - "to": "2885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3000", - "label": "1302460 (-) 13134", - "from": "2539", - "to": "2591", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2999", - "label": "1782717 (-) 333538", - "from": "2538", - "to": "2659", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2998", - "label": "1782717 (-) 333415", - "from": "2538", - "to": "2713", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2997", - "label": "159681 (-) 133757", - "from": "2537", - "to": "2699", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2996", - "label": "1155013 (-) 673684", - "from": "2536", - "to": "2563", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2995", - "label": "550854 (-) 549816", - "from": "2535", - "to": "2543", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2994", - "label": "79817 (-) 970337", - "from": "2534", - "to": "2718", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2993", - "label": "309196 (-) 299541", - "from": "2533", - "to": "2753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2992", - "label": "296913 (-) 296562", - "from": "2532", - "to": "2707", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2991", - "label": "374742 (-) 369394", - "from": "2531", - "to": "2652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2990", - "label": "374743 (-) 369394", - "from": "2530", - "to": "2652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2989", - "label": "874464 (-) 877267", - "from": "2529", - "to": "2665", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2988", - "label": "374754 (-) 369394", - "from": "2528", - "to": "2652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2987", - "label": "958434 (-) 14012", - "from": "2527", - "to": "2674", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2986", - "label": "992230 (-) 992233", - "from": "2526", - "to": "2525", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2985", - "label": "992233 (-) 495541", - "from": "2525", - "to": "2542", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2984", - "label": "55277 (-) 743241", - "from": "2524", - "to": "2594", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2983", - "label": "1337326 (-) 1338271", - "from": "2523", - "to": "2558", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2982", - "label": "138223 (-) 672431", - "from": "2522", - "to": "2681", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2981", - "label": "874479 (-) 877267", - "from": "2521", - "to": "2665", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2980", - "label": "1488882 (-) 144608", - "from": "2520", - "to": "2885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2979", - "label": "1238006 (-) 1237265", - "from": "2519", - "to": "2860", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2978", - "label": "297979 (-) 297434", - "from": "2518", - "to": "2786", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2977", - "label": "49150 (-) 637566", - "from": "2517", - "to": "2698", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/Vesicle budding.json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/Vesicle budding.json deleted file mode 100644 index 1a62bec291..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/Vesicle budding.json +++ /dev/null @@ -1,19246 +0,0 @@ -{ - "nodes": [ - { - "id": "4271", - "label": "viral dsRNA:TLR3:TICAM1 [endosome membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4270", - "label": "RAB4:GTP promotes recycling of activated MET receptor to the plasma membrane", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4269", - "label": "p-S423,S425-SMAD3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4268", - "label": "Bradykinin receptor:Bradykinin [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4267", - "label": "GGC-RAB7B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4266", - "label": "Retinoic acid activates HOXB4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4265", - "label": "Ubiquitinated IkB is degraded", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4264", - "label": "NF-kappaB p50,p65,c-Rel:ub-p-IKB [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "4263", - "label": "NF-kappaB p65:p65:ub-p-IkB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4262", - "label": "TFIIH [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4261", - "label": "5HT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4260", - "label": "trans-Golgi Network Derived Vesicle Uncoating", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4259", - "label": "TGFB1:TGFBR2:p-TGFBR1 [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4258", - "label": "Initial resection of double-strand break ends", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4257", - "label": "Transphosphorylation of JAK1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4256", - "label": "CBL neddylates TGFBR2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4255", - "label": "TGFBR2 phosphorylates TGFBR1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4254", - "label": "NEDD8-AcM-UBE2M [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4253", - "label": "TGFB1:TGFBR2:TGFBR1 [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4252", - "label": "APC is K63-polyubiquitinated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4251", - "label": "NANOG [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4250", - "label": "Hist [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4249", - "label": "p-STAT5A, p-STAT5B [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "4248", - "label": "RAP1A [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4247", - "label": "Microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4246", - "label": "MAPK3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4245", - "label": "RNF152 [lysosomal membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4244", - "label": "UTP + glutamine + ATP + H2O => CTP + glutamate + ADP + orthophosphate [CTPS]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4243", - "label": "Hypophosphorylation of RNA Pol II CTD by FCP1P protein", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4242", - "label": "TGFBR2 recruits TGFBR1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4241", - "label": "PP2A (A:C) [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4240", - "label": "NF-kappaB p65:p65 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4239", - "label": "FKBP1A [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4238", - "label": "RASA1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4237", - "label": "FGF18 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4236", - "label": "Translocation of ISGF3 complex to nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4235", - "label": "p-STAT2:p-STAT1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4234", - "label": "NF-kappaB p50:c-Rel:ub-p-IKB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4233", - "label": "Exocytosis of ficolin-rich granule lumen proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4232", - "label": "K63polyUb-TRAF3:TICAM1:TRAM:TLR4:LY96:LPS:CD14 [endosome membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4231", - "label": "CCNH [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4230", - "label": "Transfer of SUMO2 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4229", - "label": "PTPNs gene transcription and translation", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4228", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "4227", - "label": "PPP4C:PPP4R2 dephosphorylates RPA2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4226", - "label": "Dissociation of RAS:RAF complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4225", - "label": "trans-Golgi Network Derived Lysosomal Vesicle Uncoating", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4224", - "label": "Expression of PERIOD-1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4223", - "label": "DNAJC6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4222", - "label": "HERC5 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4221", - "label": "PAXIP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4220", - "label": "UBE2E1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4219", - "label": "Release of STAT1 dimer from active receptor unit", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4218", - "label": "IFNG-activated factor (GAF) [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4217", - "label": "UMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4216", - "label": "Transfer of SUMO3 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4215", - "label": "Activated FGFR2:p-FRS:p-PTPN11 activates RAS nucleotide exchange", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4214", - "label": "Ura-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4213", - "label": "Thy-dRib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4212", - "label": "Cyt-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4211", - "label": "(d)CMP, TMP, or (d)UMP + H2O => (deoxy)cytidine, thymidine, or (deoxy)uridine + orthophosphate (NT5C3)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4210", - "label": "RNF111 ubiquitinates SUMOylated XPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4209", - "label": "Dissociation of moderate activity BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4208", - "label": "Ub,SUMO:XPC:RAD23:CETN2:Open bubble-dsDNA:PAR-UV-DDB:TFIIH Core:XPA:PAR-PARP1, PAR-PARP2:CHD1L [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4207", - "label": "Expression of CEBPB in adipogenesis", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4206", - "label": "CREM isoform 6 (ICER1) [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4205", - "label": "NF-kappaB p50:c-Rel [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4204", - "label": "RAB1:GDP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4203", - "label": "PTPN11 dephosphorylates RUNX1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4202", - "label": "hp-IRAK1:3xK63-polyUb-TRAF6:3xUBE2N:UBE2V1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4201", - "label": "RUNX1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4200", - "label": "Dimerized phospho-IRF3 migrates to the nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4199", - "label": "NF-KappaB p50:p50:ub-p-IKBA [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4198", - "label": "NF-kappaB p50:p50 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4197", - "label": "STAT3, STAT4 are phosphorylated by p-JAK2, p-TYK2 in IL23:IL23 receptor", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4196", - "label": "IL23A:IL12B:IL12RB1:p-TYK2:p-Y-IL23R:p-JAK2:p-Y705-STAT3:p-Y693-STAT4 [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4195", - "label": "SAR1B:GTP [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4194", - "label": "p-4Y-PLCG1 dissociates from activated FGFR3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4193", - "label": "NF-kappaB p50:p65:ub-p-IKB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4192", - "label": "Ade-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4191", - "label": "Expression of IFNG-stimulated genes", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4190", - "label": "IL1B [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4189", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon ALPK1:ADP-heptose stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "4188", - "label": "NF-kappaB p50,p65,c-Rel dimer [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "4187", - "label": "PPTN11 dephosphorylates SPRY2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4186", - "label": "p-RPA heterotrimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4185", - "label": "AVP(20-28) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4184", - "label": "Disassembly of COPII coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4183", - "label": "UTP + glutamine + ATP + H2O => CTP + glutamate + ADP + orthophosphate [CTPS2]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4182", - "label": "5HT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4181", - "label": "SCF-beta-TrCP ubiquitinylates IkB", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4180", - "label": "Release of p-STAT2:p-STAT1 dimer", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4179", - "label": "IFN alpha/beta (IFNA/B) [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "4178", - "label": "IFNA [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "4177", - "label": "IFNA16 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4176", - "label": "EP300 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4175", - "label": "COPII vesicle with MHC class I [ER to Golgi transport vesicle membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4174", - "label": "Phosphorylated TAK1 dissociates from the TLR3 receptor complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4173", - "label": "viral dsRNA:TLR3:TICAM1:K63pUb-TRAF6 [endosome membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4172", - "label": "Activated FGFR3:p-FRS:p-PTPN11 activates RAS nucleotide exchange", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4171", - "label": "Transport of HCMV DNA Into the Nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4170", - "label": "HCMV Capsid:Nuclear Pore Complex [nuclear envelope]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4169", - "label": "CCPs deglutamylate tubulin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4168", - "label": "HCMV Nuclear Pore Docking", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4167", - "label": "PTPN11 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4166", - "label": "Budding of COPII coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4165", - "label": "Estrogen-responsive MYC gene expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4164", - "label": "RAD51 binds BRCA2 at resected DNA DSBs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4163", - "label": "SOCS2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4162", - "label": "RAB6:GTP displaces PAFAH1B1 from dynein:dynactin complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4161", - "label": "Phosphorylation of 4E-BP1 by activated mTORC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4160", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon TLR3 stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "4159", - "label": "Deacetylation of cleaved cohesin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4158", - "label": "Cleaved Cohesin:PDS5:WAPAL [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4157", - "label": "SIK1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4156", - "label": "Auto ubiqitination of TRAF6 bound to viral dsRNS:TLR3:TICAM1 complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4155", - "label": "SOCS1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4154", - "label": "PGE2 [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4153", - "label": "RHOA:GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4152", - "label": "The Ligand:GPCR:Gq complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4151", - "label": "p-Y693-STAT4, p-Y705-STAT3 dissociate from IL23:IL23 receptor", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4150", - "label": "CASR:Ca2+ [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4149", - "label": "OTUD5 deubiquitinates TRAF3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4148", - "label": "Active PLC-gamma1 dissociates from EGFR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4147", - "label": "ARHGDIA [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4146", - "label": "p-4Y-PLCG1 dissociates from activated FGFR2 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4145", - "label": "AcCho [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4144", - "label": "Cho is acetylated to AcCho by CHAT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4143", - "label": "(d)CMP, TMP, or (d)UMP + H2O => (deoxy)cytidine, thymidine, or (deoxy)uridine + orthophosphate (NT5C1A)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4142", - "label": "MCHR1,MCHR2:PMCH(147-165) [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4141", - "label": "Expression of STAT5 upregulated genes", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4140", - "label": "NMUR1,NMUR2:NMU [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4139", - "label": "TMP, uridine 2', 3', or 5' monophosphates, or deoxyuridine 3' or 5' monophosphates + H2O => thymidine or (deoxy)uridine + orthophosphate [NT5C]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4138", - "label": "ERCC1:XPF cleaves flaps generated by SSA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4137", - "label": "G-protein beta-gamma complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4136", - "label": "BTRC [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4135", - "label": "ISGylation of E2 conjugating enzymes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4134", - "label": "E2-mediated FOS gene expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4133", - "label": "RAB1:GTP:USO1:coatomer:PalmC-YKT6:p24 dimers:cargo:spectrin:anykrin [transport vesicle]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4132", - "label": "Dissociation of oncogenic RAS:RAF complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4131", - "label": "Vesicle is tethered through binding GOLGA2:GORASP1, GOLGB1 and the COG complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4130", - "label": "G-protein alpha (i):GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4129", - "label": "p-4Y-PLCG1 dissociates from activated FGFR2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4128", - "label": "Negative regulation of DDX58/IFIH1 signaling by RNF216", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4127", - "label": "K63-pUb-TRAF6:TICAM1:TRAM:TLR4:LY96:LPS:CD14 [endosome membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4126", - "label": "TICAM1:TRAM:TLR4:LY96:LPS:CD14 [endosome membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4125", - "label": "GDI1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4124", - "label": "K63polyUb [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "4123", - "label": "NF-kappaB translocates from the cytosol to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4122", - "label": "HDAC3 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4121", - "label": "Separation of sister chromatids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4120", - "label": "Release of E3 from polyubiquitinated substrate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4119", - "label": "Fatty acid ligands activate PPARA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4118", - "label": "NEXT1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4117", - "label": "Equilibrative transport (export) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4116", - "label": "Ccps deglutamylate tubulin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4115", - "label": "HBEGF(63-148) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4114", - "label": "p-4Y-PLCG1 dissociates from activated FGFR4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4113", - "label": "Dimerized phospho-IRF3/IRF7 is transported to the nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4112", - "label": "Expression of NANOG", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4111", - "label": "p-4S,T404-IRF3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4110", - "label": "p-Y1105-ARHGAP35 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4109", - "label": "JAG1 gene expression is inhibited by RUNX3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4108", - "label": "Phosphorylation of CTLA-4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4107", - "label": "Fusion of viral membrane with host cell membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4106", - "label": "Viral core surrounded by Matrix layer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4105", - "label": "N-acetylation of serotonin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4104", - "label": "p-4Y-PLCG1 dissociates from activated FGFR4 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4103", - "label": "myristoylated nef [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4102", - "label": "mRNP complex dissociates from cytosolic face of NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4101", - "label": "SPRY2 binds CBL", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4100", - "label": "p115-RhoGEF activation of RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4099", - "label": "ARFGAPs stimulate ARF GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4098", - "label": "Translocation of phosphorylated IRF3,IRF7 dimers into nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4097", - "label": "IRF3-P:IRF7-P [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4096", - "label": "GDI2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4095", - "label": "Complex of NOTCH1 with its ligand is cleaved to produce NEXT1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4094", - "label": "p-S477,S479-IRF7 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4093", - "label": "PI(3,4,5)P3 [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4092", - "label": "RUNX1 mRNA translation is inhibited by miR-17, miR-18a, miR-20a, miR-27a, miR-106a, miR-215, miR-302b, miR-378 and miR-675", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4091", - "label": "RUNX1 mRNA [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4090", - "label": "MyrG-p-Y419-SRC [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4089", - "label": "MYC [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4088", - "label": "The Ligand:GPCR:Gs complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4087", - "label": "NICD1 displaces co-repressor complex from RBPJ (CSL)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4086", - "label": "PTHLH [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4085", - "label": "Recovery of RNA synthesis after TC-NER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4084", - "label": "Expression of interferon-beta", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4083", - "label": "SAR1 Activation And Membrane Binding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4082", - "label": "SAR1B:GDP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4081", - "label": "SAR1B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4080", - "label": "FPR2:FPR2 ligands [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4079", - "label": "FPR2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4078", - "label": "PIAS4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4077", - "label": "2xp-S477,S479-IRF7 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4076", - "label": "GPR39 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4075", - "label": "ARRB1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4074", - "label": "MET phosphorylates STAT3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4073", - "label": "p-T,4S-IRF3:p-T,4S-IRF3 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4072", - "label": "Loss of SAR1B GTPase", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4071", - "label": "Dissociation of the Gi alpha:G olf complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4070", - "label": "GNAL [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4069", - "label": "ARHGAP35 stimulates RHOA GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4068", - "label": "PIAS4 SUMOylates NR4A2 with SUMO2,3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4067", - "label": "ISGylation of host proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4066", - "label": "p-S102-WHSC1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4065", - "label": "HGF:p-Y1234,Y1235,Y1349,Y1356-MET dimer [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4064", - "label": "RhoA is activated by nucleotide exchange and inhibits axonal growth", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4063", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4062", - "label": "RHOA:GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4061", - "label": "Auto-ubiquitination of TRAF3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4060", - "label": "TRAF3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4059", - "label": "SEC13 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4058", - "label": "NCOR1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4057", - "label": "TGFA gene expression is stimulated by the CITED1:EP300:ESR1:estrogen", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4056", - "label": "Expression of Interferon-alpha and beta mediated by VAF/pIRF7:CBP/p300", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4055", - "label": "NXF1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4054", - "label": "p-5S-BRCA1:p-2T-BARD1 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4053", - "label": "p-SPHK1 phosphorylates sphingosine to sphingosine 1-phosphate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4052", - "label": "RASA1 stimulates RAS GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4051", - "label": "Dissociation of paradoxically activated RAS:BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4050", - "label": "SEC22B:STX18:USE1L:BNIP1 [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4049", - "label": "Y963-STAT4 dimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4048", - "label": "CGA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4047", - "label": "GCG(53-81) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4046", - "label": "Equilibrative transport (import) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4045", - "label": "Translocation of p-IRF7:p-IRF7 to nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4044", - "label": "Cap Binding Complex (CBC) [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4043", - "label": "NCBP2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4042", - "label": "The p75NTR:NgR:MDGI complex reduces RHOA-GDI activity, displacing RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4041", - "label": "Y693-STAT4 dimer translocates to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4040", - "label": "Activator phosphorylates STAT5", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4039", - "label": "Retrograde vesicle is tethered at the ER by the NRZ complex and t-SNAREs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4038", - "label": "Phosphorylation and release of IRF7", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4037", - "label": "Phosphorylation of IRF-3/IRF7 and their release from the activated TLR complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4036", - "label": "NCBP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4035", - "label": "Nef mediated disruption of CD4:Lck Complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4034", - "label": "p-STAT5 dissociates from activator:STAT5 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4033", - "label": "Degradation of CD4", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4032", - "label": "Release of acetylcholine at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4031", - "label": "BTRC:CUL1:SKP1 (SCF-beta-TrCP1) ubiquitinylates PER proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4030", - "label": "Acetylcholine Loaded Synaptic Vesicle [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4029", - "label": "miR-27a Nonendonucleolytic RISC [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4028", - "label": "SUMO1:C93-UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4027", - "label": "G-proteins dissociate from plasma-membrane estrogen receptors", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4026", - "label": "RNF168 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4025", - "label": "Retinoic acid activates HOXA1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4024", - "label": "CSNK1D phosphorylates SEC23", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4023", - "label": "cIAP1,2 ubiquitinates NIK in cIAP1,2:TRAF2::TRAF3:NIK", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4022", - "label": "beta-TRCP ubiquitinates IkB-alpha in p-S32,33-IkB-alpha:NF-kB complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4021", - "label": "TNFRSF1B [specific granule membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4020", - "label": "RUNX3 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4019", - "label": "Exocytosis of platelet alpha granule contents", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4018", - "label": "COPII cargo:receptors:SEC23:SEC24:SEC13:SEC31:SEC23IP:v-SNAREs:TRAPPCII:RAB1:GTP [COPII-coated ER to Golgi transport vesicle]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4017", - "label": "NCOR2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4016", - "label": "IFNA1 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4015", - "label": "mature mRNA (eukaryotic, capped and deadenylated) [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "4014", - "label": "Exosome Complex hydrolyzes mRNA by 3' to 5' exoribonuclease digestion", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4013", - "label": "LCK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4012", - "label": "Phosphorylation and release of IRF3/IRF7", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4011", - "label": "CoA-SH [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4010", - "label": "SUMOylation of XPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4009", - "label": "Dissociation of phosphorylated 4EBP1 from eIF4E", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4008", - "label": "P2RY11 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4007", - "label": "EIF4E [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4006", - "label": "eIF4E:4E-BP1-P [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4005", - "label": "JAG1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4004", - "label": "Release of the SLBP independent Histone mRNA from the NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4003", - "label": "IFNA21 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4002", - "label": "Ade-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4001", - "label": "PARN deadenylates mRNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4000", - "label": "Release of PLCG from FCGR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3999", - "label": "IFNA4 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3998", - "label": "Disintegration of matrix layer", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "3997", - "label": "Degradation of CD8", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3996", - "label": "Exocytosis of Insulin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3995", - "label": "SUMO1:p-T4827-HERC2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3994", - "label": "IFNA7 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3993", - "label": "TGFA(24-98) [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3992", - "label": "Phosphorylated TAK1 leaves activated TLR receptor complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3991", - "label": "IL1B(117-269) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3990", - "label": "Docking of Mature Histone mRNA complex:TAP at the NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3989", - "label": "p-S25,S1778-TP53BP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3988", - "label": "IFNA8 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3987", - "label": "AREG(101-187) [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3986", - "label": "Dissociation of BRAF/RAF fusion complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3985", - "label": "CTNNB1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3984", - "label": "NPS [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3983", - "label": "CREBBP [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3982", - "label": "PP2A [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3981", - "label": "SIN3A [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3980", - "label": "TTLLs polyglutamylate tubulin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3979", - "label": "IFNA10 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3978", - "label": "Ac-K94,K171-RUNX3:CBFB:EP300 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3977", - "label": "Loading of acetylcholine in synaptic vesicles", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3976", - "label": "p-T185,Y187-MAPK1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3975", - "label": "COP9 signalosome deneddylates cytosolic CRL E3 ubiquitin ligase complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3974", - "label": "RPA heterotrimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3973", - "label": "Expression of IFNG gene", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3972", - "label": "Release of the Mature intronless transcript derived Histone mRNA:SLBP:eIF4E Complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3971", - "label": "(d)AMP, (d)GMP, or (d)IMP + H2O => (deoxy)adenosine, (deoxy)guanosine, or (deoxy)inosine + orthophosphate (NT5C1A)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3970", - "label": "PPP1R3C [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3969", - "label": "IFNA5 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3968", - "label": "AGTR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3967", - "label": "KLF4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3966", - "label": "NPSR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3965", - "label": "Ligation of newly synthesized repair patch to incised DNA in TC-NER", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3964", - "label": "TC-NER post-incision complex:SSB-dsDNA:trimmed nascent mRNA: (PCNA:POLD,POLE), (MonoUb:K164-PCNA:POLK):RPA:RFC [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3963", - "label": "PP1 dephosphorylates TGFBR1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3962", - "label": "Docking of Mature Replication Dependent Histone mRNA with the NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3961", - "label": "ARRB2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3960", - "label": "Regulation of protein ISGylation by ISG15 deconjugating enzyme USP18", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3959", - "label": "UBE2I [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3958", - "label": "SEC31A:SEC13:SEC23IP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3957", - "label": "Interleukin-1 family are secreted", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3956", - "label": "Interleukin-1 family [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "3955", - "label": "IL18 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3954", - "label": "EP300 acetylates RUNX3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3953", - "label": "SEC31A [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3952", - "label": "Release of the Mature intronless derived mRNA, TAP, and Aly/Ref from the NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3951", - "label": "PPIA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3950", - "label": "IFNA2 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3949", - "label": "SUMO3:UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3948", - "label": "IL8 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3947", - "label": "Dissociation of RAS:RAF1 mutant complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3946", - "label": "p-4Y-PLCG1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3945", - "label": "Dynein:Dynactin:microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3944", - "label": "NSF and SNAPs bind cis-SNARE at the ER membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3943", - "label": "SEC22B:STX18:USE1:BNIP1L:3xSNAPs:NSF hexamer [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3942", - "label": "STAT3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3941", - "label": "PTK6 phosphorylates STAT3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3940", - "label": "FOSB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3939", - "label": "Docking of the Mature intronless derived transcript derived mRNA, TAP and Aly/Ref at the NPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3938", - "label": "Interleukin-1 family precursors are cleaved by caspase-1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3937", - "label": "CCR4-NOT complex deadenylates mRNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3936", - "label": "IFNA14 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3935", - "label": "Flap [nucleoplasm]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "3934", - "label": "p-T202,Y204-MAPK3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3933", - "label": "NFKB1(1-433):RELA [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3932", - "label": "p21 RAS:GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3931", - "label": "CCND1 binds RUNX3 and displaces EP300", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3930", - "label": "NSF ATPase activity dissociates cis-SNARE at the ER", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3929", - "label": "p-Y342-PTK6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3928", - "label": "Beta-catenin is released from the destruction complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3927", - "label": "K63polyUb-APC [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3926", - "label": "IFNA17 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3925", - "label": "ALYREF [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3924", - "label": "PIP3:BTK:G beta-gamma complex dissociates to Active BTK, PIP3 and G beta-gamma complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3923", - "label": "IFNA6 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3922", - "label": "IL1B(1-269) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3921", - "label": "PTK6 phosphorylates CDKN1B", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3920", - "label": "p-T,Y MAPKs [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "3919", - "label": "ADR, NAd [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "3918", - "label": "NAd [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3917", - "label": "ISGylated host proteins [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3916", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3915", - "label": "JAK1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3914", - "label": "THBS1 gene transcription is stimulated by the complex containing RUNX1, PRMT1 and GATA1 and inhibited by the complex of RUNX1, SIN3A and PRMT6", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3913", - "label": "THBS1 trimer [platelet alpha granule lumen]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3912", - "label": "TGFA(24-98) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3911", - "label": "SEC24D [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3910", - "label": "S1P [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3909", - "label": "MMPs cleave HB-EGF", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3908", - "label": "NEDD8 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3907", - "label": "Ac-CoA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3906", - "label": "p-4Y-PLCG1 dissociates from activated FGFR3 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3905", - "label": "NICD1 PEST domain mutants:RBPJ:SNW1 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3904", - "label": "NICD1 Q2440* [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3903", - "label": "NICD1 Q2395* [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3902", - "label": "NICD1 P2474Afs*4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3901", - "label": "NICD1 P2514Rfs*4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3900", - "label": "Nucleotide exchange on RAB1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3899", - "label": "GRB2-1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3898", - "label": "NICD1 PEST domain mutants translocate from cytosol to nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3897", - "label": "NICD1 PEST domain mutants displace co-repressor complex from RBPJ (CSL)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3896", - "label": "NICD1 PEST Domain Mutants [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "3895", - "label": "NICD1 Q2440* [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3894", - "label": "NICD1 P2474Afs*4 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3893", - "label": "NICD1 is phosphorylated by CDK8", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3892", - "label": "NICD1 P2514Rfs*4 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3891", - "label": "NEXT1 PEST domain mutants are cleaved to produce NICD1 PEST domain mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3890", - "label": "2xviral dsRNA:2xK63polyUb-DDX58:2xRNF135,TRIM25:2xATP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3889", - "label": "NEXT1 PEST domain mutants [plasma membrane]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "3888", - "label": "NEXT1 P2514Rfs*4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3887", - "label": "NICD1 Q2395* [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3886", - "label": "NEXT1 Q2440* [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3885", - "label": "NEXT1 Q2395* [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3884", - "label": "NEXT1 P2474Afs*4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3883", - "label": "NOTCH1 HD+PEST domain mutants are cleaved by ADAM10/17 irrespective of ligand binding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3882", - "label": "LPAR1,2,3,5:LPA [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3881", - "label": "NF-kB migrates to the nucleus and turns on transcription", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3880", - "label": "Removal of RNA primer and dissociation of RPA and Dna2 from the C-strand", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3879", - "label": "HLA class I histocompatibility antigen, E alpha chain precursor [integral component of lumenal side of endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3878", - "label": "Removal of RNA primer and dissociation of RPA and Dna2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3877", - "label": "ISG15 E3 ligases [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "3876", - "label": "RUNX3 translocates to the nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3875", - "label": "ARIH1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3874", - "label": "UTP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3873", - "label": "Dissociation of phosphorylated PLCG1 from ligand-responsive p-6Y-EGFR mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3872", - "label": "AGTR1 [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3871", - "label": "(d)NDP + ATP <=> (d)NTP + ADP (NME1,2,3)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3870", - "label": "p-IRF7:p-IRF7 translocates to the nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3869", - "label": "Phosphorylated SMAD2/3 dissociates from TGFBR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3868", - "label": "CEBPB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3867", - "label": "FGFR1OP-FGFR1 phosphorylates STAT1 and STAT3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3866", - "label": "GYS1 catalyzes the incorporation of phosphoglucose into glycogen-GYG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3865", - "label": "PF4 gene transcription is stimulated by RUNX1:CBFB", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3864", - "label": "PF4(48-101) [platelet alpha granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3863", - "label": "p-Y699-STAT5B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3862", - "label": "Vesicle budding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "3861", - "label": "Auto ubiquitination of TRAF6 bound to the activated TLR4 complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3860", - "label": "CDK8 phosphorylates NICD1 PEST domain mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3859", - "label": "COPI vesicle uncoating at the ER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3858", - "label": "RAB1:GTP:coatomer:p24 dimers:SEC22B:cargo:NBAS:RINT1:ZW10:STX18:USE1L:BNIP1 [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3857", - "label": "PF4(32-101) [platelet alpha granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3856", - "label": "p-Y694-STAT5A [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3855", - "label": "Recruitment of XPA and release of CAK", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3854", - "label": "L-Glu [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3853", - "label": "NICD1:RBPJ:SNW1 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3852", - "label": "NICD1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3851", - "label": "ADAM10/17 cleaves ligand-bound NOTCH1 PEST domain mutants to produce NEXT1 PEST domain mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3850", - "label": "TGFA precursor [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3849", - "label": "ADORA2B:Ade-Rib:GsGTP dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3848", - "label": "SEC23A [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3847", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3846", - "label": "p-Y705-STAT3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3845", - "label": "Dissociation of Rho GTP:GDP from GDI complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3844", - "label": "AREG precursor [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3843", - "label": "PPARG [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3842", - "label": "SEC24C [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3841", - "label": "MIR27A gene transcription is stimulated by the complex containing RUNX1, PRMT1 and GATA1 and inhibited by the complex of RUNX1, SIN3A and PRMT6", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3840", - "label": "MON1:CCZ1 exchanges GTP for GDP on RAB7", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3839", - "label": "CXCR4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3838", - "label": "IFNB1 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3837", - "label": "TGFB1 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3836", - "label": "RNF4 ubiquitinates MDC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3835", - "label": "AREG(101-187) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3834", - "label": "SEC22B [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3833", - "label": "NICD1 traffics to nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3832", - "label": "NICD1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3831", - "label": "EIF4A3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3830", - "label": "Activated TRAF6 synthesizes unanchored polyubiquitin chains upon TLR stimulation", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "3829", - "label": "Exocytosis of specific granule membrane proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3828", - "label": "FGL2 [ficolin-1-rich granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3827", - "label": "NEXT1 is cleaved to produce NICD1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3826", - "label": "DNA DNA DSBs:p-MRN:p-S1981,Ac-K3016-ATM:KAT5:K63PolyUb-K14,K16,p-S139-H2AFX,Me2K21-HIST1H4A-Nucleosome:SUMO2:K1840,p-5T-MDC1:p-S102-WHSC1:RNF8:Zn2+:SUMO1:p-T4827-HERC2:UBE2N:UBE2V2:RNF168:PIAS4:p-S25,S1778-TP53BP1:p-5S,2T-BRCA1-A complex [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3825", - "label": "Release of p-PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3824", - "label": "Stimulation of IL8 transcription in senescent cells", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3823", - "label": "Dissociation of phosphorylated PLC-gamma 1 from p-EGFRvIII mutant", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3822", - "label": "K63polyUb-TRAF3:TICAM1:activated TLR3 [endosome membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3821", - "label": "Retinoic acid activates HOXB1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3820", - "label": "Auto-ubiquitination of TRAF3 within activated TLR3 complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3819", - "label": "RNF8:Zn2+ [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3818", - "label": "KIFC1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3817", - "label": "K48PolyUb-K21,22-p-S32,36-IkBA:NF-kB complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3816", - "label": "Phosphorylation of IRF-3/IRF7 and their release from the activated TLR3 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3815", - "label": "Hypophosphorylation of RNA Pol II CTD by FCP1P protein", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3814", - "label": "Distorted dsDNA [nucleoplasm]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "3813", - "label": "Translesion synthesis across unhooked ICL by POLN", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3812", - "label": "Dissociation of high activity BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3811", - "label": "AcCho [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3810", - "label": "p-Y693-STAT4 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3809", - "label": "p190RhoGEF exchanges GTP for GDP on RHOA, activating it", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3808", - "label": "STAT5 dimers translocate to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3807", - "label": "p-STAT5 dimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3806", - "label": "ZFYVE9-1 [early endosome membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3805", - "label": "UDP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3804", - "label": "dCDP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3803", - "label": "UBE2N:UBE2V1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3802", - "label": "CDP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3801", - "label": "RUNX1 gene expression is inhibited by RUNX3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3800", - "label": "(d)CMP or UMP + ATP <=> (d)CDP or UDP + ADP (CMPK1)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3799", - "label": "DNA DSB:p-MRN:p-S1981,Ac-K3016-ATM:KAT5 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3798", - "label": "Ca2+ [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3797", - "label": "The Ligand:GPCR:Gi complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3796", - "label": "ISGF3 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3795", - "label": "NOTCH1 HD domain mutants are cleaved to produce NEXT1 irrespective of ligand binding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3794", - "label": "SNAP25 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3793", - "label": "Dissociation of clathrin-associated proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3792", - "label": "NFKB1:RELA translocates from the cytosol to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3791", - "label": "NFKB1(1-433):RELA [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3790", - "label": "Cytosolic DUSPs dephosphorylate MAPKs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3789", - "label": "Polyglutamylated microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3788", - "label": "26S proteasome processes K48PolyUb-K21,22-p-S32,36-IkBA:NF-kB complex to form NF-kB complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3787", - "label": "Transfer of SUMO1 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3786", - "label": "Release of PLCG from FCGR3A", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3785", - "label": "TGFA precursor [ER to Golgi transport vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3784", - "label": "DDX58 is K63 polyubiquitinated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3783", - "label": "IFNG-activated factor (GAF) [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3782", - "label": "AREG precursor [ER to Golgi transport vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3781", - "label": "2x DDX58 ligand:2x DDX58:2xATP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3780", - "label": "RNF152 polyubiquitinates RRAGA", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3779", - "label": "UBE2N:UBE2V2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3778", - "label": "viral dsRNA binds DDX58", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3777", - "label": "UBE2L6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3776", - "label": "GYS2 catalyzes the incorporation of phosphoglucose into glycogen-GYG2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3775", - "label": "PPARG:RXRA heterodimer binds to fatty acid-like ligands", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3774", - "label": "Transfer of NEDD8 to AcM-UBE2M", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3773", - "label": "CAK [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3772", - "label": "NGEF exchanges GTP for GDP on RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3771", - "label": "Activated FGFR4:p-FRS:p-PTPN11 activates RAS nucleotide exchange", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3770", - "label": "Caspase-8 cleaves IL1B precursor", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3769", - "label": "TRAF6 binding leads to IRAK1:TRAF6 release", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3768", - "label": "HDAC6 deacetylates microtubules", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3767", - "label": "Association of Ku heterodimer with ends of DNA double-strand break", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3766", - "label": "Nuclear Pore Complex (NPC) [nuclear envelope]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3765", - "label": "p-2S,S376,T,T209,T387-IRAK1:TRAF6 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3764", - "label": "Estrogen-responsive CCND1 gene expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3763", - "label": "NR4A2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3762", - "label": "Translocation of STAT1 dimer to nucleus", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3761", - "label": "PIAS4 SUMOylates MDC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3760", - "label": "CCND1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3759", - "label": "Expression of STAT3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3758", - "label": "SUMO2:UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3757", - "label": "CBL [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3756", - "label": "SRC autophosphorylation is positively regulated by InlA-bound CDH1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3755", - "label": "TC-NER post-incision complex:dsDNA with transcription bubble [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3754", - "label": "viral dsRNA:IFIH1, viral dsRNA:K63polyUb-DDX58:MAVS [mitochondrial outer membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3753", - "label": "WNT5A:FZD4 is endocytosed", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3752", - "label": "TNFRSF1B [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3751", - "label": "AP-2 Complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3750", - "label": "Overexpressed HIST1H2AC and ESR1:ESTG bind MYC and BCL2 genes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3749", - "label": "UBE2N [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3748", - "label": "Repair DNA synthesis of ~27-30 bases long patch by POLD, POLE or POLK in TC-NER", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3747", - "label": "TRAF6 is K63 poly-ubiquitinated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3746", - "label": "IFNG gene expression is stimulated by RUNX1 and inhibited by FOXP3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3745", - "label": "IFNG [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3744", - "label": "Retinoic acid activates HOXD4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3743", - "label": "Expression of PPARG", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3742", - "label": "TGFBR2 is recruited to tight junctions after TGF-beta stimulation", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3741", - "label": "dNTP [nucleoplasm]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3740", - "label": "Long-range resection of DNA DSBs by EXO1 or DNA2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3739", - "label": "GMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3738", - "label": "MYC gene expression is enhanced by E2F1, STAT3, and CEBPB and repressed by CEBPA", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3737", - "label": "Phosphorylation of IFNGR1 by JAK kinases", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3736", - "label": "IFNG:IFNGR1:p-JAK1:IFNGR2:p-JAK2 [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3735", - "label": "FOS [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3734", - "label": "Histone H2A [nucleoplasm]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "3733", - "label": "NMUR2:NMS [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3732", - "label": "UBE2N:UBE2V1 dissociates from hp-IRAK1:3xK63-polyUb-TRAF6:3xUBE2N:UBE2V1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3731", - "label": "K63PolyUb:K14,K16,p-S139-H2AFX,Me2K21-HIST1H4A-Nucleosome [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3730", - "label": "PER1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3729", - "label": "coatomer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3728", - "label": "IFNG:p-IFNGR1:p-JAK1:IFNGR2:p-JAK2 [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3727", - "label": "PAFAH1B1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3726", - "label": "Expression of IFN-induced genes", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - } - ], - "edges": [ - { - "id": "5103", - "label": "243719 (-) 1205885", - "from": "4271", - "to": "3816", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5102", - "label": "587783 (-) 140089", - "from": "4270", - "to": "4065", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5101", - "label": "419867 (-) 960695", - "from": "4269", - "to": "4229", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5100", - "label": "305190 (-) 299541", - "from": "4268", - "to": "4152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5099", - "label": "1882150 (-) 2098710", - "from": "4267", - "to": "3840", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5098", - "label": "1341480 (-) 320330", - "from": "4266", - "to": "4058", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5097", - "label": "616491 (-) 550154", - "from": "4265", - "to": "3933", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5096", - "label": "616491 (-) 616607", - "from": "4265", - "to": "4240", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5095", - "label": "616491 (-) 616843", - "from": "4265", - "to": "4188", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5094", - "label": "616491 (-) 616818", - "from": "4265", - "to": "4198", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5093", - "label": "616491 (-) 616732", - "from": "4265", - "to": "4205", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5092", - "label": "616492 (-) 616491", - "from": "4264", - "to": "4265", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5091", - "label": "616493 (-) 616491", - "from": "4263", - "to": "4265", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5090", - "label": "1226805 (-) 1243896", - "from": "4262", - "to": "4085", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5089", - "label": "299067 (-) 299541", - "from": "4261", - "to": "4152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5088", - "label": "2119743 (-) 254746", - "from": "4260", - "to": "4075", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5087", - "label": "421954 (-) 951458", - "from": "4259", - "to": "3963", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5086", - "label": "75845 (-) 75696", - "from": "4258", - "to": "3741", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5085", - "label": "1796167 (-) 1796033", - "from": "4257", - "to": "3736", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5084", - "label": "950359 (-) 569211", - "from": "4256", - "to": "3757", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5083", - "label": "421977 (-) 421954", - "from": "4255", - "to": "4259", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5082", - "label": "950362 (-) 950359", - "from": "4254", - "to": "4256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5081", - "label": "421979 (-) 421977", - "from": "4253", - "to": "4255", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5080", - "label": "712804 (-) 703763", - "from": "4252", - "to": "3927", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5079", - "label": "159862 (-) 1339245", - "from": "4251", - "to": "3759", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5078", - "label": "299127 (-) 299541", - "from": "4250", - "to": "4152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5077", - "label": "934011 (-) 935596", - "from": "4249", - "to": "3808", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5076", - "label": "256131 (-) 974036", - "from": "4248", - "to": "3947", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5075", - "label": "256131 (-) 973669", - "from": "4248", - "to": "4051", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5074", - "label": "256131 (-) 973072", - "from": "4248", - "to": "4209", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5073", - "label": "256131 (-) 975952", - "from": "4248", - "to": "3986", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5072", - "label": "256131 (-) 971358", - "from": "4248", - "to": "4132", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5071", - "label": "256131 (-) 972439", - "from": "4248", - "to": "3812", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5070", - "label": "256131 (-) 252110", - "from": "4248", - "to": "4226", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5069", - "label": "8325 (-) 1477081", - "from": "4247", - "to": "4168", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5068", - "label": "258188 (-) 1793199", - "from": "4246", - "to": "3960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5067", - "label": "1867917 (-) 1871665", - "from": "4245", - "to": "3780", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5066", - "label": "534672 (-) 191978", - "from": "4244", - "to": "3854", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5065", - "label": "1417364 (-) 1226805", - "from": "4243", - "to": "4262", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5064", - "label": "422042 (-) 421979", - "from": "4242", - "to": "4253", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5063", - "label": "571548 (-) 571803", - "from": "4241", - "to": "4187", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5062", - "label": "616607 (-) 617080", - "from": "4240", - "to": "4123", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5061", - "label": "422049 (-) 422042", - "from": "4239", - "to": "4242", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5060", - "label": "422049 (-) 573953", - "from": "4239", - "to": "4161", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5059", - "label": "565410 (-) 1200984", - "from": "4238", - "to": "4053", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5058", - "label": "133281 (-) 1245648", - "from": "4237", - "to": "4172", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5057", - "label": "133281 (-) 1484122", - "from": "4237", - "to": "3906", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5056", - "label": "133281 (-) 1485345", - "from": "4237", - "to": "4146", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5055", - "label": "133281 (-) 1485501", - "from": "4237", - "to": "4104", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5054", - "label": "133281 (-) 1245450", - "from": "4237", - "to": "4215", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5053", - "label": "133281 (-) 289149", - "from": "4237", - "to": "4194", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5052", - "label": "133281 (-) 291429", - "from": "4237", - "to": "4129", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5051", - "label": "133281 (-) 571202", - "from": "4237", - "to": "3771", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5050", - "label": "133281 (-) 291483", - "from": "4237", - "to": "4114", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5049", - "label": "526503 (-) 526055", - "from": "4236", - "to": "3796", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5048", - "label": "526505 (-) 526503", - "from": "4235", - "to": "4236", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5047", - "label": "616621 (-) 616491", - "from": "4234", - "to": "4265", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5046", - "label": "1116334 (-) 593090", - "from": "4233", - "to": "3951", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5045", - "label": "1034413 (-) 1035154", - "from": "4232", - "to": "4037", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5044", - "label": "92336 (-) 1243896", - "from": "4231", - "to": "4085", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5043", - "label": "923825 (-) 77681", - "from": "4230", - "to": "3758", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5042", - "label": "960695 (-) 960987", - "from": "4229", - "to": "4167", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5041", - "label": "243911 (-) 2680", - "from": "4228", - "to": "4124", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5040", - "label": "73933 (-) 72811", - "from": "4227", - "to": "3974", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5039", - "label": "252110 (-) 251201", - "from": "4226", - "to": "3920", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5038", - "label": "252110 (-) 251144", - "from": "4226", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5037", - "label": "252110 (-) 250984", - "from": "4226", - "to": "3976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5036", - "label": "2117860 (-) 254746", - "from": "4225", - "to": "4075", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5035", - "label": "1337573 (-) 1337326", - "from": "4224", - "to": "3730", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5034", - "label": "2117862 (-) 2119743", - "from": "4223", - "to": "4260", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5033", - "label": "2117862 (-) 2117860", - "from": "4223", - "to": "4225", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5032", - "label": "962799 (-) 962359", - "from": "4222", - "to": "3778", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5031", - "label": "962799 (-) 1794867", - "from": "4222", - "to": "4067", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5030", - "label": "743664 (-) 1341480", - "from": "4221", - "to": "4266", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5029", - "label": "743664 (-) 1341349", - "from": "4221", - "to": "3744", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5028", - "label": "743664 (-) 1341038", - "from": "4221", - "to": "3821", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5027", - "label": "743664 (-) 1340336", - "from": "4221", - "to": "4025", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5026", - "label": "51443 (-) 243911", - "from": "4220", - "to": "4228", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5025", - "label": "51443 (-) 391560", - "from": "4220", - "to": "4189", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5024", - "label": "51443 (-) 248331", - "from": "4220", - "to": "4160", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5023", - "label": "51443 (-) 616002", - "from": "4220", - "to": "3830", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5022", - "label": "1796343 (-) 1796345", - "from": "4219", - "to": "4218", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5021", - "label": "1796345 (-) 1797990", - "from": "4218", - "to": "3762", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5020", - "label": "504065 (-) 504078", - "from": "4217", - "to": "4211", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5019", - "label": "504065 (-) 504360", - "from": "4217", - "to": "4143", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5018", - "label": "504065 (-) 504377", - "from": "4217", - "to": "4139", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5017", - "label": "504065 (-) 530113", - "from": "4217", - "to": "3800", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5016", - "label": "1886473 (-) 1238218", - "from": "4216", - "to": "3949", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5015", - "label": "1245450 (-) 253191", - "from": "4215", - "to": "3932", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5014", - "label": "504075 (-) 1682942", - "from": "4214", - "to": "3847", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5013", - "label": "504075 (-) 1684283", - "from": "4214", - "to": "4063", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5012", - "label": "504076 (-) 1684283", - "from": "4213", - "to": "4063", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5011", - "label": "504076 (-) 1682942", - "from": "4213", - "to": "3847", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5010", - "label": "504077 (-) 1682942", - "from": "4212", - "to": "3847", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5009", - "label": "504077 (-) 1684283", - "from": "4212", - "to": "4063", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5008", - "label": "504078 (-) 504076", - "from": "4211", - "to": "4213", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5007", - "label": "504078 (-) 504077", - "from": "4211", - "to": "4212", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5006", - "label": "504078 (-) 504075", - "from": "4211", - "to": "4214", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5005", - "label": "1237263 (-) 55093", - "from": "4210", - "to": "3779", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5004", - "label": "973072 (-) 251144", - "from": "4209", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5003", - "label": "973072 (-) 251201", - "from": "4209", - "to": "3920", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5002", - "label": "973072 (-) 250984", - "from": "4209", - "to": "3976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5001", - "label": "1237265 (-) 1237263", - "from": "4208", - "to": "4210", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5000", - "label": "1382672 (-) 441773", - "from": "4207", - "to": "3868", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4999", - "label": "1337624 (-) 1337573", - "from": "4206", - "to": "4224", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4998", - "label": "616732 (-) 617080", - "from": "4205", - "to": "4123", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4997", - "label": "874812 (-) 888170", - "from": "4204", - "to": "3900", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4996", - "label": "1272124 (-) 1265996", - "from": "4203", - "to": "4201", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4995", - "label": "241990 (-) 958434", - "from": "4202", - "to": "3732", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4994", - "label": "1265996 (-) 1275213", - "from": "4201", - "to": "3914", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4993", - "label": "1265996 (-) 1275346", - "from": "4201", - "to": "3865", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4992", - "label": "1265996 (-) 1275810", - "from": "4201", - "to": "3746", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4991", - "label": "1161548 (-) 1035037", - "from": "4200", - "to": "4073", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4990", - "label": "616817 (-) 616491", - "from": "4199", - "to": "4265", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4989", - "label": "616818 (-) 617080", - "from": "4198", - "to": "4123", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4988", - "label": "1810802 (-) 1810805", - "from": "4197", - "to": "4196", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4987", - "label": "1810805 (-) 1810967", - "from": "4196", - "to": "4151", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4986", - "label": "883065 (-) 1200606", - "from": "4195", - "to": "4166", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4985", - "label": "289149 (-) 144608", - "from": "4194", - "to": "3946", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4984", - "label": "616831 (-) 616491", - "from": "4193", - "to": "4265", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4983", - "label": "330112 (-) 409084", - "from": "4192", - "to": "3849", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4982", - "label": "330112 (-) 1684347", - "from": "4192", - "to": "4046", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4981", - "label": "330112 (-) 369394", - "from": "4192", - "to": "4088", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4980", - "label": "330112 (-) 331494", - "from": "4192", - "to": "3797", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4979", - "label": "1796481 (-) 515462", - "from": "4191", - "to": "3879", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4978", - "label": "952711 (-) 958275", - "from": "4190", - "to": "3769", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4977", - "label": "391560 (-) 2680", - "from": "4189", - "to": "4124", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4976", - "label": "616843 (-) 617080", - "from": "4188", - "to": "4123", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4975", - "label": "571803 (-) 132458", - "from": "4187", - "to": "3899", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4974", - "label": "74143 (-) 73933", - "from": "4186", - "to": "4227", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4973", - "label": "301477 (-) 299541", - "from": "4185", - "to": "4152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4972", - "label": "1200554 (-) 880125", - "from": "4184", - "to": "3848", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4971", - "label": "1200554 (-) 888001", - "from": "4184", - "to": "3953", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4970", - "label": "1200554 (-) 882000", - "from": "4184", - "to": "3911", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4969", - "label": "1200554 (-) 880139", - "from": "4184", - "to": "3842", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4968", - "label": "1200554 (-) 43842", - "from": "4184", - "to": "4059", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4967", - "label": "534955 (-) 191978", - "from": "4183", - "to": "3854", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4966", - "label": "354741 (-) 836276", - "from": "4182", - "to": "4105", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4965", - "label": "616886 (-) 616493", - "from": "4181", - "to": "4263", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4964", - "label": "616886 (-) 616831", - "from": "4181", - "to": "4193", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4963", - "label": "616886 (-) 616621", - "from": "4181", - "to": "4234", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4962", - "label": "616886 (-) 616817", - "from": "4181", - "to": "4199", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4961", - "label": "616886 (-) 616492", - "from": "4181", - "to": "4264", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4960", - "label": "526778 (-) 526505", - "from": "4180", - "to": "4235", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4959", - "label": "526780 (-) 526778", - "from": "4179", - "to": "4180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4958", - "label": "526781 (-) 526778", - "from": "4178", - "to": "4180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4957", - "label": "526782 (-) 526778", - "from": "4177", - "to": "4180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4956", - "label": "321983 (-) 1160014", - "from": "4176", - "to": "4056", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4955", - "label": "321983 (-) 1159930", - "from": "4176", - "to": "4084", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4954", - "label": "321983 (-) 2063179", - "from": "4176", - "to": "4057", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4953", - "label": "321983 (-) 1275213", - "from": "4176", - "to": "3914", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4952", - "label": "1200581 (-) 1200554", - "from": "4175", - "to": "4184", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4951", - "label": "248265 (-) 243719", - "from": "4174", - "to": "4271", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4950", - "label": "248267 (-) 248265", - "from": "4173", - "to": "4174", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4949", - "label": "1245648 (-) 253191", - "from": "4172", - "to": "3932", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4948", - "label": "1477076 (-) 237385", - "from": "4171", - "to": "3766", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4947", - "label": "1477077 (-) 1477076", - "from": "4170", - "to": "4171", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4946", - "label": "1935831 (-) 8325", - "from": "4169", - "to": "4247", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4945", - "label": "1477081 (-) 1477077", - "from": "4168", - "to": "4170", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4944", - "label": "960987 (-) 1272124", - "from": "4167", - "to": "4203", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4943", - "label": "1200606 (-) 1200581", - "from": "4166", - "to": "4175", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4942", - "label": "2062814 (-) 418544", - "from": "4165", - "to": "4089", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4941", - "label": "74216 (-) 74143", - "from": "4164", - "to": "4186", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4940", - "label": "1798639 (-) 1911913", - "from": "4163", - "to": "3975", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4939", - "label": "2111986 (-) 49150", - "from": "4162", - "to": "3727", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4938", - "label": "573953 (-) 572417", - "from": "4161", - "to": "4006", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4937", - "label": "248331 (-) 2680", - "from": "4160", - "to": "4124", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4936", - "label": "637452 (-) 193879", - "from": "4159", - "to": "3907", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4935", - "label": "637453 (-) 637452", - "from": "4158", - "to": "4159", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4934", - "label": "1337870 (-) 1337573", - "from": "4157", - "to": "4224", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4933", - "label": "248335 (-) 248267", - "from": "4156", - "to": "4173", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4932", - "label": "246288 (-) 1796167", - "from": "4155", - "to": "4257", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4931", - "label": "299537 (-) 299541", - "from": "4154", - "to": "4152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4930", - "label": "653843 (-) 730789", - "from": "4153", - "to": "3809", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4929", - "label": "653843 (-) 737088", - "from": "4153", - "to": "3772", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4928", - "label": "653843 (-) 1538767", - "from": "4153", - "to": "4100", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4927", - "label": "653843 (-) 654138", - "from": "4153", - "to": "4064", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4926", - "label": "299541 (-) 251616", - "from": "4152", - "to": "3798", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4925", - "label": "1810967 (-) 1048221", - "from": "4151", - "to": "3810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4924", - "label": "299544 (-) 299541", - "from": "4150", - "to": "4152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4923", - "label": "1159708 (-) 2680", - "from": "4149", - "to": "4124", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4922", - "label": "291357 (-) 144608", - "from": "4148", - "to": "3946", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4921", - "label": "653856 (-) 654215", - "from": "4147", - "to": "4042", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4920", - "label": "1485345 (-) 144608", - "from": "4146", - "to": "3946", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4919", - "label": "1083940 (-) 1084519", - "from": "4145", - "to": "3977", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4918", - "label": "1083941 (-) 1083940", - "from": "4144", - "to": "4145", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4917", - "label": "504360 (-) 504077", - "from": "4143", - "to": "4212", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4916", - "label": "504360 (-) 504075", - "from": "4143", - "to": "4214", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4915", - "label": "504360 (-) 504076", - "from": "4143", - "to": "4213", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4914", - "label": "311850 (-) 299541", - "from": "4142", - "to": "4152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4913", - "label": "1804852 (-) 246288", - "from": "4141", - "to": "4155", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4912", - "label": "309814 (-) 299541", - "from": "4140", - "to": "4152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4911", - "label": "504377 (-) 504076", - "from": "4139", - "to": "4213", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4910", - "label": "504377 (-) 504075", - "from": "4139", - "to": "4214", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4909", - "label": "746047 (-) 74143", - "from": "4138", - "to": "4186", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4908", - "label": "746047 (-) 83207", - "from": "4138", - "to": "3935", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4907", - "label": "293444 (-) 299541", - "from": "4137", - "to": "4152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4906", - "label": "389722 (-) 549814", - "from": "4136", - "to": "4022", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4905", - "label": "389722 (-) 616886", - "from": "4136", - "to": "4181", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4904", - "label": "389722 (-) 1196670", - "from": "4136", - "to": "4120", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4903", - "label": "1794651 (-) 962799", - "from": "4135", - "to": "4222", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4902", - "label": "1794651 (-) 1793419", - "from": "4135", - "to": "3875", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4901", - "label": "1794651 (-) 962363", - "from": "4135", - "to": "3777", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4900", - "label": "1794651 (-) 1793418", - "from": "4135", - "to": "3877", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4899", - "label": "555611 (-) 409544", - "from": "4134", - "to": "3735", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4898", - "label": "875101 (-) 875099", - "from": "4133", - "to": "4131", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4897", - "label": "971358 (-) 250984", - "from": "4132", - "to": "3976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4896", - "label": "971358 (-) 251144", - "from": "4132", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4895", - "label": "971358 (-) 251201", - "from": "4132", - "to": "3920", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4894", - "label": "875099 (-) 875746", - "from": "4131", - "to": "3945", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4893", - "label": "350818 (-) 555944", - "from": "4130", - "to": "4027", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4892", - "label": "291429 (-) 144608", - "from": "4129", - "to": "3946", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4891", - "label": "1159782 (-) 954243", - "from": "4128", - "to": "3754", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4890", - "label": "242281 (-) 1035330", - "from": "4127", - "to": "3992", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4889", - "label": "242282 (-) 1035154", - "from": "4126", - "to": "4037", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4888", - "label": "2052724 (-) 2059776", - "from": "4125", - "to": "3845", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4887", - "label": "2680 (-) 1035330", - "from": "4124", - "to": "3992", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4886", - "label": "2680 (-) 962344", - "from": "4124", - "to": "3784", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4885", - "label": "2680 (-) 712804", - "from": "4124", - "to": "4252", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4884", - "label": "617080 (-) 550651", - "from": "4123", - "to": "3791", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4883", - "label": "227964 (-) 1488234", - "from": "4122", - "to": "3897", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4882", - "label": "227964 (-) 424692", - "from": "4122", - "to": "4087", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4881", - "label": "227964 (-) 320128", - "from": "4122", - "to": "4119", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4880", - "label": "637566 (-) 637453", - "from": "4121", - "to": "4158", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4879", - "label": "1196670 (-) 962799", - "from": "4120", - "to": "4222", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4878", - "label": "320128 (-) 320604", - "from": "4119", - "to": "3981", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4877", - "label": "426633 (-) 425561", - "from": "4118", - "to": "3827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4876", - "label": "426633 (-) 1488243", - "from": "4118", - "to": "3891", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4875", - "label": "1684105 (-) 298310", - "from": "4117", - "to": "3918", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4874", - "label": "1684105 (-) 299067", - "from": "4117", - "to": "4261", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4873", - "label": "1936012 (-) 8325", - "from": "4116", - "to": "4247", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4872", - "label": "98964 (-) 1490531", - "from": "4115", - "to": "3823", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4871", - "label": "98964 (-) 1490324", - "from": "4115", - "to": "3873", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4870", - "label": "98964 (-) 291357", - "from": "4115", - "to": "4148", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4869", - "label": "291483 (-) 144608", - "from": "4114", - "to": "3946", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4868", - "label": "1034908 (-) 1035037", - "from": "4113", - "to": "4073", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4867", - "label": "1034908 (-) 1035019", - "from": "4113", - "to": "4077", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4866", - "label": "160413 (-) 159862", - "from": "4112", - "to": "4251", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4865", - "label": "1034911 (-) 1034908", - "from": "4111", - "to": "4113", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4864", - "label": "1034911 (-) 1161548", - "from": "4111", - "to": "4200", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4863", - "label": "1034911 (-) 1159893", - "from": "4111", - "to": "4098", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4862", - "label": "719521 (-) 719714", - "from": "4110", - "to": "4052", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4861", - "label": "1428135 (-) 427012", - "from": "4109", - "to": "4005", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4860", - "label": "672431 (-) 46171", - "from": "4108", - "to": "3982", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4859", - "label": "1411759 (-) 1411760", - "from": "4107", - "to": "4106", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4858", - "label": "1411760 (-) 1412138", - "from": "4106", - "to": "3998", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4857", - "label": "836276 (-) 173043", - "from": "4105", - "to": "4011", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4856", - "label": "1485501 (-) 144608", - "from": "4104", - "to": "3946", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4855", - "label": "1411783 (-) 1473433", - "from": "4103", - "to": "4035", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4854", - "label": "1411783 (-) 1473583", - "from": "4103", - "to": "3997", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4853", - "label": "1411783 (-) 1473437", - "from": "4103", - "to": "4033", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4852", - "label": "996040 (-) 237385", - "from": "4102", - "to": "3766", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4851", - "label": "572111 (-) 571548", - "from": "4101", - "to": "4241", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4850", - "label": "1538767 (-) 654141", - "from": "4100", - "to": "4062", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4849", - "label": "877267 (-) 875101", - "from": "4099", - "to": "4133", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4848", - "label": "1159893 (-) 1159899", - "from": "4098", - "to": "4097", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4847", - "label": "1159893 (-) 1035037", - "from": "4098", - "to": "4073", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4846", - "label": "1159893 (-) 1035019", - "from": "4098", - "to": "4077", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4845", - "label": "1159899 (-) 1160014", - "from": "4097", - "to": "4056", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4844", - "label": "2052833 (-) 2059776", - "from": "4096", - "to": "3845", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4843", - "label": "426722 (-) 426633", - "from": "4095", - "to": "4118", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4842", - "label": "1034979 (-) 1162656", - "from": "4094", - "to": "3870", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4841", - "label": "1034979 (-) 1034908", - "from": "4094", - "to": "4113", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4840", - "label": "1034979 (-) 1160066", - "from": "4094", - "to": "4045", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4839", - "label": "1034979 (-) 1159893", - "from": "4094", - "to": "4098", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4838", - "label": "94950 (-) 1522976", - "from": "4093", - "to": "3924", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4837", - "label": "1266408 (-) 1265996", - "from": "4092", - "to": "4201", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4836", - "label": "1266409 (-) 1266408", - "from": "4091", - "to": "4092", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4835", - "label": "103150 (-) 433546", - "from": "4090", - "to": "3876", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4834", - "label": "418544 (-) 2062227", - "from": "4089", - "to": "3750", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4833", - "label": "369394 (-) 298309", - "from": "4088", - "to": "3919", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4832", - "label": "369394 (-) 304129", - "from": "4088", - "to": "4008", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4831", - "label": "369394 (-) 299127", - "from": "4088", - "to": "4250", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4830", - "label": "369394 (-) 298310", - "from": "4088", - "to": "3918", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4829", - "label": "369394 (-) 298315", - "from": "4088", - "to": "3916", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4828", - "label": "369394 (-) 304210", - "from": "4088", - "to": "3984", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4827", - "label": "369394 (-) 299067", - "from": "4088", - "to": "4261", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4826", - "label": "369394 (-) 299537", - "from": "4088", - "to": "4154", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4825", - "label": "369394 (-) 304276", - "from": "4088", - "to": "3966", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4824", - "label": "369394 (-) 301477", - "from": "4088", - "to": "4185", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4823", - "label": "369394 (-) 293444", - "from": "4088", - "to": "4137", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4822", - "label": "369394 (-) 303994", - "from": "4088", - "to": "4047", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4821", - "label": "369394 (-) 301845", - "from": "4088", - "to": "4076", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4820", - "label": "424692 (-) 423412", - "from": "4087", - "to": "3853", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4819", - "label": "373494 (-) 369394", - "from": "4086", - "to": "4088", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4818", - "label": "1243896 (-) 321983", - "from": "4085", - "to": "4176", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4817", - "label": "1159930 (-) 249376", - "from": "4084", - "to": "3838", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4816", - "label": "883453 (-) 883065", - "from": "4083", - "to": "4195", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4815", - "label": "883455 (-) 883453", - "from": "4082", - "to": "4083", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4814", - "label": "883456 (-) 883453", - "from": "4081", - "to": "4083", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4813", - "label": "310020 (-) 299541", - "from": "4080", - "to": "4152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4812", - "label": "310021 (-) 299541", - "from": "4079", - "to": "4152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4811", - "label": "54026 (-) 743241", - "from": "4078", - "to": "3767", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4810", - "label": "1035019 (-) 1160014", - "from": "4077", - "to": "4056", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4809", - "label": "301845 (-) 299541", - "from": "4076", - "to": "4152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4808", - "label": "254746 (-) 974036", - "from": "4075", - "to": "3947", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4807", - "label": "254746 (-) 975952", - "from": "4075", - "to": "3986", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4806", - "label": "254746 (-) 973669", - "from": "4075", - "to": "4051", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4805", - "label": "254746 (-) 252110", - "from": "4075", - "to": "4226", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4804", - "label": "254746 (-) 971358", - "from": "4075", - "to": "4132", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4803", - "label": "254746 (-) 973072", - "from": "4075", - "to": "4209", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4802", - "label": "254746 (-) 972439", - "from": "4075", - "to": "3812", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4801", - "label": "586523 (-) 570878", - "from": "4074", - "to": "3846", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4800", - "label": "1035037 (-) 1159930", - "from": "4073", - "to": "4084", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4799", - "label": "883490 (-) 883455", - "from": "4072", - "to": "4082", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4798", - "label": "1082148 (-) 350818", - "from": "4071", - "to": "4130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4797", - "label": "1082151 (-) 1082148", - "from": "4070", - "to": "4071", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4796", - "label": "719655 (-) 719521", - "from": "4069", - "to": "4110", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4795", - "label": "1889063 (-) 64690", - "from": "4068", - "to": "3959", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4794", - "label": "1794867 (-) 1793352", - "from": "4067", - "to": "3917", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4793", - "label": "62263 (-) 743241", - "from": "4066", - "to": "3767", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4792", - "label": "140089 (-) 586523", - "from": "4065", - "to": "4074", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4791", - "label": "654138 (-) 654141", - "from": "4064", - "to": "4062", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4790", - "label": "1684283 (-) 330112", - "from": "4063", - "to": "4192", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4789", - "label": "654141 (-) 952239", - "from": "4062", - "to": "3742", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4788", - "label": "654141 (-) 719655", - "from": "4062", - "to": "4069", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4787", - "label": "1035072 (-) 1034413", - "from": "4061", - "to": "4232", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4786", - "label": "1035074 (-) 1035072", - "from": "4060", - "to": "4061", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4785", - "label": "1035074 (-) 1205876", - "from": "4060", - "to": "3820", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4784", - "label": "1035074 (-) 1159782", - "from": "4060", - "to": "4128", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4783", - "label": "43842 (-) 1952840", - "from": "4059", - "to": "3990", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4782", - "label": "43842 (-) 1161548", - "from": "4059", - "to": "4200", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4781", - "label": "43842 (-) 1952931", - "from": "4059", - "to": "3962", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4780", - "label": "43842 (-) 1034908", - "from": "4059", - "to": "4113", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4779", - "label": "43842 (-) 1953027", - "from": "4059", - "to": "3939", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4778", - "label": "43842 (-) 888278", - "from": "4059", - "to": "3862", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4777", - "label": "320330 (-) 1488234", - "from": "4058", - "to": "3897", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4776", - "label": "320330 (-) 320128", - "from": "4058", - "to": "4119", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4775", - "label": "320330 (-) 424692", - "from": "4058", - "to": "4087", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4774", - "label": "2063179 (-) 882169", - "from": "4057", - "to": "3850", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4773", - "label": "1160014 (-) 527622", - "from": "4056", - "to": "3936", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4772", - "label": "1160014 (-) 526782", - "from": "4056", - "to": "4177", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4771", - "label": "1160014 (-) 526781", - "from": "4056", - "to": "4178", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4770", - "label": "1160014 (-) 527644", - "from": "4056", - "to": "3926", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4769", - "label": "1160014 (-) 527332", - "from": "4056", - "to": "4016", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4768", - "label": "1160014 (-) 527459", - "from": "4056", - "to": "3979", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4767", - "label": "1160014 (-) 527481", - "from": "4056", - "to": "3969", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4766", - "label": "1160014 (-) 527392", - "from": "4056", - "to": "3999", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4765", - "label": "1160014 (-) 527436", - "from": "4056", - "to": "3988", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4764", - "label": "1160014 (-) 526780", - "from": "4056", - "to": "4179", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4763", - "label": "1160014 (-) 527666", - "from": "4056", - "to": "3923", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4762", - "label": "1160014 (-) 527370", - "from": "4056", - "to": "4003", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4761", - "label": "1160014 (-) 249376", - "from": "4056", - "to": "3838", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4760", - "label": "1160014 (-) 527414", - "from": "4056", - "to": "3994", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4759", - "label": "1160014 (-) 527559", - "from": "4056", - "to": "3950", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4758", - "label": "996179 (-) 996040", - "from": "4055", - "to": "4102", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4757", - "label": "72535 (-) 75845", - "from": "4054", - "to": "4258", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4756", - "label": "72535 (-) 75699", - "from": "4054", - "to": "3740", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4755", - "label": "72535 (-) 746047", - "from": "4054", - "to": "4138", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4754", - "label": "72535 (-) 74216", - "from": "4054", - "to": "4164", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4753", - "label": "1200984 (-) 554324", - "from": "4053", - "to": "3910", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4752", - "label": "719714 (-) 565410", - "from": "4052", - "to": "4238", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4751", - "label": "973669 (-) 250984", - "from": "4051", - "to": "3976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4750", - "label": "973669 (-) 251144", - "from": "4051", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4749", - "label": "973669 (-) 251201", - "from": "4051", - "to": "3920", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4748", - "label": "2114406 (-) 2114794", - "from": "4050", - "to": "3944", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4747", - "label": "1809261 (-) 1809517", - "from": "4049", - "to": "3973", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4746", - "label": "369519 (-) 369394", - "from": "4048", - "to": "4088", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4745", - "label": "303994 (-) 299541", - "from": "4047", - "to": "4152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4744", - "label": "1684347 (-) 354741", - "from": "4046", - "to": "4182", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4743", - "label": "1160066 (-) 1035019", - "from": "4045", - "to": "4077", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4742", - "label": "998275 (-) 1417364", - "from": "4044", - "to": "4243", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4741", - "label": "998275 (-) 1414797", - "from": "4044", - "to": "3815", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4740", - "label": "998276 (-) 1417364", - "from": "4043", - "to": "4243", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4739", - "label": "998276 (-) 1414797", - "from": "4043", - "to": "3815", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4738", - "label": "654215 (-) 653843", - "from": "4042", - "to": "4153", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4737", - "label": "1809287 (-) 1809261", - "from": "4041", - "to": "4049", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4736", - "label": "1799049 (-) 570851", - "from": "4040", - "to": "3856", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4735", - "label": "1799049 (-) 570836", - "from": "4040", - "to": "3863", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4734", - "label": "1799049 (-) 934011", - "from": "4040", - "to": "4249", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4733", - "label": "2114443 (-) 2112991", - "from": "4039", - "to": "3858", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4732", - "label": "1160078 (-) 1034979", - "from": "4038", - "to": "4094", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4731", - "label": "1035154 (-) 1034911", - "from": "4037", - "to": "4111", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4730", - "label": "1035154 (-) 1034979", - "from": "4037", - "to": "4094", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4729", - "label": "998290 (-) 1417364", - "from": "4036", - "to": "4243", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4728", - "label": "998290 (-) 1414797", - "from": "4036", - "to": "3815", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4727", - "label": "1473433 (-) 138223", - "from": "4035", - "to": "4013", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4726", - "label": "1799066 (-) 934011", - "from": "4034", - "to": "4249", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4725", - "label": "1799066 (-) 570851", - "from": "4034", - "to": "3856", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4724", - "label": "1799066 (-) 570836", - "from": "4034", - "to": "3863", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4723", - "label": "1473437 (-) 698257", - "from": "4033", - "to": "3751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4722", - "label": "1473437 (-) 1411783", - "from": "4033", - "to": "4103", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4721", - "label": "1084318 (-) 171672", - "from": "4032", - "to": "3811", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4720", - "label": "1338271 (-) 389722", - "from": "4031", - "to": "4136", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4719", - "label": "1084321 (-) 1084318", - "from": "4030", - "to": "4032", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4718", - "label": "1266597 (-) 1266408", - "from": "4029", - "to": "4092", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4717", - "label": "64422 (-) 1238006", - "from": "4028", - "to": "4010", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4716", - "label": "555944 (-) 293444", - "from": "4027", - "to": "4137", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4715", - "label": "54189 (-) 743241", - "from": "4026", - "to": "3767", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4714", - "label": "1340336 (-) 320330", - "from": "4025", - "to": "4058", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4713", - "label": "1340336 (-) 227964", - "from": "4025", - "to": "4122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4712", - "label": "885683 (-) 887987", - "from": "4024", - "to": "3958", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4711", - "label": "1799093 (-) 1035074", - "from": "4023", - "to": "4060", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4710", - "label": "549814 (-) 550522", - "from": "4022", - "to": "3817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4709", - "label": "1113015 (-) 1107533", - "from": "4021", - "to": "3829", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4708", - "label": "433081 (-) 1429185", - "from": "4020", - "to": "3801", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4707", - "label": "433081 (-) 1428672", - "from": "4020", - "to": "3954", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4706", - "label": "433081 (-) 1428135", - "from": "4020", - "to": "4109", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4705", - "label": "1782717 (-) 421410", - "from": "4019", - "to": "3837", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4704", - "label": "885694 (-) 885683", - "from": "4018", - "to": "4024", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4703", - "label": "320468 (-) 1488234", - "from": "4017", - "to": "3897", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4702", - "label": "320468 (-) 424692", - "from": "4017", - "to": "4087", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4701", - "label": "527332 (-) 526778", - "from": "4016", - "to": "4180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4700", - "label": "992230 (-) 992233", - "from": "4015", - "to": "4014", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4699", - "label": "992233 (-) 495541", - "from": "4014", - "to": "3739", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4698", - "label": "138223 (-) 672431", - "from": "4013", - "to": "4108", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4697", - "label": "1035250 (-) 1034911", - "from": "4012", - "to": "4111", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4696", - "label": "1035250 (-) 1034979", - "from": "4012", - "to": "4094", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4695", - "label": "173043 (-) 2033479", - "from": "4011", - "to": "3768", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4694", - "label": "1238006 (-) 1237265", - "from": "4010", - "to": "4208", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4693", - "label": "572416 (-) 572418", - "from": "4009", - "to": "4007", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4692", - "label": "304129 (-) 299541", - "from": "4008", - "to": "4152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4691", - "label": "572418 (-) 1952962", - "from": "4007", - "to": "3952", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4690", - "label": "572418 (-) 1952772", - "from": "4007", - "to": "4004", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4689", - "label": "572418 (-) 1031197", - "from": "4007", - "to": "4001", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4688", - "label": "572418 (-) 1952877", - "from": "4007", - "to": "3972", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4687", - "label": "572418 (-) 994566", - "from": "4007", - "to": "3937", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4686", - "label": "572417 (-) 572416", - "from": "4006", - "to": "4009", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4685", - "label": "427012 (-) 1488375", - "from": "4005", - "to": "3851", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4684", - "label": "427012 (-) 426722", - "from": "4005", - "to": "4095", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4683", - "label": "427012 (-) 1488252", - "from": "4005", - "to": "3883", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4682", - "label": "427012 (-) 1488616", - "from": "4005", - "to": "3795", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4681", - "label": "1952772 (-) 996179", - "from": "4004", - "to": "4055", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4680", - "label": "1952772 (-) 996639", - "from": "4004", - "to": "3925", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4679", - "label": "527370 (-) 526778", - "from": "4003", - "to": "4180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4678", - "label": "492556 (-) 1684105", - "from": "4002", - "to": "4117", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4677", - "label": "1031197 (-) 992230", - "from": "4001", - "to": "4015", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4676", - "label": "1031197 (-) 994878", - "from": "4001", - "to": "3831", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4675", - "label": "289822 (-) 94950", - "from": "4000", - "to": "4093", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4674", - "label": "527392 (-) 526778", - "from": "3999", - "to": "4180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4673", - "label": "1412138 (-) 1411783", - "from": "3998", - "to": "4103", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4672", - "label": "1473583 (-) 698257", - "from": "3997", - "to": "3751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4671", - "label": "1473583 (-) 1411783", - "from": "3997", - "to": "4103", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4670", - "label": "1668145 (-) 251616", - "from": "3996", - "to": "3798", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4669", - "label": "54322 (-) 743241", - "from": "3995", - "to": "3767", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4668", - "label": "527414 (-) 526778", - "from": "3994", - "to": "4180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4667", - "label": "2131002 (-) 2131705", - "from": "3993", - "to": "3793", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4666", - "label": "1035330 (-) 242282", - "from": "3992", - "to": "4126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4665", - "label": "955460 (-) 955573", - "from": "3991", - "to": "3957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4664", - "label": "1952840 (-) 998275", - "from": "3990", - "to": "4044", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4663", - "label": "62537 (-) 743241", - "from": "3989", - "to": "3767", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4662", - "label": "527436 (-) 526778", - "from": "3988", - "to": "4180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4661", - "label": "2131021 (-) 2131705", - "from": "3987", - "to": "3793", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4660", - "label": "975952 (-) 250984", - "from": "3986", - "to": "3976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4659", - "label": "975952 (-) 251144", - "from": "3986", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4658", - "label": "975952 (-) 251201", - "from": "3986", - "to": "3920", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4657", - "label": "703570 (-) 1410943", - "from": "3985", - "to": "3756", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4656", - "label": "304210 (-) 299541", - "from": "3984", - "to": "4152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4655", - "label": "318548 (-) 1159930", - "from": "3983", - "to": "4084", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4654", - "label": "318548 (-) 1160014", - "from": "3983", - "to": "4056", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4653", - "label": "46171 (-) 703760", - "from": "3982", - "to": "3928", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4652", - "label": "320604 (-) 1275213", - "from": "3981", - "to": "3914", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4651", - "label": "1934430 (-) 1935115", - "from": "3980", - "to": "3789", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4650", - "label": "527459 (-) 526778", - "from": "3979", - "to": "4180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4649", - "label": "1428580 (-) 1428742", - "from": "3978", - "to": "3931", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4648", - "label": "1084519 (-) 1084321", - "from": "3977", - "to": "4030", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4647", - "label": "250984 (-) 392955", - "from": "3976", - "to": "3790", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4646", - "label": "1911913 (-) 978264", - "from": "3975", - "to": "3908", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4645", - "label": "72811 (-) 1242262", - "from": "3974", - "to": "3965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4644", - "label": "1809517 (-) 1275811", - "from": "3973", - "to": "3745", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4643", - "label": "1952877 (-) 996179", - "from": "3972", - "to": "4055", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4642", - "label": "1952877 (-) 996639", - "from": "3972", - "to": "3925", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4641", - "label": "500848 (-) 492556", - "from": "3971", - "to": "4002", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4640", - "label": "916596 (-) 917308", - "from": "3970", - "to": "3776", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4639", - "label": "916596 (-) 916923", - "from": "3970", - "to": "3866", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4638", - "label": "527481 (-) 526778", - "from": "3969", - "to": "4180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4637", - "label": "314489 (-) 299541", - "from": "3968", - "to": "4152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4636", - "label": "160903 (-) 160413", - "from": "3967", - "to": "4112", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4635", - "label": "160903 (-) 1382672", - "from": "3967", - "to": "4207", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4634", - "label": "304276 (-) 299541", - "from": "3966", - "to": "4152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4633", - "label": "1242262 (-) 1243009", - "from": "3965", - "to": "3755", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4632", - "label": "1242263 (-) 1242262", - "from": "3964", - "to": "3965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4631", - "label": "951458 (-) 421558", - "from": "3963", - "to": "3806", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4630", - "label": "1952931 (-) 998276", - "from": "3962", - "to": "4043", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4629", - "label": "1952931 (-) 998290", - "from": "3962", - "to": "4036", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4628", - "label": "255142 (-) 974036", - "from": "3961", - "to": "3947", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4627", - "label": "255142 (-) 973072", - "from": "3961", - "to": "4209", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4626", - "label": "255142 (-) 971358", - "from": "3961", - "to": "4132", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4625", - "label": "255142 (-) 973669", - "from": "3961", - "to": "4051", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4624", - "label": "255142 (-) 972439", - "from": "3961", - "to": "3812", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4623", - "label": "255142 (-) 975952", - "from": "3961", - "to": "3986", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4622", - "label": "255142 (-) 252110", - "from": "3961", - "to": "4226", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4621", - "label": "1793199 (-) 51443", - "from": "3960", - "to": "4220", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4620", - "label": "1793199 (-) 286028", - "from": "3960", - "to": "3915", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4619", - "label": "64690 (-) 1886473", - "from": "3959", - "to": "4216", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4618", - "label": "64690 (-) 923825", - "from": "3959", - "to": "4230", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4617", - "label": "64690 (-) 67353", - "from": "3959", - "to": "3787", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4616", - "label": "887987 (-) 888278", - "from": "3958", - "to": "3862", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4615", - "label": "955573 (-) 952711", - "from": "3957", - "to": "4190", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4614", - "label": "955574 (-) 955573", - "from": "3956", - "to": "3957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4613", - "label": "955580 (-) 955573", - "from": "3955", - "to": "3957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4612", - "label": "1428672 (-) 1428580", - "from": "3954", - "to": "3978", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4611", - "label": "888001 (-) 888278", - "from": "3953", - "to": "3862", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4610", - "label": "1952962 (-) 996179", - "from": "3952", - "to": "4055", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4609", - "label": "1952962 (-) 996639", - "from": "3952", - "to": "3925", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4608", - "label": "593090 (-) 1411759", - "from": "3951", - "to": "4107", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4607", - "label": "527559 (-) 526778", - "from": "3950", - "to": "4180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4606", - "label": "1238218 (-) 1238006", - "from": "3949", - "to": "4010", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4605", - "label": "333006 (-) 331494", - "from": "3948", - "to": "3797", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4604", - "label": "974036 (-) 251144", - "from": "3947", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4603", - "label": "974036 (-) 251201", - "from": "3947", - "to": "3920", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4602", - "label": "974036 (-) 250984", - "from": "3947", - "to": "3976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4601", - "label": "144608 (-) 151325", - "from": "3946", - "to": "3786", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4600", - "label": "144608 (-) 289822", - "from": "3946", - "to": "4000", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4599", - "label": "875746 (-) 2111986", - "from": "3945", - "to": "4162", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4598", - "label": "2114794 (-) 2114795", - "from": "3944", - "to": "3943", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4597", - "label": "2114795 (-) 2114825", - "from": "3943", - "to": "3930", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4596", - "label": "570619 (-) 1482169", - "from": "3942", - "to": "3867", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4595", - "label": "570619 (-) 586523", - "from": "3942", - "to": "4074", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4594", - "label": "570619 (-) 1810802", - "from": "3942", - "to": "4197", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4593", - "label": "570619 (-) 587004", - "from": "3942", - "to": "3941", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4592", - "label": "587004 (-) 570878", - "from": "3941", - "to": "3846", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4591", - "label": "660736 (-) 2062814", - "from": "3940", - "to": "4165", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4590", - "label": "1953027 (-) 998275", - "from": "3939", - "to": "4044", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4589", - "label": "955652 (-) 955580", - "from": "3938", - "to": "3955", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4588", - "label": "955652 (-) 955574", - "from": "3938", - "to": "3956", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4587", - "label": "955652 (-) 955460", - "from": "3938", - "to": "3991", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4586", - "label": "994566 (-) 994878", - "from": "3937", - "to": "3831", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4585", - "label": "994566 (-) 992230", - "from": "3937", - "to": "4015", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4584", - "label": "527622 (-) 526778", - "from": "3936", - "to": "4180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4583", - "label": "83207 (-) 85379", - "from": "3935", - "to": "3880", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4582", - "label": "83207 (-) 417161", - "from": "3935", - "to": "3878", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4581", - "label": "251144 (-) 392955", - "from": "3934", - "to": "3790", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4580", - "label": "550154 (-) 617080", - "from": "3933", - "to": "4123", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4579", - "label": "550154 (-) 550650", - "from": "3933", - "to": "3792", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4578", - "label": "550154 (-) 646528", - "from": "3933", - "to": "3881", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4577", - "label": "253191 (-) 973072", - "from": "3932", - "to": "4209", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4576", - "label": "253191 (-) 975952", - "from": "3932", - "to": "3986", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4575", - "label": "253191 (-) 252110", - "from": "3932", - "to": "4226", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4574", - "label": "253191 (-) 971358", - "from": "3932", - "to": "4132", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4573", - "label": "253191 (-) 974036", - "from": "3932", - "to": "3947", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4572", - "label": "253191 (-) 972439", - "from": "3932", - "to": "3812", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4571", - "label": "253191 (-) 973669", - "from": "3932", - "to": "4051", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4570", - "label": "1428742 (-) 321983", - "from": "3931", - "to": "4176", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4569", - "label": "2114825 (-) 880186", - "from": "3930", - "to": "3834", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4568", - "label": "97550 (-) 587004", - "from": "3929", - "to": "3941", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4567", - "label": "703760 (-) 703570", - "from": "3928", - "to": "3985", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4566", - "label": "703763 (-) 703760", - "from": "3927", - "to": "3928", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4565", - "label": "527644 (-) 526778", - "from": "3926", - "to": "4180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4564", - "label": "996639 (-) 996040", - "from": "3925", - "to": "4102", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4563", - "label": "1522976 (-) 293444", - "from": "3924", - "to": "4137", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4562", - "label": "527666 (-) 526778", - "from": "3923", - "to": "4180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4561", - "label": "955707 (-) 955652", - "from": "3922", - "to": "3938", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4560", - "label": "955707 (-) 1156931", - "from": "3922", - "to": "3770", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4559", - "label": "415036 (-) 97550", - "from": "3921", - "to": "3929", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4558", - "label": "251201 (-) 392955", - "from": "3920", - "to": "3790", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4557", - "label": "298309 (-) 299541", - "from": "3919", - "to": "4152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4556", - "label": "298310 (-) 299541", - "from": "3918", - "to": "4152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4555", - "label": "1793352 (-) 1793199", - "from": "3917", - "to": "3960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4554", - "label": "298315 (-) 299541", - "from": "3916", - "to": "4152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4553", - "label": "286028 (-) 1796167", - "from": "3915", - "to": "4257", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4552", - "label": "1275213 (-) 1275214", - "from": "3914", - "to": "3913", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4551", - "label": "1275214 (-) 1782717", - "from": "3913", - "to": "4019", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4550", - "label": "101711 (-) 1490324", - "from": "3912", - "to": "3873", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4549", - "label": "101711 (-) 1490531", - "from": "3912", - "to": "3823", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4548", - "label": "101711 (-) 555611", - "from": "3912", - "to": "4134", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4547", - "label": "101711 (-) 291357", - "from": "3912", - "to": "4148", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4546", - "label": "882000 (-) 888278", - "from": "3911", - "to": "3862", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4545", - "label": "554324 (-) 554327", - "from": "3910", - "to": "3909", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4544", - "label": "554327 (-) 98964", - "from": "3909", - "to": "4115", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4543", - "label": "978264 (-) 1916734", - "from": "3908", - "to": "3774", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4542", - "label": "193879 (-) 1083941", - "from": "3907", - "to": "4144", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4541", - "label": "1484122 (-) 144608", - "from": "3906", - "to": "3946", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4540", - "label": "1488220 (-) 1488347", - "from": "3905", - "to": "3860", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4539", - "label": "1488222 (-) 1488347", - "from": "3904", - "to": "3860", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4538", - "label": "1488225 (-) 1488347", - "from": "3903", - "to": "3860", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4537", - "label": "1488226 (-) 1488347", - "from": "3902", - "to": "3860", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4536", - "label": "1488228 (-) 1488347", - "from": "3901", - "to": "3860", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4535", - "label": "888170 (-) 885694", - "from": "3900", - "to": "4018", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4534", - "label": "132458 (-) 1799066", - "from": "3899", - "to": "4034", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4533", - "label": "132458 (-) 587783", - "from": "3899", - "to": "4270", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4532", - "label": "132458 (-) 1214047", - "from": "3899", - "to": "3825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4531", - "label": "132458 (-) 1799049", - "from": "3899", - "to": "4040", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4530", - "label": "1488236 (-) 1488225", - "from": "3898", - "to": "3903", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4529", - "label": "1488236 (-) 1488228", - "from": "3898", - "to": "3901", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4528", - "label": "1488236 (-) 1488222", - "from": "3898", - "to": "3904", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4527", - "label": "1488236 (-) 1488226", - "from": "3898", - "to": "3902", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4526", - "label": "1488234 (-) 1488220", - "from": "3897", - "to": "3905", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4525", - "label": "1488238 (-) 1488236", - "from": "3896", - "to": "3898", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4524", - "label": "1488239 (-) 1488236", - "from": "3895", - "to": "3898", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4523", - "label": "1488240 (-) 1488236", - "from": "3894", - "to": "3898", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4522", - "label": "1279345 (-) 318548", - "from": "3893", - "to": "3983", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4521", - "label": "1279345 (-) 321983", - "from": "3893", - "to": "4176", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4520", - "label": "1488241 (-) 1488236", - "from": "3892", - "to": "3898", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4519", - "label": "1488243 (-) 1488239", - "from": "3891", - "to": "3895", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4518", - "label": "1488243 (-) 1488240", - "from": "3891", - "to": "3894", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4517", - "label": "1488243 (-) 1488241", - "from": "3891", - "to": "3892", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4516", - "label": "1488243 (-) 1488242", - "from": "3891", - "to": "3887", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4515", - "label": "1488243 (-) 1488238", - "from": "3891", - "to": "3896", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4514", - "label": "953713 (-) 1159708", - "from": "3890", - "to": "4149", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4513", - "label": "953713 (-) 1160078", - "from": "3890", - "to": "4038", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4512", - "label": "953713 (-) 1035250", - "from": "3890", - "to": "4012", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4511", - "label": "1488245 (-) 1488243", - "from": "3889", - "to": "3891", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4510", - "label": "1488246 (-) 1488243", - "from": "3888", - "to": "3891", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4509", - "label": "1488242 (-) 1488236", - "from": "3887", - "to": "3898", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4508", - "label": "1488248 (-) 1488243", - "from": "3886", - "to": "3891", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4507", - "label": "1488249 (-) 1488243", - "from": "3885", - "to": "3891", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4506", - "label": "1488250 (-) 1488243", - "from": "3884", - "to": "3891", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4505", - "label": "1488252 (-) 1488248", - "from": "3883", - "to": "3886", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4504", - "label": "1488252 (-) 1488246", - "from": "3883", - "to": "3888", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4503", - "label": "1488252 (-) 1488245", - "from": "3883", - "to": "3889", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4502", - "label": "1488252 (-) 1488250", - "from": "3883", - "to": "3884", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4501", - "label": "1488252 (-) 1488249", - "from": "3883", - "to": "3885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4500", - "label": "302460 (-) 299541", - "from": "3882", - "to": "4152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4499", - "label": "646528 (-) 550651", - "from": "3881", - "to": "3791", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4498", - "label": "85379 (-) 72811", - "from": "3880", - "to": "3974", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4497", - "label": "515462 (-) 1200606", - "from": "3879", - "to": "4166", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4496", - "label": "417161 (-) 72811", - "from": "3878", - "to": "3974", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4495", - "label": "1793418 (-) 1794867", - "from": "3877", - "to": "4067", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4494", - "label": "433546 (-) 433081", - "from": "3876", - "to": "4020", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4493", - "label": "1793419 (-) 1794867", - "from": "3875", - "to": "4067", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4492", - "label": "533903 (-) 534955", - "from": "3874", - "to": "4183", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4491", - "label": "533903 (-) 534672", - "from": "3874", - "to": "4244", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4490", - "label": "1490324 (-) 144608", - "from": "3873", - "to": "3946", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4489", - "label": "2131348 (-) 2131705", - "from": "3872", - "to": "3793", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4488", - "label": "533914 (-) 533903", - "from": "3871", - "to": "3874", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4487", - "label": "1162656 (-) 1035019", - "from": "3870", - "to": "4077", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4486", - "label": "421285 (-) 419867", - "from": "3869", - "to": "4269", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4485", - "label": "441773 (-) 1386423", - "from": "3868", - "to": "3738", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4484", - "label": "441773 (-) 1382312", - "from": "3868", - "to": "3743", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4483", - "label": "1482169 (-) 570878", - "from": "3867", - "to": "3846", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4482", - "label": "916923 (-) 504065", - "from": "3866", - "to": "4217", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4481", - "label": "1275346 (-) 1275348", - "from": "3865", - "to": "3864", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4480", - "label": "1275346 (-) 1275362", - "from": "3865", - "to": "3857", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4479", - "label": "1275348 (-) 1782717", - "from": "3864", - "to": "4019", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4478", - "label": "570836 (-) 935596", - "from": "3863", - "to": "3808", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4477", - "label": "888278 (-) 883456", - "from": "3862", - "to": "4081", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4476", - "label": "243163 (-) 242281", - "from": "3861", - "to": "4127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4475", - "label": "1488347 (-) 318548", - "from": "3860", - "to": "3983", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4474", - "label": "1488347 (-) 321983", - "from": "3860", - "to": "4176", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4473", - "label": "2112990 (-) 874812", - "from": "3859", - "to": "4204", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4472", - "label": "2112990 (-) 2114406", - "from": "3859", - "to": "4050", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4471", - "label": "2112990 (-) 874479", - "from": "3859", - "to": "3729", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4470", - "label": "2112991 (-) 2112990", - "from": "3858", - "to": "3859", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4469", - "label": "1275362 (-) 1782717", - "from": "3857", - "to": "4019", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4468", - "label": "570851 (-) 935596", - "from": "3856", - "to": "3808", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4467", - "label": "1238501 (-) 91963", - "from": "3855", - "to": "3773", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4466", - "label": "191978 (-) 1934430", - "from": "3854", - "to": "3980", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4465", - "label": "423412 (-) 1488347", - "from": "3853", - "to": "3860", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4464", - "label": "423412 (-) 1279345", - "from": "3853", - "to": "3893", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4463", - "label": "423413 (-) 1488347", - "from": "3852", - "to": "3860", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4462", - "label": "423413 (-) 1279345", - "from": "3852", - "to": "3893", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4461", - "label": "1488375 (-) 1488250", - "from": "3851", - "to": "3884", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4460", - "label": "1488375 (-) 1488246", - "from": "3851", - "to": "3888", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4459", - "label": "1488375 (-) 1488245", - "from": "3851", - "to": "3889", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4458", - "label": "1488375 (-) 1488248", - "from": "3851", - "to": "3886", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4457", - "label": "1488375 (-) 1488249", - "from": "3851", - "to": "3885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4456", - "label": "882169 (-) 888278", - "from": "3850", - "to": "3862", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4455", - "label": "882169 (-) 883490", - "from": "3850", - "to": "4072", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4454", - "label": "409084 (-) 293444", - "from": "3849", - "to": "4137", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4453", - "label": "880125 (-) 888278", - "from": "3848", - "to": "3862", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4452", - "label": "1682942 (-) 330112", - "from": "3847", - "to": "4192", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4451", - "label": "570878 (-) 1810967", - "from": "3846", - "to": "4151", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4450", - "label": "2059776 (-) 653856", - "from": "3845", - "to": "4147", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4449", - "label": "882178 (-) 883490", - "from": "3844", - "to": "4072", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4448", - "label": "882178 (-) 888278", - "from": "3844", - "to": "3862", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4447", - "label": "232970 (-) 1382203", - "from": "3843", - "to": "3775", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4446", - "label": "880139 (-) 888278", - "from": "3842", - "to": "3862", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4445", - "label": "1273364 (-) 1266597", - "from": "3841", - "to": "4029", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4444", - "label": "2098710 (-) 2052724", - "from": "3840", - "to": "4125", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4443", - "label": "2098710 (-) 2052833", - "from": "3840", - "to": "4096", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4442", - "label": "343583 (-) 331494", - "from": "3839", - "to": "3797", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4441", - "label": "249376 (-) 526778", - "from": "3838", - "to": "4180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4440", - "label": "421410 (-) 433546", - "from": "3837", - "to": "3876", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4439", - "label": "77362 (-) 62263", - "from": "3836", - "to": "4066", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4438", - "label": "77362 (-) 72535", - "from": "3836", - "to": "4054", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4437", - "label": "77362 (-) 54189", - "from": "3836", - "to": "4026", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4436", - "label": "77362 (-) 54322", - "from": "3836", - "to": "3995", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4435", - "label": "77362 (-) 55277", - "from": "3836", - "to": "3731", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4434", - "label": "77362 (-) 54900", - "from": "3836", - "to": "3819", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4433", - "label": "77362 (-) 55093", - "from": "3836", - "to": "3779", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4432", - "label": "77362 (-) 61124", - "from": "3836", - "to": "3799", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4431", - "label": "77362 (-) 54026", - "from": "3836", - "to": "4078", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4430", - "label": "77362 (-) 62537", - "from": "3836", - "to": "3989", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4429", - "label": "101938 (-) 555611", - "from": "3835", - "to": "4134", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4428", - "label": "101938 (-) 1490531", - "from": "3835", - "to": "3823", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4427", - "label": "101938 (-) 1490324", - "from": "3835", - "to": "3873", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4426", - "label": "101938 (-) 291357", - "from": "3835", - "to": "4148", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4425", - "label": "880186 (-) 888278", - "from": "3834", - "to": "3862", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4424", - "label": "425532 (-) 423413", - "from": "3833", - "to": "3852", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4423", - "label": "425533 (-) 425532", - "from": "3832", - "to": "3833", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4422", - "label": "425533 (-) 1488236", - "from": "3832", - "to": "3898", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4421", - "label": "994878 (-) 996040", - "from": "3831", - "to": "4102", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4420", - "label": "616002 (-) 2680", - "from": "3830", - "to": "4124", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4419", - "label": "1107533 (-) 310021", - "from": "3829", - "to": "4079", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4418", - "label": "1107533 (-) 1116044", - "from": "3829", - "to": "3752", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4417", - "label": "1107533 (-) 354035", - "from": "3829", - "to": "3794", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4416", - "label": "1107533 (-) 256131", - "from": "3829", - "to": "4248", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4415", - "label": "1119825 (-) 1116334", - "from": "3828", - "to": "4233", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4414", - "label": "425561 (-) 425533", - "from": "3827", - "to": "3832", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4413", - "label": "77403 (-) 77362", - "from": "3826", - "to": "3836", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4412", - "label": "1214047 (-) 144608", - "from": "3825", - "to": "3946", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4411", - "label": "970337 (-) 333006", - "from": "3824", - "to": "3948", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4410", - "label": "1490531 (-) 144608", - "from": "3823", - "to": "3946", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4409", - "label": "1205870 (-) 1205885", - "from": "3822", - "to": "3816", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4408", - "label": "1341038 (-) 320330", - "from": "3821", - "to": "4058", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4407", - "label": "1205876 (-) 1205870", - "from": "3820", - "to": "3822", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4406", - "label": "54900 (-) 743241", - "from": "3819", - "to": "3767", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4405", - "label": "1771125 (-) 2114443", - "from": "3818", - "to": "4039", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4404", - "label": "550522 (-) 550679", - "from": "3817", - "to": "3788", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4403", - "label": "1205885 (-) 1034911", - "from": "3816", - "to": "4111", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4402", - "label": "1205885 (-) 1034979", - "from": "3816", - "to": "4094", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4401", - "label": "1414797 (-) 1226805", - "from": "3815", - "to": "4262", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4400", - "label": "1234576 (-) 1238501", - "from": "3814", - "to": "3855", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4399", - "label": "1234577 (-) 1234576", - "from": "3813", - "to": "3814", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4398", - "label": "972439 (-) 251201", - "from": "3812", - "to": "3920", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4397", - "label": "972439 (-) 251144", - "from": "3812", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4396", - "label": "972439 (-) 250984", - "from": "3812", - "to": "3976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4395", - "label": "171672 (-) 299541", - "from": "3811", - "to": "4152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4394", - "label": "1048221 (-) 1809287", - "from": "3810", - "to": "4041", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4393", - "label": "730789 (-) 654141", - "from": "3809", - "to": "4062", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4392", - "label": "935596 (-) 935597", - "from": "3808", - "to": "3807", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4391", - "label": "935597 (-) 1804852", - "from": "3807", - "to": "4141", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4390", - "label": "421558 (-) 421285", - "from": "3806", - "to": "3869", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4389", - "label": "530106 (-) 533914", - "from": "3805", - "to": "3871", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4388", - "label": "530107 (-) 533914", - "from": "3804", - "to": "3871", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4387", - "label": "14012 (-) 248331", - "from": "3803", - "to": "4160", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4386", - "label": "14012 (-) 391560", - "from": "3803", - "to": "4189", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4385", - "label": "14012 (-) 248335", - "from": "3803", - "to": "4156", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4384", - "label": "14012 (-) 616002", - "from": "3803", - "to": "3830", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4383", - "label": "14012 (-) 243911", - "from": "3803", - "to": "4228", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4382", - "label": "530112 (-) 533914", - "from": "3802", - "to": "3871", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4381", - "label": "1429185 (-) 1266409", - "from": "3801", - "to": "4091", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4380", - "label": "530113 (-) 530107", - "from": "3800", - "to": "3804", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4379", - "label": "530113 (-) 530112", - "from": "3800", - "to": "3802", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4378", - "label": "530113 (-) 530106", - "from": "3800", - "to": "3805", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4377", - "label": "61124 (-) 75845", - "from": "3799", - "to": "4258", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4376", - "label": "61124 (-) 743241", - "from": "3799", - "to": "3767", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4375", - "label": "251616 (-) 973072", - "from": "3798", - "to": "4209", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4374", - "label": "251616 (-) 974036", - "from": "3798", - "to": "3947", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4373", - "label": "251616 (-) 975952", - "from": "3798", - "to": "3986", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4372", - "label": "251616 (-) 971358", - "from": "3798", - "to": "4132", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4371", - "label": "251616 (-) 972439", - "from": "3798", - "to": "3812", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4370", - "label": "251616 (-) 252110", - "from": "3798", - "to": "4226", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4369", - "label": "251616 (-) 973669", - "from": "3798", - "to": "4051", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4368", - "label": "251616 (-) 1410943", - "from": "3798", - "to": "3756", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4367", - "label": "331494 (-) 310020", - "from": "3797", - "to": "4080", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4366", - "label": "331494 (-) 309814", - "from": "3797", - "to": "4140", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4365", - "label": "331494 (-) 305190", - "from": "3797", - "to": "4268", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4364", - "label": "331494 (-) 293444", - "from": "3797", - "to": "4137", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4363", - "label": "331494 (-) 311850", - "from": "3797", - "to": "4142", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4362", - "label": "331494 (-) 299544", - "from": "3797", - "to": "4150", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4361", - "label": "331494 (-) 302460", - "from": "3797", - "to": "3882", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4360", - "label": "331494 (-) 309196", - "from": "3797", - "to": "3733", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4359", - "label": "526055 (-) 505855", - "from": "3796", - "to": "3726", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4358", - "label": "1488616 (-) 426633", - "from": "3795", - "to": "4118", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4357", - "label": "354035 (-) 1668145", - "from": "3794", - "to": "3996", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4356", - "label": "2131705 (-) 698257", - "from": "3793", - "to": "3751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4355", - "label": "2131705 (-) 2117862", - "from": "3793", - "to": "4223", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4354", - "label": "550650 (-) 550651", - "from": "3792", - "to": "3791", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4353", - "label": "550651 (-) 970337", - "from": "3791", - "to": "3824", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4352", - "label": "392955 (-) 258188", - "from": "3790", - "to": "4246", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4351", - "label": "1935115 (-) 1935831", - "from": "3789", - "to": "4169", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4350", - "label": "1935115 (-) 1936012", - "from": "3789", - "to": "4116", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4349", - "label": "550679 (-) 550154", - "from": "3788", - "to": "3933", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4348", - "label": "67353 (-) 64422", - "from": "3787", - "to": "4028", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4347", - "label": "151325 (-) 94950", - "from": "3786", - "to": "4093", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4346", - "label": "884516 (-) 885683", - "from": "3785", - "to": "4024", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4345", - "label": "962344 (-) 953713", - "from": "3784", - "to": "3890", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4344", - "label": "1797931 (-) 1796481", - "from": "3783", - "to": "4191", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4343", - "label": "884524 (-) 885683", - "from": "3782", - "to": "4024", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4342", - "label": "962348 (-) 962344", - "from": "3781", - "to": "3784", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4341", - "label": "1871665 (-) 14228", - "from": "3780", - "to": "3749", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4340", - "label": "55093 (-) 743241", - "from": "3779", - "to": "3767", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4339", - "label": "962359 (-) 962348", - "from": "3778", - "to": "3781", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4338", - "label": "962363 (-) 1794867", - "from": "3777", - "to": "4067", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4337", - "label": "917308 (-) 504065", - "from": "3776", - "to": "4217", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4336", - "label": "1382203 (-) 320468", - "from": "3775", - "to": "4017", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4335", - "label": "1382203 (-) 227964", - "from": "3775", - "to": "4122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4334", - "label": "1382203 (-) 320330", - "from": "3775", - "to": "4058", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4333", - "label": "1916734 (-) 950362", - "from": "3774", - "to": "4254", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4332", - "label": "91963 (-) 1243896", - "from": "3773", - "to": "4085", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4331", - "label": "737088 (-) 654141", - "from": "3772", - "to": "4062", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4330", - "label": "571202 (-) 253191", - "from": "3771", - "to": "3932", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4329", - "label": "1156931 (-) 955460", - "from": "3770", - "to": "3991", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4328", - "label": "958275 (-) 958290", - "from": "3769", - "to": "3765", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4327", - "label": "2033479 (-) 8325", - "from": "3768", - "to": "4247", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4326", - "label": "743241 (-) 743664", - "from": "3767", - "to": "4221", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4325", - "label": "237385 (-) 1034908", - "from": "3766", - "to": "4113", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4324", - "label": "237385 (-) 1161548", - "from": "3766", - "to": "4200", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4323", - "label": "958290 (-) 958368", - "from": "3765", - "to": "3747", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4322", - "label": "409434 (-) 403309", - "from": "3764", - "to": "3760", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4321", - "label": "1466203 (-) 1889063", - "from": "3763", - "to": "4068", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4320", - "label": "1797990 (-) 1797931", - "from": "3762", - "to": "3783", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4319", - "label": "77671 (-) 77403", - "from": "3761", - "to": "3826", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4318", - "label": "403309 (-) 415036", - "from": "3760", - "to": "3921", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4317", - "label": "1339245 (-) 570619", - "from": "3759", - "to": "3942", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4316", - "label": "77681 (-) 1238006", - "from": "3758", - "to": "4010", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4315", - "label": "77681 (-) 77671", - "from": "3758", - "to": "3761", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4314", - "label": "569211 (-) 572111", - "from": "3757", - "to": "4101", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4313", - "label": "1410943 (-) 103150", - "from": "3756", - "to": "4090", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4312", - "label": "1243009 (-) 1243896", - "from": "3755", - "to": "4085", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4311", - "label": "954243 (-) 1035250", - "from": "3754", - "to": "4012", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4310", - "label": "954243 (-) 1159708", - "from": "3754", - "to": "4149", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4309", - "label": "698244 (-) 255142", - "from": "3753", - "to": "3961", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4308", - "label": "1116044 (-) 1799093", - "from": "3752", - "to": "4023", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4307", - "label": "698257 (-) 1473583", - "from": "3751", - "to": "3997", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4306", - "label": "698257 (-) 1473437", - "from": "3751", - "to": "4033", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4305", - "label": "698257 (-) 698244", - "from": "3751", - "to": "3753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4304", - "label": "2062227 (-) 79817", - "from": "3750", - "to": "3734", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4303", - "label": "14228 (-) 391560", - "from": "3749", - "to": "4189", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4302", - "label": "14228 (-) 243911", - "from": "3749", - "to": "4228", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4301", - "label": "14228 (-) 248331", - "from": "3749", - "to": "4160", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4300", - "label": "14228 (-) 616002", - "from": "3749", - "to": "3830", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4299", - "label": "14228 (-) 243163", - "from": "3749", - "to": "3861", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4298", - "label": "14228 (-) 1794651", - "from": "3749", - "to": "4135", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4297", - "label": "14228 (-) 248335", - "from": "3749", - "to": "4156", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4296", - "label": "1243027 (-) 1242263", - "from": "3748", - "to": "3964", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4295", - "label": "958368 (-) 241990", - "from": "3747", - "to": "4202", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4294", - "label": "1275810 (-) 1275811", - "from": "3746", - "to": "3745", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4293", - "label": "1275811 (-) 1796343", - "from": "3745", - "to": "4219", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4292", - "label": "1341349 (-) 320330", - "from": "3744", - "to": "4058", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4291", - "label": "1382312 (-) 232970", - "from": "3743", - "to": "3843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4290", - "label": "952239 (-) 422049", - "from": "3742", - "to": "4239", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4289", - "label": "75696 (-) 1243027", - "from": "3741", - "to": "3748", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4288", - "label": "75696 (-) 1234577", - "from": "3741", - "to": "3813", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4287", - "label": "75699 (-) 75696", - "from": "3740", - "to": "3741", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4286", - "label": "495541 (-) 500848", - "from": "3739", - "to": "3971", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4285", - "label": "1386423 (-) 418544", - "from": "3738", - "to": "4089", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4284", - "label": "1796031 (-) 1796086", - "from": "3737", - "to": "3728", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4283", - "label": "1796033 (-) 1796031", - "from": "3736", - "to": "3737", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4282", - "label": "409544 (-) 409434", - "from": "3735", - "to": "3764", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4281", - "label": "79817 (-) 1273364", - "from": "3734", - "to": "3841", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4280", - "label": "79817 (-) 1275213", - "from": "3734", - "to": "3914", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4279", - "label": "309196 (-) 299541", - "from": "3733", - "to": "4152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4278", - "label": "958434 (-) 14012", - "from": "3732", - "to": "3803", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4277", - "label": "55277 (-) 743241", - "from": "3731", - "to": "3767", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4276", - "label": "1337326 (-) 1338271", - "from": "3730", - "to": "4031", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4275", - "label": "874479 (-) 877267", - "from": "3729", - "to": "4099", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4274", - "label": "1796086 (-) 1796343", - "from": "3728", - "to": "4219", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4273", - "label": "49150 (-) 637566", - "from": "3727", - "to": "4121", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4272", - "label": "505855 (-) 515462", - "from": "3726", - "to": "3879", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/aak1_graphml.json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/aak1_graphml.json deleted file mode 100644 index 2a37eb5ba0..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/aak1_graphml.json +++ /dev/null @@ -1,2576 +0,0 @@ -{ - "nodes": [ - { - "id": "135", - "label": "Dissociation of the PAR:Gq complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "134", - "label": "P2RY11 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "133", - "label": "FPR2:FPR2 ligands [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "132", - "label": "FPR2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "131", - "label": "F2RL3(18-385) [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "130", - "label": "EDNRB [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "129", - "label": "Active PAK1 and Active CDC42 dissociates from GNB/GNG:PAK1:ARHGEF6:CDC42 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "128", - "label": "CDC42:GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "127", - "label": "PGE2 [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "126", - "label": "The Ligand:GPCR:Gq complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "125", - "label": "GPR39 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "124", - "label": "CASR:Ca2+ [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "123", - "label": "APOA1(25-266) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "122", - "label": "A2M [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "121", - "label": "CXCR4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "120", - "label": "PCSK6,FURIN mediate dissociation of 2 x LPL from GPIHBP1:HSPG:LPL dimer", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "119", - "label": "LDL + LDLR => LDL:LDLR complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "118", - "label": "Dissociation of the Gi alpha:G olf complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "117", - "label": "Bradykinin receptor:Bradykinin [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "116", - "label": "GNAL [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "115", - "label": "MCHR1,MCHR2:PMCH(147-165) [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "114", - "label": "NMUR1,NMUR2:NMU [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "113", - "label": "5HT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "112", - "label": "GPIHBP1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "111", - "label": "ADR, NAd [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "110", - "label": "G-protein beta-gamma complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "109", - "label": "GPR4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "108", - "label": "NAd [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "107", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "106", - "label": "THBS1 gene transcription is stimulated by the complex containing RUNX1, PRMT1 and GATA1 and inhibited by the complex of RUNX1, SIN3A and PRMT6", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "105", - "label": "Exocytosis of specific granule membrane proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "104", - "label": "THBS1 trimer [platelet alpha granule lumen]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "103", - "label": "NPS [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "102", - "label": "CIN85 dissociates from EGF:p-6Y-EGFR:CBL:Beta-Pix:CDC42:GTP:CIN85", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "101", - "label": "G-protein alpha (i):GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "100", - "label": "Dissociation of AAK1 and dephosphorylation of AP-2 mu2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "99", - "label": "CHEST [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "98", - "label": "NOTCH1 mRNA translation controlled by miRNAs", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "97", - "label": "NOTCH1 mRNA [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "96", - "label": "CGA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "95", - "label": "Dissociation of the PAR:G12/13 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "94", - "label": "PCSK5 mediates dissociation of 2 x LPL from GPIHBP1:HSPG:LPL dimer", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "93", - "label": "Hist [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "92", - "label": "AGTR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "91", - "label": "GCG(53-81) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "90", - "label": "LPAR1,2,3,5:LPA [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "89", - "label": "spherical HDL and SR-BI receptor form a complex at the cell surface", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "88", - "label": "CHOL [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "87", - "label": "PL [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "86", - "label": "Expression of Lipoprotein lipase (LPL)", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "85", - "label": "LPL [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "84", - "label": "VWF(23-763) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "83", - "label": "NPSR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "82", - "label": "Pre-NOTCH1 [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "81", - "label": "AVP(20-28) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "80", - "label": "G-proteins dissociate from plasma-membrane estrogen receptors", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "79", - "label": "CCNH [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "78", - "label": "TNFRSF1B [specific granule membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "77", - "label": "Exocytosis of platelet alpha granule contents", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "76", - "label": "CIN85:endophilin [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "75", - "label": "EP300 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "74", - "label": "BMP1-3:Zn2+ cleaves pro-APOA1 to APOA1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "73", - "label": "NMUR2:NMS [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "72", - "label": "cholesterol esters [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "71", - "label": "TAGs [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "70", - "label": "Disassembly of SR-BI-bound spherical HDL", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "69", - "label": "spherical HDL:SR-BI complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "68", - "label": "NOTCH1 gene transcription", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "67", - "label": "The Ligand:GPCR:Gi complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "66", - "label": "cholesterol + phosphatidylcholine (lecithin) => cholesterol ester + 2-lysophosphatidylcholine (lysolecithin)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "65", - "label": "F2RL3 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "64", - "label": "The Ligand:GPCR:Gs complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "63", - "label": "PTHLH [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "62", - "label": "Recovery of RNA synthesis after TC-NER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "61", - "label": "LDL:LDLR complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - } - ], - "edges": [ - { - "id": "242", - "label": "329216 (-) 296684", - "from": "135", - "to": "65", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "241", - "label": "329216 (-) 293444", - "from": "135", - "to": "110", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "240", - "label": "304129 (-) 299541", - "from": "134", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "239", - "label": "310020 (-) 299541", - "from": "133", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "238", - "label": "310021 (-) 299541", - "from": "132", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "237", - "label": "297990 (-) 299541", - "from": "131", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "236", - "label": "309001 (-) 299541", - "from": "130", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "235", - "label": "1522955 (-) 672783", - "from": "129", - "to": "128", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "234", - "label": "672783 (-) 932440", - "from": "128", - "to": "102", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "233", - "label": "299537 (-) 299541", - "from": "127", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "232", - "label": "299541 (-) 308039", - "from": "126", - "to": "109", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "231", - "label": "299541 (-) 309001", - "from": "126", - "to": "130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "230", - "label": "299541 (-) 297990", - "from": "126", - "to": "131", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "229", - "label": "299541 (-) 293444", - "from": "126", - "to": "110", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "228", - "label": "301845 (-) 299541", - "from": "125", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "227", - "label": "299544 (-) 299541", - "from": "124", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "226", - "label": "1207322 (-) 1661673", - "from": "123", - "to": "66", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "225", - "label": "1207322 (-) 1661054", - "from": "123", - "to": "89", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "224", - "label": "1391645 (-) 1659840", - "from": "122", - "to": "74", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "223", - "label": "343583 (-) 331494", - "from": "121", - "to": "67", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "222", - "label": "1662240 (-) 1530436", - "from": "120", - "to": "112", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "221", - "label": "1663777 (-) 1663739", - "from": "119", - "to": "61", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "220", - "label": "1082148 (-) 350818", - "from": "118", - "to": "101", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "219", - "label": "305190 (-) 299541", - "from": "117", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "218", - "label": "1082151 (-) 1082148", - "from": "116", - "to": "118", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "217", - "label": "311850 (-) 299541", - "from": "115", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "216", - "label": "309814 (-) 299541", - "from": "114", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "215", - "label": "299067 (-) 299541", - "from": "113", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "214", - "label": "298309 (-) 299541", - "from": "111", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "213", - "label": "293444 (-) 299541", - "from": "110", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "212", - "label": "293444 (-) 329216", - "from": "110", - "to": "135", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "211", - "label": "293444 (-) 296562", - "from": "110", - "to": "95", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "210", - "label": "293444 (-) 1522955", - "from": "110", - "to": "129", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "209", - "label": "308039 (-) 299541", - "from": "109", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "208", - "label": "298310 (-) 299541", - "from": "108", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "207", - "label": "298315 (-) 299541", - "from": "107", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "206", - "label": "1275213 (-) 1275214", - "from": "106", - "to": "104", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "205", - "label": "1107533 (-) 310021", - "from": "105", - "to": "132", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "204", - "label": "1275214 (-) 1782717", - "from": "104", - "to": "77", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "203", - "label": "304210 (-) 299541", - "from": "103", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "202", - "label": "932440 (-) 584382", - "from": "102", - "to": "76", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "201", - "label": "350818 (-) 555944", - "from": "101", - "to": "80", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "200", - "label": "357229 (-) 1663777", - "from": "99", - "to": "119", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "199", - "label": "430191 (-) 429982", - "from": "98", - "to": "82", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "198", - "label": "430192 (-) 430191", - "from": "97", - "to": "98", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "197", - "label": "369519 (-) 369394", - "from": "96", - "to": "64", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "196", - "label": "296562 (-) 296684", - "from": "95", - "to": "65", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "195", - "label": "296562 (-) 293444", - "from": "95", - "to": "110", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "194", - "label": "1662582 (-) 1530436", - "from": "94", - "to": "112", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "193", - "label": "299127 (-) 299541", - "from": "93", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "192", - "label": "314489 (-) 299541", - "from": "92", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "191", - "label": "303994 (-) 299541", - "from": "91", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "190", - "label": "302460 (-) 299541", - "from": "90", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "189", - "label": "1661054 (-) 1660884", - "from": "89", - "to": "69", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "188", - "label": "924543 (-) 2131812", - "from": "88", - "to": "100", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "187", - "label": "1660808 (-) 2131812", - "from": "87", - "to": "100", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "186", - "label": "1383051 (-) 1383054", - "from": "86", - "to": "85", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "185", - "label": "1383054 (-) 1662582", - "from": "85", - "to": "94", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "184", - "label": "1383054 (-) 1662240", - "from": "85", - "to": "120", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "183", - "label": "304276 (-) 299541", - "from": "83", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "182", - "label": "301477 (-) 299541", - "from": "81", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "181", - "label": "555944 (-) 293444", - "from": "80", - "to": "110", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "180", - "label": "92336 (-) 1243896", - "from": "79", - "to": "62", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "179", - "label": "1113015 (-) 1107533", - "from": "78", - "to": "105", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "178", - "label": "1782717 (-) 1391645", - "from": "77", - "to": "122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "177", - "label": "1782717 (-) 255634", - "from": "77", - "to": "84", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "176", - "label": "584382 (-) 2131812", - "from": "76", - "to": "100", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "175", - "label": "321983 (-) 430301", - "from": "75", - "to": "68", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "174", - "label": "321983 (-) 1383051", - "from": "75", - "to": "86", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "173", - "label": "321983 (-) 1275213", - "from": "75", - "to": "106", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "172", - "label": "1659840 (-) 1207322", - "from": "74", - "to": "123", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "171", - "label": "309196 (-) 299541", - "from": "73", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "170", - "label": "1660881 (-) 2131812", - "from": "72", - "to": "100", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "169", - "label": "1660882 (-) 2131812", - "from": "71", - "to": "100", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "168", - "label": "1660883 (-) 1660808", - "from": "70", - "to": "87", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "167", - "label": "1660883 (-) 924543", - "from": "70", - "to": "88", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "166", - "label": "1660883 (-) 1660881", - "from": "70", - "to": "72", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "165", - "label": "1660883 (-) 1660882", - "from": "70", - "to": "71", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "164", - "label": "1660884 (-) 1660883", - "from": "69", - "to": "70", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "163", - "label": "430301 (-) 430192", - "from": "68", - "to": "97", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "162", - "label": "331494 (-) 310020", - "from": "67", - "to": "133", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "161", - "label": "331494 (-) 309814", - "from": "67", - "to": "114", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "160", - "label": "331494 (-) 305190", - "from": "67", - "to": "117", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "159", - "label": "331494 (-) 293444", - "from": "67", - "to": "110", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "158", - "label": "331494 (-) 311850", - "from": "67", - "to": "115", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "157", - "label": "331494 (-) 299544", - "from": "67", - "to": "124", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "156", - "label": "331494 (-) 302460", - "from": "67", - "to": "90", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "155", - "label": "331494 (-) 309196", - "from": "67", - "to": "73", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "154", - "label": "1661673 (-) 357229", - "from": "66", - "to": "99", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "153", - "label": "296684 (-) 329216", - "from": "65", - "to": "135", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "152", - "label": "296684 (-) 296562", - "from": "65", - "to": "95", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "151", - "label": "369394 (-) 298309", - "from": "64", - "to": "111", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "150", - "label": "369394 (-) 304129", - "from": "64", - "to": "134", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "149", - "label": "369394 (-) 299127", - "from": "64", - "to": "93", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "148", - "label": "369394 (-) 298310", - "from": "64", - "to": "108", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "147", - "label": "369394 (-) 298315", - "from": "64", - "to": "107", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "146", - "label": "369394 (-) 304210", - "from": "64", - "to": "103", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "145", - "label": "369394 (-) 299067", - "from": "64", - "to": "113", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "144", - "label": "369394 (-) 299537", - "from": "64", - "to": "127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "143", - "label": "369394 (-) 304276", - "from": "64", - "to": "83", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "142", - "label": "369394 (-) 301477", - "from": "64", - "to": "81", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "141", - "label": "369394 (-) 293444", - "from": "64", - "to": "110", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "140", - "label": "369394 (-) 303994", - "from": "64", - "to": "91", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "139", - "label": "369394 (-) 301845", - "from": "64", - "to": "125", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "138", - "label": "373494 (-) 369394", - "from": "63", - "to": "64", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "137", - "label": "1243896 (-) 321983", - "from": "62", - "to": "75", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "136", - "label": "1663739 (-) 2131812", - "from": "61", - "to": "100", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/aak1_to_metab_noOct_graphml.json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/aak1_to_metab_noOct_graphml.json deleted file mode 100644 index b1dfef032f..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/aak1_to_metab_noOct_graphml.json +++ /dev/null @@ -1,8066 +0,0 @@ -{ - "nodes": [ - { - "id": "289", - "label": "SLC29A3 transports nucleosides from cytosol to lysosomal lumen", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "288", - "label": "alpha-ketoglutarate + CoASH + NAD+ => succinyl-CoA + CO2 + NADH + H+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "287", - "label": "p-T202, Y204 MAPK3 dimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "286", - "label": "VDAC1 transports PYR from cytosol to mitochondrial intermembrane space", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "285", - "label": "DA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "284", - "label": "Deacetylation of cleaved cohesin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "283", - "label": "Cleaved Cohesin:PDS5:WAPAL [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "282", - "label": "AHCY:NAD+ tetramer hydrolyses AdoHcy", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "281", - "label": "Ade-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "280", - "label": "phosphoenolpyruvate + ADP => pyruvate + ATP", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "279", - "label": "The Ligand:GPCR:Gq complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "278", - "label": "2xHC-TXN [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "277", - "label": "NatC acetylates ARFFRP1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "276", - "label": "Release of PLCG from FCGR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "275", - "label": "clustered IgG-Ag:p-FCGRs:p-6Y-SYK:p-3Y-PLCG [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "274", - "label": "AdoHcy [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "273", - "label": "SLC17A3-2 transports cytosolic urate to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "272", - "label": "Transamination of MOB to methionine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "271", - "label": "Cho is acetylated to AcCho by CHAT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "270", - "label": "Spermine => N-acetylated spermine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "269", - "label": "L-amino acid [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "268", - "label": "Phosphorylation and activation of PLCG", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "267", - "label": "TMLHE dimer dioxygenates TMLYS and 2OG to form HTMLYS and SUCCA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "266", - "label": "Degradation of CD8", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "265", - "label": "PTEN [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "264", - "label": "Mal-CoA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "263", - "label": "Ura-Rib [lysosomal lumen]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "262", - "label": "K48polyUb-antigenic substrate [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "261", - "label": "CPT1A,B transfers PALM to CAR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "260", - "label": "5HT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "259", - "label": "Btn-ACACA:2Mn2+ polymer carboxylates Ac-CoA to form Mal-CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "258", - "label": "HMGCS1 condenses Ac-CoA and ACA-CoA to form bHMG-CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "257", - "label": "trans-Golgi Network Derived Vesicle Uncoating", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "256", - "label": "G-protein beta-gamma complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "255", - "label": "POMC(138-176) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "254", - "label": "Dissociation of BRAF/RAF fusion complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "253", - "label": "OXCT dimers transfer CoA from SUCC-CoA to ACA, forming ACA-CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "252", - "label": "CTNNB1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "251", - "label": "PTEN mRNA translation is negatively regulated by microRNAs", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "250", - "label": "SLC25A16 transports cytosolic CoA-SH to mitichondrial matrix", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "249", - "label": "The Ligand:GPCR:Gz complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "248", - "label": "PLCG1 phosphorylation by p-EGFR:p-ERBB2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "247", - "label": "PP2A [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "246", - "label": "SUCC-CoA [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "245", - "label": "Dissociation of oncogenic RAS:RAF complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "244", - "label": "CoA-SH [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "243", - "label": "ADP + Orthophosphate + Succinyl-CoA <=> ATP + Succinate + CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "242", - "label": "Uptake of Noradrenaline", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "241", - "label": "CAR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "240", - "label": "p-T185,Y187-MAPK1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "239", - "label": "Phosphorylated heterodimers of ERBB2 KD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "238", - "label": "Btn-ACACB:2Mn2+ polymer carboxylates Ac-CoA to form Mal-CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "237", - "label": "MAT2B:MAT2A:K+:2Mg2+ transfers Ado from ATP to L-Met", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "236", - "label": "FUMA [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "235", - "label": "Release of E3 from polyubiquitinated substrate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "234", - "label": "Separation of sister chromatids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "233", - "label": "(S)-Malate <=> Fumarate + H2O", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "232", - "label": "AdoMet [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "231", - "label": "Concentrative transport (import) of a nucleoside and two sodium ions by solute carrier family 28 (sodium-coupled nucleoside transporter), member 3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "230", - "label": "p-T,Y MAPK dimers translocate to nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "229", - "label": "Phosphorylation and activation of PLCG due to FCGR3A effect", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "228", - "label": "Equilibrative transport (export) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "227", - "label": "MAPK3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "226", - "label": "Proteasomal cleavage of substrate", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "225", - "label": "thioredoxin, oxidized + NADPH + H+ => thioredoxin, reduced + NADP+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "224", - "label": "NAM [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "223", - "label": "p-Y-STATs translocate to nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "222", - "label": "SLC2A9 transports Fru, Glc, urate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "221", - "label": "Dissociation of high activity BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "220", - "label": "TNKS and TNKS2 PARylate PTEN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "219", - "label": "LDH tetramer reduces PYR to LACT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "218", - "label": "AdeSeHCys is hydrolysed to SeHCys by AHCY", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "217", - "label": "Acetylation of glucosamine 6-phosphate to GlcNAc6P", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "216", - "label": "Eis acetylates DUSP16", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "215", - "label": "LACT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "214", - "label": "D-sorbitol [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "213", - "label": "ARRB2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "212", - "label": "Unknown NAT transfers COCH3 to AFXBO-C, AFNBO-C", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "211", - "label": "SLC22A12 exchanges extracellular urate for cytosolic LACT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "210", - "label": "ACAT2 condenses 2 Ac-CoA to form ACA-CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "209", - "label": "Phosphorylation of CTLA-4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "208", - "label": "p-Y705-STAT3 dimer translocates from cytosol to nucleoplasm", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "207", - "label": "PYR [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "206", - "label": "p-Y-STATs dissociate", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "205", - "label": "Regulation of protein ISGylation by ISG15 deconjugating enzyme USP18", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "204", - "label": "DA [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "203", - "label": "N-acetylation of serotonin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "202", - "label": "CAR [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "201", - "label": "palmitoylcarnitine + CoASH => palmitoyl-CoA + carnitine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "200", - "label": "The acetyl group from acetyl-CoA is transferred to the NAT1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "199", - "label": "GDP + Orthophosphate + Succinyl-CoA <=> GTP + Succinate + CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "198", - "label": "MSRA reduces L-methyl-(S)-S-oxide to L-Methionine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "197", - "label": "acetyl-CoA + 7 malonyl-CoA + 14 NADHP + 14 H+ => palmitate + 7 CO2 + 14 NADP+ + 8 CoASH + 6 H2O", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "196", - "label": "AKR1B1 reduces Glc to D-sorbitol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "195", - "label": "myristoylated nef [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "194", - "label": "Ura-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "193", - "label": "Dissociation of RAS:RAF complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "192", - "label": "The acetyl group from acetyl-CoA is transferred to the NAT2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "191", - "label": "Dissociation of RAS:RAF1 mutant complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "190", - "label": "Phosphorylated heterodimers of ERBB2 ECD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "189", - "label": "acetyl-CoA + bicarbonate + ATP => malonyl-CoA + H2O + ADP + orthophosphate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "188", - "label": "p-4Y-PLCG1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "187", - "label": "NNMT transfers CH3 from SAM to NAM to form MNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "186", - "label": "trans-Golgi Network Derived Lysosomal Vesicle Uncoating", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "185", - "label": "DNAJC6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "184", - "label": "PI(3,4,5)P3 [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "183", - "label": "PTEN gene transcription is stimulated by TP53, EGR1, PPARG, ATF2, MAF1, and inhibited by NR2E1, SALL4, MECOM, SNAI1, SNAI2, JUN", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "182", - "label": "MyrG-p-Y419-SRC [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "181", - "label": "HERC5 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "180", - "label": "The Ligand:GPCR:Gs complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "179", - "label": "LACT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "178", - "label": "VMAT1/2 can mediate the transport of biogenic amines", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "177", - "label": "Dissociation of clathrin-associated proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "176", - "label": "PI(4)P:p-T156 AP-2:ITSNs:EPS15:REPS1:SGIP1:NECAPs:CLASP proteins:cargo:F-BAR proteins:BAR domain proteins:ARP2/3 complex:WASL:f-actin:HIP dimers:DNM:GDP:SYNJs:auxilinGGC-RAB5:GTP:GAPVD1 [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "175", - "label": "Cytosolic DUSPs dephosphorylate MAPKs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "174", - "label": "Unknown carnitine exporter transports CAR from the cytosol to the extracellular space", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "173", - "label": "2OG [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "172", - "label": "Phosphorylated MAPKs translocate into the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "171", - "label": "MRSBs reduce L-methyl-(R)-S-oxide to L-methionine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "170", - "label": "p-T202,Y204-MAPK3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "169", - "label": "BBOX1:AscH-:Fe2+ dimer dioxygenates TEABT and 2OG to form CAR and SUCCA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "168", - "label": "Expression of STAT3-upregulated extracellular proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "167", - "label": "HGSNAT oligomer acetylates Heparan chain(1)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "166", - "label": "Ura-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "165", - "label": "MAL [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "164", - "label": "NAd [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "163", - "label": "Dissociation of moderate activity BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "162", - "label": "Beta-catenin is released from the destruction complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "161", - "label": "Noradrenaline is converted to adrenaline", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "160", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "159", - "label": "ARRB1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "158", - "label": "urate [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "157", - "label": "Release of PLCG from FCGR3A", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "156", - "label": "IgG:Leishmania surface:p-FCGR3A:p-6Y-SYK:p-3Y-PLCG [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "155", - "label": "PIP3:BTK:G beta-gamma complex dissociates to Active BTK, PIP3 and G beta-gamma complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "154", - "label": "MAL [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "153", - "label": "Activated NTRK3 stimulates PI3K activity", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "152", - "label": "SLC6A4 co-transports 5HT, Cl-, Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "151", - "label": "PTEN mRNA translation is inhibited by miR-137", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "150", - "label": "ISGylation of host proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "149", - "label": "Glc [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "148", - "label": "ROS oxidize thioredoxin and activate MAP3K5", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "147", - "label": "TXN [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "146", - "label": "Equilibrative transport (import) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "145", - "label": "Spermidine => N-acetylated spermidine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "144", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "143", - "label": "p-Y701-STAT1, p-Y705-STAT3, p-Y649-STAT5 dissociates from IL9:p-Y116-IL9R:JAK1:IL2RG:p-904,939-JAK3:p-Y705-STAT3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "142", - "label": "p-T,Y MAPKs [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "141", - "label": "urate [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "140", - "label": "NAd [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "139", - "label": "guanidinoacetate + S-adenosylmethionine => creatine + S-adenosylhomocysteine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "138", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "137", - "label": "JAK1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "136", - "label": "Noradrenaline clearance from the synaptic cleft", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "135", - "label": "ESR1- and PRCKZ-dependent MAPK1 translocation to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "134", - "label": "Ac-CoA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "133", - "label": "Ac5HT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "132", - "label": "HGSNAT oligomer acetylates Heparan sulfate chain(3)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "131", - "label": "p-T202,Y204-MAPK3 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "130", - "label": "L-PCARN [mitochondrial intermembrane space]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "129", - "label": "CAR [mitochondrial intermembrane space]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "128", - "label": "Exchange of palmitoylcarnitine and carnitine across the inner mitochondrial membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "127", - "label": "ROS oxidize thioredoxin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "126", - "label": "p-Y705-STAT3 dimer, p-Y641-STAT6 dimer translocate to nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "125", - "label": "Dissociation of AAK1 and dephosphorylation of AP-2 mu2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "124", - "label": "Dissociation of paradoxically activated RAS:BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "123", - "label": "p-Y641-STAT6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "122", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "121", - "label": "CRET [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "120", - "label": "Methylation of N-acetyl-5-HT to form melatonin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "119", - "label": "STAT1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "118", - "label": "Equilibrative transport (import) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "117", - "label": "SLC6A3 cotransports DA, Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "116", - "label": "AdeSeHCys [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "115", - "label": "SRC autophosphorylation is positively regulated by InlA-bound CDH1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "114", - "label": "Ade-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "113", - "label": "STAT1 and STAT3 dimers translocate to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "112", - "label": "WNT5A:FZD4 is endocytosed", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "111", - "label": "ATAT acetylates microtubules", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "110", - "label": "p-Y701-STAT1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "109", - "label": "LDHAL6B reduces PYR to LACT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "108", - "label": "ADR [clathrin-sculpted monoamine transport vesicle lumen]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "107", - "label": "SUCCA [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "106", - "label": "AP-2 Complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "105", - "label": "Concentrative transport (import) of a nucleoside and a sodium ions by solute carrier family 28 (sodium-coupled nucleoside transporter), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "104", - "label": "PXLP-K314-GPT transaminates PYR to form L-Ala", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "103", - "label": "AdoSeMet is converted to AdeSeHCys by MetTrans(1)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "102", - "label": "Succinate <=> Fumarate (with FAD redox reaction on enzyme)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "101", - "label": "Nef mediated disruption of CD4:Lck Complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "100", - "label": "PLCG1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "99", - "label": "Degradation of CD4", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "98", - "label": "PTEN mRNA translation negatively regulated by microRNAs", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "97", - "label": "PTEN mRNA [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "96", - "label": "Transport of Citrate from Mitochondrial Matrix to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "95", - "label": "JUN binds the PTEN gene promoter", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "94", - "label": "MPC1:MPC2 cotransports PYR, H+ from cytosol to mitochondrial matrix", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "93", - "label": "SLC6A2 cotransports NAd, Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "92", - "label": "Reuptake of serotonin from the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "91", - "label": "ROS [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "90", - "label": "LACT [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "89", - "label": "5HT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "88", - "label": "Sulfate is exported to the cytosol in exchange for dicarboxylate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "87", - "label": "BSG:MCTs cotransport LACT, H+ from cytosol to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "86", - "label": "FGFR1OP-FGFR1 phosphorylates STAT1 and STAT3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "85", - "label": "ADR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "84", - "label": "p-T185,Y187-MAPK1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "83", - "label": "Concentrative transport (import) of nucleosides plus sodium ions by solute carrier family 28 (sodium-coupled nucleoside transporter), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "82", - "label": "CAR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "81", - "label": "Phosphorylated STAT3 Dimer Translocates to the Nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "80", - "label": "SAA1(19-122) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "79", - "label": "malate [mitochondrial matrix] + alpha-ketoglutarate [cytosol] <=> malate [cytosol] + alpha-ketoglutarate [mitochondrial matrix]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "78", - "label": "Exchange of alpha-ketoglutarate (2-oxoglutarate) and malate across the inner mitochondrial membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "77", - "label": "p-Y705-STAT3 dimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "76", - "label": "2OG [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "75", - "label": "JUN:PTEN gene [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "74", - "label": "The Ligand:GPCR:G12/13 complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "73", - "label": "L-Met [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "72", - "label": "MAT1A multimers transfer Ado from ATP to L-Met", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "71", - "label": "LCK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "70", - "label": "Phosphorylated heterodimers of ERBB2 TMD/JMD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "69", - "label": "CoA-SH [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "68", - "label": "RAS signaling and prolonged interferon-beta stimulation promote generation of reactive oxygen species (ROS)", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "67", - "label": "PYR [mitochondrial intermembrane space]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "66", - "label": "p-Y185,Y187 MAPK1 dimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "65", - "label": "p-T,Y MAPK dimers [nucleoplasm]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "64", - "label": "PYR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "63", - "label": "ADORA2B:Ade-Rib:GsGTP dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "62", - "label": "Equilibrative transport (import) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "61", - "label": "p-Y705-STAT3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - } - ], - "edges": [ - { - "id": "637", - "label": "1684482 (-) 1684022", - "from": "289", - "to": "263", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "636", - "label": "197125 (-) 196700", - "from": "288", - "to": "246", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "635", - "label": "249349 (-) 249331", - "from": "287", - "to": "68", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "634", - "label": "1863175 (-) 193011", - "from": "286", - "to": "67", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "633", - "label": "834570 (-) 1690356", - "from": "285", - "to": "178", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "632", - "label": "637452 (-) 193879", - "from": "284", - "to": "134", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "631", - "label": "637453 (-) 637452", - "from": "283", - "to": "284", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "630", - "label": "826382 (-) 492556", - "from": "282", - "to": "281", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "629", - "label": "492556 (-) 1684105", - "from": "281", - "to": "228", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "628", - "label": "492556 (-) 1682942", - "from": "281", - "to": "122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "627", - "label": "492556 (-) 1684482", - "from": "281", - "to": "289", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "626", - "label": "492556 (-) 1684283", - "from": "281", - "to": "144", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "625", - "label": "193037 (-) 193018", - "from": "280", - "to": "64", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "624", - "label": "299541 (-) 299067", - "from": "279", - "to": "260", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "623", - "label": "299541 (-) 298315", - "from": "279", - "to": "138", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "622", - "label": "299541 (-) 298310", - "from": "279", - "to": "140", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "621", - "label": "248855 (-) 472721", - "from": "278", - "to": "225", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "620", - "label": "2109975 (-) 173043", - "from": "277", - "to": "69", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "619", - "label": "289822 (-) 94950", - "from": "276", - "to": "184", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "618", - "label": "289823 (-) 289822", - "from": "275", - "to": "276", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "617", - "label": "554016 (-) 826382", - "from": "274", - "to": "282", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "616", - "label": "2083872 (-) 1688388", - "from": "273", - "to": "141", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "615", - "label": "834084 (-) 780263", - "from": "272", - "to": "73", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "614", - "label": "1083941 (-) 173043", - "from": "271", - "to": "69", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "613", - "label": "780841 (-) 173043", - "from": "270", - "to": "69", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "612", - "label": "834090 (-) 834084", - "from": "269", - "to": "272", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "611", - "label": "289835 (-) 289823", - "from": "268", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "610", - "label": "843309 (-) 195984", - "from": "267", - "to": "107", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "609", - "label": "1473583 (-) 1411783", - "from": "266", - "to": "195", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "608", - "label": "127029 (-) 540822", - "from": "265", - "to": "220", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "607", - "label": "759862 (-) 759867", - "from": "264", - "to": "261", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "606", - "label": "1171001 (-) 1196686", - "from": "262", - "to": "226", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "605", - "label": "759867 (-) 759646", - "from": "261", - "to": "130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "604", - "label": "299067 (-) 1690532", - "from": "260", - "to": "92", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "603", - "label": "299067 (-) 1084713", - "from": "260", - "to": "152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "602", - "label": "299067 (-) 1684347", - "from": "260", - "to": "118", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "601", - "label": "1848892 (-) 759862", - "from": "259", - "to": "264", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "600", - "label": "852543 (-) 173043", - "from": "258", - "to": "69", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "599", - "label": "2119743 (-) 254746", - "from": "257", - "to": "159", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "598", - "label": "293444 (-) 329305", - "from": "256", - "to": "249", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "597", - "label": "293444 (-) 409084", - "from": "256", - "to": "63", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "596", - "label": "293444 (-) 364005", - "from": "256", - "to": "74", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "595", - "label": "293444 (-) 369394", - "from": "256", - "to": "180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "594", - "label": "293444 (-) 299541", - "from": "256", - "to": "279", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "593", - "label": "378957 (-) 369394", - "from": "255", - "to": "180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "592", - "label": "975952 (-) 251144", - "from": "254", - "to": "170", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "591", - "label": "975952 (-) 251201", - "from": "254", - "to": "142", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "590", - "label": "975952 (-) 250984", - "from": "254", - "to": "240", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "589", - "label": "762961 (-) 195984", - "from": "253", - "to": "107", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "588", - "label": "703570 (-) 1410943", - "from": "252", - "to": "115", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "587", - "label": "396880 (-) 127029", - "from": "251", - "to": "265", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "586", - "label": "1504342 (-) 196703", - "from": "250", - "to": "244", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "585", - "label": "329305 (-) 298315", - "from": "249", - "to": "138", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "584", - "label": "329305 (-) 298310", - "from": "249", - "to": "140", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "583", - "label": "964698 (-) 144608", - "from": "248", - "to": "188", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "582", - "label": "46171 (-) 703760", - "from": "247", - "to": "162", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "581", - "label": "46171 (-) 637566", - "from": "247", - "to": "234", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "580", - "label": "196700 (-) 202943", - "from": "246", - "to": "199", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "579", - "label": "196700 (-) 196704", - "from": "246", - "to": "243", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "578", - "label": "196700 (-) 762961", - "from": "246", - "to": "253", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "577", - "label": "971358 (-) 251201", - "from": "245", - "to": "142", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "576", - "label": "971358 (-) 251144", - "from": "245", - "to": "170", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "575", - "label": "971358 (-) 250984", - "from": "245", - "to": "240", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "574", - "label": "196703 (-) 759483", - "from": "244", - "to": "201", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "573", - "label": "196703 (-) 197125", - "from": "244", - "to": "288", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "572", - "label": "196704 (-) 195984", - "from": "243", - "to": "107", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "571", - "label": "1082975 (-) 834827", - "from": "242", - "to": "164", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "570", - "label": "250984 (-) 251140", - "from": "240", - "to": "172", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "569", - "label": "250984 (-) 392955", - "from": "240", - "to": "175", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "568", - "label": "250984 (-) 656521", - "from": "240", - "to": "230", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "567", - "label": "250984 (-) 556370", - "from": "240", - "to": "135", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "566", - "label": "250984 (-) 396709", - "from": "240", - "to": "95", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "565", - "label": "1489512 (-) 144608", - "from": "239", - "to": "188", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "564", - "label": "1848946 (-) 759862", - "from": "238", - "to": "264", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "563", - "label": "826488 (-) 557190", - "from": "237", - "to": "232", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "562", - "label": "1196670 (-) 1171001", - "from": "235", - "to": "262", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "561", - "label": "637566 (-) 637453", - "from": "234", - "to": "283", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "560", - "label": "195711 (-) 195705", - "from": "233", - "to": "236", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "559", - "label": "557190 (-) 842569", - "from": "232", - "to": "139", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "558", - "label": "557190 (-) 834838", - "from": "232", - "to": "161", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "557", - "label": "1683591 (-) 504075", - "from": "231", - "to": "166", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "556", - "label": "656521 (-) 249334", - "from": "230", - "to": "66", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "555", - "label": "656521 (-) 249349", - "from": "230", - "to": "287", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "554", - "label": "656521 (-) 249333", - "from": "230", - "to": "65", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "553", - "label": "157322 (-) 151326", - "from": "229", - "to": "156", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "552", - "label": "1684105 (-) 1684248", - "from": "228", - "to": "160", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "551", - "label": "258188 (-) 1793199", - "from": "227", - "to": "205", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "550", - "label": "258188 (-) 1794867", - "from": "227", - "to": "150", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "549", - "label": "1196686 (-) 834090", - "from": "226", - "to": "269", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "548", - "label": "472721 (-) 248633", - "from": "225", - "to": "147", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "547", - "label": "540820 (-) 798102", - "from": "224", - "to": "103", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "546", - "label": "540820 (-) 792292", - "from": "224", - "to": "187", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "545", - "label": "1806998 (-) 441814", - "from": "223", - "to": "77", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "544", - "label": "1688214 (-) 181558", - "from": "222", - "to": "149", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "543", - "label": "972439 (-) 250984", - "from": "221", - "to": "240", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "542", - "label": "972439 (-) 251144", - "from": "221", - "to": "170", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "541", - "label": "972439 (-) 251201", - "from": "221", - "to": "142", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "540", - "label": "540822 (-) 540820", - "from": "220", - "to": "224", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "539", - "label": "194202 (-) 194803", - "from": "219", - "to": "179", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "538", - "label": "797851 (-) 492556", - "from": "218", - "to": "281", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "537", - "label": "853660 (-) 173043", - "from": "217", - "to": "69", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "536", - "label": "1479321 (-) 173043", - "from": "216", - "to": "69", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "535", - "label": "255142 (-) 252110", - "from": "213", - "to": "193", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "534", - "label": "255142 (-) 971358", - "from": "213", - "to": "245", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "533", - "label": "255142 (-) 974036", - "from": "213", - "to": "191", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "532", - "label": "255142 (-) 975952", - "from": "213", - "to": "254", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "531", - "label": "255142 (-) 972439", - "from": "213", - "to": "221", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "530", - "label": "255142 (-) 973669", - "from": "213", - "to": "124", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "529", - "label": "255142 (-) 973072", - "from": "213", - "to": "163", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "528", - "label": "1612455 (-) 173043", - "from": "212", - "to": "69", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "527", - "label": "1690278 (-) 330402", - "from": "211", - "to": "215", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "526", - "label": "1690278 (-) 501018", - "from": "211", - "to": "158", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "525", - "label": "852652 (-) 173043", - "from": "210", - "to": "69", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "524", - "label": "672431 (-) 46171", - "from": "209", - "to": "247", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "523", - "label": "1802928 (-) 441814", - "from": "208", - "to": "77", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "522", - "label": "192688 (-) 1863046", - "from": "207", - "to": "109", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "521", - "label": "1807026 (-) 570878", - "from": "206", - "to": "61", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "520", - "label": "1807026 (-) 627557", - "from": "206", - "to": "123", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "519", - "label": "1807026 (-) 935814", - "from": "206", - "to": "110", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "518", - "label": "1793199 (-) 149916", - "from": "205", - "to": "100", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "517", - "label": "1793199 (-) 286028", - "from": "205", - "to": "137", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "516", - "label": "1793199 (-) 570743", - "from": "205", - "to": "119", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "515", - "label": "330932 (-) 1684347", - "from": "204", - "to": "118", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "514", - "label": "330932 (-) 1085307", - "from": "204", - "to": "117", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "513", - "label": "836276 (-) 173043", - "from": "203", - "to": "69", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "512", - "label": "836276 (-) 836439", - "from": "203", - "to": "133", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "511", - "label": "759483 (-) 759479", - "from": "201", - "to": "202", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "510", - "label": "1599163 (-) 173043", - "from": "200", - "to": "69", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "509", - "label": "202943 (-) 195984", - "from": "199", - "to": "107", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "508", - "label": "1867456 (-) 780263", - "from": "198", - "to": "73", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "507", - "label": "1835201 (-) 173043", - "from": "197", - "to": "69", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "506", - "label": "917695 (-) 917666", - "from": "196", - "to": "214", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "505", - "label": "1411783 (-) 1473433", - "from": "195", - "to": "101", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "504", - "label": "252110 (-) 251144", - "from": "193", - "to": "170", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "503", - "label": "252110 (-) 250984", - "from": "193", - "to": "240", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "502", - "label": "252110 (-) 251201", - "from": "193", - "to": "142", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "501", - "label": "1599186 (-) 173043", - "from": "192", - "to": "69", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "500", - "label": "974036 (-) 251144", - "from": "191", - "to": "170", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "499", - "label": "974036 (-) 251201", - "from": "191", - "to": "142", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "498", - "label": "974036 (-) 250984", - "from": "191", - "to": "240", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "497", - "label": "1489627 (-) 144608", - "from": "190", - "to": "188", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "496", - "label": "1835230 (-) 759862", - "from": "189", - "to": "264", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "495", - "label": "144608 (-) 151325", - "from": "188", - "to": "157", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "494", - "label": "144608 (-) 289822", - "from": "188", - "to": "276", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "493", - "label": "792292 (-) 554016", - "from": "187", - "to": "274", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "492", - "label": "2117860 (-) 254746", - "from": "186", - "to": "159", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "491", - "label": "2117862 (-) 2119743", - "from": "185", - "to": "257", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "490", - "label": "2117862 (-) 2117860", - "from": "185", - "to": "186", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "489", - "label": "94950 (-) 1522976", - "from": "184", - "to": "155", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "488", - "label": "226535 (-) 225188", - "from": "183", - "to": "97", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "487", - "label": "103150 (-) 1049381", - "from": "182", - "to": "153", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "486", - "label": "962799 (-) 1196670", - "from": "181", - "to": "235", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "485", - "label": "369394 (-) 298315", - "from": "180", - "to": "138", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "484", - "label": "369394 (-) 330932", - "from": "180", - "to": "204", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "483", - "label": "369394 (-) 298310", - "from": "180", - "to": "140", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "482", - "label": "369394 (-) 299067", - "from": "180", - "to": "260", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "481", - "label": "369394 (-) 330112", - "from": "180", - "to": "114", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "480", - "label": "194803 (-) 1690278", - "from": "179", - "to": "211", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "479", - "label": "194803 (-) 1863096", - "from": "179", - "to": "87", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "478", - "label": "1690356 (-) 1690504", - "from": "178", - "to": "108", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "477", - "label": "2131705 (-) 698257", - "from": "177", - "to": "106", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "476", - "label": "2131705 (-) 2117862", - "from": "177", - "to": "185", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "475", - "label": "2131706 (-) 2131705", - "from": "176", - "to": "177", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "474", - "label": "392955 (-) 258188", - "from": "175", - "to": "227", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "473", - "label": "843513 (-) 760931", - "from": "174", - "to": "241", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "472", - "label": "192256 (-) 209865", - "from": "173", - "to": "78", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "471", - "label": "192256 (-) 843309", - "from": "173", - "to": "267", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "470", - "label": "251140 (-) 234332", - "from": "172", - "to": "131", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "469", - "label": "251140 (-) 249333", - "from": "172", - "to": "65", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "468", - "label": "251140 (-) 249349", - "from": "172", - "to": "287", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "467", - "label": "251140 (-) 233917", - "from": "172", - "to": "84", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "466", - "label": "251140 (-) 249334", - "from": "172", - "to": "66", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "465", - "label": "1867013 (-) 780263", - "from": "171", - "to": "73", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "464", - "label": "251144 (-) 392955", - "from": "170", - "to": "175", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "463", - "label": "251144 (-) 656521", - "from": "170", - "to": "230", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "462", - "label": "251144 (-) 251140", - "from": "170", - "to": "172", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "461", - "label": "251144 (-) 396709", - "from": "170", - "to": "95", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "460", - "label": "843528 (-) 760768", - "from": "169", - "to": "82", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "459", - "label": "1806603 (-) 310723", - "from": "168", - "to": "80", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "458", - "label": "1806603 (-) 378957", - "from": "168", - "to": "255", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "457", - "label": "906508 (-) 173043", - "from": "167", - "to": "69", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "456", - "label": "195340 (-) 195711", - "from": "165", - "to": "233", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "455", - "label": "834827 (-) 1690356", - "from": "164", - "to": "178", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "454", - "label": "973072 (-) 251201", - "from": "163", - "to": "142", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "453", - "label": "973072 (-) 250984", - "from": "163", - "to": "240", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "452", - "label": "973072 (-) 251144", - "from": "163", - "to": "170", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "451", - "label": "703760 (-) 703570", - "from": "162", - "to": "252", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "450", - "label": "834838 (-) 835002", - "from": "161", - "to": "85", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "449", - "label": "254746 (-) 972439", - "from": "159", - "to": "221", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "448", - "label": "254746 (-) 252110", - "from": "159", - "to": "193", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "447", - "label": "254746 (-) 971358", - "from": "159", - "to": "245", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "446", - "label": "254746 (-) 973669", - "from": "159", - "to": "124", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "445", - "label": "254746 (-) 973072", - "from": "159", - "to": "163", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "444", - "label": "254746 (-) 974036", - "from": "159", - "to": "191", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "443", - "label": "254746 (-) 975952", - "from": "159", - "to": "254", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "442", - "label": "501018 (-) 2083872", - "from": "158", - "to": "273", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "441", - "label": "151325 (-) 94950", - "from": "157", - "to": "184", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "440", - "label": "151326 (-) 151325", - "from": "156", - "to": "157", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "439", - "label": "1522976 (-) 293444", - "from": "155", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "438", - "label": "194852 (-) 209865", - "from": "154", - "to": "78", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "437", - "label": "194852 (-) 832950", - "from": "154", - "to": "88", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "436", - "label": "194852 (-) 1835429", - "from": "154", - "to": "96", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "435", - "label": "1049381 (-) 94950", - "from": "153", - "to": "184", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "434", - "label": "1084713 (-) 354741", - "from": "152", - "to": "89", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "433", - "label": "1429803 (-) 127029", - "from": "151", - "to": "265", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "432", - "label": "1794867 (-) 962799", - "from": "150", - "to": "181", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "431", - "label": "181558 (-) 917695", - "from": "149", - "to": "196", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "430", - "label": "248631 (-) 248855", - "from": "148", - "to": "278", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "429", - "label": "248633 (-) 1867456", - "from": "147", - "to": "198", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "428", - "label": "248633 (-) 1867013", - "from": "147", - "to": "171", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "427", - "label": "1684282 (-) 504075", - "from": "146", - "to": "166", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "426", - "label": "781113 (-) 173043", - "from": "145", - "to": "69", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "425", - "label": "1684283 (-) 504010", - "from": "144", - "to": "194", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "424", - "label": "1046846 (-) 570878", - "from": "143", - "to": "61", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "423", - "label": "251201 (-) 251140", - "from": "142", - "to": "172", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "422", - "label": "251201 (-) 392955", - "from": "142", - "to": "175", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "421", - "label": "1688388 (-) 1688214", - "from": "141", - "to": "222", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "420", - "label": "298310 (-) 1684347", - "from": "140", - "to": "118", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "419", - "label": "298310 (-) 1082975", - "from": "140", - "to": "242", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "418", - "label": "298310 (-) 1085261", - "from": "140", - "to": "136", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "417", - "label": "298310 (-) 1690536", - "from": "140", - "to": "93", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "416", - "label": "842569 (-) 842092", - "from": "139", - "to": "121", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "415", - "label": "286028 (-) 1046846", - "from": "137", - "to": "143", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "414", - "label": "286028 (-) 1807026", - "from": "137", - "to": "206", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "413", - "label": "1085261 (-) 834827", - "from": "136", - "to": "164", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "412", - "label": "556370 (-) 249334", - "from": "135", - "to": "66", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "411", - "label": "193879 (-) 1835230", - "from": "134", - "to": "189", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "410", - "label": "193879 (-) 1599186", - "from": "134", - "to": "192", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "409", - "label": "193879 (-) 852543", - "from": "134", - "to": "258", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "408", - "label": "193879 (-) 1612455", - "from": "134", - "to": "212", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "407", - "label": "193879 (-) 1479321", - "from": "134", - "to": "216", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "406", - "label": "193879 (-) 853660", - "from": "134", - "to": "217", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "405", - "label": "193879 (-) 1599163", - "from": "134", - "to": "200", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "404", - "label": "193879 (-) 1835201", - "from": "134", - "to": "197", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "403", - "label": "193879 (-) 2109975", - "from": "134", - "to": "277", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "402", - "label": "193879 (-) 193037", - "from": "134", - "to": "280", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "401", - "label": "193879 (-) 1083941", - "from": "134", - "to": "271", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "400", - "label": "193879 (-) 780841", - "from": "134", - "to": "270", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "399", - "label": "193879 (-) 852652", - "from": "134", - "to": "210", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "398", - "label": "193879 (-) 907096", - "from": "134", - "to": "132", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "397", - "label": "193879 (-) 1848946", - "from": "134", - "to": "238", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "396", - "label": "193879 (-) 1848892", - "from": "134", - "to": "259", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "395", - "label": "193879 (-) 906508", - "from": "134", - "to": "167", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "394", - "label": "193879 (-) 781113", - "from": "134", - "to": "145", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "393", - "label": "193879 (-) 836276", - "from": "134", - "to": "203", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "392", - "label": "193879 (-) 2033028", - "from": "134", - "to": "111", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "391", - "label": "836439 (-) 836471", - "from": "133", - "to": "120", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "390", - "label": "907096 (-) 173043", - "from": "132", - "to": "69", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "389", - "label": "234332 (-) 249331", - "from": "131", - "to": "68", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "388", - "label": "759646 (-) 759648", - "from": "130", - "to": "128", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "387", - "label": "759648 (-) 759647", - "from": "128", - "to": "129", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "386", - "label": "957282 (-) 248855", - "from": "127", - "to": "278", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "385", - "label": "627554 (-) 441814", - "from": "126", - "to": "77", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "384", - "label": "2131812 (-) 2131706", - "from": "125", - "to": "176", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "383", - "label": "973669 (-) 251201", - "from": "124", - "to": "142", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "382", - "label": "973669 (-) 250984", - "from": "124", - "to": "240", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "381", - "label": "973669 (-) 251144", - "from": "124", - "to": "170", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "380", - "label": "627557 (-) 627554", - "from": "123", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "379", - "label": "627557 (-) 1806998", - "from": "123", - "to": "223", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "378", - "label": "1682942 (-) 504010", - "from": "122", - "to": "194", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "377", - "label": "836471 (-) 554016", - "from": "120", - "to": "274", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "376", - "label": "570743 (-) 1482169", - "from": "119", - "to": "86", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "375", - "label": "1684347 (-) 834570", - "from": "118", - "to": "285", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "374", - "label": "1684347 (-) 834827", - "from": "118", - "to": "164", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "373", - "label": "1684347 (-) 835002", - "from": "118", - "to": "85", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "372", - "label": "1684347 (-) 354741", - "from": "118", - "to": "89", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "371", - "label": "1085307 (-) 834570", - "from": "117", - "to": "285", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "370", - "label": "798078 (-) 797851", - "from": "116", - "to": "218", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "369", - "label": "1410943 (-) 103150", - "from": "115", - "to": "182", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "368", - "label": "330112 (-) 1683390", - "from": "114", - "to": "83", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "367", - "label": "330112 (-) 1683591", - "from": "114", - "to": "231", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "366", - "label": "330112 (-) 1684282", - "from": "114", - "to": "146", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "365", - "label": "330112 (-) 1684347", - "from": "114", - "to": "118", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "364", - "label": "330112 (-) 1682941", - "from": "114", - "to": "62", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "363", - "label": "330112 (-) 1684368", - "from": "114", - "to": "105", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "362", - "label": "935811 (-) 441814", - "from": "113", - "to": "77", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "361", - "label": "698244 (-) 255142", - "from": "112", - "to": "213", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "360", - "label": "2033028 (-) 173043", - "from": "111", - "to": "69", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "359", - "label": "935814 (-) 935811", - "from": "110", - "to": "113", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "358", - "label": "935814 (-) 1806998", - "from": "110", - "to": "223", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "357", - "label": "1863046 (-) 1863083", - "from": "109", - "to": "90", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "356", - "label": "195984 (-) 195989", - "from": "107", - "to": "102", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "355", - "label": "698257 (-) 1473437", - "from": "106", - "to": "99", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "354", - "label": "698257 (-) 1473583", - "from": "106", - "to": "266", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "353", - "label": "698257 (-) 698244", - "from": "106", - "to": "112", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "352", - "label": "1684368 (-) 504075", - "from": "105", - "to": "166", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "351", - "label": "193941 (-) 191969", - "from": "104", - "to": "76", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "350", - "label": "798102 (-) 798078", - "from": "103", - "to": "116", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "349", - "label": "195989 (-) 195705", - "from": "102", - "to": "236", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "348", - "label": "1473433 (-) 138223", - "from": "101", - "to": "71", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "347", - "label": "149916 (-) 157322", - "from": "100", - "to": "229", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "346", - "label": "149916 (-) 964698", - "from": "100", - "to": "248", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "345", - "label": "149916 (-) 1488882", - "from": "100", - "to": "70", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "344", - "label": "149916 (-) 1489512", - "from": "100", - "to": "239", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "343", - "label": "149916 (-) 1489627", - "from": "100", - "to": "190", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "342", - "label": "149916 (-) 289835", - "from": "100", - "to": "268", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "341", - "label": "1473437 (-) 1411783", - "from": "99", - "to": "195", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "340", - "label": "225187 (-) 127029", - "from": "98", - "to": "265", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "339", - "label": "225188 (-) 396880", - "from": "97", - "to": "251", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "338", - "label": "225188 (-) 1429803", - "from": "97", - "to": "151", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "337", - "label": "225188 (-) 225187", - "from": "97", - "to": "98", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "336", - "label": "1835429 (-) 195340", - "from": "96", - "to": "165", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "335", - "label": "396709 (-) 232930", - "from": "95", - "to": "75", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "334", - "label": "192932 (-) 192688", - "from": "94", - "to": "207", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "333", - "label": "1690536 (-) 834827", - "from": "93", - "to": "164", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "332", - "label": "1690532 (-) 354741", - "from": "92", - "to": "89", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "331", - "label": "21930 (-) 957282", - "from": "91", - "to": "127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "330", - "label": "21930 (-) 248631", - "from": "91", - "to": "148", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "329", - "label": "354741 (-) 1690356", - "from": "89", - "to": "178", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "328", - "label": "832950 (-) 195340", - "from": "88", - "to": "165", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "327", - "label": "1863096 (-) 330402", - "from": "87", - "to": "215", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "326", - "label": "1482169 (-) 570878", - "from": "86", - "to": "61", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "325", - "label": "1482169 (-) 935814", - "from": "86", - "to": "110", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "324", - "label": "835002 (-) 1690356", - "from": "85", - "to": "178", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "323", - "label": "233917 (-) 249331", - "from": "84", - "to": "68", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "322", - "label": "1683390 (-) 504075", - "from": "83", - "to": "166", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "321", - "label": "760768 (-) 843513", - "from": "82", - "to": "174", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "320", - "label": "587203 (-) 441814", - "from": "81", - "to": "77", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "319", - "label": "310723 (-) 299541", - "from": "80", - "to": "279", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "318", - "label": "209864 (-) 192256", - "from": "79", - "to": "173", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "317", - "label": "209864 (-) 194852", - "from": "79", - "to": "154", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "316", - "label": "209865 (-) 195340", - "from": "78", - "to": "165", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "315", - "label": "441814 (-) 1806603", - "from": "77", - "to": "168", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "314", - "label": "191969 (-) 209864", - "from": "76", - "to": "79", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "313", - "label": "191969 (-) 843528", - "from": "76", - "to": "169", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "312", - "label": "232930 (-) 226535", - "from": "75", - "to": "183", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "311", - "label": "364005 (-) 298310", - "from": "74", - "to": "140", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "310", - "label": "364005 (-) 298315", - "from": "74", - "to": "138", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "309", - "label": "780263 (-) 780267", - "from": "73", - "to": "72", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "308", - "label": "780263 (-) 826488", - "from": "73", - "to": "237", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "307", - "label": "780267 (-) 557190", - "from": "72", - "to": "232", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "306", - "label": "138223 (-) 672431", - "from": "71", - "to": "209", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "305", - "label": "1488882 (-) 144608", - "from": "70", - "to": "188", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "304", - "label": "173043 (-) 1504342", - "from": "69", - "to": "250", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "303", - "label": "249331 (-) 21930", - "from": "68", - "to": "91", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "302", - "label": "193011 (-) 192932", - "from": "67", - "to": "94", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "301", - "label": "249334 (-) 249331", - "from": "66", - "to": "68", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "300", - "label": "249333 (-) 249331", - "from": "65", - "to": "68", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "299", - "label": "193018 (-) 194202", - "from": "64", - "to": "219", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "298", - "label": "193018 (-) 193941", - "from": "64", - "to": "104", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "297", - "label": "193018 (-) 1863175", - "from": "64", - "to": "286", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "296", - "label": "409084 (-) 330112", - "from": "63", - "to": "114", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "295", - "label": "1682941 (-) 504075", - "from": "62", - "to": "166", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "294", - "label": "570878 (-) 587203", - "from": "61", - "to": "81", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "293", - "label": "570878 (-) 935811", - "from": "61", - "to": "113", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "292", - "label": "570878 (-) 1802928", - "from": "61", - "to": "208", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "291", - "label": "570878 (-) 1806998", - "from": "61", - "to": "223", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "290", - "label": "570878 (-) 627554", - "from": "61", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/metab2PTHLH_shortPage_graphml.json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/metab2PTHLH_shortPage_graphml.json deleted file mode 100644 index b6e8783e31..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/metab2PTHLH_shortPage_graphml.json +++ /dev/null @@ -1,2966 +0,0 @@ -{ - "nodes": [ - { - "id": "318", - "label": "PYR [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "317", - "label": "Dissociation of clathrin-associated proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "316", - "label": "p-Y185,Y187 MAPK1 dimer [nucleoplasm]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "315", - "label": "CoA-SH [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "314", - "label": "PTHLH [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "313", - "label": "CAR [peroxisomal matrix]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "312", - "label": "RAS signaling and prolonged interferon-beta stimulation promote generation of reactive oxygen species (ROS)", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "311", - "label": "LACT [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "310", - "label": "The Ligand:GPCR:Gs complex dissociates", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "309", - "label": "MAT1A multimers transfer Ado from ATP to L-Met", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "308", - "label": "L-Met [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "307", - "label": "DNAJC6 [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "306", - "label": "The Ligand:GPCR:Gi complex dissociates", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "305", - "label": "Cholate is translocated from the peroxisomal matrix to the cytosol", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "304", - "label": "trans-Golgi Network Derived Lysosomal Vesicle Uncoating", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "303", - "label": "2OG [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "302", - "label": "OAT1-3 transport organic anions with antiport of dicarboxylic acids", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "301", - "label": "OCTN2 / SLC22A5 transports CAR from extracellular space to cytosol", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "300", - "label": "Exchange of alpha-ketoglutarate (2-oxoglutarate) and malate across the inner mitochondrial membrane", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "299", - "label": "malate [mitochondrial matrix] + alpha-ketoglutarate [cytosol] <=> malate [cytosol] + alpha-ketoglutarate [mitochondrial matrix]", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "298", - "label": "Ura-Rib [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "297", - "label": "creatine + ATP => phosphocreatine + ADP [CKB,CKM]", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "296", - "label": "Cytosolic cholate and chenodeoxycholate are conjugated with Coenzyme A (SLC27A5 BACS)", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "295", - "label": "cholate [peroxisomal matrix]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "294", - "label": "SLC29A3 transports nucleosides from lysosomal lumen to cytosol", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "293", - "label": "CAR [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "292", - "label": "MSRA reduces L-methyl-(S)-S-oxide to L-Methionine", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "291", - "label": "CAR translocates from the cytosol to the mitochondrial intermembrane space", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "290", - "label": "CREAT [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "289", - "label": "phosphocreatine + H2O => creatinine + orthophosphate", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "288", - "label": "ADR [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "287", - "label": "CAR [mitochondrial matrix]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "286", - "label": "Creatine transport across the plasma membrane", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "285", - "label": "CRET [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "284", - "label": "ADR [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "283", - "label": "ROS [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "282", - "label": "SLC22A12 exchanges extracellular urate for cytosolic LACT", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "281", - "label": "D-sorbitol [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "280", - "label": "LACT [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "279", - "label": "SORD oxidizes D-sorbitol to Fru", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "278", - "label": "LDH tetramer reduces PYR to LACT", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "277", - "label": "Dissociation of high activity BRAF complexes", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "276", - "label": "SLC2A9 transports Fru, Glc, urate", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "275", - "label": "thioredoxin, oxidized + NADPH + H+ => thioredoxin, reduced + NADP+", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "274", - "label": "SLC22A4, 5,15,16 cotransport CAR, Na+ from extracellular region to cytosol", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "273", - "label": "AdoMet [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "272", - "label": "Ade-Rib [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "271", - "label": "Fumarate + H2O <=> (S)-Malate", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "270", - "label": "FUMA [mitochondrial matrix]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "269", - "label": "MAT2B:MAT2A:K+:2Mg2+ transfers Ado from ATP to L-Met", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "268", - "label": "Pcr [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "267", - "label": "Glc [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "266", - "label": "CRET [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "265", - "label": "Thiolysis of 3alpha,7alpha,12alpha-trihydroxy-5beta-cholan-24-one-CoA yields choloyl-CoA (3alpha,7alpha,12alpha-trihydroxy-5beta-cholan-24-one-CoA) and propionyl CoA", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "264", - "label": "p-T185,Y187-MAPK1 [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "263", - "label": "Fru [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "262", - "label": "CAR [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "261", - "label": "Exchange of palmitoylcarnitine and carnitine across the inner mitochondrial membrane", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "260", - "label": "CAR [mitochondrial intermembrane space]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "259", - "label": "choloyl-CoA [peroxisomal matrix]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "258", - "label": "creatine + ATP => phosphocreatine + ADP [CK octamer]", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "257", - "label": "OCT2 mediates tubular uptake of organic cations in the kidney", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "256", - "label": "OCT2 mediates tubular secretion of organic cations in the kidney", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "255", - "label": "Ac-CoA [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "254", - "label": "ESR1- and PRCKZ-dependent MAPK1 translocation to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "253", - "label": "ADR [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "252", - "label": "CCA [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "251", - "label": "CIM [cytosol]", - "databaseLabel": "ChemicalDrug", - "font": { - "color": "#4cfd61" - }, - "color": { - "background": "#FFFFFF", - "border": "#4cfd61", - "hover": { - "background": "#FFFFFF", - "border": "#4cfd61" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4cfd61" - } - } - }, - { - "id": "250", - "label": "NAd [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "249", - "label": "urate [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "248", - "label": "G-protein beta-gamma complex [plasma membrane]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "247", - "label": "SLC2A2 tetramer transports Fru, Gal, Glc from cytosol to extracellular region", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "246", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "245", - "label": "CPT1A,B transfers PALM to CAR", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "244", - "label": "Equilibrative transport (import) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "243", - "label": "TXN [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "242", - "label": "Hydrolysis of choloyl-CoA to cholate and CoASH", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "241", - "label": "ROS oxidize thioredoxin and activate MAP3K5", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "240", - "label": "Ura-Rib [lysosomal lumen]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "239", - "label": "CoA-SH [peroxisomal matrix]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "238", - "label": "MAL [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "237", - "label": "SLC17A3-2 transports cytosolic urate to extracellular region", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "236", - "label": "ARRB1 [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "235", - "label": "Cytosolic chenodeoxycholoyl-CoA or choloyl-CoA are conjugated with glycine or taurine", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "234", - "label": "urate [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "233", - "label": "propionyl-CoA + carnitine => propionylcarnitine + CoASH", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "232", - "label": "ADR [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "231", - "label": "2xHC-TXN [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "230", - "label": "Noradrenaline is converted to adrenaline", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "229", - "label": "chenodeoxycholoyl-CoA [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "228", - "label": "choloyl-CoA [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "227", - "label": "choloyl-CoA; chenodeoxycholoyl-CoA [cytosol]", - "databaseLabel": "DefinedSet", - "font": { - "color": "#d84a6d" - }, - "color": { - "background": "#FFFFFF", - "border": "#d84a6d", - "hover": { - "background": "#FFFFFF", - "border": "#d84a6d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#d84a6d" - } - } - }, - { - "id": "226", - "label": "MAL [mitochondrial matrix]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "225", - "label": "phosphoenolpyruvate + ADP => pyruvate + ATP", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "224", - "label": "Deacetylation of cleaved cohesin", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "223", - "label": "Ura-Rib [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "222", - "label": "MRSBs reduce L-methyl-(R)-S-oxide to L-methionine", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - } - ], - "edges": [ - { - "id": "420", - "label": "193018 (-) 194202", - "from": "318", - "to": "278", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "419", - "label": "2131705 (-) 2117862", - "from": "317", - "to": "307", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "418", - "label": "249334 (-) 249331", - "from": "316", - "to": "312", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "417", - "label": "173043 (-) 637452", - "from": "315", - "to": "224", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "416", - "label": "1847029 (-) 1847064", - "from": "313", - "to": "233", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "415", - "label": "249331 (-) 21930", - "from": "312", - "to": "283", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "414", - "label": "194803 (-) 1690278", - "from": "311", - "to": "282", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "413", - "label": "369394 (-) 373494", - "from": "310", - "to": "314", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "412", - "label": "780267 (-) 557190", - "from": "309", - "to": "273", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "411", - "label": "780263 (-) 826488", - "from": "308", - "to": "269", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "410", - "label": "780263 (-) 780267", - "from": "308", - "to": "309", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "409", - "label": "2117862 (-) 2117860", - "from": "307", - "to": "304", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "408", - "label": "331494 (-) 293444", - "from": "306", - "to": "248", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "407", - "label": "1617124 (-) 854345", - "from": "305", - "to": "252", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "406", - "label": "2117860 (-) 254746", - "from": "304", - "to": "236", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "405", - "label": "191969 (-) 1694430", - "from": "303", - "to": "302", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "404", - "label": "1694430 (-) 1695048", - "from": "302", - "to": "251", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "403", - "label": "760778 (-) 760768", - "from": "301", - "to": "293", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "402", - "label": "209865 (-) 191969", - "from": "300", - "to": "303", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "401", - "label": "209864 (-) 194852", - "from": "299", - "to": "238", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "400", - "label": "504010 (-) 1684282", - "from": "298", - "to": "244", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "399", - "label": "842952 (-) 842097", - "from": "297", - "to": "268", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "398", - "label": "1615048 (-) 1614864", - "from": "296", - "to": "228", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "397", - "label": "1615048 (-) 1614869", - "from": "296", - "to": "229", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "396", - "label": "1615048 (-) 1614863", - "from": "296", - "to": "227", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "395", - "label": "1617094 (-) 1617124", - "from": "295", - "to": "305", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "394", - "label": "1683907 (-) 504075", - "from": "294", - "to": "223", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "393", - "label": "760768 (-) 760767", - "from": "293", - "to": "291", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "392", - "label": "1867456 (-) 780263", - "from": "292", - "to": "308", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "391", - "label": "760767 (-) 759647", - "from": "291", - "to": "260", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "390", - "label": "842940 (-) 1695832", - "from": "290", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "389", - "label": "842939 (-) 842940", - "from": "289", - "to": "290", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "388", - "label": "835002 (-) 1695832", - "from": "288", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "387", - "label": "759479 (-) 759648", - "from": "287", - "to": "261", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "386", - "label": "842166 (-) 842092", - "from": "286", - "to": "266", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "385", - "label": "842165 (-) 842166", - "from": "285", - "to": "286", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "384", - "label": "2131375 (-) 2131705", - "from": "284", - "to": "317", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "383", - "label": "21930 (-) 248631", - "from": "283", - "to": "241", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "382", - "label": "1690278 (-) 330402", - "from": "282", - "to": "280", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "381", - "label": "917666 (-) 917658", - "from": "281", - "to": "279", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "380", - "label": "330402 (-) 331494", - "from": "280", - "to": "306", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "379", - "label": "917658 (-) 189029", - "from": "279", - "to": "263", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "378", - "label": "194202 (-) 194803", - "from": "278", - "to": "311", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "377", - "label": "972439 (-) 250984", - "from": "277", - "to": "264", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "376", - "label": "1688214 (-) 501018", - "from": "276", - "to": "234", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "375", - "label": "472721 (-) 248633", - "from": "275", - "to": "243", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "374", - "label": "1695879 (-) 760768", - "from": "274", - "to": "293", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "373", - "label": "557190 (-) 834838", - "from": "273", - "to": "230", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "372", - "label": "330112 (-) 369394", - "from": "272", - "to": "310", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "371", - "label": "195710 (-) 195340", - "from": "271", - "to": "226", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "370", - "label": "195705 (-) 195710", - "from": "270", - "to": "271", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "369", - "label": "826488 (-) 557190", - "from": "269", - "to": "273", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "368", - "label": "842097 (-) 842939", - "from": "268", - "to": "289", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "367", - "label": "327791 (-) 1688214", - "from": "267", - "to": "276", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "366", - "label": "842092 (-) 841816", - "from": "266", - "to": "258", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "365", - "label": "842092 (-) 842952", - "from": "266", - "to": "297", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "364", - "label": "1616491 (-) 1616479", - "from": "265", - "to": "259", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "363", - "label": "250984 (-) 556370", - "from": "264", - "to": "254", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "362", - "label": "189029 (-) 1390655", - "from": "263", - "to": "247", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "361", - "label": "760931 (-) 1695879", - "from": "262", - "to": "274", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "360", - "label": "760931 (-) 760778", - "from": "262", - "to": "301", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "359", - "label": "759648 (-) 759647", - "from": "261", - "to": "260", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "358", - "label": "759647 (-) 759867", - "from": "260", - "to": "245", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "357", - "label": "1616479 (-) 1616952", - "from": "259", - "to": "242", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "356", - "label": "841816 (-) 842097", - "from": "258", - "to": "268", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "355", - "label": "1695833 (-) 835002", - "from": "257", - "to": "288", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "354", - "label": "1695832 (-) 298310", - "from": "256", - "to": "250", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "353", - "label": "193879 (-) 193037", - "from": "255", - "to": "225", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "352", - "label": "556370 (-) 249334", - "from": "254", - "to": "316", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "351", - "label": "298315 (-) 369394", - "from": "253", - "to": "310", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "350", - "label": "854345 (-) 1615048", - "from": "252", - "to": "296", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "349", - "label": "1695048 (-) 1695832", - "from": "251", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "348", - "label": "298310 (-) 369394", - "from": "250", - "to": "310", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "347", - "label": "1688388 (-) 1690278", - "from": "249", - "to": "282", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "346", - "label": "293444 (-) 369394", - "from": "248", - "to": "310", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "345", - "label": "1390655 (-) 327791", - "from": "247", - "to": "267", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "344", - "label": "1684283 (-) 330112", - "from": "246", - "to": "272", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "343", - "label": "759867 (-) 173043", - "from": "245", - "to": "315", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "342", - "label": "1684282 (-) 504075", - "from": "244", - "to": "223", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "341", - "label": "248633 (-) 1867013", - "from": "243", - "to": "222", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "340", - "label": "248633 (-) 1867456", - "from": "243", - "to": "292", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "339", - "label": "1616952 (-) 1617094", - "from": "242", - "to": "295", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "338", - "label": "248631 (-) 248855", - "from": "241", - "to": "231", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "337", - "label": "1684022 (-) 1683907", - "from": "240", - "to": "294", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "336", - "label": "214835 (-) 1616491", - "from": "239", - "to": "265", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "335", - "label": "194852 (-) 209865", - "from": "238", - "to": "300", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "334", - "label": "2083872 (-) 1688388", - "from": "237", - "to": "249", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "333", - "label": "254746 (-) 972439", - "from": "236", - "to": "277", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "332", - "label": "1614875 (-) 173043", - "from": "235", - "to": "315", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "331", - "label": "501018 (-) 2083872", - "from": "234", - "to": "237", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "330", - "label": "1847064 (-) 214835", - "from": "233", - "to": "239", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "329", - "label": "1684248 (-) 1695833", - "from": "232", - "to": "257", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "328", - "label": "248855 (-) 472721", - "from": "231", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "327", - "label": "834838 (-) 835002", - "from": "230", - "to": "288", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "326", - "label": "1614869 (-) 1614875", - "from": "229", - "to": "235", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "325", - "label": "1614864 (-) 1614875", - "from": "228", - "to": "235", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "324", - "label": "1614863 (-) 1614875", - "from": "227", - "to": "235", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "323", - "label": "195340 (-) 209864", - "from": "226", - "to": "299", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "322", - "label": "193037 (-) 193018", - "from": "225", - "to": "318", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "321", - "label": "637452 (-) 193879", - "from": "224", - "to": "255", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "320", - "label": "504075 (-) 1684283", - "from": "223", - "to": "246", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "319", - "label": "1867013 (-) 780263", - "from": "222", - "to": "308", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/metab2PTHLH_short_graphml.json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/metab2PTHLH_short_graphml.json deleted file mode 100644 index f8d29aad12..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/metab2PTHLH_short_graphml.json +++ /dev/null @@ -1,7436 +0,0 @@ -{ - "nodes": [ - { - "id": "638", - "label": "p-Y705-STAT3 [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "637", - "label": "Equilibrative transport (import) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "636", - "label": "Thy [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "635", - "label": "AGM [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "634", - "label": "CoA-SH [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "633", - "label": "Phosphorylated heterodimers of ERBB2 TMD/JMD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "632", - "label": "oxaloacetate + glutamate <=> aspartate + alpha-ketoglutarate [GOT1]", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "631", - "label": "LCK [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "630", - "label": "ArgN-GCG(98-127) [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "629", - "label": "2OG [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "628", - "label": "mature GLP-1 [extracellular region]", - "databaseLabel": "DefinedSet", - "font": { - "color": "#d84a6d" - }, - "color": { - "background": "#FFFFFF", - "border": "#d84a6d", - "hover": { - "background": "#FFFFFF", - "border": "#d84a6d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#d84a6d" - } - } - }, - { - "id": "627", - "label": "GLP-1 (7-37) [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "626", - "label": "p-Y705-STAT3 dimer [nucleoplasm]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "625", - "label": "OCTN2 / SLC22A5 transports CAR from extracellular space to cytosol", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "624", - "label": "Exchange of alpha-ketoglutarate (2-oxoglutarate) and malate across the inner mitochondrial membrane", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "623", - "label": "malate [mitochondrial matrix] + alpha-ketoglutarate [cytosol] <=> malate [cytosol] + alpha-ketoglutarate [mitochondrial matrix]", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "622", - "label": "Cho [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "621", - "label": "Phosphorylated STAT3 Dimer Translocates to the Nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "620", - "label": "SLC29A3 transports nucleosides from lysosomal lumen to cytosol", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "619", - "label": "CAR [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "618", - "label": "CAR translocates from the cytosol to the mitochondrial intermembrane space", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "617", - "label": "Concentrative transport (import) of nucleosides plus sodium ions by solute carrier family 28 (sodium-coupled nucleoside transporter), member 2", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "616", - "label": "Gua-Rib [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "615", - "label": "ADR [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "614", - "label": "FGFR1OP-FGFR1 phosphorylates STAT1 and STAT3", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "613", - "label": "BSG:MCTs cotransport LACT, H+ from cytosol to extracellular region", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "612", - "label": "Creatine transport across the plasma membrane", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "611", - "label": "CRET [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "610", - "label": "5HT [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "609", - "label": "ADR [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "608", - "label": "Hist [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "607", - "label": "Degradation of CD4", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "606", - "label": "PLCG1 [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "605", - "label": "ligands of SLC28A3 & 29A1 [cytosol]", - "databaseLabel": "DefinedSet", - "font": { - "color": "#d84a6d" - }, - "color": { - "background": "#FFFFFF", - "border": "#d84a6d", - "hover": { - "background": "#FFFFFF", - "border": "#d84a6d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#d84a6d" - } - } - }, - { - "id": "604", - "label": "Nef mediated disruption of CD4:Lck Complex", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "603", - "label": "AP-2 Complex [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "602", - "label": "Concentrative transport (import) of a nucleoside and a sodium ions by solute carrier family 28 (sodium-coupled nucleoside transporter), member 1", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "601", - "label": "p-Y701-STAT1 [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "600", - "label": "WNT5A:FZD4 is endocytosed", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "599", - "label": "STAT1 and STAT3 dimers translocate to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "598", - "label": "Ade-Rib [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "597", - "label": "SRC autophosphorylation is positively regulated by InlA-bound CDH1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "596", - "label": "Equilibrative transport (import) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "595", - "label": "OAT2 and OAT4 mediate transport of sulphate conjugates", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "594", - "label": "STAT1 [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "593", - "label": "MNA [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "592", - "label": "Pcr [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "591", - "label": "Glucagon-like Peptide 1 is secreted from intestinal L cells", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "590", - "label": "CRET [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "589", - "label": "p-Y641-STAT6 [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "588", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "587", - "label": "Dissociation of paradoxically activated RAS:BRAF complexes", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "586", - "label": "p-Y705-STAT3 dimer, p-Y641-STAT6 dimer translocate to nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "585", - "label": "Exchange of palmitoylcarnitine and carnitine across the inner mitochondrial membrane", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "584", - "label": "CAR [mitochondrial intermembrane space]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "583", - "label": "JAK1 [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "582", - "label": "ADR [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "581", - "label": "NAd [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "580", - "label": "CCA [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "579", - "label": "CIM [cytosol]", - "databaseLabel": "ChemicalDrug", - "font": { - "color": "#4cfd61" - }, - "color": { - "background": "#FFFFFF", - "border": "#4cfd61", - "hover": { - "background": "#FFFFFF", - "border": "#4cfd61" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4cfd61" - } - } - }, - { - "id": "578", - "label": "Cyt [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "577", - "label": "ligands of SLC29A2 [cytosol]", - "databaseLabel": "DefinedSet", - "font": { - "color": "#d84a6d" - }, - "color": { - "background": "#FFFFFF", - "border": "#d84a6d", - "hover": { - "background": "#FFFFFF", - "border": "#d84a6d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#d84a6d" - } - } - }, - { - "id": "576", - "label": "p-T,Y MAPKs [cytosol]", - "databaseLabel": "DefinedSet", - "font": { - "color": "#d84a6d" - }, - "color": { - "background": "#FFFFFF", - "border": "#d84a6d", - "hover": { - "background": "#FFFFFF", - "border": "#d84a6d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#d84a6d" - } - } - }, - { - "id": "575", - "label": "p-Y701-STAT1, p-Y705-STAT3, p-Y649-STAT5 dissociates from IL9:p-Y116-IL9R:JAK1:IL2RG:p-904,939-JAK3:p-Y705-STAT3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "574", - "label": "SPM [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "573", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "572", - "label": "Equilibrative transport (import) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "571", - "label": "CoA-SH [peroxisomal matrix]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "570", - "label": "4,8-dimethylnonanoyl-CoA + carnitine => 4,8-dimethylnonanoylcarnitine + CoASH", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "569", - "label": "Ura [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "568", - "label": "Activated NTRK3 stimulates PI3K activity", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "567", - "label": "MAL [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "566", - "label": "PIP3:BTK:G beta-gamma complex dissociates to Active BTK, PIP3 and G beta-gamma complex", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "565", - "label": "IgG:Leishmania surface:p-FCGR3A:p-6Y-SYK:p-3Y-PLCG [plasma membrane]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "564", - "label": "Release of PLCG from FCGR3A", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "563", - "label": "ARRB1 [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "562", - "label": "propionyl-CoA + carnitine => propionylcarnitine + CoASH", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "561", - "label": "ADR [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "560", - "label": "ligands of SLC29A4 [cytosol]", - "databaseLabel": "DefinedSet", - "font": { - "color": "#d84a6d" - }, - "color": { - "background": "#FFFFFF", - "border": "#d84a6d", - "hover": { - "background": "#FFFFFF", - "border": "#d84a6d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#d84a6d" - } - } - }, - { - "id": "559", - "label": "malate [mitochondrial matrix] + orthophosphate [cytosol] <=> malate [cytosol] + orthophosphate [mitochondrial matrix]", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "558", - "label": "Beta-catenin is released from the destruction complex", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "557", - "label": "Cyt-Rib [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "556", - "label": "Dissociation of moderate activity BRAF complexes", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "555", - "label": "NAd [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "554", - "label": "MAL [mitochondrial matrix]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "553", - "label": "Thy-dRib [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "552", - "label": "Ura-Rib [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "551", - "label": "Expression of STAT3-upregulated extracellular proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "550", - "label": "p-T202,Y204-MAPK3 [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "549", - "label": "ACLY tetramer transforms CIT to Ac-CoA", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "548", - "label": "2-oxoglutarate [mitochondrial matrix] + 2-oxoadipate [cytosol] <=> 2-oxoglutarate [cytosol] + 2-oxoadipate [mitochondrial matrix]", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "547", - "label": "SPN [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "546", - "label": "2OG [mitochondrial matrix]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "545", - "label": "Cytosolic DUSPs dephosphorylate MAPKs", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "544", - "label": "Dissociation of clathrin-associated proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "543", - "label": "Hyp [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "542", - "label": "PTHLH [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "541", - "label": "CAR [peroxisomal matrix]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "540", - "label": "LACT [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "539", - "label": "The Ligand:GPCR:Gs complex dissociates", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "538", - "label": "MyrG-p-Y419-SRC [plasma membrane]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "537", - "label": "2OG [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "536", - "label": "PI(3,4,5)P3 [plasma membrane]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "535", - "label": "Ino [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "534", - "label": "OA [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "533", - "label": "DNAJC6 [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "532", - "label": "The Ligand:GPCR:Gi complex dissociates", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "531", - "label": "trans-Golgi Network Derived Lysosomal Vesicle Uncoating", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "530", - "label": "Cholate is translocated from the peroxisomal matrix to the cytosol", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "529", - "label": "Ade [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "528", - "label": "p-4Y-PLCG1 [plasma membrane]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "527", - "label": "OAT1-3 transport organic anions with antiport of dicarboxylic acids", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "526", - "label": "Phosphorylated heterodimers of ERBB2 ECD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "525", - "label": "Dissociation of RAS:RAF1 mutant complex", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "524", - "label": "Dissociation of RAS:RAF complex", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "523", - "label": "Ura-Rib [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "522", - "label": "creatine + ATP => phosphocreatine + ADP [CKB,CKM]", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "521", - "label": "Cytosolic cholate and chenodeoxycholate are conjugated with Coenzyme A (SLC27A5 BACS)", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "520", - "label": "myristoylated nef [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "519", - "label": "cholate [peroxisomal matrix]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "518", - "label": "CREAT [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "517", - "label": "phosphocreatine + H2O => creatinine + orthophosphate", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "516", - "label": "CAR [mitochondrial matrix]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "515", - "label": "DA [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "514", - "label": "Regulation of protein ISGylation by ISG15 deconjugating enzyme USP18", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "513", - "label": "p-Y-STATs dissociate", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "512", - "label": "p-Y705-STAT3 dimer translocates from cytosol to nucleoplasm", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "511", - "label": "PYR [mitochondrial matrix]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "510", - "label": "Phosphorylation of CTLA-4", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "509", - "label": "SLC22A12 exchanges extracellular urate for cytosolic LACT", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "508", - "label": "ARRB2 [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "507", - "label": "LACT [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "506", - "label": "D-sorbitol [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "505", - "label": "ME2:Mg2+ tetramer oxidatively decarboxylates MAL to PYR", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "504", - "label": "SORD oxidizes D-sorbitol to Fru", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "503", - "label": "Dissociation of high activity BRAF complexes", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "502", - "label": "p-Y-STATs translocate to nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "501", - "label": "QN [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "500", - "label": "MAPK3 [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "499", - "label": "4-Di-2-ASP [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "498", - "label": "SLC22A4, 5,15,16 cotransport CAR, Na+ from extracellular region to cytosol", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "497", - "label": "Phosphorylation and activation of PLCG due to FCGR3A effect", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "496", - "label": "Equilibrative transport (export) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "495", - "label": "MTF [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "494", - "label": "Concentrative transport (import) of a nucleoside and two sodium ions by solute carrier family 28 (sodium-coupled nucleoside transporter), member 3", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "493", - "label": "OCT1 substrates [cytosol]", - "databaseLabel": "DefinedSet", - "font": { - "color": "#d84a6d" - }, - "color": { - "background": "#FFFFFF", - "border": "#d84a6d", - "hover": { - "background": "#FFFFFF", - "border": "#d84a6d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#d84a6d" - } - } - }, - { - "id": "492", - "label": "Fumarate + H2O <=> (S)-Malate", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "491", - "label": "OCT1 transports organic cations out of hepatic cells", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "490", - "label": "FUMA [mitochondrial matrix]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "489", - "label": "OCT1 transports organic cations into hepatic cells", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "488", - "label": "Hist [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "487", - "label": "Glc [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "486", - "label": "Thiolysis of 3alpha,7alpha,12alpha-trihydroxy-5beta-cholan-24-one-CoA yields choloyl-CoA (3alpha,7alpha,12alpha-trihydroxy-5beta-cholan-24-one-CoA) and propionyl CoA", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "485", - "label": "Phosphorylated heterodimers of ERBB2 KD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "484", - "label": "p-T185,Y187-MAPK1 [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "483", - "label": "Fru [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "482", - "label": "CAR [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "481", - "label": "Oxaliplatin [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "480", - "label": "OCT2 substrates [cytosol]", - "databaseLabel": "DefinedSet", - "font": { - "color": "#d84a6d" - }, - "color": { - "background": "#FFFFFF", - "border": "#d84a6d", - "hover": { - "background": "#FFFFFF", - "border": "#d84a6d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#d84a6d" - } - } - }, - { - "id": "479", - "label": "choloyl-CoA [peroxisomal matrix]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "478", - "label": "Dissociation of oncogenic RAS:RAF complex", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "477", - "label": "creatine + ATP => phosphocreatine + ADP [CK octamer]", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "476", - "label": "PP2A [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "475", - "label": "PLCG1 phosphorylation by p-EGFR:p-ERBB2", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "474", - "label": "OCT2 mediates tubular uptake of organic cations in the kidney", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "473", - "label": "OCT2 mediates tubular secretion of organic cations in the kidney", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "472", - "label": "CTNNB1 [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "471", - "label": "acetyl-CoA + carnitine => acetylcarnitine + CoASH", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "470", - "label": "Dissociation of BRAF/RAF fusion complex", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "469", - "label": "MPP [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "468", - "label": "POMC(138-176) [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "467", - "label": "Gu [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "466", - "label": "TMAM [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "465", - "label": "G-protein beta-gamma complex [plasma membrane]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "464", - "label": "trans-Golgi Network Derived Vesicle Uncoating", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "463", - "label": "SLC2A2 tetramer transports Fru, Gal, Glc from cytosol to extracellular region", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "462", - "label": "CPT1A,B transfers PALM to CAR", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "461", - "label": "5HT [extracellular region]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "460", - "label": "Hydrolysis of choloyl-CoA to cholate and CoASH", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "459", - "label": "Ura-Rib [lysosomal lumen]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "458", - "label": "Degradation of CD8", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "457", - "label": "Gua [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "456", - "label": "Phosphorylation and activation of PLCG", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "455", - "label": "PXLP-K341-GPT2 transaminates PYR to form L-Ala", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "454", - "label": "clustered IgG-Ag:p-FCGRs:p-6Y-SYK:p-3Y-PLCG [plasma membrane]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "453", - "label": "Release of PLCG from FCGR", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "452", - "label": "Cytosolic chenodeoxycholoyl-CoA or choloyl-CoA are conjugated with glycine or taurine", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "451", - "label": "chenodeoxycholoyl-CoA [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "450", - "label": "choloyl-CoA [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "449", - "label": "choloyl-CoA; chenodeoxycholoyl-CoA [cytosol]", - "databaseLabel": "DefinedSet", - "font": { - "color": "#d84a6d" - }, - "color": { - "background": "#FFFFFF", - "border": "#d84a6d", - "hover": { - "background": "#FFFFFF", - "border": "#d84a6d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#d84a6d" - } - } - }, - { - "id": "448", - "label": "Ade-Rib [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "447", - "label": "DA [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - } - ], - "edges": [ - { - "id": "997", - "label": "570878 (-) 587203", - "from": "638", - "to": "621", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "996", - "label": "570878 (-) 627554", - "from": "638", - "to": "586", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "995", - "label": "570878 (-) 935811", - "from": "638", - "to": "599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "994", - "label": "570878 (-) 1806998", - "from": "638", - "to": "502", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "993", - "label": "570878 (-) 1802928", - "from": "638", - "to": "512", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "992", - "label": "1682941 (-) 492262", - "from": "637", - "to": "535", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "991", - "label": "1682941 (-) 504076", - "from": "637", - "to": "553", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "990", - "label": "1682941 (-) 492556", - "from": "637", - "to": "448", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "989", - "label": "1682941 (-) 1683355", - "from": "637", - "to": "605", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "988", - "label": "1682941 (-) 504077", - "from": "637", - "to": "557", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "987", - "label": "1682941 (-) 495549", - "from": "637", - "to": "616", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "986", - "label": "1682941 (-) 504075", - "from": "637", - "to": "552", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "985", - "label": "503799 (-) 1684283", - "from": "636", - "to": "573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "984", - "label": "779764 (-) 1695832", - "from": "635", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "983", - "label": "173043 (-) 1835271", - "from": "634", - "to": "549", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "982", - "label": "1488882 (-) 144608", - "from": "633", - "to": "528", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "981", - "label": "191983 (-) 191969", - "from": "632", - "to": "629", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "980", - "label": "138223 (-) 672431", - "from": "631", - "to": "510", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "979", - "label": "374754 (-) 369394", - "from": "630", - "to": "539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "978", - "label": "191969 (-) 1695098", - "from": "629", - "to": "595", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "977", - "label": "191969 (-) 1694430", - "from": "629", - "to": "527", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "976", - "label": "374742 (-) 369394", - "from": "628", - "to": "539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "975", - "label": "374743 (-) 369394", - "from": "627", - "to": "539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "974", - "label": "441814 (-) 1806603", - "from": "626", - "to": "551", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "973", - "label": "760778 (-) 760768", - "from": "625", - "to": "619", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "972", - "label": "209865 (-) 191969", - "from": "624", - "to": "629", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "971", - "label": "209864 (-) 192256", - "from": "623", - "to": "546", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "970", - "label": "209864 (-) 194852", - "from": "623", - "to": "567", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "969", - "label": "170436 (-) 1695353", - "from": "622", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "968", - "label": "170436 (-) 1695832", - "from": "622", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "967", - "label": "587203 (-) 441814", - "from": "621", - "to": "626", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "966", - "label": "1683907 (-) 492556", - "from": "620", - "to": "448", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "965", - "label": "1683907 (-) 504076", - "from": "620", - "to": "553", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "964", - "label": "1683907 (-) 504077", - "from": "620", - "to": "557", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "963", - "label": "1683907 (-) 495549", - "from": "620", - "to": "616", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "962", - "label": "1683907 (-) 496865", - "from": "620", - "to": "529", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "961", - "label": "1683907 (-) 504075", - "from": "620", - "to": "552", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "960", - "label": "1683907 (-) 492262", - "from": "620", - "to": "535", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "959", - "label": "760768 (-) 760767", - "from": "619", - "to": "618", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "958", - "label": "760767 (-) 759647", - "from": "618", - "to": "584", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "957", - "label": "1683390 (-) 492556", - "from": "617", - "to": "448", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "956", - "label": "1683390 (-) 492262", - "from": "617", - "to": "535", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "955", - "label": "1683390 (-) 504075", - "from": "617", - "to": "552", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "954", - "label": "1683390 (-) 495549", - "from": "617", - "to": "616", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "953", - "label": "495549 (-) 1684283", - "from": "616", - "to": "573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "952", - "label": "495549 (-) 1682942", - "from": "616", - "to": "588", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "951", - "label": "835002 (-) 1684105", - "from": "615", - "to": "496", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "950", - "label": "835002 (-) 1695832", - "from": "615", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "949", - "label": "835002 (-) 1695353", - "from": "615", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "948", - "label": "1482169 (-) 570878", - "from": "614", - "to": "638", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "947", - "label": "1482169 (-) 935814", - "from": "614", - "to": "601", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "946", - "label": "1863096 (-) 330402", - "from": "613", - "to": "507", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "945", - "label": "842166 (-) 842092", - "from": "612", - "to": "590", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "944", - "label": "842165 (-) 842166", - "from": "611", - "to": "612", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "943", - "label": "354741 (-) 1695832", - "from": "610", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "942", - "label": "354741 (-) 1684105", - "from": "610", - "to": "496", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "941", - "label": "2131375 (-) 2131705", - "from": "609", - "to": "544", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "940", - "label": "784286 (-) 1695832", - "from": "608", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "939", - "label": "784286 (-) 1695353", - "from": "608", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "938", - "label": "1473437 (-) 1411783", - "from": "607", - "to": "520", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "937", - "label": "149916 (-) 289835", - "from": "606", - "to": "456", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "936", - "label": "149916 (-) 964698", - "from": "606", - "to": "475", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "935", - "label": "149916 (-) 1489627", - "from": "606", - "to": "526", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "934", - "label": "149916 (-) 1488882", - "from": "606", - "to": "633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "933", - "label": "149916 (-) 157322", - "from": "606", - "to": "497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "932", - "label": "149916 (-) 1489512", - "from": "606", - "to": "485", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "931", - "label": "1683355 (-) 1682942", - "from": "605", - "to": "588", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "930", - "label": "1473433 (-) 138223", - "from": "604", - "to": "631", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "929", - "label": "698257 (-) 1473583", - "from": "603", - "to": "458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "928", - "label": "698257 (-) 698244", - "from": "603", - "to": "600", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "927", - "label": "698257 (-) 1473437", - "from": "603", - "to": "607", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "926", - "label": "1684368 (-) 504077", - "from": "602", - "to": "557", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "925", - "label": "1684368 (-) 504076", - "from": "602", - "to": "553", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "924", - "label": "1684368 (-) 492556", - "from": "602", - "to": "448", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "923", - "label": "1684368 (-) 504075", - "from": "602", - "to": "552", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "922", - "label": "935814 (-) 1806998", - "from": "601", - "to": "502", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "921", - "label": "935814 (-) 935811", - "from": "601", - "to": "599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "920", - "label": "698244 (-) 255142", - "from": "600", - "to": "508", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "919", - "label": "935811 (-) 441814", - "from": "599", - "to": "626", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "918", - "label": "330112 (-) 369394", - "from": "598", - "to": "539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "917", - "label": "1410943 (-) 103150", - "from": "597", - "to": "538", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "916", - "label": "1684347 (-) 834827", - "from": "596", - "to": "555", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "915", - "label": "1684347 (-) 834570", - "from": "596", - "to": "447", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "914", - "label": "1684347 (-) 492556", - "from": "596", - "to": "448", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "913", - "label": "1684347 (-) 835002", - "from": "596", - "to": "615", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "912", - "label": "1684347 (-) 1684246", - "from": "596", - "to": "560", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "911", - "label": "1684347 (-) 354741", - "from": "596", - "to": "610", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "910", - "label": "1695098 (-) 330475", - "from": "595", - "to": "537", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "909", - "label": "570743 (-) 1482169", - "from": "594", - "to": "614", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "908", - "label": "791922 (-) 1695832", - "from": "593", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "907", - "label": "791922 (-) 1695353", - "from": "593", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "906", - "label": "842097 (-) 842939", - "from": "592", - "to": "517", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "905", - "label": "1949040 (-) 374742", - "from": "591", - "to": "628", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "904", - "label": "1949040 (-) 374743", - "from": "591", - "to": "627", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "903", - "label": "1949040 (-) 374754", - "from": "591", - "to": "630", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "902", - "label": "842092 (-) 841816", - "from": "590", - "to": "477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "901", - "label": "842092 (-) 842952", - "from": "590", - "to": "522", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "900", - "label": "627557 (-) 627554", - "from": "589", - "to": "586", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "899", - "label": "627557 (-) 1806998", - "from": "589", - "to": "502", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "898", - "label": "1682942 (-) 330112", - "from": "588", - "to": "598", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "897", - "label": "973669 (-) 251201", - "from": "587", - "to": "576", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "896", - "label": "973669 (-) 250984", - "from": "587", - "to": "484", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "895", - "label": "973669 (-) 251144", - "from": "587", - "to": "550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "894", - "label": "627554 (-) 441814", - "from": "586", - "to": "626", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "893", - "label": "759648 (-) 759647", - "from": "585", - "to": "584", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "892", - "label": "759647 (-) 759867", - "from": "584", - "to": "462", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "891", - "label": "286028 (-) 1046846", - "from": "583", - "to": "575", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "890", - "label": "286028 (-) 1807026", - "from": "583", - "to": "513", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "889", - "label": "298315 (-) 369394", - "from": "582", - "to": "539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "888", - "label": "298310 (-) 369394", - "from": "581", - "to": "539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "887", - "label": "854345 (-) 1615048", - "from": "580", - "to": "521", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "886", - "label": "1695048 (-) 1695832", - "from": "579", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "885", - "label": "1684295 (-) 1684283", - "from": "578", - "to": "573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "884", - "label": "1684294 (-) 1684283", - "from": "577", - "to": "573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "883", - "label": "251201 (-) 392955", - "from": "576", - "to": "545", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "882", - "label": "1046846 (-) 570878", - "from": "575", - "to": "638", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "881", - "label": "781114 (-) 1695353", - "from": "574", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "880", - "label": "1684283 (-) 330112", - "from": "573", - "to": "598", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "879", - "label": "1684282 (-) 504077", - "from": "572", - "to": "557", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "878", - "label": "1684282 (-) 503799", - "from": "572", - "to": "636", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "877", - "label": "1684282 (-) 492279", - "from": "572", - "to": "543", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "876", - "label": "1684282 (-) 1684294", - "from": "572", - "to": "577", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "875", - "label": "1684282 (-) 496865", - "from": "572", - "to": "529", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "874", - "label": "1684282 (-) 492262", - "from": "572", - "to": "535", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "873", - "label": "1684282 (-) 504075", - "from": "572", - "to": "552", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "872", - "label": "1684282 (-) 503591", - "from": "572", - "to": "569", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "871", - "label": "1684282 (-) 492556", - "from": "572", - "to": "448", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "870", - "label": "1684282 (-) 495549", - "from": "572", - "to": "616", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "869", - "label": "1684282 (-) 504076", - "from": "572", - "to": "553", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "868", - "label": "1684282 (-) 1684295", - "from": "572", - "to": "578", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "867", - "label": "1684282 (-) 492077", - "from": "572", - "to": "457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "866", - "label": "214835 (-) 1616491", - "from": "571", - "to": "486", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "865", - "label": "1847079 (-) 214835", - "from": "570", - "to": "571", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "864", - "label": "503591 (-) 1684283", - "from": "569", - "to": "573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "863", - "label": "1049381 (-) 94950", - "from": "568", - "to": "536", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "862", - "label": "194852 (-) 209865", - "from": "567", - "to": "624", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "861", - "label": "1522976 (-) 293444", - "from": "566", - "to": "465", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "860", - "label": "151326 (-) 151325", - "from": "565", - "to": "564", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "859", - "label": "151325 (-) 94950", - "from": "564", - "to": "536", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "858", - "label": "254746 (-) 973669", - "from": "563", - "to": "587", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "857", - "label": "254746 (-) 972439", - "from": "563", - "to": "503", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "856", - "label": "254746 (-) 974036", - "from": "563", - "to": "525", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "855", - "label": "254746 (-) 973072", - "from": "563", - "to": "556", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "854", - "label": "254746 (-) 252110", - "from": "563", - "to": "524", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "853", - "label": "254746 (-) 971358", - "from": "563", - "to": "478", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "852", - "label": "254746 (-) 975952", - "from": "563", - "to": "470", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "851", - "label": "1847064 (-) 214835", - "from": "562", - "to": "571", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "850", - "label": "1684248 (-) 1695833", - "from": "561", - "to": "474", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "849", - "label": "1684248 (-) 1695352", - "from": "561", - "to": "489", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "848", - "label": "1684248 (-) 1684347", - "from": "561", - "to": "596", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "847", - "label": "1684246 (-) 1684105", - "from": "560", - "to": "496", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "846", - "label": "195341 (-) 194852", - "from": "559", - "to": "567", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "845", - "label": "703760 (-) 703570", - "from": "558", - "to": "472", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "844", - "label": "504077 (-) 1684283", - "from": "557", - "to": "573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "843", - "label": "504077 (-) 1682942", - "from": "557", - "to": "588", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "842", - "label": "973072 (-) 251144", - "from": "556", - "to": "550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "841", - "label": "973072 (-) 251201", - "from": "556", - "to": "576", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "840", - "label": "973072 (-) 250984", - "from": "556", - "to": "484", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "839", - "label": "834827 (-) 1695353", - "from": "555", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "838", - "label": "834827 (-) 1695832", - "from": "555", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "837", - "label": "834827 (-) 1684105", - "from": "555", - "to": "496", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "836", - "label": "195340 (-) 195341", - "from": "554", - "to": "559", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "835", - "label": "195340 (-) 209864", - "from": "554", - "to": "623", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "834", - "label": "504076 (-) 1684283", - "from": "553", - "to": "573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "833", - "label": "504076 (-) 1682942", - "from": "553", - "to": "588", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "832", - "label": "504075 (-) 1684283", - "from": "552", - "to": "573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "831", - "label": "504075 (-) 1682942", - "from": "552", - "to": "588", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "830", - "label": "1806603 (-) 378957", - "from": "551", - "to": "468", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "829", - "label": "251144 (-) 392955", - "from": "550", - "to": "545", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "828", - "label": "1835271 (-) 191719", - "from": "549", - "to": "534", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "827", - "label": "192260 (-) 191969", - "from": "548", - "to": "629", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "826", - "label": "781057 (-) 1695353", - "from": "547", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "825", - "label": "192256 (-) 192260", - "from": "546", - "to": "548", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "824", - "label": "192256 (-) 209865", - "from": "546", - "to": "624", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "823", - "label": "392955 (-) 258188", - "from": "545", - "to": "500", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "822", - "label": "2131705 (-) 698257", - "from": "544", - "to": "603", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "821", - "label": "2131705 (-) 2117862", - "from": "544", - "to": "533", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "820", - "label": "492279 (-) 1684283", - "from": "543", - "to": "573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "819", - "label": "1847029 (-) 1847064", - "from": "541", - "to": "562", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "818", - "label": "1847029 (-) 1847079", - "from": "541", - "to": "570", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "817", - "label": "1847029 (-) 1846864", - "from": "541", - "to": "471", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "816", - "label": "194803 (-) 1863096", - "from": "540", - "to": "613", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "815", - "label": "194803 (-) 1690278", - "from": "540", - "to": "509", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "814", - "label": "369394 (-) 373494", - "from": "539", - "to": "542", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "813", - "label": "103150 (-) 1049381", - "from": "538", - "to": "568", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "812", - "label": "330475 (-) 331494", - "from": "537", - "to": "532", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "811", - "label": "94950 (-) 1522976", - "from": "536", - "to": "566", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "810", - "label": "492262 (-) 1682942", - "from": "535", - "to": "588", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "809", - "label": "492262 (-) 1684283", - "from": "535", - "to": "573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "808", - "label": "191719 (-) 191983", - "from": "534", - "to": "632", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "807", - "label": "2117862 (-) 2117860", - "from": "533", - "to": "531", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "806", - "label": "2117862 (-) 2119743", - "from": "533", - "to": "464", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "805", - "label": "331494 (-) 293444", - "from": "532", - "to": "465", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "804", - "label": "2117860 (-) 254746", - "from": "531", - "to": "563", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "803", - "label": "1617124 (-) 854345", - "from": "530", - "to": "580", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "802", - "label": "496865 (-) 1684283", - "from": "529", - "to": "573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "801", - "label": "144608 (-) 151325", - "from": "528", - "to": "564", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "800", - "label": "144608 (-) 289822", - "from": "528", - "to": "453", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "799", - "label": "1694430 (-) 330475", - "from": "527", - "to": "537", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "798", - "label": "1694430 (-) 1695048", - "from": "527", - "to": "579", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "797", - "label": "1489627 (-) 144608", - "from": "526", - "to": "528", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "796", - "label": "974036 (-) 251201", - "from": "525", - "to": "576", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "795", - "label": "974036 (-) 250984", - "from": "525", - "to": "484", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "794", - "label": "974036 (-) 251144", - "from": "525", - "to": "550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "793", - "label": "252110 (-) 251144", - "from": "524", - "to": "550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "792", - "label": "252110 (-) 251201", - "from": "524", - "to": "576", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "791", - "label": "252110 (-) 250984", - "from": "524", - "to": "484", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "790", - "label": "504010 (-) 1683390", - "from": "523", - "to": "617", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "789", - "label": "504010 (-) 1684282", - "from": "523", - "to": "572", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "788", - "label": "504010 (-) 1684368", - "from": "523", - "to": "602", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "787", - "label": "504010 (-) 1683591", - "from": "523", - "to": "494", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "786", - "label": "504010 (-) 1682941", - "from": "523", - "to": "637", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "785", - "label": "842952 (-) 842097", - "from": "522", - "to": "592", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "784", - "label": "1615048 (-) 1614864", - "from": "521", - "to": "450", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "783", - "label": "1615048 (-) 1614869", - "from": "521", - "to": "451", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "782", - "label": "1615048 (-) 1614863", - "from": "521", - "to": "449", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "781", - "label": "1411783 (-) 1473433", - "from": "520", - "to": "604", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "780", - "label": "1617094 (-) 1617124", - "from": "519", - "to": "530", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "779", - "label": "842940 (-) 1695832", - "from": "518", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "778", - "label": "842939 (-) 842940", - "from": "517", - "to": "518", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "777", - "label": "759479 (-) 759648", - "from": "516", - "to": "585", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "776", - "label": "330932 (-) 369394", - "from": "515", - "to": "539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "775", - "label": "1793199 (-) 149916", - "from": "514", - "to": "606", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "774", - "label": "1793199 (-) 286028", - "from": "514", - "to": "583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "773", - "label": "1793199 (-) 570743", - "from": "514", - "to": "594", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "772", - "label": "1807026 (-) 935814", - "from": "513", - "to": "601", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "771", - "label": "1807026 (-) 570878", - "from": "513", - "to": "638", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "770", - "label": "1807026 (-) 627557", - "from": "513", - "to": "589", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "769", - "label": "1802928 (-) 441814", - "from": "512", - "to": "626", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "768", - "label": "192688 (-) 836645", - "from": "511", - "to": "455", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "767", - "label": "672431 (-) 46171", - "from": "510", - "to": "476", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "766", - "label": "1690278 (-) 330402", - "from": "509", - "to": "507", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "765", - "label": "255142 (-) 973669", - "from": "508", - "to": "587", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "764", - "label": "255142 (-) 975952", - "from": "508", - "to": "470", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "763", - "label": "255142 (-) 252110", - "from": "508", - "to": "524", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "762", - "label": "255142 (-) 974036", - "from": "508", - "to": "525", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "761", - "label": "255142 (-) 973072", - "from": "508", - "to": "556", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "760", - "label": "255142 (-) 971358", - "from": "508", - "to": "478", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "759", - "label": "255142 (-) 972439", - "from": "508", - "to": "503", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "758", - "label": "330402 (-) 331494", - "from": "507", - "to": "532", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "757", - "label": "917666 (-) 917658", - "from": "506", - "to": "504", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "756", - "label": "1861787 (-) 192688", - "from": "505", - "to": "511", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "755", - "label": "917658 (-) 189029", - "from": "504", - "to": "483", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "754", - "label": "972439 (-) 251201", - "from": "503", - "to": "576", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "753", - "label": "972439 (-) 250984", - "from": "503", - "to": "484", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "752", - "label": "972439 (-) 251144", - "from": "503", - "to": "550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "751", - "label": "1806998 (-) 441814", - "from": "502", - "to": "626", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "750", - "label": "1695374 (-) 1695353", - "from": "501", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "749", - "label": "258188 (-) 1793199", - "from": "500", - "to": "514", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "748", - "label": "1695372 (-) 1695832", - "from": "499", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "747", - "label": "1695372 (-) 1695353", - "from": "499", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "746", - "label": "1695879 (-) 760768", - "from": "498", - "to": "619", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "745", - "label": "157322 (-) 151326", - "from": "497", - "to": "565", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "744", - "label": "1684105 (-) 330112", - "from": "496", - "to": "598", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "743", - "label": "1684105 (-) 299067", - "from": "496", - "to": "461", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "742", - "label": "1684105 (-) 298310", - "from": "496", - "to": "581", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "741", - "label": "1684105 (-) 330932", - "from": "496", - "to": "515", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "740", - "label": "1695367 (-) 1695353", - "from": "495", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "739", - "label": "1695367 (-) 1695832", - "from": "495", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "738", - "label": "1683591 (-) 1683355", - "from": "494", - "to": "605", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "737", - "label": "1683591 (-) 495549", - "from": "494", - "to": "616", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "736", - "label": "1683591 (-) 492262", - "from": "494", - "to": "535", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "735", - "label": "1683591 (-) 504075", - "from": "494", - "to": "552", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "734", - "label": "1683591 (-) 504076", - "from": "494", - "to": "553", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "733", - "label": "1683591 (-) 492556", - "from": "494", - "to": "448", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "732", - "label": "1683591 (-) 504077", - "from": "494", - "to": "557", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "731", - "label": "1695366 (-) 1695353", - "from": "493", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "730", - "label": "195710 (-) 195340", - "from": "492", - "to": "554", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "729", - "label": "1695353 (-) 330932", - "from": "491", - "to": "515", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "728", - "label": "1695353 (-) 298310", - "from": "491", - "to": "581", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "727", - "label": "1695353 (-) 299127", - "from": "491", - "to": "488", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "726", - "label": "195705 (-) 1861787", - "from": "490", - "to": "505", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "725", - "label": "195705 (-) 195710", - "from": "490", - "to": "492", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "724", - "label": "1695352 (-) 1695372", - "from": "489", - "to": "499", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "723", - "label": "1695352 (-) 784286", - "from": "489", - "to": "608", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "722", - "label": "1695352 (-) 1695307", - "from": "489", - "to": "467", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "721", - "label": "1695352 (-) 1695366", - "from": "489", - "to": "493", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "720", - "label": "1695352 (-) 835002", - "from": "489", - "to": "615", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "719", - "label": "1695352 (-) 170436", - "from": "489", - "to": "622", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "718", - "label": "1695352 (-) 1695374", - "from": "489", - "to": "501", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "717", - "label": "1695352 (-) 781057", - "from": "489", - "to": "547", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "716", - "label": "1695352 (-) 834570", - "from": "489", - "to": "447", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "715", - "label": "1695352 (-) 1695306", - "from": "489", - "to": "466", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "714", - "label": "1695352 (-) 1695367", - "from": "489", - "to": "495", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "713", - "label": "1695352 (-) 834827", - "from": "489", - "to": "555", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "712", - "label": "1695352 (-) 1695310", - "from": "489", - "to": "469", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "711", - "label": "1695352 (-) 781114", - "from": "489", - "to": "574", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "710", - "label": "1695352 (-) 791922", - "from": "489", - "to": "593", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "709", - "label": "299127 (-) 369394", - "from": "488", - "to": "539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "708", - "label": "327791 (-) 1949040", - "from": "487", - "to": "591", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "707", - "label": "1616491 (-) 1616479", - "from": "486", - "to": "479", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "706", - "label": "1489512 (-) 144608", - "from": "485", - "to": "528", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "705", - "label": "250984 (-) 392955", - "from": "484", - "to": "545", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "704", - "label": "189029 (-) 1390655", - "from": "483", - "to": "463", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "703", - "label": "760931 (-) 1695879", - "from": "482", - "to": "498", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "702", - "label": "760931 (-) 760778", - "from": "482", - "to": "625", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "701", - "label": "1695843 (-) 1695832", - "from": "481", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "700", - "label": "1695842 (-) 1695832", - "from": "480", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "699", - "label": "1616479 (-) 1616952", - "from": "479", - "to": "460", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "698", - "label": "971358 (-) 251144", - "from": "478", - "to": "550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "697", - "label": "971358 (-) 250984", - "from": "478", - "to": "484", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "696", - "label": "971358 (-) 251201", - "from": "478", - "to": "576", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "695", - "label": "841816 (-) 842097", - "from": "477", - "to": "592", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "694", - "label": "46171 (-) 703760", - "from": "476", - "to": "558", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "693", - "label": "964698 (-) 144608", - "from": "475", - "to": "528", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "692", - "label": "1695833 (-) 1695048", - "from": "474", - "to": "579", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "691", - "label": "1695833 (-) 835002", - "from": "474", - "to": "615", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "690", - "label": "1695833 (-) 1695310", - "from": "474", - "to": "469", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "689", - "label": "1695833 (-) 1695372", - "from": "474", - "to": "499", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "688", - "label": "1695833 (-) 354741", - "from": "474", - "to": "610", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "687", - "label": "1695833 (-) 1695367", - "from": "474", - "to": "495", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "686", - "label": "1695833 (-) 784286", - "from": "474", - "to": "608", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "685", - "label": "1695833 (-) 1695842", - "from": "474", - "to": "480", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "684", - "label": "1695833 (-) 842940", - "from": "474", - "to": "518", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "683", - "label": "1695833 (-) 791922", - "from": "474", - "to": "593", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "682", - "label": "1695833 (-) 834827", - "from": "474", - "to": "555", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "681", - "label": "1695833 (-) 1695843", - "from": "474", - "to": "481", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "680", - "label": "1695833 (-) 1695306", - "from": "474", - "to": "466", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "679", - "label": "1695833 (-) 834570", - "from": "474", - "to": "447", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "678", - "label": "1695833 (-) 779764", - "from": "474", - "to": "635", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "677", - "label": "1695833 (-) 170436", - "from": "474", - "to": "622", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "676", - "label": "1695832 (-) 298310", - "from": "473", - "to": "581", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "675", - "label": "1695832 (-) 299067", - "from": "473", - "to": "461", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "674", - "label": "1695832 (-) 330932", - "from": "473", - "to": "515", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "673", - "label": "1695832 (-) 299127", - "from": "473", - "to": "488", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "672", - "label": "703570 (-) 1410943", - "from": "472", - "to": "597", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "671", - "label": "1846864 (-) 214835", - "from": "471", - "to": "571", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "670", - "label": "975952 (-) 251144", - "from": "470", - "to": "550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "669", - "label": "975952 (-) 250984", - "from": "470", - "to": "484", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "668", - "label": "975952 (-) 251201", - "from": "470", - "to": "576", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "667", - "label": "1695310 (-) 1695353", - "from": "469", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "666", - "label": "1695310 (-) 1695832", - "from": "469", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "665", - "label": "378957 (-) 369394", - "from": "468", - "to": "539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "664", - "label": "1695307 (-) 1695353", - "from": "467", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "663", - "label": "1695306 (-) 1695832", - "from": "466", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "662", - "label": "1695306 (-) 1695353", - "from": "466", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "661", - "label": "293444 (-) 369394", - "from": "465", - "to": "539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "660", - "label": "2119743 (-) 254746", - "from": "464", - "to": "563", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "659", - "label": "1390655 (-) 327791", - "from": "463", - "to": "487", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "658", - "label": "759867 (-) 173043", - "from": "462", - "to": "634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "657", - "label": "299067 (-) 369394", - "from": "461", - "to": "539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "656", - "label": "1616952 (-) 1617094", - "from": "460", - "to": "519", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "655", - "label": "1684022 (-) 1683907", - "from": "459", - "to": "620", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "654", - "label": "1473583 (-) 1411783", - "from": "458", - "to": "520", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "653", - "label": "492077 (-) 1684283", - "from": "457", - "to": "573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "652", - "label": "289835 (-) 289823", - "from": "456", - "to": "454", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "651", - "label": "836645 (-) 192256", - "from": "455", - "to": "546", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "650", - "label": "289823 (-) 289822", - "from": "454", - "to": "453", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "649", - "label": "289822 (-) 94950", - "from": "453", - "to": "536", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "648", - "label": "1614875 (-) 173043", - "from": "452", - "to": "634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "647", - "label": "1614869 (-) 1614875", - "from": "451", - "to": "452", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "646", - "label": "1614864 (-) 1614875", - "from": "450", - "to": "452", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "645", - "label": "1614863 (-) 1614875", - "from": "449", - "to": "452", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "644", - "label": "492556 (-) 1684105", - "from": "448", - "to": "496", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "643", - "label": "492556 (-) 1682942", - "from": "448", - "to": "588", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "642", - "label": "492556 (-) 1684283", - "from": "448", - "to": "573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "641", - "label": "834570 (-) 1695832", - "from": "447", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "640", - "label": "834570 (-) 1695353", - "from": "447", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "639", - "label": "834570 (-) 1684105", - "from": "447", - "to": "496", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/metab2PTHLH_short_graphml_truncated.json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/metab2PTHLH_short_graphml_truncated.json deleted file mode 100644 index b44fccf09d..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/metab2PTHLH_short_graphml_truncated.json +++ /dev/null @@ -1,7436 +0,0 @@ -{ - "nodes": [ - { - "id": "638", - "label": "p-Y705-STAT3 [cytoso...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "637", - "label": "Equilibrative transp...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "636", - "label": "Thy [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "635", - "label": "AGM [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "634", - "label": "CoA-SH [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "633", - "label": "Phosphorylated heter...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "632", - "label": "oxaloacetate + gluta...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "631", - "label": "LCK [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "630", - "label": "ArgN-GCG(98-127) [ex...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "629", - "label": "2OG [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "628", - "label": "mature GLP-1 [extrac...", - "databaseLabel": "DefinedSet", - "font": { - "color": "#d84a6d" - }, - "color": { - "background": "#FFFFFF", - "border": "#d84a6d", - "hover": { - "background": "#FFFFFF", - "border": "#d84a6d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#d84a6d" - } - } - }, - { - "id": "627", - "label": "GLP-1 (7-37) [extrac...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "626", - "label": "p-Y705-STAT3 dimer [...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "625", - "label": "OCTN2 / SLC22A5 tran...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "624", - "label": "Exchange of alpha-ke...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "623", - "label": "malate [mitochondria...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "622", - "label": "Cho [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "621", - "label": "Phosphorylated STAT3...", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "620", - "label": "SLC29A3 transports n...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "619", - "label": "CAR [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "618", - "label": "CAR translocates fro...", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "617", - "label": "Concentrative transp...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "616", - "label": "Gua-Rib [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "615", - "label": "ADR [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "614", - "label": "FGFR1OP-FGFR1 phosph...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "613", - "label": "BSG:MCTs cotransport...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "612", - "label": "Creatine transport a...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "611", - "label": "CRET [extracellular ...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "610", - "label": "5HT [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "609", - "label": "ADR [clathrin-coated...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "608", - "label": "Hist [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "607", - "label": "Degradation of CD4", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "606", - "label": "PLCG1 [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "605", - "label": "ligands of SLC28A3 &...", - "databaseLabel": "DefinedSet", - "font": { - "color": "#d84a6d" - }, - "color": { - "background": "#FFFFFF", - "border": "#d84a6d", - "hover": { - "background": "#FFFFFF", - "border": "#d84a6d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#d84a6d" - } - } - }, - { - "id": "604", - "label": "Nef mediated disrupt...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "603", - "label": "AP-2 Complex [cytoso...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "602", - "label": "Concentrative transp...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "601", - "label": "p-Y701-STAT1 [cytoso...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "600", - "label": "WNT5A:FZD4 is endocy...", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "599", - "label": "STAT1 and STAT3 dime...", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "598", - "label": "Ade-Rib [extracellul...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "597", - "label": "SRC autophosphorylat...", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "596", - "label": "Equilibrative transp...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "595", - "label": "OAT2 and OAT4 mediat...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "594", - "label": "STAT1 [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "593", - "label": "MNA [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "592", - "label": "Pcr [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "591", - "label": "Glucagon-like Peptid...", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "590", - "label": "CRET [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "589", - "label": "p-Y641-STAT6 [cytoso...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "588", - "label": "Equilibrative transp...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "587", - "label": "Dissociation of para...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "586", - "label": "p-Y705-STAT3 dimer, ...", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "585", - "label": "Exchange of palmitoy...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "584", - "label": "CAR [mitochondrial i...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "583", - "label": "JAK1 [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "582", - "label": "ADR [extracellular r...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "581", - "label": "NAd [extracellular r...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "580", - "label": "CCA [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "579", - "label": "CIM [cytosol]", - "databaseLabel": "ChemicalDrug", - "font": { - "color": "#4cfd61" - }, - "color": { - "background": "#FFFFFF", - "border": "#4cfd61", - "hover": { - "background": "#FFFFFF", - "border": "#4cfd61" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4cfd61" - } - } - }, - { - "id": "578", - "label": "Cyt [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "577", - "label": "ligands of SLC29A2 [...", - "databaseLabel": "DefinedSet", - "font": { - "color": "#d84a6d" - }, - "color": { - "background": "#FFFFFF", - "border": "#d84a6d", - "hover": { - "background": "#FFFFFF", - "border": "#d84a6d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#d84a6d" - } - } - }, - { - "id": "576", - "label": "p-T,Y MAPKs [cytosol...", - "databaseLabel": "DefinedSet", - "font": { - "color": "#d84a6d" - }, - "color": { - "background": "#FFFFFF", - "border": "#d84a6d", - "hover": { - "background": "#FFFFFF", - "border": "#d84a6d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#d84a6d" - } - } - }, - { - "id": "575", - "label": "p-Y701-STAT1, p-Y705...", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "574", - "label": "SPM [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "573", - "label": "Equilibrative transp...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "572", - "label": "Equilibrative transp...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "571", - "label": "CoA-SH [peroxisomal ...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "570", - "label": "4,8-dimethylnonanoyl...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "569", - "label": "Ura [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "568", - "label": "Activated NTRK3 stim...", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "567", - "label": "MAL [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "566", - "label": "PIP3:BTK:G beta-gamm...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "565", - "label": "IgG:Leishmania surfa...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "564", - "label": "Release of PLCG from...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "563", - "label": "ARRB1 [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "562", - "label": "propionyl-CoA + carn...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "561", - "label": "ADR [extracellular r...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "560", - "label": "ligands of SLC29A4 [...", - "databaseLabel": "DefinedSet", - "font": { - "color": "#d84a6d" - }, - "color": { - "background": "#FFFFFF", - "border": "#d84a6d", - "hover": { - "background": "#FFFFFF", - "border": "#d84a6d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#d84a6d" - } - } - }, - { - "id": "559", - "label": "malate [mitochondria...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "558", - "label": "Beta-catenin is rele...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "557", - "label": "Cyt-Rib [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "556", - "label": "Dissociation of mode...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "555", - "label": "NAd [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "554", - "label": "MAL [mitochondrial m...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "553", - "label": "Thy-dRib [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "552", - "label": "Ura-Rib [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "551", - "label": "Expression of STAT3-...", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "550", - "label": "p-T202,Y204-MAPK3 [c...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "549", - "label": "ACLY tetramer transf...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "548", - "label": "2-oxoglutarate [mito...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "547", - "label": "SPN [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "546", - "label": "2OG [mitochondrial m...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "545", - "label": "Cytosolic DUSPs deph...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "544", - "label": "Dissociation of clat...", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "543", - "label": "Hyp [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "542", - "label": "PTHLH [extracellular...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "541", - "label": "CAR [peroxisomal mat...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "540", - "label": "LACT [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "539", - "label": "The Ligand:GPCR:Gs c...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "538", - "label": "MyrG-p-Y419-SRC [pla...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "537", - "label": "2OG [extracellular r...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "536", - "label": "PI(3,4,5)P3 [plasma ...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "535", - "label": "Ino [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "534", - "label": "OA [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "533", - "label": "DNAJC6 [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "532", - "label": "The Ligand:GPCR:Gi c...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "531", - "label": "trans-Golgi Network ...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "530", - "label": "Cholate is transloca...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "529", - "label": "Ade [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "528", - "label": "p-4Y-PLCG1 [plasma m...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "527", - "label": "OAT1-3 transport org...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "526", - "label": "Phosphorylated heter...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "525", - "label": "Dissociation of RAS:...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "524", - "label": "Dissociation of RAS:...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "523", - "label": "Ura-Rib [extracellul...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "522", - "label": "creatine + ATP => ph...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "521", - "label": "Cytosolic cholate an...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "520", - "label": "myristoylated nef [c...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "519", - "label": "cholate [peroxisomal...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "518", - "label": "CREAT [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "517", - "label": "phosphocreatine + H2...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "516", - "label": "CAR [mitochondrial m...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "515", - "label": "DA [extracellular re...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "514", - "label": "Regulation of protei...", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "513", - "label": "p-Y-STATs dissociate", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "512", - "label": "p-Y705-STAT3 dimer t...", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "511", - "label": "PYR [mitochondrial m...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "510", - "label": "Phosphorylation of C...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "509", - "label": "SLC22A12 exchanges e...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "508", - "label": "ARRB2 [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "507", - "label": "LACT [extracellular ...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "506", - "label": "D-sorbitol [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "505", - "label": "ME2:Mg2+ tetramer ox...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "504", - "label": "SORD oxidizes D-sorb...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "503", - "label": "Dissociation of high...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "502", - "label": "p-Y-STATs translocat...", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "501", - "label": "QN [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "500", - "label": "MAPK3 [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "499", - "label": "4-Di-2-ASP [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "498", - "label": "SLC22A4, 5,15,16 cot...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "497", - "label": "Phosphorylation and ...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "496", - "label": "Equilibrative transp...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "495", - "label": "MTF [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "494", - "label": "Concentrative transp...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "493", - "label": "OCT1 substrates [cyt...", - "databaseLabel": "DefinedSet", - "font": { - "color": "#d84a6d" - }, - "color": { - "background": "#FFFFFF", - "border": "#d84a6d", - "hover": { - "background": "#FFFFFF", - "border": "#d84a6d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#d84a6d" - } - } - }, - { - "id": "492", - "label": "Fumarate + H2O <=> (...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "491", - "label": "OCT1 transports orga...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "490", - "label": "FUMA [mitochondrial ...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "489", - "label": "OCT1 transports orga...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "488", - "label": "Hist [extracellular ...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "487", - "label": "Glc [extracellular r...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "486", - "label": "Thiolysis of 3alpha,...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "485", - "label": "Phosphorylated heter...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "484", - "label": "p-T185,Y187-MAPK1 [c...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "483", - "label": "Fru [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "482", - "label": "CAR [extracellular r...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "481", - "label": "Oxaliplatin [cytosol...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "480", - "label": "OCT2 substrates [cyt...", - "databaseLabel": "DefinedSet", - "font": { - "color": "#d84a6d" - }, - "color": { - "background": "#FFFFFF", - "border": "#d84a6d", - "hover": { - "background": "#FFFFFF", - "border": "#d84a6d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#d84a6d" - } - } - }, - { - "id": "479", - "label": "choloyl-CoA [peroxis...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "478", - "label": "Dissociation of onco...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "477", - "label": "creatine + ATP => ph...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "476", - "label": "PP2A [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "475", - "label": "PLCG1 phosphorylatio...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "474", - "label": "OCT2 mediates tubula...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "473", - "label": "OCT2 mediates tubula...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "472", - "label": "CTNNB1 [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "471", - "label": "acetyl-CoA + carniti...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "470", - "label": "Dissociation of BRAF...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "469", - "label": "MPP [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "468", - "label": "POMC(138-176) [extra...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "467", - "label": "Gu [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "466", - "label": "TMAM [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "465", - "label": "G-protein beta-gamma...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "464", - "label": "trans-Golgi Network ...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "463", - "label": "SLC2A2 tetramer tran...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "462", - "label": "CPT1A,B transfers PA...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "461", - "label": "5HT [extracellular r...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "460", - "label": "Hydrolysis of choloy...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "459", - "label": "Ura-Rib [lysosomal l...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "458", - "label": "Degradation of CD8", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#94ba14" - }, - "color": { - "background": "#FFFFFF", - "border": "#94ba14", - "hover": { - "background": "#FFFFFF", - "border": "#94ba14" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#94ba14" - } - } - }, - { - "id": "457", - "label": "Gua [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "456", - "label": "Phosphorylation and ...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "455", - "label": "PXLP-K341-GPT2 trans...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "454", - "label": "clustered IgG-Ag:p-F...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "453", - "label": "Release of PLCG from...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "452", - "label": "Cytosolic chenodeoxy...", - "databaseLabel": "ReactionLikeEvent", - "font": { - "color": "#f66c28" - }, - "color": { - "background": "#FFFFFF", - "border": "#f66c28", - "hover": { - "background": "#FFFFFF", - "border": "#f66c28" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f66c28" - } - } - }, - { - "id": "451", - "label": "chenodeoxycholoyl-Co...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "450", - "label": "choloyl-CoA [cytosol...", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "449", - "label": "choloyl-CoA; chenode...", - "databaseLabel": "DefinedSet", - "font": { - "color": "#d84a6d" - }, - "color": { - "background": "#FFFFFF", - "border": "#d84a6d", - "hover": { - "background": "#FFFFFF", - "border": "#d84a6d" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#d84a6d" - } - } - }, - { - "id": "448", - "label": "Ade-Rib [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - }, - { - "id": "447", - "label": "DA [cytosol]", - "databaseLabel": "PhysicalEntity", - "font": { - "color": "#c73287" - }, - "color": { - "background": "#FFFFFF", - "border": "#c73287", - "hover": { - "background": "#FFFFFF", - "border": "#c73287" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#c73287" - } - } - } - ], - "edges": [ - { - "id": "997", - "label": "570878 (-) 587203", - "from": "638", - "to": "621", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "996", - "label": "570878 (-) 627554", - "from": "638", - "to": "586", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "995", - "label": "570878 (-) 935811", - "from": "638", - "to": "599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "994", - "label": "570878 (-) 1806998", - "from": "638", - "to": "502", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "993", - "label": "570878 (-) 1802928", - "from": "638", - "to": "512", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "992", - "label": "1682941 (-) 492262", - "from": "637", - "to": "535", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "991", - "label": "1682941 (-) 504076", - "from": "637", - "to": "553", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "990", - "label": "1682941 (-) 492556", - "from": "637", - "to": "448", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "989", - "label": "1682941 (-) 1683355", - "from": "637", - "to": "605", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "988", - "label": "1682941 (-) 504077", - "from": "637", - "to": "557", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "987", - "label": "1682941 (-) 495549", - "from": "637", - "to": "616", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "986", - "label": "1682941 (-) 504075", - "from": "637", - "to": "552", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "985", - "label": "503799 (-) 1684283", - "from": "636", - "to": "573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "984", - "label": "779764 (-) 1695832", - "from": "635", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "983", - "label": "173043 (-) 1835271", - "from": "634", - "to": "549", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "982", - "label": "1488882 (-) 144608", - "from": "633", - "to": "528", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "981", - "label": "191983 (-) 191969", - "from": "632", - "to": "629", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "980", - "label": "138223 (-) 672431", - "from": "631", - "to": "510", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "979", - "label": "374754 (-) 369394", - "from": "630", - "to": "539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "978", - "label": "191969 (-) 1695098", - "from": "629", - "to": "595", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "977", - "label": "191969 (-) 1694430", - "from": "629", - "to": "527", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "976", - "label": "374742 (-) 369394", - "from": "628", - "to": "539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "975", - "label": "374743 (-) 369394", - "from": "627", - "to": "539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "974", - "label": "441814 (-) 1806603", - "from": "626", - "to": "551", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "973", - "label": "760778 (-) 760768", - "from": "625", - "to": "619", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "972", - "label": "209865 (-) 191969", - "from": "624", - "to": "629", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "971", - "label": "209864 (-) 192256", - "from": "623", - "to": "546", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "970", - "label": "209864 (-) 194852", - "from": "623", - "to": "567", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "969", - "label": "170436 (-) 1695353", - "from": "622", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "968", - "label": "170436 (-) 1695832", - "from": "622", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "967", - "label": "587203 (-) 441814", - "from": "621", - "to": "626", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "966", - "label": "1683907 (-) 492556", - "from": "620", - "to": "448", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "965", - "label": "1683907 (-) 504076", - "from": "620", - "to": "553", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "964", - "label": "1683907 (-) 504077", - "from": "620", - "to": "557", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "963", - "label": "1683907 (-) 495549", - "from": "620", - "to": "616", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "962", - "label": "1683907 (-) 496865", - "from": "620", - "to": "529", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "961", - "label": "1683907 (-) 504075", - "from": "620", - "to": "552", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "960", - "label": "1683907 (-) 492262", - "from": "620", - "to": "535", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "959", - "label": "760768 (-) 760767", - "from": "619", - "to": "618", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "958", - "label": "760767 (-) 759647", - "from": "618", - "to": "584", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "957", - "label": "1683390 (-) 492556", - "from": "617", - "to": "448", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "956", - "label": "1683390 (-) 492262", - "from": "617", - "to": "535", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "955", - "label": "1683390 (-) 504075", - "from": "617", - "to": "552", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "954", - "label": "1683390 (-) 495549", - "from": "617", - "to": "616", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "953", - "label": "495549 (-) 1684283", - "from": "616", - "to": "573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "952", - "label": "495549 (-) 1682942", - "from": "616", - "to": "588", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "951", - "label": "835002 (-) 1684105", - "from": "615", - "to": "496", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "950", - "label": "835002 (-) 1695832", - "from": "615", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "949", - "label": "835002 (-) 1695353", - "from": "615", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "948", - "label": "1482169 (-) 570878", - "from": "614", - "to": "638", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "947", - "label": "1482169 (-) 935814", - "from": "614", - "to": "601", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "946", - "label": "1863096 (-) 330402", - "from": "613", - "to": "507", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "945", - "label": "842166 (-) 842092", - "from": "612", - "to": "590", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "944", - "label": "842165 (-) 842166", - "from": "611", - "to": "612", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "943", - "label": "354741 (-) 1695832", - "from": "610", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "942", - "label": "354741 (-) 1684105", - "from": "610", - "to": "496", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "941", - "label": "2131375 (-) 2131705", - "from": "609", - "to": "544", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "940", - "label": "784286 (-) 1695832", - "from": "608", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "939", - "label": "784286 (-) 1695353", - "from": "608", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "938", - "label": "1473437 (-) 1411783", - "from": "607", - "to": "520", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "937", - "label": "149916 (-) 289835", - "from": "606", - "to": "456", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "936", - "label": "149916 (-) 964698", - "from": "606", - "to": "475", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "935", - "label": "149916 (-) 1489627", - "from": "606", - "to": "526", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "934", - "label": "149916 (-) 1488882", - "from": "606", - "to": "633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "933", - "label": "149916 (-) 157322", - "from": "606", - "to": "497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "932", - "label": "149916 (-) 1489512", - "from": "606", - "to": "485", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "931", - "label": "1683355 (-) 1682942", - "from": "605", - "to": "588", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "930", - "label": "1473433 (-) 138223", - "from": "604", - "to": "631", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "929", - "label": "698257 (-) 1473583", - "from": "603", - "to": "458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "928", - "label": "698257 (-) 698244", - "from": "603", - "to": "600", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "927", - "label": "698257 (-) 1473437", - "from": "603", - "to": "607", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "926", - "label": "1684368 (-) 504077", - "from": "602", - "to": "557", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "925", - "label": "1684368 (-) 504076", - "from": "602", - "to": "553", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "924", - "label": "1684368 (-) 492556", - "from": "602", - "to": "448", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "923", - "label": "1684368 (-) 504075", - "from": "602", - "to": "552", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "922", - "label": "935814 (-) 1806998", - "from": "601", - "to": "502", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "921", - "label": "935814 (-) 935811", - "from": "601", - "to": "599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "920", - "label": "698244 (-) 255142", - "from": "600", - "to": "508", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "919", - "label": "935811 (-) 441814", - "from": "599", - "to": "626", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "918", - "label": "330112 (-) 369394", - "from": "598", - "to": "539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "917", - "label": "1410943 (-) 103150", - "from": "597", - "to": "538", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "916", - "label": "1684347 (-) 834827", - "from": "596", - "to": "555", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "915", - "label": "1684347 (-) 834570", - "from": "596", - "to": "447", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "914", - "label": "1684347 (-) 492556", - "from": "596", - "to": "448", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "913", - "label": "1684347 (-) 835002", - "from": "596", - "to": "615", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "912", - "label": "1684347 (-) 1684246", - "from": "596", - "to": "560", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "911", - "label": "1684347 (-) 354741", - "from": "596", - "to": "610", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "910", - "label": "1695098 (-) 330475", - "from": "595", - "to": "537", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "909", - "label": "570743 (-) 1482169", - "from": "594", - "to": "614", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "908", - "label": "791922 (-) 1695832", - "from": "593", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "907", - "label": "791922 (-) 1695353", - "from": "593", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "906", - "label": "842097 (-) 842939", - "from": "592", - "to": "517", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "905", - "label": "1949040 (-) 374742", - "from": "591", - "to": "628", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "904", - "label": "1949040 (-) 374743", - "from": "591", - "to": "627", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "903", - "label": "1949040 (-) 374754", - "from": "591", - "to": "630", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "902", - "label": "842092 (-) 841816", - "from": "590", - "to": "477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "901", - "label": "842092 (-) 842952", - "from": "590", - "to": "522", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "900", - "label": "627557 (-) 627554", - "from": "589", - "to": "586", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "899", - "label": "627557 (-) 1806998", - "from": "589", - "to": "502", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "898", - "label": "1682942 (-) 330112", - "from": "588", - "to": "598", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "897", - "label": "973669 (-) 251201", - "from": "587", - "to": "576", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "896", - "label": "973669 (-) 250984", - "from": "587", - "to": "484", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "895", - "label": "973669 (-) 251144", - "from": "587", - "to": "550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "894", - "label": "627554 (-) 441814", - "from": "586", - "to": "626", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "893", - "label": "759648 (-) 759647", - "from": "585", - "to": "584", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "892", - "label": "759647 (-) 759867", - "from": "584", - "to": "462", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "891", - "label": "286028 (-) 1046846", - "from": "583", - "to": "575", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "890", - "label": "286028 (-) 1807026", - "from": "583", - "to": "513", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "889", - "label": "298315 (-) 369394", - "from": "582", - "to": "539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "888", - "label": "298310 (-) 369394", - "from": "581", - "to": "539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "887", - "label": "854345 (-) 1615048", - "from": "580", - "to": "521", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "886", - "label": "1695048 (-) 1695832", - "from": "579", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "885", - "label": "1684295 (-) 1684283", - "from": "578", - "to": "573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "884", - "label": "1684294 (-) 1684283", - "from": "577", - "to": "573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "883", - "label": "251201 (-) 392955", - "from": "576", - "to": "545", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "882", - "label": "1046846 (-) 570878", - "from": "575", - "to": "638", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "881", - "label": "781114 (-) 1695353", - "from": "574", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "880", - "label": "1684283 (-) 330112", - "from": "573", - "to": "598", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "879", - "label": "1684282 (-) 504077", - "from": "572", - "to": "557", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "878", - "label": "1684282 (-) 503799", - "from": "572", - "to": "636", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "877", - "label": "1684282 (-) 492279", - "from": "572", - "to": "543", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "876", - "label": "1684282 (-) 1684294", - "from": "572", - "to": "577", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "875", - "label": "1684282 (-) 496865", - "from": "572", - "to": "529", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "874", - "label": "1684282 (-) 492262", - "from": "572", - "to": "535", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "873", - "label": "1684282 (-) 504075", - "from": "572", - "to": "552", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "872", - "label": "1684282 (-) 503591", - "from": "572", - "to": "569", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "871", - "label": "1684282 (-) 492556", - "from": "572", - "to": "448", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "870", - "label": "1684282 (-) 495549", - "from": "572", - "to": "616", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "869", - "label": "1684282 (-) 504076", - "from": "572", - "to": "553", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "868", - "label": "1684282 (-) 1684295", - "from": "572", - "to": "578", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "867", - "label": "1684282 (-) 492077", - "from": "572", - "to": "457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "866", - "label": "214835 (-) 1616491", - "from": "571", - "to": "486", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "865", - "label": "1847079 (-) 214835", - "from": "570", - "to": "571", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "864", - "label": "503591 (-) 1684283", - "from": "569", - "to": "573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "863", - "label": "1049381 (-) 94950", - "from": "568", - "to": "536", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "862", - "label": "194852 (-) 209865", - "from": "567", - "to": "624", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "861", - "label": "1522976 (-) 293444", - "from": "566", - "to": "465", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "860", - "label": "151326 (-) 151325", - "from": "565", - "to": "564", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "859", - "label": "151325 (-) 94950", - "from": "564", - "to": "536", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "858", - "label": "254746 (-) 973669", - "from": "563", - "to": "587", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "857", - "label": "254746 (-) 972439", - "from": "563", - "to": "503", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "856", - "label": "254746 (-) 974036", - "from": "563", - "to": "525", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "855", - "label": "254746 (-) 973072", - "from": "563", - "to": "556", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "854", - "label": "254746 (-) 252110", - "from": "563", - "to": "524", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "853", - "label": "254746 (-) 971358", - "from": "563", - "to": "478", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "852", - "label": "254746 (-) 975952", - "from": "563", - "to": "470", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "851", - "label": "1847064 (-) 214835", - "from": "562", - "to": "571", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "850", - "label": "1684248 (-) 1695833", - "from": "561", - "to": "474", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "849", - "label": "1684248 (-) 1695352", - "from": "561", - "to": "489", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "848", - "label": "1684248 (-) 1684347", - "from": "561", - "to": "596", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "847", - "label": "1684246 (-) 1684105", - "from": "560", - "to": "496", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "846", - "label": "195341 (-) 194852", - "from": "559", - "to": "567", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "845", - "label": "703760 (-) 703570", - "from": "558", - "to": "472", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "844", - "label": "504077 (-) 1684283", - "from": "557", - "to": "573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "843", - "label": "504077 (-) 1682942", - "from": "557", - "to": "588", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "842", - "label": "973072 (-) 251144", - "from": "556", - "to": "550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "841", - "label": "973072 (-) 251201", - "from": "556", - "to": "576", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "840", - "label": "973072 (-) 250984", - "from": "556", - "to": "484", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "839", - "label": "834827 (-) 1695353", - "from": "555", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "838", - "label": "834827 (-) 1695832", - "from": "555", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "837", - "label": "834827 (-) 1684105", - "from": "555", - "to": "496", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "836", - "label": "195340 (-) 195341", - "from": "554", - "to": "559", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "835", - "label": "195340 (-) 209864", - "from": "554", - "to": "623", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "834", - "label": "504076 (-) 1684283", - "from": "553", - "to": "573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "833", - "label": "504076 (-) 1682942", - "from": "553", - "to": "588", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "832", - "label": "504075 (-) 1684283", - "from": "552", - "to": "573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "831", - "label": "504075 (-) 1682942", - "from": "552", - "to": "588", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "830", - "label": "1806603 (-) 378957", - "from": "551", - "to": "468", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "829", - "label": "251144 (-) 392955", - "from": "550", - "to": "545", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "828", - "label": "1835271 (-) 191719", - "from": "549", - "to": "534", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "827", - "label": "192260 (-) 191969", - "from": "548", - "to": "629", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "826", - "label": "781057 (-) 1695353", - "from": "547", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "825", - "label": "192256 (-) 192260", - "from": "546", - "to": "548", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "824", - "label": "192256 (-) 209865", - "from": "546", - "to": "624", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "823", - "label": "392955 (-) 258188", - "from": "545", - "to": "500", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "822", - "label": "2131705 (-) 698257", - "from": "544", - "to": "603", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "821", - "label": "2131705 (-) 2117862", - "from": "544", - "to": "533", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "820", - "label": "492279 (-) 1684283", - "from": "543", - "to": "573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "819", - "label": "1847029 (-) 1847064", - "from": "541", - "to": "562", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "818", - "label": "1847029 (-) 1847079", - "from": "541", - "to": "570", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "817", - "label": "1847029 (-) 1846864", - "from": "541", - "to": "471", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "816", - "label": "194803 (-) 1863096", - "from": "540", - "to": "613", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "815", - "label": "194803 (-) 1690278", - "from": "540", - "to": "509", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "814", - "label": "369394 (-) 373494", - "from": "539", - "to": "542", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "813", - "label": "103150 (-) 1049381", - "from": "538", - "to": "568", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "812", - "label": "330475 (-) 331494", - "from": "537", - "to": "532", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "811", - "label": "94950 (-) 1522976", - "from": "536", - "to": "566", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "810", - "label": "492262 (-) 1682942", - "from": "535", - "to": "588", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "809", - "label": "492262 (-) 1684283", - "from": "535", - "to": "573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "808", - "label": "191719 (-) 191983", - "from": "534", - "to": "632", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "807", - "label": "2117862 (-) 2117860", - "from": "533", - "to": "531", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "806", - "label": "2117862 (-) 2119743", - "from": "533", - "to": "464", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "805", - "label": "331494 (-) 293444", - "from": "532", - "to": "465", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "804", - "label": "2117860 (-) 254746", - "from": "531", - "to": "563", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "803", - "label": "1617124 (-) 854345", - "from": "530", - "to": "580", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "802", - "label": "496865 (-) 1684283", - "from": "529", - "to": "573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "801", - "label": "144608 (-) 151325", - "from": "528", - "to": "564", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "800", - "label": "144608 (-) 289822", - "from": "528", - "to": "453", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "799", - "label": "1694430 (-) 330475", - "from": "527", - "to": "537", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "798", - "label": "1694430 (-) 1695048", - "from": "527", - "to": "579", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "797", - "label": "1489627 (-) 144608", - "from": "526", - "to": "528", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "796", - "label": "974036 (-) 251201", - "from": "525", - "to": "576", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "795", - "label": "974036 (-) 250984", - "from": "525", - "to": "484", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "794", - "label": "974036 (-) 251144", - "from": "525", - "to": "550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "793", - "label": "252110 (-) 251144", - "from": "524", - "to": "550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "792", - "label": "252110 (-) 251201", - "from": "524", - "to": "576", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "791", - "label": "252110 (-) 250984", - "from": "524", - "to": "484", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "790", - "label": "504010 (-) 1683390", - "from": "523", - "to": "617", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "789", - "label": "504010 (-) 1684282", - "from": "523", - "to": "572", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "788", - "label": "504010 (-) 1684368", - "from": "523", - "to": "602", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "787", - "label": "504010 (-) 1683591", - "from": "523", - "to": "494", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "786", - "label": "504010 (-) 1682941", - "from": "523", - "to": "637", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "785", - "label": "842952 (-) 842097", - "from": "522", - "to": "592", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "784", - "label": "1615048 (-) 1614864", - "from": "521", - "to": "450", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "783", - "label": "1615048 (-) 1614869", - "from": "521", - "to": "451", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "782", - "label": "1615048 (-) 1614863", - "from": "521", - "to": "449", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "781", - "label": "1411783 (-) 1473433", - "from": "520", - "to": "604", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "780", - "label": "1617094 (-) 1617124", - "from": "519", - "to": "530", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "779", - "label": "842940 (-) 1695832", - "from": "518", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "778", - "label": "842939 (-) 842940", - "from": "517", - "to": "518", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "777", - "label": "759479 (-) 759648", - "from": "516", - "to": "585", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "776", - "label": "330932 (-) 369394", - "from": "515", - "to": "539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "775", - "label": "1793199 (-) 149916", - "from": "514", - "to": "606", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "774", - "label": "1793199 (-) 286028", - "from": "514", - "to": "583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "773", - "label": "1793199 (-) 570743", - "from": "514", - "to": "594", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "772", - "label": "1807026 (-) 935814", - "from": "513", - "to": "601", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "771", - "label": "1807026 (-) 570878", - "from": "513", - "to": "638", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "770", - "label": "1807026 (-) 627557", - "from": "513", - "to": "589", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "769", - "label": "1802928 (-) 441814", - "from": "512", - "to": "626", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "768", - "label": "192688 (-) 836645", - "from": "511", - "to": "455", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "767", - "label": "672431 (-) 46171", - "from": "510", - "to": "476", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "766", - "label": "1690278 (-) 330402", - "from": "509", - "to": "507", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "765", - "label": "255142 (-) 973669", - "from": "508", - "to": "587", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "764", - "label": "255142 (-) 975952", - "from": "508", - "to": "470", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "763", - "label": "255142 (-) 252110", - "from": "508", - "to": "524", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "762", - "label": "255142 (-) 974036", - "from": "508", - "to": "525", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "761", - "label": "255142 (-) 973072", - "from": "508", - "to": "556", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "760", - "label": "255142 (-) 971358", - "from": "508", - "to": "478", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "759", - "label": "255142 (-) 972439", - "from": "508", - "to": "503", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "758", - "label": "330402 (-) 331494", - "from": "507", - "to": "532", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "757", - "label": "917666 (-) 917658", - "from": "506", - "to": "504", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "756", - "label": "1861787 (-) 192688", - "from": "505", - "to": "511", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "755", - "label": "917658 (-) 189029", - "from": "504", - "to": "483", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "754", - "label": "972439 (-) 251201", - "from": "503", - "to": "576", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "753", - "label": "972439 (-) 250984", - "from": "503", - "to": "484", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "752", - "label": "972439 (-) 251144", - "from": "503", - "to": "550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "751", - "label": "1806998 (-) 441814", - "from": "502", - "to": "626", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "750", - "label": "1695374 (-) 1695353", - "from": "501", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "749", - "label": "258188 (-) 1793199", - "from": "500", - "to": "514", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "748", - "label": "1695372 (-) 1695832", - "from": "499", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "747", - "label": "1695372 (-) 1695353", - "from": "499", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "746", - "label": "1695879 (-) 760768", - "from": "498", - "to": "619", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "745", - "label": "157322 (-) 151326", - "from": "497", - "to": "565", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "744", - "label": "1684105 (-) 330112", - "from": "496", - "to": "598", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "743", - "label": "1684105 (-) 299067", - "from": "496", - "to": "461", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "742", - "label": "1684105 (-) 298310", - "from": "496", - "to": "581", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "741", - "label": "1684105 (-) 330932", - "from": "496", - "to": "515", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "740", - "label": "1695367 (-) 1695353", - "from": "495", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "739", - "label": "1695367 (-) 1695832", - "from": "495", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "738", - "label": "1683591 (-) 1683355", - "from": "494", - "to": "605", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "737", - "label": "1683591 (-) 495549", - "from": "494", - "to": "616", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "736", - "label": "1683591 (-) 492262", - "from": "494", - "to": "535", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "735", - "label": "1683591 (-) 504075", - "from": "494", - "to": "552", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "734", - "label": "1683591 (-) 504076", - "from": "494", - "to": "553", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "733", - "label": "1683591 (-) 492556", - "from": "494", - "to": "448", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "732", - "label": "1683591 (-) 504077", - "from": "494", - "to": "557", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "731", - "label": "1695366 (-) 1695353", - "from": "493", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "730", - "label": "195710 (-) 195340", - "from": "492", - "to": "554", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "729", - "label": "1695353 (-) 330932", - "from": "491", - "to": "515", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "728", - "label": "1695353 (-) 298310", - "from": "491", - "to": "581", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "727", - "label": "1695353 (-) 299127", - "from": "491", - "to": "488", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "726", - "label": "195705 (-) 1861787", - "from": "490", - "to": "505", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "725", - "label": "195705 (-) 195710", - "from": "490", - "to": "492", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "724", - "label": "1695352 (-) 1695372", - "from": "489", - "to": "499", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "723", - "label": "1695352 (-) 784286", - "from": "489", - "to": "608", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "722", - "label": "1695352 (-) 1695307", - "from": "489", - "to": "467", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "721", - "label": "1695352 (-) 1695366", - "from": "489", - "to": "493", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "720", - "label": "1695352 (-) 835002", - "from": "489", - "to": "615", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "719", - "label": "1695352 (-) 170436", - "from": "489", - "to": "622", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "718", - "label": "1695352 (-) 1695374", - "from": "489", - "to": "501", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "717", - "label": "1695352 (-) 781057", - "from": "489", - "to": "547", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "716", - "label": "1695352 (-) 834570", - "from": "489", - "to": "447", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "715", - "label": "1695352 (-) 1695306", - "from": "489", - "to": "466", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "714", - "label": "1695352 (-) 1695367", - "from": "489", - "to": "495", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "713", - "label": "1695352 (-) 834827", - "from": "489", - "to": "555", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "712", - "label": "1695352 (-) 1695310", - "from": "489", - "to": "469", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "711", - "label": "1695352 (-) 781114", - "from": "489", - "to": "574", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "710", - "label": "1695352 (-) 791922", - "from": "489", - "to": "593", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "709", - "label": "299127 (-) 369394", - "from": "488", - "to": "539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "708", - "label": "327791 (-) 1949040", - "from": "487", - "to": "591", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "707", - "label": "1616491 (-) 1616479", - "from": "486", - "to": "479", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "706", - "label": "1489512 (-) 144608", - "from": "485", - "to": "528", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "705", - "label": "250984 (-) 392955", - "from": "484", - "to": "545", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "704", - "label": "189029 (-) 1390655", - "from": "483", - "to": "463", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "703", - "label": "760931 (-) 1695879", - "from": "482", - "to": "498", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "702", - "label": "760931 (-) 760778", - "from": "482", - "to": "625", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "701", - "label": "1695843 (-) 1695832", - "from": "481", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "700", - "label": "1695842 (-) 1695832", - "from": "480", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "699", - "label": "1616479 (-) 1616952", - "from": "479", - "to": "460", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "698", - "label": "971358 (-) 251144", - "from": "478", - "to": "550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "697", - "label": "971358 (-) 250984", - "from": "478", - "to": "484", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "696", - "label": "971358 (-) 251201", - "from": "478", - "to": "576", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "695", - "label": "841816 (-) 842097", - "from": "477", - "to": "592", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "694", - "label": "46171 (-) 703760", - "from": "476", - "to": "558", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "693", - "label": "964698 (-) 144608", - "from": "475", - "to": "528", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "692", - "label": "1695833 (-) 1695048", - "from": "474", - "to": "579", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "691", - "label": "1695833 (-) 835002", - "from": "474", - "to": "615", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "690", - "label": "1695833 (-) 1695310", - "from": "474", - "to": "469", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "689", - "label": "1695833 (-) 1695372", - "from": "474", - "to": "499", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "688", - "label": "1695833 (-) 354741", - "from": "474", - "to": "610", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "687", - "label": "1695833 (-) 1695367", - "from": "474", - "to": "495", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "686", - "label": "1695833 (-) 784286", - "from": "474", - "to": "608", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "685", - "label": "1695833 (-) 1695842", - "from": "474", - "to": "480", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "684", - "label": "1695833 (-) 842940", - "from": "474", - "to": "518", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "683", - "label": "1695833 (-) 791922", - "from": "474", - "to": "593", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "682", - "label": "1695833 (-) 834827", - "from": "474", - "to": "555", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "681", - "label": "1695833 (-) 1695843", - "from": "474", - "to": "481", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "680", - "label": "1695833 (-) 1695306", - "from": "474", - "to": "466", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "679", - "label": "1695833 (-) 834570", - "from": "474", - "to": "447", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "678", - "label": "1695833 (-) 779764", - "from": "474", - "to": "635", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "677", - "label": "1695833 (-) 170436", - "from": "474", - "to": "622", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "676", - "label": "1695832 (-) 298310", - "from": "473", - "to": "581", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "675", - "label": "1695832 (-) 299067", - "from": "473", - "to": "461", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "674", - "label": "1695832 (-) 330932", - "from": "473", - "to": "515", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "673", - "label": "1695832 (-) 299127", - "from": "473", - "to": "488", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "672", - "label": "703570 (-) 1410943", - "from": "472", - "to": "597", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "671", - "label": "1846864 (-) 214835", - "from": "471", - "to": "571", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "670", - "label": "975952 (-) 251144", - "from": "470", - "to": "550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "669", - "label": "975952 (-) 250984", - "from": "470", - "to": "484", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "668", - "label": "975952 (-) 251201", - "from": "470", - "to": "576", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "667", - "label": "1695310 (-) 1695353", - "from": "469", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "666", - "label": "1695310 (-) 1695832", - "from": "469", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "665", - "label": "378957 (-) 369394", - "from": "468", - "to": "539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "664", - "label": "1695307 (-) 1695353", - "from": "467", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "663", - "label": "1695306 (-) 1695832", - "from": "466", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "662", - "label": "1695306 (-) 1695353", - "from": "466", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "661", - "label": "293444 (-) 369394", - "from": "465", - "to": "539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "660", - "label": "2119743 (-) 254746", - "from": "464", - "to": "563", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "659", - "label": "1390655 (-) 327791", - "from": "463", - "to": "487", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "658", - "label": "759867 (-) 173043", - "from": "462", - "to": "634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "657", - "label": "299067 (-) 369394", - "from": "461", - "to": "539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "656", - "label": "1616952 (-) 1617094", - "from": "460", - "to": "519", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "655", - "label": "1684022 (-) 1683907", - "from": "459", - "to": "620", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "654", - "label": "1473583 (-) 1411783", - "from": "458", - "to": "520", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "653", - "label": "492077 (-) 1684283", - "from": "457", - "to": "573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "652", - "label": "289835 (-) 289823", - "from": "456", - "to": "454", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "651", - "label": "836645 (-) 192256", - "from": "455", - "to": "546", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "650", - "label": "289823 (-) 289822", - "from": "454", - "to": "453", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "649", - "label": "289822 (-) 94950", - "from": "453", - "to": "536", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "648", - "label": "1614875 (-) 173043", - "from": "452", - "to": "634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "647", - "label": "1614869 (-) 1614875", - "from": "451", - "to": "452", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "646", - "label": "1614864 (-) 1614875", - "from": "450", - "to": "452", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "645", - "label": "1614863 (-) 1614875", - "from": "449", - "to": "452", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "644", - "label": "492556 (-) 1684105", - "from": "448", - "to": "496", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "643", - "label": "492556 (-) 1682942", - "from": "448", - "to": "588", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "642", - "label": "492556 (-) 1684283", - "from": "448", - "to": "573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "641", - "label": "834570 (-) 1695832", - "from": "447", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "640", - "label": "834570 (-) 1695353", - "from": "447", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "639", - "label": "834570 (-) 1684105", - "from": "447", - "to": "496", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_metabs_Acetate_graphml.json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_metabs_Acetate_graphml.json deleted file mode 100644 index 44226b89bb..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_metabs_Acetate_graphml.json +++ /dev/null @@ -1,6526 +0,0 @@ -{ - "nodes": [ - { - "id": "4990", - "label": "P2RY11 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4989", - "label": "SLC29A3 transports nucleosides from cytosol to lysosomal lumen", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4988", - "label": "SLC7A3 (CAT-3)-mediated uptake of cationic amino acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4987", - "label": "VDAC1 transports PYR from cytosol to mitochondrial intermembrane space", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4986", - "label": "DA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4985", - "label": "Ade-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4984", - "label": "PGE2 [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4983", - "label": "The Ligand:GPCR:Gq complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4982", - "label": "NatC acetylates ARFFRP1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4981", - "label": "Cytosolic chenodeoxycholoyl-CoA or choloyl-CoA are conjugated with glycine or taurine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4980", - "label": "SLC25A18,A22 cotransport Glu, H+ from cytosol to mitochondrial matrix", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4979", - "label": "SLC17A3-2 transports cytosolic urate to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4978", - "label": "uridine 5'-monophosphate [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4977", - "label": "cytidine 5'-monophosphate [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4976", - "label": "Cho is acetylated to AcCho by CHAT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4975", - "label": "NTPDase6 hydrolyzes nucleoside diphosphates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4974", - "label": "Spermine => N-acetylated spermine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4973", - "label": "TMLHE dimer dioxygenates TMLYS and 2OG to form HTMLYS and SUCCA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4972", - "label": "CYSLTR2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4971", - "label": "UDP [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4970", - "label": "acetate + CoA + ATP => acetyl-CoA + AMP + pyrophosphate [cytosolic]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4969", - "label": "Ura-Rib [lysosomal lumen]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "4968", - "label": "5HT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4967", - "label": "HMGCS1 condenses Ac-CoA and ACA-CoA to form bHMG-CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4966", - "label": "G-protein beta-gamma complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4965", - "label": "TMAM [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4964", - "label": "Gu [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4963", - "label": "MPP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4962", - "label": "NPS [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4961", - "label": "SLC25A16 transports cytosolic CoA-SH to mitichondrial matrix", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4960", - "label": "OCT2 mediates tubular secretion of organic cations in the kidney", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4959", - "label": "OCT2 mediates tubular uptake of organic cations in the kidney", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4958", - "label": "L-Ser [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4957", - "label": "CoA-SH [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4956", - "label": "Uptake of Noradrenaline", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4955", - "label": "OCT2 substrates [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "4954", - "label": "Oxaliplatin [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4953", - "label": "CAR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "4952", - "label": "L-Lys [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4951", - "label": "Hist [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4950", - "label": "OCT1 transports organic cations into hepatic cells", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4949", - "label": "OCT1 transports organic cations out of hepatic cells", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4948", - "label": "L-Arg [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4947", - "label": "FUMA [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "4946", - "label": "MAT2B:MAT2A:K+:2Mg2+ transfers Ado from ATP to L-Met", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4945", - "label": "L-His [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4944", - "label": "L-Orn [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4943", - "label": "(S)-Malate <=> Fumarate + H2O", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4942", - "label": "OCT1 substrates [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "4941", - "label": "Concentrative transport (import) of a nucleoside and two sodium ions by solute carrier family 28 (sodium-coupled nucleoside transporter), member 3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4940", - "label": "SLC25A29 transports basic amino acids from cytosol to mitochondrial matrix", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4939", - "label": "Equilibrative transport (export) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4938", - "label": "MTF [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4937", - "label": "AdoMet [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4936", - "label": "4-Di-2-ASP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4935", - "label": "QN [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4934", - "label": "NPSR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4933", - "label": "SLC2A9 transports Fru, Glc, urate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4932", - "label": "L-Arg [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4931", - "label": "Eis acetylates DUSP16", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4930", - "label": "glutamate + acetyl CoA => N-acetyl glutamate + CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4929", - "label": "CH3COO- [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4928", - "label": "Acetylation of glucosamine 6-phosphate to GlcNAc6P", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4927", - "label": "LACT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "4926", - "label": "D-sorbitol [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "4925", - "label": "SLC22A12 exchanges extracellular urate for cytosolic LACT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4924", - "label": "Unknown NAT transfers COCH3 to AFXBO-C, AFNBO-C", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4923", - "label": "ACAT2 condenses 2 Ac-CoA to form ACA-CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4922", - "label": "L-Lys [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4921", - "label": "PYR [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4920", - "label": "N-acetylation of serotonin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4919", - "label": "CAR [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "4918", - "label": "palmitoylcarnitine + CoASH => palmitoyl-CoA + carnitine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4917", - "label": "CREAT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4916", - "label": "The acetyl group from acetyl-CoA is transferred to the NAT1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4915", - "label": "AKR1B1 reduces Glc to D-sorbitol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4914", - "label": "acetyl-CoA + 7 malonyl-CoA + 14 NADHP + 14 H+ => palmitate + 7 CO2 + 14 NADP+ + 8 CoASH + 6 H2O", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4913", - "label": "Ura-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "4912", - "label": "CMP or TMP or UMP + H2O => cytidine, thymidine, or uridine + orthophosphate [NT5E]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4911", - "label": "The acetyl group from acetyl-CoA is transferred to the NAT2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4910", - "label": "L-Glu [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4909", - "label": "The Ligand:GPCR:Gs complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4908", - "label": "LACT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "4907", - "label": "VMAT1/2 can mediate the transport of biogenic amines", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4906", - "label": "Unknown carnitine exporter transports CAR from the cytosol to the extracellular space", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4905", - "label": "2OG [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4904", - "label": "SPN [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4903", - "label": "BBOX1:AscH-:Fe2+ dimer dioxygenates TEABT and 2OG to form CAR and SUCCA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4902", - "label": "Ura-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "4901", - "label": "HGSNAT oligomer acetylates Heparan chain(1)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4900", - "label": "NAd [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4899", - "label": "MAL [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4898", - "label": "GPR39 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4897", - "label": "ligands of SLC29A4 [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "4896", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "4895", - "label": "urate [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4894", - "label": "SLC7A1 (CAT-1)-mediated uptake of cationic amino acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4893", - "label": "SLC1A1,2,3,6,7 cotransport L-Glu,L-Asp,D-Asp,H+,3Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4892", - "label": "MAL [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4891", - "label": "palmitoyl-CoA + serine => 3-ketosphinganine + CoASH + CO2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4890", - "label": "SLC1A1-3,6,7 exchange L-Glu, H+ and 3Na+ for K+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4889", - "label": "SLC6A4 co-transports 5HT, Cl-, Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4888", - "label": "Glc [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4887", - "label": "Spermidine => N-acetylated spermidine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4886", - "label": "Equilibrative transport (import) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4885", - "label": "SLC7A2, isoform A (CAT-2A)-mediated uptake of cationic amino acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4884", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4883", - "label": "SPM [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4882", - "label": "urate [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4881", - "label": "ADR, NAd [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "4880", - "label": "NAd [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4879", - "label": "CIM [cytosol]", - "databaseLabel": "ChemicalDrug", - "font": { - "color": "#ff9900" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff9900", - "hover": { - "background": "#FFFFFF", - "border": "#ff9900" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff9900" - } - } - }, - { - "id": "4878", - "label": "guanidinoacetate + S-adenosylmethionine => creatine + S-adenosylhomocysteine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4877", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "4876", - "label": "Noradrenaline clearance from the synaptic cleft", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4875", - "label": "Ac-CoA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4874", - "label": "HGSNAT oligomer acetylates Heparan sulfate chain(3)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4873", - "label": "CAR [mitochondrial intermembrane space]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "4872", - "label": "CRET [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "4871", - "label": "MNA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4870", - "label": "SLC7A9:SLC3A1 exchanges L-Arg, CySS-, L-Lys for L-Leu", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4869", - "label": "L-Arg [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4868", - "label": "GCG(53-81) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4867", - "label": "Equilibrative transport (import) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4866", - "label": "Ade-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4865", - "label": "ATAT acetylates microtubules", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4864", - "label": "LDHAL6B reduces PYR to LACT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4863", - "label": "CH3COO- [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4862", - "label": "ADR [clathrin-sculpted monoamine transport vesicle lumen]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "4861", - "label": "SLC25A12,13 exchange cytosolic L-Glu for mitochondrial matrix L-Asp", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4860", - "label": "SUCCA [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4859", - "label": "Concentrative transport (import) of a nucleoside and a sodium ions by solute carrier family 28 (sodium-coupled nucleoside transporter), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4858", - "label": "PXLP-K314-GPT transaminates PYR to form L-Ala", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4857", - "label": "Succinate <=> Fumarate (with FAD redox reaction on enzyme)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4856", - "label": "Hist [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4855", - "label": "MPC1:MPC2 cotransports PYR, H+ from cytosol to mitochondrial matrix", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4854", - "label": "Transport of Citrate from Mitochondrial Matrix to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4853", - "label": "Reuptake of serotonin from the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4852", - "label": "AVP(20-28) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4851", - "label": "L-Glu [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4850", - "label": "SLC6A2 cotransports NAd, Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4849", - "label": "LACT [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "4848", - "label": "SLC6A14 cotransports SLC6A14 ligands, Cl-, 2Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4847", - "label": "5HT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4846", - "label": "Sulfate is exported to the cytosol in exchange for dicarboxylate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4845", - "label": "SLC7A2, isoform B (CAT-2B)-mediated uptake of cationic amino acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4844", - "label": "BSG:MCTs cotransport LACT, H+ from cytosol to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4843", - "label": "ADR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "4842", - "label": "Gly [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4841", - "label": "CAR translocates from the cytosol to the mitochondrial intermembrane space", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4840", - "label": "CAR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "4839", - "label": "Concentrative transport (import) of nucleosides plus sodium ions by solute carrier family 28 (sodium-coupled nucleoside transporter), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4838", - "label": "Cho [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4837", - "label": "glutamate uptake by astrocytes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4836", - "label": "malate [mitochondrial matrix] + alpha-ketoglutarate [cytosol] <=> malate [cytosol] + alpha-ketoglutarate [mitochondrial matrix]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4835", - "label": "Exchange of alpha-ketoglutarate (2-oxoglutarate) and malate across the inner mitochondrial membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4834", - "label": "SLC38A4 (ATA3)-mediated uptake of arginine and lysine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4833", - "label": "NTPDase5 hydrolyzes nucleoside diphosphates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4832", - "label": "2OG [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4831", - "label": "L-Met [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4830", - "label": "L-Glu [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4829", - "label": "MAT1A multimers transfer Ado from ATP to L-Met", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4828", - "label": "SLC5A8 transports monocarboxylates from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4827", - "label": "CoA-SH [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4826", - "label": "AGM [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4825", - "label": "PYR [mitochondrial intermembrane space]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4824", - "label": "PYR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4823", - "label": "ADORA2B:Ade-Rib:GsGTP dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4822", - "label": "Equilibrative transport (import) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4821", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - } - ], - "edges": [ - { - "id": "5302", - "label": "304129 (-) 369394", - "from": "4990", - "to": "4909", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5301", - "label": "1684482 (-) 1684022", - "from": "4989", - "to": "4969", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5300", - "label": "1674755 (-) 783021", - "from": "4988", - "to": "4922", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5299", - "label": "1674755 (-) 552820", - "from": "4988", - "to": "4869", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5298", - "label": "1863175 (-) 193011", - "from": "4987", - "to": "4825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5297", - "label": "834570 (-) 1695353", - "from": "4986", - "to": "4949", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5296", - "label": "834570 (-) 1684105", - "from": "4986", - "to": "4939", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5295", - "label": "834570 (-) 1695832", - "from": "4986", - "to": "4960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5294", - "label": "834570 (-) 1690356", - "from": "4986", - "to": "4907", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5293", - "label": "492556 (-) 1684105", - "from": "4985", - "to": "4939", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5292", - "label": "492556 (-) 1684482", - "from": "4985", - "to": "4989", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5291", - "label": "492556 (-) 1682942", - "from": "4985", - "to": "4821", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5290", - "label": "492556 (-) 1684283", - "from": "4985", - "to": "4884", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5289", - "label": "299537 (-) 369394", - "from": "4984", - "to": "4909", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5288", - "label": "299541 (-) 298547", - "from": "4983", - "to": "4971", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5287", - "label": "299541 (-) 303154", - "from": "4983", - "to": "4972", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5286", - "label": "299541 (-) 303994", - "from": "4983", - "to": "4868", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5285", - "label": "299541 (-) 304210", - "from": "4983", - "to": "4962", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5284", - "label": "299541 (-) 261355", - "from": "4983", - "to": "4910", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5283", - "label": "299541 (-) 301477", - "from": "4983", - "to": "4852", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5282", - "label": "299541 (-) 299537", - "from": "4983", - "to": "4984", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5281", - "label": "299541 (-) 298315", - "from": "4983", - "to": "4877", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5280", - "label": "299541 (-) 298618", - "from": "4983", - "to": "4948", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5279", - "label": "299541 (-) 298309", - "from": "4983", - "to": "4881", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5278", - "label": "299541 (-) 298310", - "from": "4983", - "to": "4880", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5277", - "label": "299541 (-) 299127", - "from": "4983", - "to": "4951", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5276", - "label": "299541 (-) 293444", - "from": "4983", - "to": "4966", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5275", - "label": "299541 (-) 301845", - "from": "4983", - "to": "4898", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5274", - "label": "299541 (-) 298614", - "from": "4983", - "to": "4952", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5273", - "label": "299541 (-) 304129", - "from": "4983", - "to": "4990", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5272", - "label": "299541 (-) 299067", - "from": "4983", - "to": "4968", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5271", - "label": "299541 (-) 298623", - "from": "4983", - "to": "4944", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5270", - "label": "299541 (-) 304276", - "from": "4983", - "to": "4934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5269", - "label": "2109975 (-) 173043", - "from": "4982", - "to": "4827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5268", - "label": "1614875 (-) 173043", - "from": "4981", - "to": "4827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5267", - "label": "1678366 (-) 192424", - "from": "4980", - "to": "4851", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5266", - "label": "2083872 (-) 1688388", - "from": "4979", - "to": "4882", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5265", - "label": "501796 (-) 504017", - "from": "4978", - "to": "4912", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5264", - "label": "501797 (-) 504017", - "from": "4977", - "to": "4912", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5263", - "label": "1083941 (-) 173043", - "from": "4976", - "to": "4827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5262", - "label": "501798 (-) 501796", - "from": "4975", - "to": "4978", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5261", - "label": "501798 (-) 501797", - "from": "4975", - "to": "4977", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5260", - "label": "780841 (-) 173043", - "from": "4974", - "to": "4827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5259", - "label": "843309 (-) 195984", - "from": "4973", - "to": "4860", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5258", - "label": "303154 (-) 369394", - "from": "4972", - "to": "4909", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5257", - "label": "298547 (-) 502744", - "from": "4971", - "to": "4833", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5256", - "label": "298547 (-) 501798", - "from": "4971", - "to": "4975", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5255", - "label": "1589811 (-) 193879", - "from": "4970", - "to": "4875", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5254", - "label": "299067 (-) 1084713", - "from": "4968", - "to": "4889", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5253", - "label": "299067 (-) 369394", - "from": "4968", - "to": "4909", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5252", - "label": "299067 (-) 1684347", - "from": "4968", - "to": "4867", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5251", - "label": "299067 (-) 1695833", - "from": "4968", - "to": "4959", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5250", - "label": "299067 (-) 1690532", - "from": "4968", - "to": "4853", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5249", - "label": "852543 (-) 173043", - "from": "4967", - "to": "4827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5248", - "label": "293444 (-) 369394", - "from": "4966", - "to": "4909", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5247", - "label": "293444 (-) 409084", - "from": "4966", - "to": "4823", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5246", - "label": "1695306 (-) 1695832", - "from": "4965", - "to": "4960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5245", - "label": "1695306 (-) 1695353", - "from": "4965", - "to": "4949", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5244", - "label": "1695307 (-) 1695353", - "from": "4964", - "to": "4949", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5243", - "label": "1695310 (-) 1695353", - "from": "4963", - "to": "4949", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5242", - "label": "1695310 (-) 1695832", - "from": "4963", - "to": "4960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5241", - "label": "304210 (-) 369394", - "from": "4962", - "to": "4909", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5240", - "label": "1504342 (-) 196703", - "from": "4961", - "to": "4957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5239", - "label": "1695832 (-) 1684248", - "from": "4960", - "to": "4896", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5238", - "label": "1695833 (-) 779764", - "from": "4959", - "to": "4826", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5237", - "label": "1695833 (-) 170436", - "from": "4959", - "to": "4838", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5236", - "label": "1695833 (-) 1695842", - "from": "4959", - "to": "4955", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5235", - "label": "1695833 (-) 834570", - "from": "4959", - "to": "4986", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5234", - "label": "1695833 (-) 1695306", - "from": "4959", - "to": "4965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5233", - "label": "1695833 (-) 834827", - "from": "4959", - "to": "4900", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5232", - "label": "1695833 (-) 1695048", - "from": "4959", - "to": "4879", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5231", - "label": "1695833 (-) 842940", - "from": "4959", - "to": "4917", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5230", - "label": "1695833 (-) 1695372", - "from": "4959", - "to": "4936", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5229", - "label": "1695833 (-) 791922", - "from": "4959", - "to": "4871", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5228", - "label": "1695833 (-) 784286", - "from": "4959", - "to": "4856", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5227", - "label": "1695833 (-) 835002", - "from": "4959", - "to": "4843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5226", - "label": "1695833 (-) 354741", - "from": "4959", - "to": "4847", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5225", - "label": "1695833 (-) 1695310", - "from": "4959", - "to": "4963", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5224", - "label": "1695833 (-) 1695367", - "from": "4959", - "to": "4938", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5223", - "label": "1695833 (-) 1695843", - "from": "4959", - "to": "4954", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5222", - "label": "221274 (-) 1543972", - "from": "4958", - "to": "4891", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5221", - "label": "196703 (-) 759483", - "from": "4957", - "to": "4918", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5220", - "label": "1082975 (-) 834827", - "from": "4956", - "to": "4900", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5219", - "label": "1695842 (-) 1695832", - "from": "4955", - "to": "4960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5218", - "label": "1695843 (-) 1695832", - "from": "4954", - "to": "4960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5217", - "label": "298614 (-) 1675578", - "from": "4952", - "to": "4885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5216", - "label": "298614 (-) 1676716", - "from": "4952", - "to": "4848", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5215", - "label": "298614 (-) 1675041", - "from": "4952", - "to": "4894", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5214", - "label": "298614 (-) 1674755", - "from": "4952", - "to": "4988", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5213", - "label": "298614 (-) 1673677", - "from": "4952", - "to": "4834", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5212", - "label": "298614 (-) 1675635", - "from": "4952", - "to": "4870", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5211", - "label": "298614 (-) 1674167", - "from": "4952", - "to": "4845", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5210", - "label": "299127 (-) 369394", - "from": "4951", - "to": "4909", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5209", - "label": "299127 (-) 1695833", - "from": "4951", - "to": "4959", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5208", - "label": "299127 (-) 1695352", - "from": "4951", - "to": "4950", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5207", - "label": "1695352 (-) 784286", - "from": "4950", - "to": "4856", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5206", - "label": "1695352 (-) 1695310", - "from": "4950", - "to": "4963", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5205", - "label": "1695352 (-) 1695367", - "from": "4950", - "to": "4938", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5204", - "label": "1695352 (-) 834570", - "from": "4950", - "to": "4986", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5203", - "label": "1695352 (-) 1695306", - "from": "4950", - "to": "4965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5202", - "label": "1695352 (-) 1695307", - "from": "4950", - "to": "4964", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5201", - "label": "1695352 (-) 781114", - "from": "4950", - "to": "4883", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5200", - "label": "1695352 (-) 1695374", - "from": "4950", - "to": "4935", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5199", - "label": "1695352 (-) 1695366", - "from": "4950", - "to": "4942", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5198", - "label": "1695352 (-) 781057", - "from": "4950", - "to": "4904", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5197", - "label": "1695352 (-) 1695372", - "from": "4950", - "to": "4936", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5196", - "label": "1695352 (-) 835002", - "from": "4950", - "to": "4843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5195", - "label": "1695352 (-) 834827", - "from": "4950", - "to": "4900", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5194", - "label": "1695352 (-) 791922", - "from": "4950", - "to": "4871", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5193", - "label": "1695352 (-) 170436", - "from": "4950", - "to": "4838", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5192", - "label": "1695353 (-) 1684248", - "from": "4949", - "to": "4896", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5191", - "label": "298618 (-) 1675578", - "from": "4948", - "to": "4885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5190", - "label": "298618 (-) 1674167", - "from": "4948", - "to": "4845", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5189", - "label": "298618 (-) 1676716", - "from": "4948", - "to": "4848", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5188", - "label": "298618 (-) 1675041", - "from": "4948", - "to": "4894", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5187", - "label": "298618 (-) 1675635", - "from": "4948", - "to": "4870", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5186", - "label": "298618 (-) 1674755", - "from": "4948", - "to": "4988", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5185", - "label": "298618 (-) 1673677", - "from": "4948", - "to": "4834", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5184", - "label": "826488 (-) 557190", - "from": "4946", - "to": "4937", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5183", - "label": "782973 (-) 1675911", - "from": "4945", - "to": "4940", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5182", - "label": "298623 (-) 1675041", - "from": "4944", - "to": "4894", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5181", - "label": "298623 (-) 1674167", - "from": "4944", - "to": "4845", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5180", - "label": "298623 (-) 1675578", - "from": "4944", - "to": "4885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5179", - "label": "298623 (-) 1674755", - "from": "4944", - "to": "4988", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5178", - "label": "195711 (-) 195705", - "from": "4943", - "to": "4947", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5177", - "label": "1695366 (-) 1695353", - "from": "4942", - "to": "4949", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5176", - "label": "1683591 (-) 504075", - "from": "4941", - "to": "4902", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5175", - "label": "1675911 (-) 774296", - "from": "4940", - "to": "4932", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5174", - "label": "1684105 (-) 1684248", - "from": "4939", - "to": "4896", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5173", - "label": "1695367 (-) 1695832", - "from": "4938", - "to": "4960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5172", - "label": "1695367 (-) 1695353", - "from": "4938", - "to": "4949", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5171", - "label": "557190 (-) 842569", - "from": "4937", - "to": "4878", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5170", - "label": "1695372 (-) 1695832", - "from": "4936", - "to": "4960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5169", - "label": "1695372 (-) 1695353", - "from": "4936", - "to": "4949", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5168", - "label": "1695374 (-) 1695353", - "from": "4935", - "to": "4949", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5167", - "label": "304276 (-) 369394", - "from": "4934", - "to": "4909", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5166", - "label": "1688214 (-) 181558", - "from": "4933", - "to": "4888", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5165", - "label": "774296 (-) 774298", - "from": "4932", - "to": "4930", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5164", - "label": "1479321 (-) 173043", - "from": "4931", - "to": "4827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5163", - "label": "774298 (-) 196703", - "from": "4930", - "to": "4957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5162", - "label": "298651 (-) 299541", - "from": "4929", - "to": "4983", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5161", - "label": "298651 (-) 791020", - "from": "4929", - "to": "4828", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5160", - "label": "853660 (-) 173043", - "from": "4928", - "to": "4827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5159", - "label": "1690278 (-) 501018", - "from": "4925", - "to": "4895", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5158", - "label": "1690278 (-) 330402", - "from": "4925", - "to": "4927", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5157", - "label": "1612455 (-) 173043", - "from": "4924", - "to": "4827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5156", - "label": "852652 (-) 173043", - "from": "4923", - "to": "4827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5155", - "label": "783021 (-) 1675911", - "from": "4922", - "to": "4940", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5154", - "label": "192688 (-) 1863046", - "from": "4921", - "to": "4864", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5153", - "label": "836276 (-) 173043", - "from": "4920", - "to": "4827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5152", - "label": "759483 (-) 759479", - "from": "4918", - "to": "4919", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5151", - "label": "842940 (-) 1695832", - "from": "4917", - "to": "4960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5150", - "label": "1599163 (-) 173043", - "from": "4916", - "to": "4827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5149", - "label": "917695 (-) 917666", - "from": "4915", - "to": "4926", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5148", - "label": "1835201 (-) 173043", - "from": "4914", - "to": "4827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5147", - "label": "504017 (-) 504010", - "from": "4912", - "to": "4913", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5146", - "label": "1599186 (-) 173043", - "from": "4911", - "to": "4827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5145", - "label": "261355 (-) 1679651", - "from": "4910", - "to": "4893", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5144", - "label": "261355 (-) 1065763", - "from": "4910", - "to": "4890", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5143", - "label": "261355 (-) 488902", - "from": "4910", - "to": "4837", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5142", - "label": "369394 (-) 330112", - "from": "4909", - "to": "4866", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5141", - "label": "194803 (-) 1863096", - "from": "4908", - "to": "4844", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5140", - "label": "194803 (-) 1690278", - "from": "4908", - "to": "4925", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5139", - "label": "1690356 (-) 1690504", - "from": "4907", - "to": "4862", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5138", - "label": "843513 (-) 760931", - "from": "4906", - "to": "4953", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5137", - "label": "192256 (-) 843309", - "from": "4905", - "to": "4973", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5136", - "label": "192256 (-) 209865", - "from": "4905", - "to": "4835", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5135", - "label": "781057 (-) 1695353", - "from": "4904", - "to": "4949", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5134", - "label": "781057 (-) 780841", - "from": "4904", - "to": "4974", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5133", - "label": "843528 (-) 760768", - "from": "4903", - "to": "4840", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5132", - "label": "906508 (-) 173043", - "from": "4901", - "to": "4827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5131", - "label": "834827 (-) 1690356", - "from": "4900", - "to": "4907", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5130", - "label": "834827 (-) 1695832", - "from": "4900", - "to": "4960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5129", - "label": "834827 (-) 1684105", - "from": "4900", - "to": "4939", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5128", - "label": "834827 (-) 1695353", - "from": "4900", - "to": "4949", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5127", - "label": "195340 (-) 195711", - "from": "4899", - "to": "4943", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5126", - "label": "301845 (-) 369394", - "from": "4898", - "to": "4909", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5125", - "label": "1684246 (-) 1684105", - "from": "4897", - "to": "4939", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5124", - "label": "501018 (-) 2083872", - "from": "4895", - "to": "4979", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5123", - "label": "1675041 (-) 552820", - "from": "4894", - "to": "4869", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5122", - "label": "1675041 (-) 783021", - "from": "4894", - "to": "4922", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5121", - "label": "1679651 (-) 191978", - "from": "4893", - "to": "4830", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5120", - "label": "194852 (-) 832950", - "from": "4892", - "to": "4846", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5119", - "label": "194852 (-) 1835429", - "from": "4892", - "to": "4854", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5118", - "label": "194852 (-) 209865", - "from": "4892", - "to": "4835", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5117", - "label": "1543972 (-) 173043", - "from": "4891", - "to": "4827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5116", - "label": "1065763 (-) 191978", - "from": "4890", - "to": "4830", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5115", - "label": "1084713 (-) 354741", - "from": "4889", - "to": "4847", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5114", - "label": "181558 (-) 917695", - "from": "4888", - "to": "4915", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5113", - "label": "781113 (-) 173043", - "from": "4887", - "to": "4827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5112", - "label": "1684282 (-) 504075", - "from": "4886", - "to": "4902", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5111", - "label": "1675578 (-) 783021", - "from": "4885", - "to": "4922", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5110", - "label": "1675578 (-) 552820", - "from": "4885", - "to": "4869", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5109", - "label": "1684283 (-) 504010", - "from": "4884", - "to": "4913", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5108", - "label": "781114 (-) 781113", - "from": "4883", - "to": "4887", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5107", - "label": "781114 (-) 1695353", - "from": "4883", - "to": "4949", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5106", - "label": "1688388 (-) 1688214", - "from": "4882", - "to": "4933", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5105", - "label": "298309 (-) 369394", - "from": "4881", - "to": "4909", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5104", - "label": "298310 (-) 369394", - "from": "4880", - "to": "4909", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5103", - "label": "298310 (-) 1082975", - "from": "4880", - "to": "4956", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5102", - "label": "298310 (-) 1695833", - "from": "4880", - "to": "4959", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5101", - "label": "298310 (-) 1695352", - "from": "4880", - "to": "4950", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5100", - "label": "298310 (-) 1085261", - "from": "4880", - "to": "4876", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5099", - "label": "298310 (-) 1690536", - "from": "4880", - "to": "4850", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5098", - "label": "298310 (-) 1684347", - "from": "4880", - "to": "4867", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5097", - "label": "1695048 (-) 1695832", - "from": "4879", - "to": "4960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5096", - "label": "842569 (-) 842092", - "from": "4878", - "to": "4872", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5095", - "label": "298315 (-) 369394", - "from": "4877", - "to": "4909", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5094", - "label": "1085261 (-) 834827", - "from": "4876", - "to": "4900", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5093", - "label": "193879 (-) 1083941", - "from": "4875", - "to": "4976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5092", - "label": "193879 (-) 836276", - "from": "4875", - "to": "4920", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5091", - "label": "193879 (-) 853660", - "from": "4875", - "to": "4928", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5090", - "label": "193879 (-) 1599163", - "from": "4875", - "to": "4916", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5089", - "label": "193879 (-) 780841", - "from": "4875", - "to": "4974", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5088", - "label": "193879 (-) 2033028", - "from": "4875", - "to": "4865", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5087", - "label": "193879 (-) 907096", - "from": "4875", - "to": "4874", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5086", - "label": "193879 (-) 906508", - "from": "4875", - "to": "4901", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5085", - "label": "193879 (-) 1479321", - "from": "4875", - "to": "4931", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5084", - "label": "193879 (-) 2109975", - "from": "4875", - "to": "4982", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5083", - "label": "193879 (-) 1612455", - "from": "4875", - "to": "4924", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5082", - "label": "193879 (-) 1835201", - "from": "4875", - "to": "4914", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5081", - "label": "193879 (-) 781113", - "from": "4875", - "to": "4887", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5080", - "label": "193879 (-) 1599186", - "from": "4875", - "to": "4911", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5079", - "label": "193879 (-) 852652", - "from": "4875", - "to": "4923", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5078", - "label": "193879 (-) 852543", - "from": "4875", - "to": "4967", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5077", - "label": "907096 (-) 173043", - "from": "4874", - "to": "4827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5076", - "label": "791922 (-) 1695832", - "from": "4871", - "to": "4960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5075", - "label": "791922 (-) 1695353", - "from": "4871", - "to": "4949", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5074", - "label": "1675635 (-) 552820", - "from": "4870", - "to": "4869", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5073", - "label": "1675635 (-) 783021", - "from": "4870", - "to": "4922", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5072", - "label": "552820 (-) 1675911", - "from": "4869", - "to": "4940", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5071", - "label": "303994 (-) 369394", - "from": "4868", - "to": "4909", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5070", - "label": "1684347 (-) 834827", - "from": "4867", - "to": "4900", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5069", - "label": "1684347 (-) 354741", - "from": "4867", - "to": "4847", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5068", - "label": "1684347 (-) 834570", - "from": "4867", - "to": "4986", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5067", - "label": "1684347 (-) 492556", - "from": "4867", - "to": "4985", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5066", - "label": "1684347 (-) 1684246", - "from": "4867", - "to": "4897", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5065", - "label": "1684347 (-) 835002", - "from": "4867", - "to": "4843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5064", - "label": "330112 (-) 1684368", - "from": "4866", - "to": "4859", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5063", - "label": "330112 (-) 1683591", - "from": "4866", - "to": "4941", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5062", - "label": "330112 (-) 1684282", - "from": "4866", - "to": "4886", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5061", - "label": "330112 (-) 1683390", - "from": "4866", - "to": "4839", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5060", - "label": "330112 (-) 1682941", - "from": "4866", - "to": "4822", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5059", - "label": "2033028 (-) 173043", - "from": "4865", - "to": "4827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5058", - "label": "1863046 (-) 1863083", - "from": "4864", - "to": "4849", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5057", - "label": "778631 (-) 1589811", - "from": "4863", - "to": "4970", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5056", - "label": "778121 (-) 192424", - "from": "4861", - "to": "4851", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5055", - "label": "195984 (-) 195989", - "from": "4860", - "to": "4857", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5054", - "label": "1684368 (-) 504075", - "from": "4859", - "to": "4902", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5053", - "label": "193941 (-) 191969", - "from": "4858", - "to": "4832", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5052", - "label": "195989 (-) 195705", - "from": "4857", - "to": "4947", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5051", - "label": "784286 (-) 1695832", - "from": "4856", - "to": "4960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5050", - "label": "784286 (-) 1690356", - "from": "4856", - "to": "4907", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5049", - "label": "784286 (-) 1695353", - "from": "4856", - "to": "4949", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5048", - "label": "192932 (-) 192688", - "from": "4855", - "to": "4921", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5047", - "label": "1835429 (-) 195340", - "from": "4854", - "to": "4899", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5046", - "label": "1690532 (-) 354741", - "from": "4853", - "to": "4847", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5045", - "label": "301477 (-) 369394", - "from": "4852", - "to": "4909", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5044", - "label": "192424 (-) 774298", - "from": "4851", - "to": "4930", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5043", - "label": "1690536 (-) 834827", - "from": "4850", - "to": "4900", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5042", - "label": "1676716 (-) 783021", - "from": "4848", - "to": "4922", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5041", - "label": "1676716 (-) 782973", - "from": "4848", - "to": "4945", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5040", - "label": "1676716 (-) 221274", - "from": "4848", - "to": "4958", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5039", - "label": "1676716 (-) 552820", - "from": "4848", - "to": "4869", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5038", - "label": "1676716 (-) 780263", - "from": "4848", - "to": "4831", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5037", - "label": "1676716 (-) 498622", - "from": "4848", - "to": "4842", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5036", - "label": "354741 (-) 1684105", - "from": "4847", - "to": "4939", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5035", - "label": "354741 (-) 1695832", - "from": "4847", - "to": "4960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5034", - "label": "354741 (-) 1690356", - "from": "4847", - "to": "4907", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5033", - "label": "354741 (-) 836276", - "from": "4847", - "to": "4920", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5032", - "label": "832950 (-) 195340", - "from": "4846", - "to": "4899", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5031", - "label": "1674167 (-) 552820", - "from": "4845", - "to": "4869", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5030", - "label": "1674167 (-) 783021", - "from": "4845", - "to": "4922", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5029", - "label": "1863096 (-) 330402", - "from": "4844", - "to": "4927", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5028", - "label": "835002 (-) 1695353", - "from": "4843", - "to": "4949", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5027", - "label": "835002 (-) 1684105", - "from": "4843", - "to": "4939", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5026", - "label": "835002 (-) 1690356", - "from": "4843", - "to": "4907", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5025", - "label": "835002 (-) 1695832", - "from": "4843", - "to": "4960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5024", - "label": "498622 (-) 1614875", - "from": "4842", - "to": "4981", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5023", - "label": "760767 (-) 759647", - "from": "4841", - "to": "4873", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5022", - "label": "760768 (-) 760767", - "from": "4840", - "to": "4841", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5021", - "label": "760768 (-) 843513", - "from": "4840", - "to": "4906", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5020", - "label": "1683390 (-) 504075", - "from": "4839", - "to": "4902", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5019", - "label": "170436 (-) 1083941", - "from": "4838", - "to": "4976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5018", - "label": "170436 (-) 1695832", - "from": "4838", - "to": "4960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5017", - "label": "170436 (-) 1695353", - "from": "4838", - "to": "4949", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5016", - "label": "488902 (-) 191978", - "from": "4837", - "to": "4830", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5015", - "label": "209864 (-) 192256", - "from": "4836", - "to": "4905", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5014", - "label": "209864 (-) 194852", - "from": "4836", - "to": "4892", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5013", - "label": "209865 (-) 195340", - "from": "4835", - "to": "4899", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5012", - "label": "1673677 (-) 783021", - "from": "4834", - "to": "4922", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5011", - "label": "1673677 (-) 552820", - "from": "4834", - "to": "4869", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5010", - "label": "502744 (-) 501797", - "from": "4833", - "to": "4977", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5009", - "label": "502744 (-) 501796", - "from": "4833", - "to": "4978", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5008", - "label": "191969 (-) 209864", - "from": "4832", - "to": "4836", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5007", - "label": "191969 (-) 843528", - "from": "4832", - "to": "4903", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5006", - "label": "780263 (-) 780267", - "from": "4831", - "to": "4829", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5005", - "label": "780263 (-) 826488", - "from": "4831", - "to": "4946", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5004", - "label": "191978 (-) 778121", - "from": "4830", - "to": "4861", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5003", - "label": "191978 (-) 1678366", - "from": "4830", - "to": "4980", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5002", - "label": "780267 (-) 557190", - "from": "4829", - "to": "4937", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5001", - "label": "791020 (-) 194803", - "from": "4828", - "to": "4908", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5000", - "label": "791020 (-) 193018", - "from": "4828", - "to": "4824", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4999", - "label": "791020 (-) 778631", - "from": "4828", - "to": "4863", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4998", - "label": "173043 (-) 1504342", - "from": "4827", - "to": "4961", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4997", - "label": "779764 (-) 1695832", - "from": "4826", - "to": "4960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4996", - "label": "193011 (-) 192932", - "from": "4825", - "to": "4855", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4995", - "label": "193018 (-) 193941", - "from": "4824", - "to": "4858", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4994", - "label": "193018 (-) 1863175", - "from": "4824", - "to": "4987", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4993", - "label": "409084 (-) 330112", - "from": "4823", - "to": "4866", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4992", - "label": "1682941 (-) 504075", - "from": "4822", - "to": "4902", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4991", - "label": "1682942 (-) 504010", - "from": "4821", - "to": "4913", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_metabs_Butyrate_graphml.json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_metabs_Butyrate_graphml.json deleted file mode 100644 index 95d9752903..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_metabs_Butyrate_graphml.json +++ /dev/null @@ -1,6526 +0,0 @@ -{ - "nodes": [ - { - "id": "6006", - "label": "P2RY11 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "6005", - "label": "SLC29A3 transports nucleosides from cytosol to lysosomal lumen", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6004", - "label": "SLC7A3 (CAT-3)-mediated uptake of cationic amino acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6003", - "label": "VDAC1 transports PYR from cytosol to mitochondrial intermembrane space", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "6002", - "label": "DA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "6001", - "label": "Ade-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "6000", - "label": "PGE2 [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5999", - "label": "The Ligand:GPCR:Gq complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5998", - "label": "NatC acetylates ARFFRP1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5997", - "label": "Cytosolic chenodeoxycholoyl-CoA or choloyl-CoA are conjugated with glycine or taurine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5996", - "label": "SLC25A18,A22 cotransport Glu, H+ from cytosol to mitochondrial matrix", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5995", - "label": "SLC17A3-2 transports cytosolic urate to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5994", - "label": "uridine 5'-monophosphate [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5993", - "label": "cytidine 5'-monophosphate [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5992", - "label": "Cho is acetylated to AcCho by CHAT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5991", - "label": "NTPDase6 hydrolyzes nucleoside diphosphates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5990", - "label": "Spermine => N-acetylated spermine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5989", - "label": "TMLHE dimer dioxygenates TMLYS and 2OG to form HTMLYS and SUCCA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5988", - "label": "CYSLTR2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5987", - "label": "UDP [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5986", - "label": "acetate + CoA + ATP => acetyl-CoA + AMP + pyrophosphate [cytosolic]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5985", - "label": "Ura-Rib [lysosomal lumen]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5984", - "label": "5HT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5983", - "label": "HMGCS1 condenses Ac-CoA and ACA-CoA to form bHMG-CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5982", - "label": "G-protein beta-gamma complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5981", - "label": "TMAM [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5980", - "label": "Gu [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5979", - "label": "MPP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5978", - "label": "NPS [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5977", - "label": "SLC25A16 transports cytosolic CoA-SH to mitichondrial matrix", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5976", - "label": "OCT2 mediates tubular secretion of organic cations in the kidney", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5975", - "label": "OCT2 mediates tubular uptake of organic cations in the kidney", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5974", - "label": "L-Ser [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5973", - "label": "CoA-SH [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5972", - "label": "Uptake of Noradrenaline", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5971", - "label": "OCT2 substrates [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "5970", - "label": "Oxaliplatin [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5969", - "label": "CAR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5968", - "label": "L-Lys [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5967", - "label": "Hist [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5966", - "label": "OCT1 transports organic cations into hepatic cells", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5965", - "label": "OCT1 transports organic cations out of hepatic cells", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5964", - "label": "L-Arg [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5963", - "label": "FUMA [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5962", - "label": "MAT2B:MAT2A:K+:2Mg2+ transfers Ado from ATP to L-Met", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5961", - "label": "L-His [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5960", - "label": "L-Orn [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5959", - "label": "(S)-Malate <=> Fumarate + H2O", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5958", - "label": "OCT1 substrates [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "5957", - "label": "Concentrative transport (import) of a nucleoside and two sodium ions by solute carrier family 28 (sodium-coupled nucleoside transporter), member 3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5956", - "label": "SLC25A29 transports basic amino acids from cytosol to mitochondrial matrix", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5955", - "label": "Equilibrative transport (export) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5954", - "label": "MTF [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5953", - "label": "AdoMet [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5952", - "label": "4-Di-2-ASP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5951", - "label": "QN [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5950", - "label": "NPSR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5949", - "label": "BUT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5948", - "label": "SLC2A9 transports Fru, Glc, urate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5947", - "label": "L-Arg [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5946", - "label": "Eis acetylates DUSP16", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5945", - "label": "glutamate + acetyl CoA => N-acetyl glutamate + CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5944", - "label": "Acetylation of glucosamine 6-phosphate to GlcNAc6P", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5943", - "label": "LACT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5942", - "label": "D-sorbitol [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5941", - "label": "SLC22A12 exchanges extracellular urate for cytosolic LACT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5940", - "label": "Unknown NAT transfers COCH3 to AFXBO-C, AFNBO-C", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5939", - "label": "ACAT2 condenses 2 Ac-CoA to form ACA-CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5938", - "label": "L-Lys [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5937", - "label": "PYR [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5936", - "label": "N-acetylation of serotonin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5935", - "label": "CAR [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5934", - "label": "palmitoylcarnitine + CoASH => palmitoyl-CoA + carnitine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5933", - "label": "CREAT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5932", - "label": "The acetyl group from acetyl-CoA is transferred to the NAT1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5931", - "label": "AKR1B1 reduces Glc to D-sorbitol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5930", - "label": "acetyl-CoA + 7 malonyl-CoA + 14 NADHP + 14 H+ => palmitate + 7 CO2 + 14 NADP+ + 8 CoASH + 6 H2O", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5929", - "label": "Ura-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5928", - "label": "CMP or TMP or UMP + H2O => cytidine, thymidine, or uridine + orthophosphate [NT5E]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5927", - "label": "The acetyl group from acetyl-CoA is transferred to the NAT2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5926", - "label": "L-Glu [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5925", - "label": "The Ligand:GPCR:Gs complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5924", - "label": "LACT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5923", - "label": "VMAT1/2 can mediate the transport of biogenic amines", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5922", - "label": "Unknown carnitine exporter transports CAR from the cytosol to the extracellular space", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5921", - "label": "2OG [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5920", - "label": "SPN [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5919", - "label": "BBOX1:AscH-:Fe2+ dimer dioxygenates TEABT and 2OG to form CAR and SUCCA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5918", - "label": "Ura-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5917", - "label": "HGSNAT oligomer acetylates Heparan chain(1)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5916", - "label": "NAd [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5915", - "label": "MAL [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5914", - "label": "GPR39 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5913", - "label": "ligands of SLC29A4 [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "5912", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5911", - "label": "urate [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5910", - "label": "SLC7A1 (CAT-1)-mediated uptake of cationic amino acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5909", - "label": "SLC1A1,2,3,6,7 cotransport L-Glu,L-Asp,D-Asp,H+,3Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5908", - "label": "MAL [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5907", - "label": "palmitoyl-CoA + serine => 3-ketosphinganine + CoASH + CO2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5906", - "label": "SLC1A1-3,6,7 exchange L-Glu, H+ and 3Na+ for K+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5905", - "label": "SLC6A4 co-transports 5HT, Cl-, Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5904", - "label": "Glc [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5903", - "label": "Spermidine => N-acetylated spermidine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5902", - "label": "Equilibrative transport (import) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5901", - "label": "SLC7A2, isoform A (CAT-2A)-mediated uptake of cationic amino acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5900", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5899", - "label": "SPM [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5898", - "label": "urate [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5897", - "label": "ADR, NAd [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "5896", - "label": "NAd [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5895", - "label": "CIM [cytosol]", - "databaseLabel": "ChemicalDrug", - "font": { - "color": "#ff9900" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff9900", - "hover": { - "background": "#FFFFFF", - "border": "#ff9900" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff9900" - } - } - }, - { - "id": "5894", - "label": "guanidinoacetate + S-adenosylmethionine => creatine + S-adenosylhomocysteine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5893", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5892", - "label": "Noradrenaline clearance from the synaptic cleft", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5891", - "label": "Ac-CoA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5890", - "label": "HGSNAT oligomer acetylates Heparan sulfate chain(3)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5889", - "label": "CAR [mitochondrial intermembrane space]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5888", - "label": "CRET [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5887", - "label": "MNA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5886", - "label": "SLC7A9:SLC3A1 exchanges L-Arg, CySS-, L-Lys for L-Leu", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5885", - "label": "L-Arg [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5884", - "label": "GCG(53-81) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5883", - "label": "Equilibrative transport (import) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5882", - "label": "Ade-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5881", - "label": "ATAT acetylates microtubules", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5880", - "label": "LDHAL6B reduces PYR to LACT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5879", - "label": "CH3COO- [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5878", - "label": "ADR [clathrin-sculpted monoamine transport vesicle lumen]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5877", - "label": "SLC25A12,13 exchange cytosolic L-Glu for mitochondrial matrix L-Asp", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5876", - "label": "SUCCA [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5875", - "label": "Concentrative transport (import) of a nucleoside and a sodium ions by solute carrier family 28 (sodium-coupled nucleoside transporter), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5874", - "label": "PXLP-K314-GPT transaminates PYR to form L-Ala", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5873", - "label": "Succinate <=> Fumarate (with FAD redox reaction on enzyme)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5872", - "label": "Hist [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5871", - "label": "MPC1:MPC2 cotransports PYR, H+ from cytosol to mitochondrial matrix", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5870", - "label": "Transport of Citrate from Mitochondrial Matrix to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5869", - "label": "Reuptake of serotonin from the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5868", - "label": "AVP(20-28) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5867", - "label": "L-Glu [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5866", - "label": "SLC6A2 cotransports NAd, Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5865", - "label": "LACT [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5864", - "label": "SLC6A14 cotransports SLC6A14 ligands, Cl-, 2Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5863", - "label": "5HT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5862", - "label": "Sulfate is exported to the cytosol in exchange for dicarboxylate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5861", - "label": "SLC7A2, isoform B (CAT-2B)-mediated uptake of cationic amino acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5860", - "label": "BSG:MCTs cotransport LACT, H+ from cytosol to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5859", - "label": "ADR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5858", - "label": "Gly [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5857", - "label": "CAR translocates from the cytosol to the mitochondrial intermembrane space", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5856", - "label": "CAR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5855", - "label": "Concentrative transport (import) of nucleosides plus sodium ions by solute carrier family 28 (sodium-coupled nucleoside transporter), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5854", - "label": "Cho [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5853", - "label": "glutamate uptake by astrocytes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5852", - "label": "malate [mitochondrial matrix] + alpha-ketoglutarate [cytosol] <=> malate [cytosol] + alpha-ketoglutarate [mitochondrial matrix]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5851", - "label": "Exchange of alpha-ketoglutarate (2-oxoglutarate) and malate across the inner mitochondrial membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5850", - "label": "SLC38A4 (ATA3)-mediated uptake of arginine and lysine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5849", - "label": "NTPDase5 hydrolyzes nucleoside diphosphates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5848", - "label": "2OG [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5847", - "label": "L-Met [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5846", - "label": "L-Glu [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5845", - "label": "MAT1A multimers transfer Ado from ATP to L-Met", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5844", - "label": "SLC5A8 transports monocarboxylates from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5843", - "label": "CoA-SH [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5842", - "label": "AGM [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5841", - "label": "PYR [mitochondrial intermembrane space]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5840", - "label": "PYR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5839", - "label": "ADORA2B:Ade-Rib:GsGTP dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5838", - "label": "Equilibrative transport (import) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5837", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - } - ], - "edges": [ - { - "id": "6318", - "label": "304129 (-) 369394", - "from": "6006", - "to": "5925", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6317", - "label": "1684482 (-) 1684022", - "from": "6005", - "to": "5985", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6316", - "label": "1674755 (-) 783021", - "from": "6004", - "to": "5938", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6315", - "label": "1674755 (-) 552820", - "from": "6004", - "to": "5885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6314", - "label": "1863175 (-) 193011", - "from": "6003", - "to": "5841", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6313", - "label": "834570 (-) 1695353", - "from": "6002", - "to": "5965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6312", - "label": "834570 (-) 1684105", - "from": "6002", - "to": "5955", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6311", - "label": "834570 (-) 1695832", - "from": "6002", - "to": "5976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6310", - "label": "834570 (-) 1690356", - "from": "6002", - "to": "5923", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6309", - "label": "492556 (-) 1684105", - "from": "6001", - "to": "5955", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6308", - "label": "492556 (-) 1684482", - "from": "6001", - "to": "6005", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6307", - "label": "492556 (-) 1682942", - "from": "6001", - "to": "5837", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6306", - "label": "492556 (-) 1684283", - "from": "6001", - "to": "5900", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6305", - "label": "299537 (-) 369394", - "from": "6000", - "to": "5925", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6304", - "label": "299541 (-) 298547", - "from": "5999", - "to": "5987", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6303", - "label": "299541 (-) 303154", - "from": "5999", - "to": "5988", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6302", - "label": "299541 (-) 303994", - "from": "5999", - "to": "5884", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6301", - "label": "299541 (-) 304210", - "from": "5999", - "to": "5978", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6300", - "label": "299541 (-) 261355", - "from": "5999", - "to": "5926", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6299", - "label": "299541 (-) 301477", - "from": "5999", - "to": "5868", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6298", - "label": "299541 (-) 299537", - "from": "5999", - "to": "6000", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6297", - "label": "299541 (-) 298315", - "from": "5999", - "to": "5893", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6296", - "label": "299541 (-) 298618", - "from": "5999", - "to": "5964", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6295", - "label": "299541 (-) 298309", - "from": "5999", - "to": "5897", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6294", - "label": "299541 (-) 298310", - "from": "5999", - "to": "5896", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6293", - "label": "299541 (-) 299127", - "from": "5999", - "to": "5967", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6292", - "label": "299541 (-) 293444", - "from": "5999", - "to": "5982", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6291", - "label": "299541 (-) 301845", - "from": "5999", - "to": "5914", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6290", - "label": "299541 (-) 298614", - "from": "5999", - "to": "5968", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6289", - "label": "299541 (-) 304129", - "from": "5999", - "to": "6006", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6288", - "label": "299541 (-) 299067", - "from": "5999", - "to": "5984", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6287", - "label": "299541 (-) 298623", - "from": "5999", - "to": "5960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6286", - "label": "299541 (-) 304276", - "from": "5999", - "to": "5950", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6285", - "label": "2109975 (-) 173043", - "from": "5998", - "to": "5843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6284", - "label": "1614875 (-) 173043", - "from": "5997", - "to": "5843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6283", - "label": "1678366 (-) 192424", - "from": "5996", - "to": "5867", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6282", - "label": "2083872 (-) 1688388", - "from": "5995", - "to": "5898", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6281", - "label": "501796 (-) 504017", - "from": "5994", - "to": "5928", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6280", - "label": "501797 (-) 504017", - "from": "5993", - "to": "5928", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6279", - "label": "1083941 (-) 173043", - "from": "5992", - "to": "5843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6278", - "label": "501798 (-) 501796", - "from": "5991", - "to": "5994", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6277", - "label": "501798 (-) 501797", - "from": "5991", - "to": "5993", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6276", - "label": "780841 (-) 173043", - "from": "5990", - "to": "5843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6275", - "label": "843309 (-) 195984", - "from": "5989", - "to": "5876", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6274", - "label": "303154 (-) 369394", - "from": "5988", - "to": "5925", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6273", - "label": "298547 (-) 502744", - "from": "5987", - "to": "5849", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6272", - "label": "298547 (-) 501798", - "from": "5987", - "to": "5991", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6271", - "label": "1589811 (-) 193879", - "from": "5986", - "to": "5891", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6270", - "label": "299067 (-) 1084713", - "from": "5984", - "to": "5905", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6269", - "label": "299067 (-) 369394", - "from": "5984", - "to": "5925", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6268", - "label": "299067 (-) 1684347", - "from": "5984", - "to": "5883", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6267", - "label": "299067 (-) 1695833", - "from": "5984", - "to": "5975", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6266", - "label": "299067 (-) 1690532", - "from": "5984", - "to": "5869", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6265", - "label": "852543 (-) 173043", - "from": "5983", - "to": "5843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6264", - "label": "293444 (-) 369394", - "from": "5982", - "to": "5925", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6263", - "label": "293444 (-) 409084", - "from": "5982", - "to": "5839", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6262", - "label": "1695306 (-) 1695832", - "from": "5981", - "to": "5976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6261", - "label": "1695306 (-) 1695353", - "from": "5981", - "to": "5965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6260", - "label": "1695307 (-) 1695353", - "from": "5980", - "to": "5965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6259", - "label": "1695310 (-) 1695353", - "from": "5979", - "to": "5965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6258", - "label": "1695310 (-) 1695832", - "from": "5979", - "to": "5976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6257", - "label": "304210 (-) 369394", - "from": "5978", - "to": "5925", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6256", - "label": "1504342 (-) 196703", - "from": "5977", - "to": "5973", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6255", - "label": "1695832 (-) 1684248", - "from": "5976", - "to": "5912", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6254", - "label": "1695833 (-) 779764", - "from": "5975", - "to": "5842", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6253", - "label": "1695833 (-) 170436", - "from": "5975", - "to": "5854", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6252", - "label": "1695833 (-) 1695842", - "from": "5975", - "to": "5971", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6251", - "label": "1695833 (-) 834570", - "from": "5975", - "to": "6002", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6250", - "label": "1695833 (-) 1695306", - "from": "5975", - "to": "5981", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6249", - "label": "1695833 (-) 834827", - "from": "5975", - "to": "5916", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6248", - "label": "1695833 (-) 1695048", - "from": "5975", - "to": "5895", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6247", - "label": "1695833 (-) 842940", - "from": "5975", - "to": "5933", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6246", - "label": "1695833 (-) 1695372", - "from": "5975", - "to": "5952", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6245", - "label": "1695833 (-) 791922", - "from": "5975", - "to": "5887", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6244", - "label": "1695833 (-) 784286", - "from": "5975", - "to": "5872", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6243", - "label": "1695833 (-) 835002", - "from": "5975", - "to": "5859", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6242", - "label": "1695833 (-) 354741", - "from": "5975", - "to": "5863", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6241", - "label": "1695833 (-) 1695310", - "from": "5975", - "to": "5979", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6240", - "label": "1695833 (-) 1695367", - "from": "5975", - "to": "5954", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6239", - "label": "1695833 (-) 1695843", - "from": "5975", - "to": "5970", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6238", - "label": "221274 (-) 1543972", - "from": "5974", - "to": "5907", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6237", - "label": "196703 (-) 759483", - "from": "5973", - "to": "5934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6236", - "label": "1082975 (-) 834827", - "from": "5972", - "to": "5916", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6235", - "label": "1695842 (-) 1695832", - "from": "5971", - "to": "5976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6234", - "label": "1695843 (-) 1695832", - "from": "5970", - "to": "5976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6233", - "label": "298614 (-) 1675578", - "from": "5968", - "to": "5901", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6232", - "label": "298614 (-) 1676716", - "from": "5968", - "to": "5864", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6231", - "label": "298614 (-) 1675041", - "from": "5968", - "to": "5910", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6230", - "label": "298614 (-) 1674755", - "from": "5968", - "to": "6004", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6229", - "label": "298614 (-) 1673677", - "from": "5968", - "to": "5850", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6228", - "label": "298614 (-) 1675635", - "from": "5968", - "to": "5886", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6227", - "label": "298614 (-) 1674167", - "from": "5968", - "to": "5861", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6226", - "label": "299127 (-) 369394", - "from": "5967", - "to": "5925", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6225", - "label": "299127 (-) 1695833", - "from": "5967", - "to": "5975", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6224", - "label": "299127 (-) 1695352", - "from": "5967", - "to": "5966", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6223", - "label": "1695352 (-) 784286", - "from": "5966", - "to": "5872", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6222", - "label": "1695352 (-) 1695310", - "from": "5966", - "to": "5979", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6221", - "label": "1695352 (-) 1695367", - "from": "5966", - "to": "5954", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6220", - "label": "1695352 (-) 834570", - "from": "5966", - "to": "6002", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6219", - "label": "1695352 (-) 1695306", - "from": "5966", - "to": "5981", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6218", - "label": "1695352 (-) 1695307", - "from": "5966", - "to": "5980", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6217", - "label": "1695352 (-) 781114", - "from": "5966", - "to": "5899", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6216", - "label": "1695352 (-) 1695374", - "from": "5966", - "to": "5951", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6215", - "label": "1695352 (-) 1695366", - "from": "5966", - "to": "5958", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6214", - "label": "1695352 (-) 781057", - "from": "5966", - "to": "5920", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6213", - "label": "1695352 (-) 1695372", - "from": "5966", - "to": "5952", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6212", - "label": "1695352 (-) 835002", - "from": "5966", - "to": "5859", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6211", - "label": "1695352 (-) 834827", - "from": "5966", - "to": "5916", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6210", - "label": "1695352 (-) 791922", - "from": "5966", - "to": "5887", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6209", - "label": "1695352 (-) 170436", - "from": "5966", - "to": "5854", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6208", - "label": "1695353 (-) 1684248", - "from": "5965", - "to": "5912", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6207", - "label": "298618 (-) 1675578", - "from": "5964", - "to": "5901", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6206", - "label": "298618 (-) 1674167", - "from": "5964", - "to": "5861", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6205", - "label": "298618 (-) 1676716", - "from": "5964", - "to": "5864", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6204", - "label": "298618 (-) 1675041", - "from": "5964", - "to": "5910", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6203", - "label": "298618 (-) 1675635", - "from": "5964", - "to": "5886", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6202", - "label": "298618 (-) 1674755", - "from": "5964", - "to": "6004", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6201", - "label": "298618 (-) 1673677", - "from": "5964", - "to": "5850", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6200", - "label": "826488 (-) 557190", - "from": "5962", - "to": "5953", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6199", - "label": "782973 (-) 1675911", - "from": "5961", - "to": "5956", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6198", - "label": "298623 (-) 1675041", - "from": "5960", - "to": "5910", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6197", - "label": "298623 (-) 1674167", - "from": "5960", - "to": "5861", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6196", - "label": "298623 (-) 1675578", - "from": "5960", - "to": "5901", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6195", - "label": "298623 (-) 1674755", - "from": "5960", - "to": "6004", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6194", - "label": "195711 (-) 195705", - "from": "5959", - "to": "5963", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6193", - "label": "1695366 (-) 1695353", - "from": "5958", - "to": "5965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6192", - "label": "1683591 (-) 504075", - "from": "5957", - "to": "5918", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6191", - "label": "1675911 (-) 774296", - "from": "5956", - "to": "5947", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6190", - "label": "1684105 (-) 1684248", - "from": "5955", - "to": "5912", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6189", - "label": "1695367 (-) 1695832", - "from": "5954", - "to": "5976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6188", - "label": "1695367 (-) 1695353", - "from": "5954", - "to": "5965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6187", - "label": "557190 (-) 842569", - "from": "5953", - "to": "5894", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6186", - "label": "1695372 (-) 1695832", - "from": "5952", - "to": "5976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6185", - "label": "1695372 (-) 1695353", - "from": "5952", - "to": "5965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6184", - "label": "1695374 (-) 1695353", - "from": "5951", - "to": "5965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6183", - "label": "304276 (-) 369394", - "from": "5950", - "to": "5925", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6182", - "label": "298645 (-) 791020", - "from": "5949", - "to": "5844", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6181", - "label": "298645 (-) 299541", - "from": "5949", - "to": "5999", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6180", - "label": "1688214 (-) 181558", - "from": "5948", - "to": "5904", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6179", - "label": "774296 (-) 774298", - "from": "5947", - "to": "5945", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6178", - "label": "1479321 (-) 173043", - "from": "5946", - "to": "5843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6177", - "label": "774298 (-) 196703", - "from": "5945", - "to": "5973", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6176", - "label": "853660 (-) 173043", - "from": "5944", - "to": "5843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6175", - "label": "1690278 (-) 501018", - "from": "5941", - "to": "5911", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6174", - "label": "1690278 (-) 330402", - "from": "5941", - "to": "5943", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6173", - "label": "1612455 (-) 173043", - "from": "5940", - "to": "5843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6172", - "label": "852652 (-) 173043", - "from": "5939", - "to": "5843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6171", - "label": "783021 (-) 1675911", - "from": "5938", - "to": "5956", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6170", - "label": "192688 (-) 1863046", - "from": "5937", - "to": "5880", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6169", - "label": "836276 (-) 173043", - "from": "5936", - "to": "5843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6168", - "label": "759483 (-) 759479", - "from": "5934", - "to": "5935", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6167", - "label": "842940 (-) 1695832", - "from": "5933", - "to": "5976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6166", - "label": "1599163 (-) 173043", - "from": "5932", - "to": "5843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6165", - "label": "917695 (-) 917666", - "from": "5931", - "to": "5942", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6164", - "label": "1835201 (-) 173043", - "from": "5930", - "to": "5843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6163", - "label": "504017 (-) 504010", - "from": "5928", - "to": "5929", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6162", - "label": "1599186 (-) 173043", - "from": "5927", - "to": "5843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6161", - "label": "261355 (-) 1679651", - "from": "5926", - "to": "5909", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6160", - "label": "261355 (-) 1065763", - "from": "5926", - "to": "5906", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6159", - "label": "261355 (-) 488902", - "from": "5926", - "to": "5853", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6158", - "label": "369394 (-) 330112", - "from": "5925", - "to": "5882", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6157", - "label": "194803 (-) 1863096", - "from": "5924", - "to": "5860", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6156", - "label": "194803 (-) 1690278", - "from": "5924", - "to": "5941", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6155", - "label": "1690356 (-) 1690504", - "from": "5923", - "to": "5878", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6154", - "label": "843513 (-) 760931", - "from": "5922", - "to": "5969", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6153", - "label": "192256 (-) 843309", - "from": "5921", - "to": "5989", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6152", - "label": "192256 (-) 209865", - "from": "5921", - "to": "5851", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6151", - "label": "781057 (-) 1695353", - "from": "5920", - "to": "5965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6150", - "label": "781057 (-) 780841", - "from": "5920", - "to": "5990", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6149", - "label": "843528 (-) 760768", - "from": "5919", - "to": "5856", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6148", - "label": "906508 (-) 173043", - "from": "5917", - "to": "5843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6147", - "label": "834827 (-) 1690356", - "from": "5916", - "to": "5923", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6146", - "label": "834827 (-) 1695832", - "from": "5916", - "to": "5976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6145", - "label": "834827 (-) 1684105", - "from": "5916", - "to": "5955", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6144", - "label": "834827 (-) 1695353", - "from": "5916", - "to": "5965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6143", - "label": "195340 (-) 195711", - "from": "5915", - "to": "5959", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6142", - "label": "301845 (-) 369394", - "from": "5914", - "to": "5925", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6141", - "label": "1684246 (-) 1684105", - "from": "5913", - "to": "5955", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6140", - "label": "501018 (-) 2083872", - "from": "5911", - "to": "5995", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6139", - "label": "1675041 (-) 552820", - "from": "5910", - "to": "5885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6138", - "label": "1675041 (-) 783021", - "from": "5910", - "to": "5938", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6137", - "label": "1679651 (-) 191978", - "from": "5909", - "to": "5846", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6136", - "label": "194852 (-) 832950", - "from": "5908", - "to": "5862", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6135", - "label": "194852 (-) 1835429", - "from": "5908", - "to": "5870", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6134", - "label": "194852 (-) 209865", - "from": "5908", - "to": "5851", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6133", - "label": "1543972 (-) 173043", - "from": "5907", - "to": "5843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6132", - "label": "1065763 (-) 191978", - "from": "5906", - "to": "5846", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6131", - "label": "1084713 (-) 354741", - "from": "5905", - "to": "5863", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6130", - "label": "181558 (-) 917695", - "from": "5904", - "to": "5931", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6129", - "label": "781113 (-) 173043", - "from": "5903", - "to": "5843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6128", - "label": "1684282 (-) 504075", - "from": "5902", - "to": "5918", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6127", - "label": "1675578 (-) 783021", - "from": "5901", - "to": "5938", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6126", - "label": "1675578 (-) 552820", - "from": "5901", - "to": "5885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6125", - "label": "1684283 (-) 504010", - "from": "5900", - "to": "5929", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6124", - "label": "781114 (-) 781113", - "from": "5899", - "to": "5903", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6123", - "label": "781114 (-) 1695353", - "from": "5899", - "to": "5965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6122", - "label": "1688388 (-) 1688214", - "from": "5898", - "to": "5948", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6121", - "label": "298309 (-) 369394", - "from": "5897", - "to": "5925", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6120", - "label": "298310 (-) 369394", - "from": "5896", - "to": "5925", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6119", - "label": "298310 (-) 1082975", - "from": "5896", - "to": "5972", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6118", - "label": "298310 (-) 1695833", - "from": "5896", - "to": "5975", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6117", - "label": "298310 (-) 1695352", - "from": "5896", - "to": "5966", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6116", - "label": "298310 (-) 1085261", - "from": "5896", - "to": "5892", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6115", - "label": "298310 (-) 1690536", - "from": "5896", - "to": "5866", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6114", - "label": "298310 (-) 1684347", - "from": "5896", - "to": "5883", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6113", - "label": "1695048 (-) 1695832", - "from": "5895", - "to": "5976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6112", - "label": "842569 (-) 842092", - "from": "5894", - "to": "5888", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6111", - "label": "298315 (-) 369394", - "from": "5893", - "to": "5925", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6110", - "label": "1085261 (-) 834827", - "from": "5892", - "to": "5916", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6109", - "label": "193879 (-) 1083941", - "from": "5891", - "to": "5992", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6108", - "label": "193879 (-) 836276", - "from": "5891", - "to": "5936", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6107", - "label": "193879 (-) 853660", - "from": "5891", - "to": "5944", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6106", - "label": "193879 (-) 1599163", - "from": "5891", - "to": "5932", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6105", - "label": "193879 (-) 780841", - "from": "5891", - "to": "5990", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6104", - "label": "193879 (-) 2033028", - "from": "5891", - "to": "5881", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6103", - "label": "193879 (-) 907096", - "from": "5891", - "to": "5890", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6102", - "label": "193879 (-) 906508", - "from": "5891", - "to": "5917", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6101", - "label": "193879 (-) 1479321", - "from": "5891", - "to": "5946", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6100", - "label": "193879 (-) 2109975", - "from": "5891", - "to": "5998", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6099", - "label": "193879 (-) 1612455", - "from": "5891", - "to": "5940", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6098", - "label": "193879 (-) 1835201", - "from": "5891", - "to": "5930", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6097", - "label": "193879 (-) 781113", - "from": "5891", - "to": "5903", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6096", - "label": "193879 (-) 1599186", - "from": "5891", - "to": "5927", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6095", - "label": "193879 (-) 852652", - "from": "5891", - "to": "5939", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6094", - "label": "193879 (-) 852543", - "from": "5891", - "to": "5983", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6093", - "label": "907096 (-) 173043", - "from": "5890", - "to": "5843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6092", - "label": "791922 (-) 1695832", - "from": "5887", - "to": "5976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6091", - "label": "791922 (-) 1695353", - "from": "5887", - "to": "5965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6090", - "label": "1675635 (-) 552820", - "from": "5886", - "to": "5885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6089", - "label": "1675635 (-) 783021", - "from": "5886", - "to": "5938", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6088", - "label": "552820 (-) 1675911", - "from": "5885", - "to": "5956", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6087", - "label": "303994 (-) 369394", - "from": "5884", - "to": "5925", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6086", - "label": "1684347 (-) 834827", - "from": "5883", - "to": "5916", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6085", - "label": "1684347 (-) 354741", - "from": "5883", - "to": "5863", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6084", - "label": "1684347 (-) 834570", - "from": "5883", - "to": "6002", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6083", - "label": "1684347 (-) 492556", - "from": "5883", - "to": "6001", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6082", - "label": "1684347 (-) 1684246", - "from": "5883", - "to": "5913", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6081", - "label": "1684347 (-) 835002", - "from": "5883", - "to": "5859", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6080", - "label": "330112 (-) 1684368", - "from": "5882", - "to": "5875", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6079", - "label": "330112 (-) 1683591", - "from": "5882", - "to": "5957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6078", - "label": "330112 (-) 1684282", - "from": "5882", - "to": "5902", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6077", - "label": "330112 (-) 1683390", - "from": "5882", - "to": "5855", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6076", - "label": "330112 (-) 1682941", - "from": "5882", - "to": "5838", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6075", - "label": "2033028 (-) 173043", - "from": "5881", - "to": "5843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6074", - "label": "1863046 (-) 1863083", - "from": "5880", - "to": "5865", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6073", - "label": "778631 (-) 1589811", - "from": "5879", - "to": "5986", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6072", - "label": "778121 (-) 192424", - "from": "5877", - "to": "5867", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6071", - "label": "195984 (-) 195989", - "from": "5876", - "to": "5873", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6070", - "label": "1684368 (-) 504075", - "from": "5875", - "to": "5918", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6069", - "label": "193941 (-) 191969", - "from": "5874", - "to": "5848", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6068", - "label": "195989 (-) 195705", - "from": "5873", - "to": "5963", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6067", - "label": "784286 (-) 1695832", - "from": "5872", - "to": "5976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6066", - "label": "784286 (-) 1690356", - "from": "5872", - "to": "5923", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6065", - "label": "784286 (-) 1695353", - "from": "5872", - "to": "5965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6064", - "label": "192932 (-) 192688", - "from": "5871", - "to": "5937", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6063", - "label": "1835429 (-) 195340", - "from": "5870", - "to": "5915", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6062", - "label": "1690532 (-) 354741", - "from": "5869", - "to": "5863", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6061", - "label": "301477 (-) 369394", - "from": "5868", - "to": "5925", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6060", - "label": "192424 (-) 774298", - "from": "5867", - "to": "5945", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6059", - "label": "1690536 (-) 834827", - "from": "5866", - "to": "5916", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6058", - "label": "1676716 (-) 783021", - "from": "5864", - "to": "5938", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6057", - "label": "1676716 (-) 782973", - "from": "5864", - "to": "5961", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6056", - "label": "1676716 (-) 221274", - "from": "5864", - "to": "5974", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6055", - "label": "1676716 (-) 552820", - "from": "5864", - "to": "5885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6054", - "label": "1676716 (-) 780263", - "from": "5864", - "to": "5847", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6053", - "label": "1676716 (-) 498622", - "from": "5864", - "to": "5858", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6052", - "label": "354741 (-) 1684105", - "from": "5863", - "to": "5955", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6051", - "label": "354741 (-) 1695832", - "from": "5863", - "to": "5976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6050", - "label": "354741 (-) 1690356", - "from": "5863", - "to": "5923", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6049", - "label": "354741 (-) 836276", - "from": "5863", - "to": "5936", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6048", - "label": "832950 (-) 195340", - "from": "5862", - "to": "5915", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6047", - "label": "1674167 (-) 552820", - "from": "5861", - "to": "5885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6046", - "label": "1674167 (-) 783021", - "from": "5861", - "to": "5938", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6045", - "label": "1863096 (-) 330402", - "from": "5860", - "to": "5943", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6044", - "label": "835002 (-) 1695353", - "from": "5859", - "to": "5965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6043", - "label": "835002 (-) 1684105", - "from": "5859", - "to": "5955", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6042", - "label": "835002 (-) 1690356", - "from": "5859", - "to": "5923", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6041", - "label": "835002 (-) 1695832", - "from": "5859", - "to": "5976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6040", - "label": "498622 (-) 1614875", - "from": "5858", - "to": "5997", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6039", - "label": "760767 (-) 759647", - "from": "5857", - "to": "5889", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6038", - "label": "760768 (-) 760767", - "from": "5856", - "to": "5857", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6037", - "label": "760768 (-) 843513", - "from": "5856", - "to": "5922", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6036", - "label": "1683390 (-) 504075", - "from": "5855", - "to": "5918", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6035", - "label": "170436 (-) 1083941", - "from": "5854", - "to": "5992", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6034", - "label": "170436 (-) 1695832", - "from": "5854", - "to": "5976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6033", - "label": "170436 (-) 1695353", - "from": "5854", - "to": "5965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6032", - "label": "488902 (-) 191978", - "from": "5853", - "to": "5846", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6031", - "label": "209864 (-) 192256", - "from": "5852", - "to": "5921", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6030", - "label": "209864 (-) 194852", - "from": "5852", - "to": "5908", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6029", - "label": "209865 (-) 195340", - "from": "5851", - "to": "5915", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6028", - "label": "1673677 (-) 783021", - "from": "5850", - "to": "5938", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6027", - "label": "1673677 (-) 552820", - "from": "5850", - "to": "5885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6026", - "label": "502744 (-) 501797", - "from": "5849", - "to": "5993", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6025", - "label": "502744 (-) 501796", - "from": "5849", - "to": "5994", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6024", - "label": "191969 (-) 209864", - "from": "5848", - "to": "5852", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6023", - "label": "191969 (-) 843528", - "from": "5848", - "to": "5919", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6022", - "label": "780263 (-) 780267", - "from": "5847", - "to": "5845", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6021", - "label": "780263 (-) 826488", - "from": "5847", - "to": "5962", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6020", - "label": "191978 (-) 778121", - "from": "5846", - "to": "5877", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6019", - "label": "191978 (-) 1678366", - "from": "5846", - "to": "5996", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6018", - "label": "780267 (-) 557190", - "from": "5845", - "to": "5953", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6017", - "label": "791020 (-) 194803", - "from": "5844", - "to": "5924", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6016", - "label": "791020 (-) 193018", - "from": "5844", - "to": "5840", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6015", - "label": "791020 (-) 778631", - "from": "5844", - "to": "5879", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6014", - "label": "173043 (-) 1504342", - "from": "5843", - "to": "5977", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6013", - "label": "779764 (-) 1695832", - "from": "5842", - "to": "5976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6012", - "label": "193011 (-) 192932", - "from": "5841", - "to": "5871", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6011", - "label": "193018 (-) 193941", - "from": "5840", - "to": "5874", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6010", - "label": "193018 (-) 1863175", - "from": "5840", - "to": "6003", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6009", - "label": "409084 (-) 330112", - "from": "5839", - "to": "5882", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6008", - "label": "1682941 (-) 504075", - "from": "5838", - "to": "5918", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "6007", - "label": "1682942 (-) 504010", - "from": "5837", - "to": "5929", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_metabs_Propionate_graphml.json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_metabs_Propionate_graphml.json deleted file mode 100644 index 063786a6ea..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_metabs_Propionate_graphml.json +++ /dev/null @@ -1,6526 +0,0 @@ -{ - "nodes": [ - { - "id": "5498", - "label": "P2RY11 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5497", - "label": "SLC29A3 transports nucleosides from cytosol to lysosomal lumen", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5496", - "label": "SLC7A3 (CAT-3)-mediated uptake of cationic amino acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5495", - "label": "VDAC1 transports PYR from cytosol to mitochondrial intermembrane space", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5494", - "label": "DA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5493", - "label": "Ade-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5492", - "label": "PGE2 [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5491", - "label": "The Ligand:GPCR:Gq complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5490", - "label": "NatC acetylates ARFFRP1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5489", - "label": "Cytosolic chenodeoxycholoyl-CoA or choloyl-CoA are conjugated with glycine or taurine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5488", - "label": "SLC25A18,A22 cotransport Glu, H+ from cytosol to mitochondrial matrix", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5487", - "label": "SLC17A3-2 transports cytosolic urate to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5486", - "label": "uridine 5'-monophosphate [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5485", - "label": "cytidine 5'-monophosphate [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5484", - "label": "Cho is acetylated to AcCho by CHAT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5483", - "label": "NTPDase6 hydrolyzes nucleoside diphosphates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5482", - "label": "Spermine => N-acetylated spermine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5481", - "label": "TMLHE dimer dioxygenates TMLYS and 2OG to form HTMLYS and SUCCA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5480", - "label": "CYSLTR2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5479", - "label": "UDP [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5478", - "label": "acetate + CoA + ATP => acetyl-CoA + AMP + pyrophosphate [cytosolic]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5477", - "label": "Ura-Rib [lysosomal lumen]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5476", - "label": "5HT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5475", - "label": "HMGCS1 condenses Ac-CoA and ACA-CoA to form bHMG-CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5474", - "label": "G-protein beta-gamma complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "5473", - "label": "TMAM [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5472", - "label": "Gu [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5471", - "label": "MPP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5470", - "label": "NPS [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5469", - "label": "SLC25A16 transports cytosolic CoA-SH to mitichondrial matrix", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5468", - "label": "OCT2 mediates tubular secretion of organic cations in the kidney", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5467", - "label": "OCT2 mediates tubular uptake of organic cations in the kidney", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5466", - "label": "L-Ser [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5465", - "label": "CoA-SH [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5464", - "label": "Uptake of Noradrenaline", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5463", - "label": "OCT2 substrates [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "5462", - "label": "Oxaliplatin [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5461", - "label": "CAR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5460", - "label": "L-Lys [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5459", - "label": "Hist [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5458", - "label": "OCT1 transports organic cations into hepatic cells", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5457", - "label": "OCT1 transports organic cations out of hepatic cells", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5456", - "label": "L-Arg [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5455", - "label": "FUMA [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5454", - "label": "MAT2B:MAT2A:K+:2Mg2+ transfers Ado from ATP to L-Met", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5453", - "label": "L-His [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5452", - "label": "L-Orn [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5451", - "label": "(S)-Malate <=> Fumarate + H2O", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5450", - "label": "OCT1 substrates [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "5449", - "label": "Concentrative transport (import) of a nucleoside and two sodium ions by solute carrier family 28 (sodium-coupled nucleoside transporter), member 3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5448", - "label": "SLC25A29 transports basic amino acids from cytosol to mitochondrial matrix", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5447", - "label": "Equilibrative transport (export) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5446", - "label": "MTF [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5445", - "label": "AdoMet [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5444", - "label": "4-Di-2-ASP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5443", - "label": "QN [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5442", - "label": "NPSR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5441", - "label": "SLC2A9 transports Fru, Glc, urate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5440", - "label": "L-Arg [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5439", - "label": "Eis acetylates DUSP16", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5438", - "label": "glutamate + acetyl CoA => N-acetyl glutamate + CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5437", - "label": "Acetylation of glucosamine 6-phosphate to GlcNAc6P", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5436", - "label": "EtCOO- or C2H5COO- [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5435", - "label": "LACT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5434", - "label": "D-sorbitol [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5433", - "label": "SLC22A12 exchanges extracellular urate for cytosolic LACT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5432", - "label": "Unknown NAT transfers COCH3 to AFXBO-C, AFNBO-C", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5431", - "label": "ACAT2 condenses 2 Ac-CoA to form ACA-CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5430", - "label": "L-Lys [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5429", - "label": "PYR [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5428", - "label": "N-acetylation of serotonin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5427", - "label": "CAR [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5426", - "label": "palmitoylcarnitine + CoASH => palmitoyl-CoA + carnitine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5425", - "label": "CREAT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5424", - "label": "The acetyl group from acetyl-CoA is transferred to the NAT1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5423", - "label": "AKR1B1 reduces Glc to D-sorbitol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5422", - "label": "acetyl-CoA + 7 malonyl-CoA + 14 NADHP + 14 H+ => palmitate + 7 CO2 + 14 NADP+ + 8 CoASH + 6 H2O", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5421", - "label": "Ura-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5420", - "label": "CMP or TMP or UMP + H2O => cytidine, thymidine, or uridine + orthophosphate [NT5E]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5419", - "label": "The acetyl group from acetyl-CoA is transferred to the NAT2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5418", - "label": "L-Glu [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5417", - "label": "The Ligand:GPCR:Gs complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5416", - "label": "LACT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5415", - "label": "VMAT1/2 can mediate the transport of biogenic amines", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5414", - "label": "Unknown carnitine exporter transports CAR from the cytosol to the extracellular space", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5413", - "label": "2OG [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5412", - "label": "SPN [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5411", - "label": "BBOX1:AscH-:Fe2+ dimer dioxygenates TEABT and 2OG to form CAR and SUCCA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5410", - "label": "Ura-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5409", - "label": "HGSNAT oligomer acetylates Heparan chain(1)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5408", - "label": "NAd [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5407", - "label": "MAL [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5406", - "label": "GPR39 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5405", - "label": "ligands of SLC29A4 [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "5404", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5403", - "label": "urate [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5402", - "label": "SLC7A1 (CAT-1)-mediated uptake of cationic amino acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5401", - "label": "SLC1A1,2,3,6,7 cotransport L-Glu,L-Asp,D-Asp,H+,3Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5400", - "label": "MAL [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5399", - "label": "palmitoyl-CoA + serine => 3-ketosphinganine + CoASH + CO2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5398", - "label": "SLC1A1-3,6,7 exchange L-Glu, H+ and 3Na+ for K+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5397", - "label": "SLC6A4 co-transports 5HT, Cl-, Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5396", - "label": "Glc [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5395", - "label": "Spermidine => N-acetylated spermidine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5394", - "label": "Equilibrative transport (import) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5393", - "label": "SLC7A2, isoform A (CAT-2A)-mediated uptake of cationic amino acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5392", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5391", - "label": "SPM [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5390", - "label": "urate [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5389", - "label": "ADR, NAd [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "5388", - "label": "NAd [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5387", - "label": "CIM [cytosol]", - "databaseLabel": "ChemicalDrug", - "font": { - "color": "#ff9900" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff9900", - "hover": { - "background": "#FFFFFF", - "border": "#ff9900" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff9900" - } - } - }, - { - "id": "5386", - "label": "guanidinoacetate + S-adenosylmethionine => creatine + S-adenosylhomocysteine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5385", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5384", - "label": "Noradrenaline clearance from the synaptic cleft", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5383", - "label": "Ac-CoA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5382", - "label": "HGSNAT oligomer acetylates Heparan sulfate chain(3)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5381", - "label": "CAR [mitochondrial intermembrane space]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5380", - "label": "CRET [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5379", - "label": "MNA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5378", - "label": "SLC7A9:SLC3A1 exchanges L-Arg, CySS-, L-Lys for L-Leu", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5377", - "label": "L-Arg [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5376", - "label": "GCG(53-81) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5375", - "label": "Equilibrative transport (import) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5374", - "label": "Ade-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5373", - "label": "ATAT acetylates microtubules", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5372", - "label": "LDHAL6B reduces PYR to LACT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5371", - "label": "CH3COO- [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5370", - "label": "ADR [clathrin-sculpted monoamine transport vesicle lumen]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5369", - "label": "SLC25A12,13 exchange cytosolic L-Glu for mitochondrial matrix L-Asp", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5368", - "label": "SUCCA [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5367", - "label": "Concentrative transport (import) of a nucleoside and a sodium ions by solute carrier family 28 (sodium-coupled nucleoside transporter), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5366", - "label": "PXLP-K314-GPT transaminates PYR to form L-Ala", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5365", - "label": "Succinate <=> Fumarate (with FAD redox reaction on enzyme)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5364", - "label": "Hist [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5363", - "label": "MPC1:MPC2 cotransports PYR, H+ from cytosol to mitochondrial matrix", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5362", - "label": "Transport of Citrate from Mitochondrial Matrix to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5361", - "label": "Reuptake of serotonin from the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5360", - "label": "AVP(20-28) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "5359", - "label": "L-Glu [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5358", - "label": "SLC6A2 cotransports NAd, Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5357", - "label": "LACT [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5356", - "label": "SLC6A14 cotransports SLC6A14 ligands, Cl-, 2Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5355", - "label": "5HT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5354", - "label": "Sulfate is exported to the cytosol in exchange for dicarboxylate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5353", - "label": "SLC7A2, isoform B (CAT-2B)-mediated uptake of cationic amino acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5352", - "label": "BSG:MCTs cotransport LACT, H+ from cytosol to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5351", - "label": "ADR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5350", - "label": "Gly [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5349", - "label": "CAR translocates from the cytosol to the mitochondrial intermembrane space", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "5348", - "label": "CAR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "5347", - "label": "Concentrative transport (import) of nucleosides plus sodium ions by solute carrier family 28 (sodium-coupled nucleoside transporter), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5346", - "label": "Cho [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5345", - "label": "glutamate uptake by astrocytes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5344", - "label": "malate [mitochondrial matrix] + alpha-ketoglutarate [cytosol] <=> malate [cytosol] + alpha-ketoglutarate [mitochondrial matrix]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5343", - "label": "Exchange of alpha-ketoglutarate (2-oxoglutarate) and malate across the inner mitochondrial membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5342", - "label": "SLC38A4 (ATA3)-mediated uptake of arginine and lysine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5341", - "label": "NTPDase5 hydrolyzes nucleoside diphosphates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5340", - "label": "2OG [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5339", - "label": "L-Met [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5338", - "label": "L-Glu [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5337", - "label": "MAT1A multimers transfer Ado from ATP to L-Met", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5336", - "label": "SLC5A8 transports monocarboxylates from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5335", - "label": "CoA-SH [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5334", - "label": "AGM [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5333", - "label": "PYR [mitochondrial intermembrane space]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5332", - "label": "PYR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "5331", - "label": "ADORA2B:Ade-Rib:GsGTP dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5330", - "label": "Equilibrative transport (import) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "5329", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - } - ], - "edges": [ - { - "id": "5810", - "label": "304129 (-) 369394", - "from": "5498", - "to": "5417", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5809", - "label": "1684482 (-) 1684022", - "from": "5497", - "to": "5477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5808", - "label": "1674755 (-) 783021", - "from": "5496", - "to": "5430", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5807", - "label": "1674755 (-) 552820", - "from": "5496", - "to": "5377", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5806", - "label": "1863175 (-) 193011", - "from": "5495", - "to": "5333", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5805", - "label": "834570 (-) 1695353", - "from": "5494", - "to": "5457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5804", - "label": "834570 (-) 1684105", - "from": "5494", - "to": "5447", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5803", - "label": "834570 (-) 1695832", - "from": "5494", - "to": "5468", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5802", - "label": "834570 (-) 1690356", - "from": "5494", - "to": "5415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5801", - "label": "492556 (-) 1684105", - "from": "5493", - "to": "5447", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5800", - "label": "492556 (-) 1684482", - "from": "5493", - "to": "5497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5799", - "label": "492556 (-) 1682942", - "from": "5493", - "to": "5329", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5798", - "label": "492556 (-) 1684283", - "from": "5493", - "to": "5392", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5797", - "label": "299537 (-) 369394", - "from": "5492", - "to": "5417", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5796", - "label": "299541 (-) 298547", - "from": "5491", - "to": "5479", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5795", - "label": "299541 (-) 303154", - "from": "5491", - "to": "5480", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5794", - "label": "299541 (-) 303994", - "from": "5491", - "to": "5376", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5793", - "label": "299541 (-) 304210", - "from": "5491", - "to": "5470", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5792", - "label": "299541 (-) 261355", - "from": "5491", - "to": "5418", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5791", - "label": "299541 (-) 301477", - "from": "5491", - "to": "5360", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5790", - "label": "299541 (-) 299537", - "from": "5491", - "to": "5492", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5789", - "label": "299541 (-) 298315", - "from": "5491", - "to": "5385", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5788", - "label": "299541 (-) 298618", - "from": "5491", - "to": "5456", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5787", - "label": "299541 (-) 298309", - "from": "5491", - "to": "5389", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5786", - "label": "299541 (-) 298310", - "from": "5491", - "to": "5388", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5785", - "label": "299541 (-) 299127", - "from": "5491", - "to": "5459", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5784", - "label": "299541 (-) 293444", - "from": "5491", - "to": "5474", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5783", - "label": "299541 (-) 301845", - "from": "5491", - "to": "5406", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5782", - "label": "299541 (-) 298614", - "from": "5491", - "to": "5460", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5781", - "label": "299541 (-) 304129", - "from": "5491", - "to": "5498", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5780", - "label": "299541 (-) 299067", - "from": "5491", - "to": "5476", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5779", - "label": "299541 (-) 298623", - "from": "5491", - "to": "5452", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5778", - "label": "299541 (-) 304276", - "from": "5491", - "to": "5442", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5777", - "label": "2109975 (-) 173043", - "from": "5490", - "to": "5335", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5776", - "label": "1614875 (-) 173043", - "from": "5489", - "to": "5335", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5775", - "label": "1678366 (-) 192424", - "from": "5488", - "to": "5359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5774", - "label": "2083872 (-) 1688388", - "from": "5487", - "to": "5390", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5773", - "label": "501796 (-) 504017", - "from": "5486", - "to": "5420", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5772", - "label": "501797 (-) 504017", - "from": "5485", - "to": "5420", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5771", - "label": "1083941 (-) 173043", - "from": "5484", - "to": "5335", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5770", - "label": "501798 (-) 501796", - "from": "5483", - "to": "5486", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5769", - "label": "501798 (-) 501797", - "from": "5483", - "to": "5485", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5768", - "label": "780841 (-) 173043", - "from": "5482", - "to": "5335", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5767", - "label": "843309 (-) 195984", - "from": "5481", - "to": "5368", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5766", - "label": "303154 (-) 369394", - "from": "5480", - "to": "5417", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5765", - "label": "298547 (-) 502744", - "from": "5479", - "to": "5341", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5764", - "label": "298547 (-) 501798", - "from": "5479", - "to": "5483", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5763", - "label": "1589811 (-) 193879", - "from": "5478", - "to": "5383", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5762", - "label": "299067 (-) 1084713", - "from": "5476", - "to": "5397", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5761", - "label": "299067 (-) 369394", - "from": "5476", - "to": "5417", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5760", - "label": "299067 (-) 1684347", - "from": "5476", - "to": "5375", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5759", - "label": "299067 (-) 1695833", - "from": "5476", - "to": "5467", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5758", - "label": "299067 (-) 1690532", - "from": "5476", - "to": "5361", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5757", - "label": "852543 (-) 173043", - "from": "5475", - "to": "5335", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5756", - "label": "293444 (-) 369394", - "from": "5474", - "to": "5417", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5755", - "label": "293444 (-) 409084", - "from": "5474", - "to": "5331", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5754", - "label": "1695306 (-) 1695832", - "from": "5473", - "to": "5468", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5753", - "label": "1695306 (-) 1695353", - "from": "5473", - "to": "5457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5752", - "label": "1695307 (-) 1695353", - "from": "5472", - "to": "5457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5751", - "label": "1695310 (-) 1695353", - "from": "5471", - "to": "5457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5750", - "label": "1695310 (-) 1695832", - "from": "5471", - "to": "5468", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5749", - "label": "304210 (-) 369394", - "from": "5470", - "to": "5417", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5748", - "label": "1504342 (-) 196703", - "from": "5469", - "to": "5465", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5747", - "label": "1695832 (-) 1684248", - "from": "5468", - "to": "5404", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5746", - "label": "1695833 (-) 779764", - "from": "5467", - "to": "5334", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5745", - "label": "1695833 (-) 170436", - "from": "5467", - "to": "5346", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5744", - "label": "1695833 (-) 1695842", - "from": "5467", - "to": "5463", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5743", - "label": "1695833 (-) 834570", - "from": "5467", - "to": "5494", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5742", - "label": "1695833 (-) 1695306", - "from": "5467", - "to": "5473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5741", - "label": "1695833 (-) 834827", - "from": "5467", - "to": "5408", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5740", - "label": "1695833 (-) 1695048", - "from": "5467", - "to": "5387", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5739", - "label": "1695833 (-) 842940", - "from": "5467", - "to": "5425", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5738", - "label": "1695833 (-) 1695372", - "from": "5467", - "to": "5444", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5737", - "label": "1695833 (-) 791922", - "from": "5467", - "to": "5379", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5736", - "label": "1695833 (-) 784286", - "from": "5467", - "to": "5364", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5735", - "label": "1695833 (-) 835002", - "from": "5467", - "to": "5351", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5734", - "label": "1695833 (-) 354741", - "from": "5467", - "to": "5355", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5733", - "label": "1695833 (-) 1695310", - "from": "5467", - "to": "5471", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5732", - "label": "1695833 (-) 1695367", - "from": "5467", - "to": "5446", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5731", - "label": "1695833 (-) 1695843", - "from": "5467", - "to": "5462", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5730", - "label": "221274 (-) 1543972", - "from": "5466", - "to": "5399", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5729", - "label": "196703 (-) 759483", - "from": "5465", - "to": "5426", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5728", - "label": "1082975 (-) 834827", - "from": "5464", - "to": "5408", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5727", - "label": "1695842 (-) 1695832", - "from": "5463", - "to": "5468", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5726", - "label": "1695843 (-) 1695832", - "from": "5462", - "to": "5468", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5725", - "label": "298614 (-) 1675578", - "from": "5460", - "to": "5393", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5724", - "label": "298614 (-) 1676716", - "from": "5460", - "to": "5356", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5723", - "label": "298614 (-) 1675041", - "from": "5460", - "to": "5402", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5722", - "label": "298614 (-) 1674755", - "from": "5460", - "to": "5496", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5721", - "label": "298614 (-) 1673677", - "from": "5460", - "to": "5342", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5720", - "label": "298614 (-) 1675635", - "from": "5460", - "to": "5378", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5719", - "label": "298614 (-) 1674167", - "from": "5460", - "to": "5353", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5718", - "label": "299127 (-) 369394", - "from": "5459", - "to": "5417", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5717", - "label": "299127 (-) 1695833", - "from": "5459", - "to": "5467", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5716", - "label": "299127 (-) 1695352", - "from": "5459", - "to": "5458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5715", - "label": "1695352 (-) 784286", - "from": "5458", - "to": "5364", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5714", - "label": "1695352 (-) 1695310", - "from": "5458", - "to": "5471", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5713", - "label": "1695352 (-) 1695367", - "from": "5458", - "to": "5446", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5712", - "label": "1695352 (-) 834570", - "from": "5458", - "to": "5494", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5711", - "label": "1695352 (-) 1695306", - "from": "5458", - "to": "5473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5710", - "label": "1695352 (-) 1695307", - "from": "5458", - "to": "5472", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5709", - "label": "1695352 (-) 781114", - "from": "5458", - "to": "5391", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5708", - "label": "1695352 (-) 1695374", - "from": "5458", - "to": "5443", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5707", - "label": "1695352 (-) 1695366", - "from": "5458", - "to": "5450", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5706", - "label": "1695352 (-) 781057", - "from": "5458", - "to": "5412", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5705", - "label": "1695352 (-) 1695372", - "from": "5458", - "to": "5444", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5704", - "label": "1695352 (-) 835002", - "from": "5458", - "to": "5351", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5703", - "label": "1695352 (-) 834827", - "from": "5458", - "to": "5408", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5702", - "label": "1695352 (-) 791922", - "from": "5458", - "to": "5379", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5701", - "label": "1695352 (-) 170436", - "from": "5458", - "to": "5346", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5700", - "label": "1695353 (-) 1684248", - "from": "5457", - "to": "5404", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5699", - "label": "298618 (-) 1675578", - "from": "5456", - "to": "5393", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5698", - "label": "298618 (-) 1674167", - "from": "5456", - "to": "5353", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5697", - "label": "298618 (-) 1676716", - "from": "5456", - "to": "5356", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5696", - "label": "298618 (-) 1675041", - "from": "5456", - "to": "5402", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5695", - "label": "298618 (-) 1675635", - "from": "5456", - "to": "5378", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5694", - "label": "298618 (-) 1674755", - "from": "5456", - "to": "5496", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5693", - "label": "298618 (-) 1673677", - "from": "5456", - "to": "5342", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5692", - "label": "826488 (-) 557190", - "from": "5454", - "to": "5445", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5691", - "label": "782973 (-) 1675911", - "from": "5453", - "to": "5448", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5690", - "label": "298623 (-) 1675041", - "from": "5452", - "to": "5402", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5689", - "label": "298623 (-) 1674167", - "from": "5452", - "to": "5353", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5688", - "label": "298623 (-) 1675578", - "from": "5452", - "to": "5393", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5687", - "label": "298623 (-) 1674755", - "from": "5452", - "to": "5496", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5686", - "label": "195711 (-) 195705", - "from": "5451", - "to": "5455", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5685", - "label": "1695366 (-) 1695353", - "from": "5450", - "to": "5457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5684", - "label": "1683591 (-) 504075", - "from": "5449", - "to": "5410", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5683", - "label": "1675911 (-) 774296", - "from": "5448", - "to": "5440", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5682", - "label": "1684105 (-) 1684248", - "from": "5447", - "to": "5404", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5681", - "label": "1695367 (-) 1695832", - "from": "5446", - "to": "5468", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5680", - "label": "1695367 (-) 1695353", - "from": "5446", - "to": "5457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5679", - "label": "557190 (-) 842569", - "from": "5445", - "to": "5386", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5678", - "label": "1695372 (-) 1695832", - "from": "5444", - "to": "5468", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5677", - "label": "1695372 (-) 1695353", - "from": "5444", - "to": "5457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5676", - "label": "1695374 (-) 1695353", - "from": "5443", - "to": "5457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5675", - "label": "304276 (-) 369394", - "from": "5442", - "to": "5417", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5674", - "label": "1688214 (-) 181558", - "from": "5441", - "to": "5396", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5673", - "label": "774296 (-) 774298", - "from": "5440", - "to": "5438", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5672", - "label": "1479321 (-) 173043", - "from": "5439", - "to": "5335", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5671", - "label": "774298 (-) 196703", - "from": "5438", - "to": "5465", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5670", - "label": "853660 (-) 173043", - "from": "5437", - "to": "5335", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5669", - "label": "298656 (-) 791020", - "from": "5436", - "to": "5336", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5668", - "label": "298656 (-) 299541", - "from": "5436", - "to": "5491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5667", - "label": "1690278 (-) 501018", - "from": "5433", - "to": "5403", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5666", - "label": "1690278 (-) 330402", - "from": "5433", - "to": "5435", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5665", - "label": "1612455 (-) 173043", - "from": "5432", - "to": "5335", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5664", - "label": "852652 (-) 173043", - "from": "5431", - "to": "5335", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5663", - "label": "783021 (-) 1675911", - "from": "5430", - "to": "5448", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5662", - "label": "192688 (-) 1863046", - "from": "5429", - "to": "5372", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5661", - "label": "836276 (-) 173043", - "from": "5428", - "to": "5335", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5660", - "label": "759483 (-) 759479", - "from": "5426", - "to": "5427", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5659", - "label": "842940 (-) 1695832", - "from": "5425", - "to": "5468", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5658", - "label": "1599163 (-) 173043", - "from": "5424", - "to": "5335", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5657", - "label": "917695 (-) 917666", - "from": "5423", - "to": "5434", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5656", - "label": "1835201 (-) 173043", - "from": "5422", - "to": "5335", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5655", - "label": "504017 (-) 504010", - "from": "5420", - "to": "5421", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5654", - "label": "1599186 (-) 173043", - "from": "5419", - "to": "5335", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5653", - "label": "261355 (-) 1679651", - "from": "5418", - "to": "5401", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5652", - "label": "261355 (-) 1065763", - "from": "5418", - "to": "5398", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5651", - "label": "261355 (-) 488902", - "from": "5418", - "to": "5345", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5650", - "label": "369394 (-) 330112", - "from": "5417", - "to": "5374", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5649", - "label": "194803 (-) 1863096", - "from": "5416", - "to": "5352", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5648", - "label": "194803 (-) 1690278", - "from": "5416", - "to": "5433", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5647", - "label": "1690356 (-) 1690504", - "from": "5415", - "to": "5370", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5646", - "label": "843513 (-) 760931", - "from": "5414", - "to": "5461", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5645", - "label": "192256 (-) 843309", - "from": "5413", - "to": "5481", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5644", - "label": "192256 (-) 209865", - "from": "5413", - "to": "5343", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5643", - "label": "781057 (-) 1695353", - "from": "5412", - "to": "5457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5642", - "label": "781057 (-) 780841", - "from": "5412", - "to": "5482", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5641", - "label": "843528 (-) 760768", - "from": "5411", - "to": "5348", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5640", - "label": "906508 (-) 173043", - "from": "5409", - "to": "5335", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5639", - "label": "834827 (-) 1690356", - "from": "5408", - "to": "5415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5638", - "label": "834827 (-) 1695832", - "from": "5408", - "to": "5468", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5637", - "label": "834827 (-) 1684105", - "from": "5408", - "to": "5447", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5636", - "label": "834827 (-) 1695353", - "from": "5408", - "to": "5457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5635", - "label": "195340 (-) 195711", - "from": "5407", - "to": "5451", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5634", - "label": "301845 (-) 369394", - "from": "5406", - "to": "5417", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5633", - "label": "1684246 (-) 1684105", - "from": "5405", - "to": "5447", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5632", - "label": "501018 (-) 2083872", - "from": "5403", - "to": "5487", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5631", - "label": "1675041 (-) 552820", - "from": "5402", - "to": "5377", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5630", - "label": "1675041 (-) 783021", - "from": "5402", - "to": "5430", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5629", - "label": "1679651 (-) 191978", - "from": "5401", - "to": "5338", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5628", - "label": "194852 (-) 832950", - "from": "5400", - "to": "5354", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5627", - "label": "194852 (-) 1835429", - "from": "5400", - "to": "5362", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5626", - "label": "194852 (-) 209865", - "from": "5400", - "to": "5343", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5625", - "label": "1543972 (-) 173043", - "from": "5399", - "to": "5335", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5624", - "label": "1065763 (-) 191978", - "from": "5398", - "to": "5338", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5623", - "label": "1084713 (-) 354741", - "from": "5397", - "to": "5355", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5622", - "label": "181558 (-) 917695", - "from": "5396", - "to": "5423", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5621", - "label": "781113 (-) 173043", - "from": "5395", - "to": "5335", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5620", - "label": "1684282 (-) 504075", - "from": "5394", - "to": "5410", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5619", - "label": "1675578 (-) 783021", - "from": "5393", - "to": "5430", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5618", - "label": "1675578 (-) 552820", - "from": "5393", - "to": "5377", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5617", - "label": "1684283 (-) 504010", - "from": "5392", - "to": "5421", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5616", - "label": "781114 (-) 781113", - "from": "5391", - "to": "5395", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5615", - "label": "781114 (-) 1695353", - "from": "5391", - "to": "5457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5614", - "label": "1688388 (-) 1688214", - "from": "5390", - "to": "5441", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5613", - "label": "298309 (-) 369394", - "from": "5389", - "to": "5417", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5612", - "label": "298310 (-) 369394", - "from": "5388", - "to": "5417", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5611", - "label": "298310 (-) 1082975", - "from": "5388", - "to": "5464", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5610", - "label": "298310 (-) 1695833", - "from": "5388", - "to": "5467", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5609", - "label": "298310 (-) 1695352", - "from": "5388", - "to": "5458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5608", - "label": "298310 (-) 1085261", - "from": "5388", - "to": "5384", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5607", - "label": "298310 (-) 1690536", - "from": "5388", - "to": "5358", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5606", - "label": "298310 (-) 1684347", - "from": "5388", - "to": "5375", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5605", - "label": "1695048 (-) 1695832", - "from": "5387", - "to": "5468", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5604", - "label": "842569 (-) 842092", - "from": "5386", - "to": "5380", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5603", - "label": "298315 (-) 369394", - "from": "5385", - "to": "5417", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5602", - "label": "1085261 (-) 834827", - "from": "5384", - "to": "5408", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5601", - "label": "193879 (-) 1083941", - "from": "5383", - "to": "5484", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5600", - "label": "193879 (-) 836276", - "from": "5383", - "to": "5428", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5599", - "label": "193879 (-) 853660", - "from": "5383", - "to": "5437", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5598", - "label": "193879 (-) 1599163", - "from": "5383", - "to": "5424", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5597", - "label": "193879 (-) 780841", - "from": "5383", - "to": "5482", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5596", - "label": "193879 (-) 2033028", - "from": "5383", - "to": "5373", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5595", - "label": "193879 (-) 907096", - "from": "5383", - "to": "5382", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5594", - "label": "193879 (-) 906508", - "from": "5383", - "to": "5409", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5593", - "label": "193879 (-) 1479321", - "from": "5383", - "to": "5439", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5592", - "label": "193879 (-) 2109975", - "from": "5383", - "to": "5490", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5591", - "label": "193879 (-) 1612455", - "from": "5383", - "to": "5432", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5590", - "label": "193879 (-) 1835201", - "from": "5383", - "to": "5422", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5589", - "label": "193879 (-) 781113", - "from": "5383", - "to": "5395", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5588", - "label": "193879 (-) 1599186", - "from": "5383", - "to": "5419", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5587", - "label": "193879 (-) 852652", - "from": "5383", - "to": "5431", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5586", - "label": "193879 (-) 852543", - "from": "5383", - "to": "5475", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5585", - "label": "907096 (-) 173043", - "from": "5382", - "to": "5335", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5584", - "label": "791922 (-) 1695832", - "from": "5379", - "to": "5468", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5583", - "label": "791922 (-) 1695353", - "from": "5379", - "to": "5457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5582", - "label": "1675635 (-) 552820", - "from": "5378", - "to": "5377", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5581", - "label": "1675635 (-) 783021", - "from": "5378", - "to": "5430", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5580", - "label": "552820 (-) 1675911", - "from": "5377", - "to": "5448", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5579", - "label": "303994 (-) 369394", - "from": "5376", - "to": "5417", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5578", - "label": "1684347 (-) 834827", - "from": "5375", - "to": "5408", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5577", - "label": "1684347 (-) 354741", - "from": "5375", - "to": "5355", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5576", - "label": "1684347 (-) 834570", - "from": "5375", - "to": "5494", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5575", - "label": "1684347 (-) 492556", - "from": "5375", - "to": "5493", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5574", - "label": "1684347 (-) 1684246", - "from": "5375", - "to": "5405", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5573", - "label": "1684347 (-) 835002", - "from": "5375", - "to": "5351", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5572", - "label": "330112 (-) 1684368", - "from": "5374", - "to": "5367", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5571", - "label": "330112 (-) 1683591", - "from": "5374", - "to": "5449", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5570", - "label": "330112 (-) 1684282", - "from": "5374", - "to": "5394", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5569", - "label": "330112 (-) 1683390", - "from": "5374", - "to": "5347", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5568", - "label": "330112 (-) 1682941", - "from": "5374", - "to": "5330", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5567", - "label": "2033028 (-) 173043", - "from": "5373", - "to": "5335", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5566", - "label": "1863046 (-) 1863083", - "from": "5372", - "to": "5357", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5565", - "label": "778631 (-) 1589811", - "from": "5371", - "to": "5478", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5564", - "label": "778121 (-) 192424", - "from": "5369", - "to": "5359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5563", - "label": "195984 (-) 195989", - "from": "5368", - "to": "5365", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5562", - "label": "1684368 (-) 504075", - "from": "5367", - "to": "5410", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5561", - "label": "193941 (-) 191969", - "from": "5366", - "to": "5340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5560", - "label": "195989 (-) 195705", - "from": "5365", - "to": "5455", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5559", - "label": "784286 (-) 1695832", - "from": "5364", - "to": "5468", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5558", - "label": "784286 (-) 1690356", - "from": "5364", - "to": "5415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5557", - "label": "784286 (-) 1695353", - "from": "5364", - "to": "5457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5556", - "label": "192932 (-) 192688", - "from": "5363", - "to": "5429", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5555", - "label": "1835429 (-) 195340", - "from": "5362", - "to": "5407", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5554", - "label": "1690532 (-) 354741", - "from": "5361", - "to": "5355", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5553", - "label": "301477 (-) 369394", - "from": "5360", - "to": "5417", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5552", - "label": "192424 (-) 774298", - "from": "5359", - "to": "5438", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5551", - "label": "1690536 (-) 834827", - "from": "5358", - "to": "5408", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5550", - "label": "1676716 (-) 783021", - "from": "5356", - "to": "5430", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5549", - "label": "1676716 (-) 782973", - "from": "5356", - "to": "5453", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5548", - "label": "1676716 (-) 221274", - "from": "5356", - "to": "5466", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5547", - "label": "1676716 (-) 552820", - "from": "5356", - "to": "5377", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5546", - "label": "1676716 (-) 780263", - "from": "5356", - "to": "5339", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5545", - "label": "1676716 (-) 498622", - "from": "5356", - "to": "5350", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5544", - "label": "354741 (-) 1684105", - "from": "5355", - "to": "5447", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5543", - "label": "354741 (-) 1695832", - "from": "5355", - "to": "5468", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5542", - "label": "354741 (-) 1690356", - "from": "5355", - "to": "5415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5541", - "label": "354741 (-) 836276", - "from": "5355", - "to": "5428", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5540", - "label": "832950 (-) 195340", - "from": "5354", - "to": "5407", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5539", - "label": "1674167 (-) 552820", - "from": "5353", - "to": "5377", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5538", - "label": "1674167 (-) 783021", - "from": "5353", - "to": "5430", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5537", - "label": "1863096 (-) 330402", - "from": "5352", - "to": "5435", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5536", - "label": "835002 (-) 1695353", - "from": "5351", - "to": "5457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5535", - "label": "835002 (-) 1684105", - "from": "5351", - "to": "5447", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5534", - "label": "835002 (-) 1690356", - "from": "5351", - "to": "5415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5533", - "label": "835002 (-) 1695832", - "from": "5351", - "to": "5468", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5532", - "label": "498622 (-) 1614875", - "from": "5350", - "to": "5489", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5531", - "label": "760767 (-) 759647", - "from": "5349", - "to": "5381", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5530", - "label": "760768 (-) 760767", - "from": "5348", - "to": "5349", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5529", - "label": "760768 (-) 843513", - "from": "5348", - "to": "5414", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5528", - "label": "1683390 (-) 504075", - "from": "5347", - "to": "5410", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5527", - "label": "170436 (-) 1083941", - "from": "5346", - "to": "5484", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5526", - "label": "170436 (-) 1695832", - "from": "5346", - "to": "5468", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5525", - "label": "170436 (-) 1695353", - "from": "5346", - "to": "5457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5524", - "label": "488902 (-) 191978", - "from": "5345", - "to": "5338", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5523", - "label": "209864 (-) 192256", - "from": "5344", - "to": "5413", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5522", - "label": "209864 (-) 194852", - "from": "5344", - "to": "5400", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5521", - "label": "209865 (-) 195340", - "from": "5343", - "to": "5407", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5520", - "label": "1673677 (-) 783021", - "from": "5342", - "to": "5430", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5519", - "label": "1673677 (-) 552820", - "from": "5342", - "to": "5377", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5518", - "label": "502744 (-) 501797", - "from": "5341", - "to": "5485", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5517", - "label": "502744 (-) 501796", - "from": "5341", - "to": "5486", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5516", - "label": "191969 (-) 209864", - "from": "5340", - "to": "5344", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5515", - "label": "191969 (-) 843528", - "from": "5340", - "to": "5411", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5514", - "label": "780263 (-) 780267", - "from": "5339", - "to": "5337", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5513", - "label": "780263 (-) 826488", - "from": "5339", - "to": "5454", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5512", - "label": "191978 (-) 778121", - "from": "5338", - "to": "5369", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5511", - "label": "191978 (-) 1678366", - "from": "5338", - "to": "5488", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5510", - "label": "780267 (-) 557190", - "from": "5337", - "to": "5445", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5509", - "label": "791020 (-) 194803", - "from": "5336", - "to": "5416", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5508", - "label": "791020 (-) 193018", - "from": "5336", - "to": "5332", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5507", - "label": "791020 (-) 778631", - "from": "5336", - "to": "5371", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5506", - "label": "173043 (-) 1504342", - "from": "5335", - "to": "5469", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5505", - "label": "779764 (-) 1695832", - "from": "5334", - "to": "5468", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5504", - "label": "193011 (-) 192932", - "from": "5333", - "to": "5363", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5503", - "label": "193018 (-) 193941", - "from": "5332", - "to": "5366", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5502", - "label": "193018 (-) 1863175", - "from": "5332", - "to": "5495", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5501", - "label": "409084 (-) 330112", - "from": "5331", - "to": "5374", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5500", - "label": "1682941 (-) 504075", - "from": "5330", - "to": "5410", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "5499", - "label": "1682942 (-) 504010", - "from": "5329", - "to": "5421", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_metabs_Serotonin_graphml.json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_metabs_Serotonin_graphml.json deleted file mode 100644 index 25a6208517..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_metabs_Serotonin_graphml.json +++ /dev/null @@ -1,5086 +0,0 @@ -{ - "nodes": [ - { - "id": "1286", - "label": "SLC29A3 transports nucleosides from cytosol to lysosomal lumen", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1285", - "label": "alpha-ketoglutarate + CoASH + NAD+ => succinyl-CoA + CO2 + NADH + H+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1284", - "label": "VDAC1 transports PYR from cytosol to mitochondrial intermembrane space", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1283", - "label": "Na+-driven Cl-/HCO3- exchanger transport", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1282", - "label": "DA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1281", - "label": "ACSL3,4 ligates coenzyme A (CoA-SH) to palmitate yielding palmitoyl-coenzyme A in the pancreatic beta cell", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1280", - "label": "Ade-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1279", - "label": "Band 3 Anion Exchanger (AE1, SLC4A1) exchanges cytosolic chloride for extracellular bicarbonate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1278", - "label": "The Ligand:GPCR:Gq complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1277", - "label": "SLC25A18,A22 cotransport Glu, H+ from cytosol to mitochondrial matrix", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1276", - "label": "SLC17A3-2 transports cytosolic urate to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1275", - "label": "PXLP-K341-GPT2 transaminates PYR to form L-Ala", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1274", - "label": "Cho is acetylated to AcCho by CHAT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1273", - "label": "TMLHE dimer dioxygenates TMLYS and 2OG to form HTMLYS and SUCCA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1272", - "label": "Mal-CoA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1271", - "label": "Ura-Rib [lysosomal lumen]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1270", - "label": "5HT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1269", - "label": "Btn-ACACA:2Mn2+ polymer carboxylates Ac-CoA to form Mal-CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1268", - "label": "CPT1A,B transfers PALM to CAR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1267", - "label": "ACSL1,3,5,6 ligate CoA to PALM to form PALM-CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1266", - "label": "TMAM [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1265", - "label": "MPP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1264", - "label": "OXCT dimers transfer CoA from SUCC-CoA to ACA, forming ACA-CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1263", - "label": "SLC25A16 transports cytosolic CoA-SH to mitichondrial matrix", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1262", - "label": "OCT2 mediates tubular secretion of organic cations in the kidney", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1261", - "label": "OCT2 mediates tubular uptake of organic cations in the kidney", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1260", - "label": "SUCC-CoA [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1259", - "label": "CoA-SH [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1258", - "label": "ADP + Orthophosphate + Succinyl-CoA <=> ATP + Succinate + CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1257", - "label": "OCT2 substrates [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1256", - "label": "Oxaliplatin [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1255", - "label": "CAR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1254", - "label": "Btn-ACACB:2Mn2+ polymer carboxylates Ac-CoA to form Mal-CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1253", - "label": "L-Lys [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1252", - "label": "MAT2B:MAT2A:K+:2Mg2+ transfers Ado from ATP to L-Met", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1251", - "label": "OCT1 transports organic cations out of hepatic cells", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1250", - "label": "FUMA [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1249", - "label": "L-Arg [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1248", - "label": "(S)-Malate <=> Fumarate + H2O", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1247", - "label": "AdoMet [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1246", - "label": "MTF [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1245", - "label": "Concentrative transport (import) of a nucleoside and two sodium ions by solute carrier family 28 (sodium-coupled nucleoside transporter), member 3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1244", - "label": "Equilibrative transport (export) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1243", - "label": "4-Di-2-ASP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1242", - "label": "alpha-ketoadipate + glutamate <=> alpha-aminoadipate + alpha-ketoglutarate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1241", - "label": "BUT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1240", - "label": "SLC2A9 transports Fru, Glc, urate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1239", - "label": "CH3COO- [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1238", - "label": "EtCOO- or C2H5COO- [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1237", - "label": "D-sorbitol [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1236", - "label": "LACT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1235", - "label": "SLC22A12 exchanges extracellular urate for cytosolic LACT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1234", - "label": "PYR [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1233", - "label": "N-acetylation of serotonin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1232", - "label": "CAR [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1231", - "label": "palmitoylcarnitine + CoASH => palmitoyl-CoA + carnitine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1230", - "label": "CREAT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1229", - "label": "GDP + Orthophosphate + Succinyl-CoA <=> GTP + Succinate + CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1228", - "label": "AKR1B1 reduces Glc to D-sorbitol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1227", - "label": "a-ketoisocaproate, a-keto-b-methylvalerate, or a-ketoisovalerate + glutamate <=> leu, ile, or val + alpha-ketoglutarate [BCAT2]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1226", - "label": "Ura-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1225", - "label": "Cl- [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1224", - "label": "HCO3- [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1223", - "label": "PXLP-K200-PSAT1 dimer transfers amino group from L-Glu to 3POPA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1222", - "label": "acetyl-CoA + bicarbonate + ATP => malonyl-CoA + H2O + ADP + orthophosphate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1221", - "label": "L-Glu [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1220", - "label": "The Ligand:GPCR:Gs complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1219", - "label": "LACT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1218", - "label": "VMAT1/2 can mediate the transport of biogenic amines", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1217", - "label": "Unknown carnitine exporter transports CAR from the cytosol to the extracellular space", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1216", - "label": "2OG [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1215", - "label": "BBOX1:AscH-:Fe2+ dimer dioxygenates TEABT and 2OG to form CAR and SUCCA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1214", - "label": "Ura-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1213", - "label": "MAL [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1212", - "label": "NAd [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1211", - "label": "ligands of SLC29A4 [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1210", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1209", - "label": "urate [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1208", - "label": "SLC1A1,2,3,6,7 cotransport L-Glu,L-Asp,D-Asp,H+,3Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1207", - "label": "MAL [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1206", - "label": "SLC1A1-3,6,7 exchange L-Glu, H+ and 3Na+ for K+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1205", - "label": "SLC6A4 co-transports 5HT, Cl-, Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1204", - "label": "Glc [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1203", - "label": "Equilibrative transport (import) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1202", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1201", - "label": "urate [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1200", - "label": "CIM [cytosol]", - "databaseLabel": "ChemicalDrug", - "font": { - "color": "#ff9900" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff9900", - "hover": { - "background": "#FFFFFF", - "border": "#ff9900" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff9900" - } - } - }, - { - "id": "1199", - "label": "guanidinoacetate + S-adenosylmethionine => creatine + S-adenosylhomocysteine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1198", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1197", - "label": "L-PCARN [mitochondrial intermembrane space]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1196", - "label": "CAR [mitochondrial intermembrane space]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1195", - "label": "Exchange of palmitoylcarnitine and carnitine across the inner mitochondrial membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1194", - "label": "CRET [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1193", - "label": "glutamate + L-glutamate gamma-semialdehyde <=> ornithine + alpha-ketoglutarate [OAT]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1192", - "label": "glutamate + NAD(P)+ => alpha-ketoglutarate + NH4+ + NAD(P)H + H+ [GLUD1]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1191", - "label": "MNA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1190", - "label": "CD36 (FAT) translocates palmitate from the extracellular region to the cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1189", - "label": "Equilibrative transport (import) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1188", - "label": "Ade-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1187", - "label": "LDHAL6B reduces PYR to LACT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1186", - "label": "ADR [clathrin-sculpted monoamine transport vesicle lumen]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1185", - "label": "SLC25A12,13 exchange cytosolic L-Glu for mitochondrial matrix L-Asp", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1184", - "label": "SUCCA [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1183", - "label": "Concentrative transport (import) of a nucleoside and a sodium ions by solute carrier family 28 (sodium-coupled nucleoside transporter), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1182", - "label": "PXLP-K314-GPT transaminates PYR to form L-Ala", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1181", - "label": "Succinate <=> Fumarate (with FAD redox reaction on enzyme)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1180", - "label": "Hist [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1179", - "label": "MPC1:MPC2 cotransports PYR, H+ from cytosol to mitochondrial matrix", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1178", - "label": "Transport of Citrate from Mitochondrial Matrix to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1177", - "label": "Reuptake of serotonin from the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1176", - "label": "L-Glu [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1175", - "label": "oxaloacetate + glutamate <=> aspartate + alpha-ketoglutarate [GOT2]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1174", - "label": "SLC6A14 cotransports SLC6A14 ligands, Cl-, 2Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1173", - "label": "LACT [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1172", - "label": "PALM-CoA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1171", - "label": "5HT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1170", - "label": "Sulfate is exported to the cytosol in exchange for dicarboxylate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1169", - "label": "BSG:MCTs cotransport LACT, H+ from cytosol to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1168", - "label": "ADR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1167", - "label": "a-ketoisocaproate, a-keto-b-methylvalerate, or a-ketoisovalerate + glutamate <=> leu, ile, or val + alpha-ketoglutarate [BCAT1]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1166", - "label": "Concentrative transport (import) of nucleosides plus sodium ions by solute carrier family 28 (sodium-coupled nucleoside transporter), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1165", - "label": "CAR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1164", - "label": "CAR translocates from the cytosol to the mitochondrial intermembrane space", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1163", - "label": "Cho [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1162", - "label": "glutamate uptake by astrocytes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1161", - "label": "malate [mitochondrial matrix] + alpha-ketoglutarate [cytosol] <=> malate [cytosol] + alpha-ketoglutarate [mitochondrial matrix]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1160", - "label": "Exchange of alpha-ketoglutarate (2-oxoglutarate) and malate across the inner mitochondrial membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1159", - "label": "p-hydroxyphenylpyruvate + glutamate <=> tyrosine + alpha-ketoglutarate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1158", - "label": "PALM [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1157", - "label": "2OG [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1156", - "label": "L-Met [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1155", - "label": "L-Glu [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1154", - "label": "MAT1A multimers transfer Ado from ATP to L-Met", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1153", - "label": "SLC5A8 transports monocarboxylates from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1152", - "label": "oxaloacetate + glutamate <=> aspartate + alpha-ketoglutarate [GOT1]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1151", - "label": "CoA-SH [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1150", - "label": "AGM [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1149", - "label": "PYR [mitochondrial intermembrane space]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1148", - "label": "PYR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1147", - "label": "PALM [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1146", - "label": "Equilibrative transport (import) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1145", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - } - ], - "edges": [ - { - "id": "1510", - "label": "1684482 (-) 1684022", - "from": "1286", - "to": "1271", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1509", - "label": "197125 (-) 196700", - "from": "1285", - "to": "1260", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1508", - "label": "1863175 (-) 193011", - "from": "1284", - "to": "1149", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1507", - "label": "1672201 (-) 529112", - "from": "1283", - "to": "1224", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1506", - "label": "834570 (-) 1695353", - "from": "1282", - "to": "1251", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1505", - "label": "834570 (-) 1684105", - "from": "1282", - "to": "1244", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1504", - "label": "834570 (-) 1695832", - "from": "1282", - "to": "1262", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1503", - "label": "834570 (-) 1690356", - "from": "1282", - "to": "1218", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1502", - "label": "760331 (-) 213934", - "from": "1281", - "to": "1172", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1501", - "label": "492556 (-) 1684105", - "from": "1280", - "to": "1244", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1500", - "label": "492556 (-) 1684482", - "from": "1280", - "to": "1286", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1499", - "label": "492556 (-) 1682942", - "from": "1280", - "to": "1145", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1498", - "label": "492556 (-) 1684283", - "from": "1280", - "to": "1202", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1497", - "label": "1701898 (-) 529112", - "from": "1279", - "to": "1224", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1496", - "label": "299541 (-) 298656", - "from": "1278", - "to": "1238", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1495", - "label": "299541 (-) 261355", - "from": "1278", - "to": "1221", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1494", - "label": "299541 (-) 298645", - "from": "1278", - "to": "1241", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1493", - "label": "299541 (-) 280539", - "from": "1278", - "to": "1158", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1492", - "label": "299541 (-) 298315", - "from": "1278", - "to": "1198", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1491", - "label": "299541 (-) 298618", - "from": "1278", - "to": "1249", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1490", - "label": "299541 (-) 298651", - "from": "1278", - "to": "1239", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1489", - "label": "299541 (-) 298614", - "from": "1278", - "to": "1253", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1488", - "label": "1678366 (-) 192424", - "from": "1277", - "to": "1176", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1487", - "label": "2083872 (-) 1688388", - "from": "1276", - "to": "1201", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1486", - "label": "836645 (-) 192256", - "from": "1275", - "to": "1216", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1485", - "label": "1083941 (-) 173043", - "from": "1274", - "to": "1151", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1484", - "label": "843309 (-) 195984", - "from": "1273", - "to": "1184", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1483", - "label": "759862 (-) 759867", - "from": "1272", - "to": "1268", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1482", - "label": "299067 (-) 1084713", - "from": "1270", - "to": "1205", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1481", - "label": "299067 (-) 369394", - "from": "1270", - "to": "1220", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1480", - "label": "299067 (-) 299541", - "from": "1270", - "to": "1278", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1479", - "label": "299067 (-) 1684347", - "from": "1270", - "to": "1189", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1478", - "label": "299067 (-) 1695833", - "from": "1270", - "to": "1261", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1477", - "label": "299067 (-) 1690532", - "from": "1270", - "to": "1177", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1476", - "label": "1848892 (-) 759862", - "from": "1269", - "to": "1272", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1475", - "label": "759867 (-) 759646", - "from": "1268", - "to": "1197", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1474", - "label": "1837125 (-) 213934", - "from": "1267", - "to": "1172", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1473", - "label": "1695306 (-) 1695832", - "from": "1266", - "to": "1262", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1472", - "label": "1695306 (-) 1695353", - "from": "1266", - "to": "1251", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1471", - "label": "1695310 (-) 1695353", - "from": "1265", - "to": "1251", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1470", - "label": "1695310 (-) 1695832", - "from": "1265", - "to": "1262", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1469", - "label": "762961 (-) 195984", - "from": "1264", - "to": "1184", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1468", - "label": "1504342 (-) 196703", - "from": "1263", - "to": "1259", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1467", - "label": "1695832 (-) 1684248", - "from": "1262", - "to": "1210", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1466", - "label": "1695833 (-) 779764", - "from": "1261", - "to": "1150", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1465", - "label": "1695833 (-) 170436", - "from": "1261", - "to": "1163", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1464", - "label": "1695833 (-) 1695842", - "from": "1261", - "to": "1257", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1463", - "label": "1695833 (-) 834570", - "from": "1261", - "to": "1282", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1462", - "label": "1695833 (-) 1695306", - "from": "1261", - "to": "1266", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1461", - "label": "1695833 (-) 834827", - "from": "1261", - "to": "1212", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1460", - "label": "1695833 (-) 1695048", - "from": "1261", - "to": "1200", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1459", - "label": "1695833 (-) 842940", - "from": "1261", - "to": "1230", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1458", - "label": "1695833 (-) 1695372", - "from": "1261", - "to": "1243", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1457", - "label": "1695833 (-) 791922", - "from": "1261", - "to": "1191", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1456", - "label": "1695833 (-) 784286", - "from": "1261", - "to": "1180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1455", - "label": "1695833 (-) 835002", - "from": "1261", - "to": "1168", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1454", - "label": "1695833 (-) 354741", - "from": "1261", - "to": "1171", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1453", - "label": "1695833 (-) 1695310", - "from": "1261", - "to": "1265", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1452", - "label": "1695833 (-) 1695367", - "from": "1261", - "to": "1246", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1451", - "label": "1695833 (-) 1695843", - "from": "1261", - "to": "1256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1450", - "label": "196700 (-) 196704", - "from": "1260", - "to": "1258", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1449", - "label": "196700 (-) 762961", - "from": "1260", - "to": "1264", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1448", - "label": "196700 (-) 202943", - "from": "1260", - "to": "1229", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1447", - "label": "196703 (-) 759483", - "from": "1259", - "to": "1231", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1446", - "label": "196703 (-) 197125", - "from": "1259", - "to": "1285", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1445", - "label": "196704 (-) 195984", - "from": "1258", - "to": "1184", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1444", - "label": "1695842 (-) 1695832", - "from": "1257", - "to": "1262", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1443", - "label": "1695843 (-) 1695832", - "from": "1256", - "to": "1262", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1442", - "label": "1848946 (-) 759862", - "from": "1254", - "to": "1272", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1441", - "label": "298614 (-) 1676716", - "from": "1253", - "to": "1174", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1440", - "label": "826488 (-) 557190", - "from": "1252", - "to": "1247", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1439", - "label": "1695353 (-) 1684248", - "from": "1251", - "to": "1210", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1438", - "label": "298618 (-) 1676716", - "from": "1249", - "to": "1174", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1437", - "label": "195711 (-) 195705", - "from": "1248", - "to": "1250", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1436", - "label": "557190 (-) 842569", - "from": "1247", - "to": "1199", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1435", - "label": "1695367 (-) 1695832", - "from": "1246", - "to": "1262", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1434", - "label": "1695367 (-) 1695353", - "from": "1246", - "to": "1251", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1433", - "label": "1683591 (-) 504075", - "from": "1245", - "to": "1214", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1432", - "label": "1684105 (-) 1684248", - "from": "1244", - "to": "1210", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1431", - "label": "1695372 (-) 1695832", - "from": "1243", - "to": "1262", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1430", - "label": "1695372 (-) 1695353", - "from": "1243", - "to": "1251", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1429", - "label": "840846 (-) 192256", - "from": "1242", - "to": "1216", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1428", - "label": "298645 (-) 791020", - "from": "1241", - "to": "1153", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1427", - "label": "1688214 (-) 181558", - "from": "1240", - "to": "1204", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1426", - "label": "298651 (-) 791020", - "from": "1239", - "to": "1153", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1425", - "label": "298656 (-) 791020", - "from": "1238", - "to": "1153", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1424", - "label": "1690278 (-) 501018", - "from": "1235", - "to": "1209", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1423", - "label": "1690278 (-) 330402", - "from": "1235", - "to": "1236", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1422", - "label": "192688 (-) 1863046", - "from": "1234", - "to": "1187", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1421", - "label": "836276 (-) 173043", - "from": "1233", - "to": "1151", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1420", - "label": "759479 (-) 759648", - "from": "1232", - "to": "1195", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1419", - "label": "759483 (-) 759479", - "from": "1231", - "to": "1232", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1418", - "label": "842940 (-) 1695832", - "from": "1230", - "to": "1262", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1417", - "label": "202943 (-) 195984", - "from": "1229", - "to": "1184", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1416", - "label": "917695 (-) 917666", - "from": "1228", - "to": "1237", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1415", - "label": "199874 (-) 192256", - "from": "1227", - "to": "1216", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1414", - "label": "208598 (-) 1701898", - "from": "1225", - "to": "1279", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1413", - "label": "208598 (-) 1672201", - "from": "1225", - "to": "1283", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1412", - "label": "529112 (-) 1835230", - "from": "1224", - "to": "1222", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1411", - "label": "529112 (-) 1848946", - "from": "1224", - "to": "1254", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1410", - "label": "529112 (-) 1848892", - "from": "1224", - "to": "1269", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1409", - "label": "793816 (-) 191969", - "from": "1223", - "to": "1157", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1408", - "label": "1835230 (-) 759862", - "from": "1222", - "to": "1272", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1407", - "label": "261355 (-) 1679651", - "from": "1221", - "to": "1208", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1406", - "label": "261355 (-) 1065763", - "from": "1221", - "to": "1206", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1405", - "label": "261355 (-) 488902", - "from": "1221", - "to": "1162", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1404", - "label": "369394 (-) 330112", - "from": "1220", - "to": "1188", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1403", - "label": "369394 (-) 298315", - "from": "1220", - "to": "1198", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1402", - "label": "194803 (-) 1863096", - "from": "1219", - "to": "1169", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1401", - "label": "194803 (-) 1690278", - "from": "1219", - "to": "1235", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1400", - "label": "1690356 (-) 1690504", - "from": "1218", - "to": "1186", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1399", - "label": "843513 (-) 760931", - "from": "1217", - "to": "1255", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1398", - "label": "192256 (-) 843309", - "from": "1216", - "to": "1273", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1397", - "label": "192256 (-) 209865", - "from": "1216", - "to": "1160", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1396", - "label": "843528 (-) 760768", - "from": "1215", - "to": "1165", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1395", - "label": "195340 (-) 195711", - "from": "1213", - "to": "1248", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1394", - "label": "834827 (-) 1690356", - "from": "1212", - "to": "1218", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1393", - "label": "834827 (-) 1695832", - "from": "1212", - "to": "1262", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1392", - "label": "834827 (-) 1684105", - "from": "1212", - "to": "1244", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1391", - "label": "834827 (-) 1695353", - "from": "1212", - "to": "1251", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1390", - "label": "1684246 (-) 1684105", - "from": "1211", - "to": "1244", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1389", - "label": "501018 (-) 2083872", - "from": "1209", - "to": "1276", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1388", - "label": "1679651 (-) 191978", - "from": "1208", - "to": "1155", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1387", - "label": "194852 (-) 832950", - "from": "1207", - "to": "1170", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1386", - "label": "194852 (-) 1835429", - "from": "1207", - "to": "1178", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1385", - "label": "194852 (-) 209865", - "from": "1207", - "to": "1160", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1384", - "label": "1065763 (-) 191978", - "from": "1206", - "to": "1155", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1383", - "label": "1084713 (-) 208598", - "from": "1205", - "to": "1225", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1382", - "label": "1084713 (-) 354741", - "from": "1205", - "to": "1171", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1381", - "label": "181558 (-) 917695", - "from": "1204", - "to": "1228", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1380", - "label": "1684282 (-) 504075", - "from": "1203", - "to": "1214", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1379", - "label": "1684283 (-) 504010", - "from": "1202", - "to": "1226", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1378", - "label": "1688388 (-) 1688214", - "from": "1201", - "to": "1240", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1377", - "label": "1695048 (-) 1695832", - "from": "1200", - "to": "1262", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1376", - "label": "842569 (-) 842092", - "from": "1199", - "to": "1194", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1375", - "label": "759646 (-) 759648", - "from": "1197", - "to": "1195", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1374", - "label": "759648 (-) 759647", - "from": "1195", - "to": "1196", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1373", - "label": "772464 (-) 192256", - "from": "1193", - "to": "1216", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1372", - "label": "825712 (-) 192256", - "from": "1192", - "to": "1216", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1371", - "label": "791922 (-) 1695832", - "from": "1191", - "to": "1262", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1370", - "label": "791922 (-) 1695353", - "from": "1191", - "to": "1251", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1369", - "label": "760692 (-) 760316", - "from": "1190", - "to": "1147", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1368", - "label": "1684347 (-) 834827", - "from": "1189", - "to": "1212", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1367", - "label": "1684347 (-) 354741", - "from": "1189", - "to": "1171", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1366", - "label": "1684347 (-) 834570", - "from": "1189", - "to": "1282", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1365", - "label": "1684347 (-) 492556", - "from": "1189", - "to": "1280", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1364", - "label": "1684347 (-) 1684246", - "from": "1189", - "to": "1211", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1363", - "label": "1684347 (-) 835002", - "from": "1189", - "to": "1168", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1362", - "label": "330112 (-) 1684368", - "from": "1188", - "to": "1183", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1361", - "label": "330112 (-) 1683591", - "from": "1188", - "to": "1245", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1360", - "label": "330112 (-) 1684282", - "from": "1188", - "to": "1203", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1359", - "label": "330112 (-) 1683390", - "from": "1188", - "to": "1166", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1358", - "label": "330112 (-) 1682941", - "from": "1188", - "to": "1146", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1357", - "label": "1863046 (-) 1863083", - "from": "1187", - "to": "1173", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1356", - "label": "778121 (-) 192424", - "from": "1185", - "to": "1176", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1355", - "label": "195984 (-) 195989", - "from": "1184", - "to": "1181", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1354", - "label": "1684368 (-) 504075", - "from": "1183", - "to": "1214", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1353", - "label": "193941 (-) 191969", - "from": "1182", - "to": "1157", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1352", - "label": "195989 (-) 195705", - "from": "1181", - "to": "1250", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1351", - "label": "784286 (-) 1695832", - "from": "1180", - "to": "1262", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1350", - "label": "784286 (-) 1690356", - "from": "1180", - "to": "1218", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1349", - "label": "784286 (-) 1695353", - "from": "1180", - "to": "1251", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1348", - "label": "192932 (-) 192688", - "from": "1179", - "to": "1234", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1347", - "label": "1835429 (-) 195340", - "from": "1178", - "to": "1213", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1346", - "label": "1690532 (-) 354741", - "from": "1177", - "to": "1171", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1345", - "label": "192424 (-) 840846", - "from": "1176", - "to": "1242", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1344", - "label": "192424 (-) 192427", - "from": "1176", - "to": "1175", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1343", - "label": "192424 (-) 772464", - "from": "1176", - "to": "1193", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1342", - "label": "192424 (-) 199874", - "from": "1176", - "to": "1227", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1341", - "label": "192424 (-) 825712", - "from": "1176", - "to": "1192", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1340", - "label": "192424 (-) 836645", - "from": "1176", - "to": "1275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1339", - "label": "192427 (-) 192256", - "from": "1175", - "to": "1216", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1338", - "label": "1676716 (-) 780263", - "from": "1174", - "to": "1156", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1337", - "label": "213934 (-) 759867", - "from": "1172", - "to": "1268", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1336", - "label": "354741 (-) 1684105", - "from": "1171", - "to": "1244", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1335", - "label": "354741 (-) 1695832", - "from": "1171", - "to": "1262", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1334", - "label": "354741 (-) 1690356", - "from": "1171", - "to": "1218", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1333", - "label": "354741 (-) 836276", - "from": "1171", - "to": "1233", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1332", - "label": "832950 (-) 195340", - "from": "1170", - "to": "1213", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1331", - "label": "1863096 (-) 330402", - "from": "1169", - "to": "1236", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1330", - "label": "835002 (-) 1695353", - "from": "1168", - "to": "1251", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1329", - "label": "835002 (-) 1684105", - "from": "1168", - "to": "1244", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1328", - "label": "835002 (-) 1690356", - "from": "1168", - "to": "1218", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1327", - "label": "835002 (-) 1695832", - "from": "1168", - "to": "1262", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1326", - "label": "796094 (-) 191969", - "from": "1167", - "to": "1157", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1325", - "label": "1683390 (-) 504075", - "from": "1166", - "to": "1214", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1324", - "label": "760768 (-) 760767", - "from": "1165", - "to": "1164", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1323", - "label": "760768 (-) 843513", - "from": "1165", - "to": "1217", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1322", - "label": "760767 (-) 759647", - "from": "1164", - "to": "1196", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1321", - "label": "170436 (-) 1083941", - "from": "1163", - "to": "1274", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1320", - "label": "170436 (-) 1695832", - "from": "1163", - "to": "1262", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1319", - "label": "170436 (-) 1695353", - "from": "1163", - "to": "1251", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1318", - "label": "488902 (-) 191978", - "from": "1162", - "to": "1155", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1317", - "label": "209864 (-) 192256", - "from": "1161", - "to": "1216", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1316", - "label": "209864 (-) 194852", - "from": "1161", - "to": "1207", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1315", - "label": "209865 (-) 195340", - "from": "1160", - "to": "1213", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1314", - "label": "776650 (-) 191969", - "from": "1159", - "to": "1157", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1313", - "label": "280539 (-) 760692", - "from": "1158", - "to": "1190", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1312", - "label": "191969 (-) 209864", - "from": "1157", - "to": "1161", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1311", - "label": "191969 (-) 843528", - "from": "1157", - "to": "1215", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1310", - "label": "780263 (-) 780267", - "from": "1156", - "to": "1154", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1309", - "label": "780263 (-) 826488", - "from": "1156", - "to": "1252", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1308", - "label": "191978 (-) 776650", - "from": "1155", - "to": "1159", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1307", - "label": "191978 (-) 191983", - "from": "1155", - "to": "1152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1306", - "label": "191978 (-) 796094", - "from": "1155", - "to": "1167", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1305", - "label": "191978 (-) 778121", - "from": "1155", - "to": "1185", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1304", - "label": "191978 (-) 193941", - "from": "1155", - "to": "1182", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1303", - "label": "191978 (-) 1678366", - "from": "1155", - "to": "1277", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1302", - "label": "191978 (-) 793816", - "from": "1155", - "to": "1223", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1301", - "label": "780267 (-) 557190", - "from": "1154", - "to": "1247", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1300", - "label": "791020 (-) 194803", - "from": "1153", - "to": "1219", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1299", - "label": "791020 (-) 193018", - "from": "1153", - "to": "1148", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1298", - "label": "191983 (-) 191969", - "from": "1152", - "to": "1157", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1297", - "label": "173043 (-) 1837125", - "from": "1151", - "to": "1267", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1296", - "label": "173043 (-) 760331", - "from": "1151", - "to": "1281", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1295", - "label": "173043 (-) 1504342", - "from": "1151", - "to": "1263", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1294", - "label": "779764 (-) 1695832", - "from": "1150", - "to": "1262", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1293", - "label": "193011 (-) 192932", - "from": "1149", - "to": "1179", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1292", - "label": "193018 (-) 193941", - "from": "1148", - "to": "1182", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1291", - "label": "193018 (-) 1863175", - "from": "1148", - "to": "1284", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1290", - "label": "760316 (-) 1837125", - "from": "1147", - "to": "1267", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1289", - "label": "760316 (-) 760331", - "from": "1147", - "to": "1281", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1288", - "label": "1682941 (-) 504075", - "from": "1146", - "to": "1214", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1287", - "label": "1682942 (-) 504010", - "from": "1145", - "to": "1226", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_metabs_top10_graphml.json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_metabs_top10_graphml.json deleted file mode 100644 index d322c9e87d..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_metabs_top10_graphml.json +++ /dev/null @@ -1,13876 +0,0 @@ -{ - "nodes": [ - { - "id": "8666", - "label": "L-Gln [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8665", - "label": "P2RY11 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8664", - "label": "Glutamine transport from astrocytes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8663", - "label": "SLC29A3 transports nucleosides from cytosol to lysosomal lumen", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8662", - "label": "L-Gln [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8661", - "label": "Na+-driven Cl-/HCO3- exchanger transport", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8660", - "label": "Band 3 Anion Exchanger (AE1, SLC4A1) exchanges cytosolic chloride for extracellular bicarbonate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8659", - "label": "DA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8658", - "label": "2 acetyl-CoA <=> acetoacetyl-CoA + CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8657", - "label": "Ade-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8656", - "label": "L-Dopa [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8655", - "label": "Dopa is decarboxylated to dopamine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8654", - "label": "Cytosolic chenodeoxycholoyl-CoA or choloyl-CoA are conjugated with glycine or taurine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8653", - "label": "SLC25A18,A22 cotransport Glu, H+ from cytosol to mitochondrial matrix", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8652", - "label": "SLC17A3-2 transports cytosolic urate to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8651", - "label": "uridine 5'-monophosphate [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8650", - "label": "cytidine 5'-monophosphate [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8649", - "label": "Bradykinin receptor:Bradykinin [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8648", - "label": "NTPDase6 hydrolyzes nucleoside diphosphates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8647", - "label": "PXLP-K341-GPT2 transaminates PYR to form L-Ala", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8646", - "label": "PXLP-K341-GPT2 transaminates L-Ala to form PYR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8645", - "label": "Tyrosine is hydroxylated to dopa", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8644", - "label": "CYSLTR2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8643", - "label": "Mal-CoA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8642", - "label": "5HT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8641", - "label": "CPT1A,B transfers PALM to CAR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8640", - "label": "ACSL1,3,5,6 ligate CoA to PALM to form PALM-CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8639", - "label": "XAN [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8638", - "label": "Hypoxanthine + H2O + O2 => Xanthine + H2O2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8637", - "label": "OXCT dimers transfer CoA from SUCC-CoA to ACA, forming ACA-CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8636", - "label": "NPS [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8635", - "label": "SLC25A16 transports cytosolic CoA-SH to mitichondrial matrix", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8634", - "label": "OCT2 mediates tubular secretion of organic cations in the kidney", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8633", - "label": "OCT2 mediates tubular uptake of organic cations in the kidney", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8632", - "label": "L-Ser [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8631", - "label": "OCT2 substrates [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "8630", - "label": "SUCC-CoA [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8629", - "label": "Oxaliplatin [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8628", - "label": "CoA-SH [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8627", - "label": "ADP + Orthophosphate + Succinyl-CoA <=> ATP + Succinate + CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8626", - "label": "CREAT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8625", - "label": "OCT2 substrates [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "8624", - "label": "Oxaliplatin [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8623", - "label": "AGM [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8622", - "label": "CAR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "8621", - "label": "kynurenine + 2-oxoglutarate => 4-(2-aminophenyl)-2,4-dioxobutanoic acid + glutamate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8620", - "label": "(d)AMP, (d)GMP, or (d)IMP + H2O => (deoxy)adenosine, (deoxy)guanosine, or (deoxy)inosine + orthophosphate (NT5C1A)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8619", - "label": "SLC38A1 (ATA1)-mediated uptake of neutral amino acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8618", - "label": "Hist [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8617", - "label": "MAT2B:MAT2A:K+:2Mg2+ transfers Ado from ATP to L-Met", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8616", - "label": "FUMA [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "8615", - "label": "(S)-Malate <=> Fumarate + H2O", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8614", - "label": "SLC38A5-mediated uptake of glutamine, histidine, asparagine, and serine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8613", - "label": "AdoMet [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8612", - "label": "Concentrative transport (import) of a nucleoside and two sodium ions by solute carrier family 28 (sodium-coupled nucleoside transporter), member 3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8611", - "label": "glutamate + NH4+ + ATP => glutamine + ADP + orthophosphate [GLUL]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8610", - "label": "SLC38A2 (ATA2)-mediated uptake of neutral amino acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8609", - "label": "alpha-aminoadipate + alpha-ketoglutarate <=> alpha-ketoadipate + glutamate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8608", - "label": "alpha-ketoadipate + glutamate <=> alpha-aminoadipate + alpha-ketoglutarate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8607", - "label": "NPSR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8606", - "label": "L-Arg [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8605", - "label": "glutamate + acetyl CoA => N-acetyl glutamate + CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8604", - "label": "SLC1A4-mediated exchange of extracellular alanine for cytosolic serine, threonine, or cysteine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8603", - "label": "MATEs mediate extrusion of xenobiotics", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8602", - "label": "D-sorbitol [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "8601", - "label": "SLC38A3-mediated uptake of glutamine, histidine, asparagine, and alanine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8600", - "label": "PYR [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8599", - "label": "DA [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8598", - "label": "CREAT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8597", - "label": "GDP + Orthophosphate + Succinyl-CoA <=> GTP + Succinate + CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8596", - "label": "Ac-CoA [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8595", - "label": "acetyl-CoA + 7 malonyl-CoA + 14 NADHP + 14 H+ => palmitate + 7 CO2 + 14 NADP+ + 8 CoASH + 6 H2O", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8594", - "label": "Pyruvate + CO2 + ATP => ADP + Orthophosphate + Oxaloacetate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8593", - "label": "AKR1B1 reduces Glc to D-sorbitol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8592", - "label": "leu, ile, or val + alpha-ketoglutarate <=> a-ketoisocaproate, a-keto-b-methylvalerate, or a-ketoisovalerate + glutamate [BCAT2]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8591", - "label": "a-ketoisocaproate, a-keto-b-methylvalerate, or a-ketoisovalerate + glutamate <=> leu, ile, or val + alpha-ketoglutarate [BCAT2]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8590", - "label": "Ura-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "8589", - "label": "CMP or TMP or UMP + H2O => cytidine, thymidine, or uridine + orthophosphate [NT5E]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8588", - "label": "L-Leu [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8587", - "label": "PXLP-K200-PSAT1 dimer transfers amino group from L-Glu to 3POPA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8586", - "label": "SLC7A5:SLC3A2 transports neutral amino acids from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8585", - "label": "acetyl-CoA + bicarbonate + ATP => malonyl-CoA + H2O + ADP + orthophosphate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8584", - "label": "Ade [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8583", - "label": "L-Glu [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8582", - "label": "LACT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "8581", - "label": "XMP + L-Glutamine + ATP + H2O => GMP + L-Glutamate + AMP + pyrophosphate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8580", - "label": "Ura-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "8579", - "label": "Thy-dRib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8578", - "label": "Cyt-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8577", - "label": "NAd [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8576", - "label": "HGSNAT oligomer acetylates Heparan chain(1)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8575", - "label": "L-Cys [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8574", - "label": "urate [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8573", - "label": "Xanthine + H2O + O2 => Urate + H2O2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8572", - "label": "SLC1A1,2,3,6,7 cotransport L-Glu,L-Asp,D-Asp,H+,3Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8571", - "label": "MAL [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8570", - "label": "SLC6A4 co-transports 5HT, Cl-, Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8569", - "label": "Glc [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8568", - "label": "Guanine + H2O => Xanthine + NH4+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8567", - "label": "SLC7A2, isoform A (CAT-2A)-mediated uptake of cationic amino acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8566", - "label": "CIM [extracellular region]", - "databaseLabel": "ChemicalDrug", - "font": { - "color": "#ff9900" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff9900", - "hover": { - "background": "#FFFFFF", - "border": "#ff9900" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff9900" - } - } - }, - { - "id": "8565", - "label": "ADR, NAd [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "8564", - "label": "NAd [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8563", - "label": "CIM [cytosol]", - "databaseLabel": "ChemicalDrug", - "font": { - "color": "#ff9900" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff9900", - "hover": { - "background": "#FFFFFF", - "border": "#ff9900" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff9900" - } - } - }, - { - "id": "8562", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "8561", - "label": "cAMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8560", - "label": "Ac-CoA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8559", - "label": "SLC1A5-mediated exchange of glutamine and alanine across the plasma membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8558", - "label": "SLC1A5-mediated exchange of alanine and glutamine across the plasma membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8557", - "label": "DIT and MIT combine to form triiodothyronine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8556", - "label": "CRET [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "8555", - "label": "ornithine + alpha-ketoglutarate <=> glutamate + L-glutamate gamma-semialdehyde [OAT]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8554", - "label": "glutamate + L-glutamate gamma-semialdehyde <=> ornithine + alpha-ketoglutarate [OAT]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8553", - "label": "alpha-ketoglutarate + NH4+ + NAD(P)H + H+ <=> glutamate + NAD(P)+ [GLUD1]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8552", - "label": "glutamate + NAD(P)+ => alpha-ketoglutarate + NH4+ + NAD(P)H + H+ [GLUD1]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8551", - "label": "SLC7A9:SLC3A1 exchanges L-Arg, CySS-, L-Lys for L-Leu", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8550", - "label": "SLC1A4-mediated exchange of extracellular serine for cytosolic alanine, threonine, or cysteine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8549", - "label": "MNA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8548", - "label": "OAT2 and OAT4 mediate transport of sulphate conjugates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8547", - "label": "LPAR1,2,3,5:LPA [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8546", - "label": "Ade-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8545", - "label": "ATAT acetylates microtubules", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8544", - "label": "LDHAL6B reduces PYR to LACT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8543", - "label": "CH3COO- [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8542", - "label": "SLC1A4-mediated exchange of extracellular threonine for cytosolic alanine, serine, or cysteine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8541", - "label": "kynurenine + pyruvate => 4-(2-aminophenyl)-2,4-dioxobutanoic acid + alanine [CCBL2]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8540", - "label": "SUCCA [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8539", - "label": "PXLP-K314-GPT transaminates L-Ala to form PYR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8538", - "label": "PXLP-K314-GPT transaminates PYR to form L-Ala", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8537", - "label": "SLC7A8-mediated uptake of neutral amino acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8536", - "label": "Succinate <=> Fumarate (with FAD redox reaction on enzyme)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8535", - "label": "MPC1:MPC2 cotransports PYR, H+ from cytosol to mitochondrial matrix", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8534", - "label": "Transport of Citrate from Mitochondrial Matrix to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8533", - "label": "AVP(20-28) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8532", - "label": "LACT [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "8531", - "label": "SLC6A14 cotransports SLC6A14 ligands, Cl-, 2Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8530", - "label": "PXLP-KYAT1 dimer transaminates L-KYN to AP-DOBu", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8529", - "label": "5HT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8528", - "label": "Sulfate is exported to the cytosol in exchange for dicarboxylate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8527", - "label": "BSG:MCTs cotransport LACT, H+ from cytosol to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8526", - "label": "ADR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "8525", - "label": "NAT8L transfers acetyl group from Ac-CoA to L-Asp, forming NAA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8524", - "label": "leu, ile, or val + alpha-ketoglutarate <=> a-ketoisocaproate, a-keto-b-methylvalerate, or a-ketoisovalerate + glutamate [BCAT1]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8523", - "label": "a-ketoisocaproate, a-keto-b-methylvalerate, or a-ketoisovalerate + glutamate <=> leu, ile, or val + alpha-ketoglutarate [BCAT1]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8522", - "label": "Cho [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8521", - "label": "glutamate uptake by astrocytes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8520", - "label": "tyrosine + alpha-ketoglutarate <=> p-hydroxyphenylpyruvate + glutamate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8519", - "label": "p-hydroxyphenylpyruvate + glutamate <=> tyrosine + alpha-ketoglutarate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8518", - "label": "(d)GMP or (d)IMP + H2O => (2'-deoxy)guanosine or (2'-deoxy)inosine + orthophosphate (NT5C2)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8517", - "label": "SLC38A4 (ATA3)-mediated uptake of arginine and lysine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8516", - "label": "2OG [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8515", - "label": "The Ligand:GPCR:G12/13 complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8514", - "label": "L-Glu [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8513", - "label": "SLC5A8 transports monocarboxylates from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8512", - "label": "PXLP-K259-GOT1 dimer deaminates L-Asp", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8511", - "label": "oxaloacetate + glutamate <=> aspartate + alpha-ketoglutarate [GOT1]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8510", - "label": "PYR [mitochondrial intermembrane space]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8509", - "label": "AGM [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8508", - "label": "PYR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8507", - "label": "PALM [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8506", - "label": "ADORA2B:Ade-Rib:GsGTP dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8505", - "label": "Equilibrative transport (import) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8504", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8503", - "label": "SLC7A3 (CAT-3)-mediated uptake of cationic amino acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8502", - "label": "alpha-ketoglutarate + CoASH + NAD+ => succinyl-CoA + CO2 + NADH + H+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8501", - "label": "VDAC1 transports PYR from cytosol to mitochondrial intermembrane space", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8500", - "label": "ACSL3,4 ligates coenzyme A (CoA-SH) to palmitate yielding palmitoyl-coenzyme A in the pancreatic beta cell", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8499", - "label": "phosphoenolpyruvate + ADP => pyruvate + ATP", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8498", - "label": "PGE2 [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8497", - "label": "The Ligand:GPCR:Gq complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8496", - "label": "NatC acetylates ARFFRP1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8495", - "label": "CASR:Ca2+ [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8494", - "label": "Thyrotropin [extracellular region]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8493", - "label": "L-Leu [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8492", - "label": "Cho is acetylated to AcCho by CHAT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8491", - "label": "Spermine => N-acetylated spermine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8490", - "label": "MCHR1,MCHR2:PMCH(147-165) [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8489", - "label": "Gua [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8488", - "label": "TMLHE dimer dioxygenates TMLYS and 2OG to form HTMLYS and SUCCA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8487", - "label": "GPR161 promotes cAMP production in a G alpha(s)-dependent manner", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8486", - "label": "acetate + CoA + ATP => acetyl-CoA + AMP + pyrophosphate [cytosolic]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8485", - "label": "UDP [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8484", - "label": "Ura-Rib [lysosomal lumen]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "8483", - "label": "NMUR1,NMUR2:NMU [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8482", - "label": "Gu [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8481", - "label": "Btn-ACACA:2Mn2+ polymer carboxylates Ac-CoA to form Mal-CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8480", - "label": "HMGCS1 condenses Ac-CoA and ACA-CoA to form bHMG-CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8479", - "label": "MPP [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8478", - "label": "G-protein beta-gamma complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8477", - "label": "L-Ala [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8476", - "label": "TMAM [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8475", - "label": "TMAM [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8474", - "label": "Gu [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8473", - "label": "MPP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8472", - "label": "The Ligand:GPCR:Gz complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8471", - "label": "GOT2 dimer transfers amino group from L-Cys to 2OG to form 3MPYR and Glu", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8470", - "label": "Uptake of Noradrenaline", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8469", - "label": "L-Ala [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8468", - "label": "ADRA2A,B,C:ADR,NAd [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8467", - "label": "Btn-ACACB:2Mn2+ polymer carboxylates Ac-CoA to form Mal-CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8466", - "label": "L-Lys [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8465", - "label": "OCT1 transports organic cations into hepatic cells", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8464", - "label": "OCT1 transports organic cations out of hepatic cells", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8463", - "label": "L-Arg [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8462", - "label": "L-His [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8461", - "label": "L-Orn [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8460", - "label": "L-Thr [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8459", - "label": "OCT1 substrates [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "8458", - "label": "SLC25A29 transports basic amino acids from cytosol to mitochondrial matrix", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8457", - "label": "MTF [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8456", - "label": "Equilibrative transport (export) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8455", - "label": "4-Di-2-ASP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8454", - "label": "QN [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8453", - "label": "MTF [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8452", - "label": "L-Gln [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8451", - "label": "4-Di-2-ASP [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8450", - "label": "N1MNA [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8449", - "label": "SLC2A9 transports Fru, Glc, urate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8448", - "label": "BUT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8447", - "label": "Eis acetylates DUSP16", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8446", - "label": "LDH tetramer reduces PYR to LACT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8445", - "label": "CH3COO- [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8444", - "label": "Acetylation of glucosamine 6-phosphate to GlcNAc6P", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8443", - "label": "Mitochondrial AGXT2 tetramer transaminates glyoxylate and alanine to glycine and pyruvate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8442", - "label": "EtCOO- or C2H5COO- [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8441", - "label": "LACT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "8440", - "label": "SLC22A12 exchanges extracellular urate for cytosolic LACT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8439", - "label": "Unknown NAT transfers COCH3 to AFXBO-C, AFNBO-C", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8438", - "label": "SLC43A1 (LAT3)-mediated uptake of large neutral amino acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8437", - "label": "ACAT2 condenses 2 Ac-CoA to form ACA-CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8436", - "label": "L-Lys [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8435", - "label": "SLC7A11-mediated exchange of extracellular cysteine and cytosolic glutamate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8434", - "label": "N-acetylation of serotonin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8433", - "label": "CAR [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "8432", - "label": "Cys [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8431", - "label": "L-Ser [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8430", - "label": "SLC6A19 cotransports neutral amino acids, Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8429", - "label": "palmitoylcarnitine + CoASH => palmitoyl-CoA + carnitine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8428", - "label": "The acetyl group from acetyl-CoA is transferred to the NAT1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8427", - "label": "ALAS condenses SUCC-CoA and Gly to form dALA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8426", - "label": "lipo-PDH decarboxylates PYR to Ac-CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8425", - "label": "The acetyl group from acetyl-CoA is transferred to the NAT2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8424", - "label": "SLC6A15-mediated amino acid uptake", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8423", - "label": "Cl- [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8422", - "label": "HCO3- [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8421", - "label": "OAT1-3 transport organic anions with antiport of dicarboxylic acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8420", - "label": "Ino [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8419", - "label": "The Ligand:GPCR:Gi complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8418", - "label": "2OG [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8417", - "label": "G alpha (s):GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8416", - "label": "The Ligand:GPCR:Gs complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8415", - "label": "VMAT1/2 can mediate the transport of biogenic amines", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8414", - "label": "Hyp [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8413", - "label": "Histidine is decarboxylated to histamine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8412", - "label": "Unknown carnitine exporter transports CAR from the cytosol to the extracellular space", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8411", - "label": "phenylacetyl-CoA + glutamine => phenylacetyl glutamine + Coenzyme A", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8410", - "label": "Acetyl-CoA + H2O + Oxaloacetate => Citrate + CoA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8409", - "label": "2OG [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8408", - "label": "SPN [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8407", - "label": "FPR2:FPR2 ligands [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8406", - "label": "BBOX1:AscH-:Fe2+ dimer dioxygenates TEABT and 2OG to form CAR and SUCCA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8405", - "label": "MAL [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8404", - "label": "L-Tyr [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8403", - "label": "GPR39 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8402", - "label": "ligands of SLC29A4 [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "8401", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "8400", - "label": "SLC7A1 (CAT-1)-mediated uptake of cationic amino acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8399", - "label": "SLC1A1-3,6,7 exchange L-Glu, H+ and 3Na+ for K+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8398", - "label": "palmitoyl-CoA + serine => 3-ketosphinganine + CoASH + CO2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8397", - "label": "glutamine + pyruvate => 2-oxoglutaramate + alanine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8396", - "label": "PXLP-K357-ABAT dimer:2Fe-2S transforms GABA to SUCCSA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8395", - "label": "acetoacetyl-CoA+acetyl-CoA => HMG-CoA + CoASH", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8394", - "label": "Ura [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8393", - "label": "Transport of L-Glutamine (cytosol) to mitochondrial matrix", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8392", - "label": "ACAA2 tetramer transfers acyl group from Ac-CoA to acyl-CoA forming 3OA-CoA and CoA-SH", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8391", - "label": "Spermidine => N-acetylated spermidine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8390", - "label": "Equilibrative transport (import) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8389", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8388", - "label": "SPM [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8387", - "label": "urate [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8386", - "label": "ligands of SLC29A2 [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "8385", - "label": "Cyt [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8384", - "label": "guanidinoacetate + S-adenosylmethionine => creatine + S-adenosylhomocysteine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8383", - "label": "Noradrenaline clearance from the synaptic cleft", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8382", - "label": "SLC43A2 (LAT4)-mediated uptake of large neutral amino acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8381", - "label": "HGSNAT oligomer acetylates Heparan sulfate chain(3)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8380", - "label": "L-PCARN [mitochondrial intermembrane space]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8379", - "label": "CAR [mitochondrial intermembrane space]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "8378", - "label": "Exchange of palmitoylcarnitine and carnitine across the inner mitochondrial membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8377", - "label": "CD36 (FAT) translocates palmitate from the extracellular region to the cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8376", - "label": "L-Arg [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8375", - "label": "GCG(53-81) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "8374", - "label": "Equilibrative transport (import) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8373", - "label": "SLC6A3 cotransports DA, Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8372", - "label": "Two DITs combine to form thyroxine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8371", - "label": "L-Ala [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8370", - "label": "ADR [clathrin-sculpted monoamine transport vesicle lumen]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "8369", - "label": "SLC25A12,13 exchange cytosolic L-Glu for mitochondrial matrix L-Asp", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8368", - "label": "Concentrative transport (import) of a nucleoside and a sodium ions by solute carrier family 28 (sodium-coupled nucleoside transporter), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8367", - "label": "ligands of SLC28A3 & 29A1 [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "8366", - "label": "Hist [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8365", - "label": "Reuptake of serotonin from the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8364", - "label": "SLC6A2 cotransports NAd, Na+ from extracellular region to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8363", - "label": "L-Glu [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8362", - "label": "OAA [mitochondrial matrix]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8361", - "label": "oxaloacetate + glutamate <=> aspartate + alpha-ketoglutarate [GOT2]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8360", - "label": "GOT2 dimer deaminates L-Asp", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8359", - "label": "PALM-CoA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8358", - "label": "GMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8357", - "label": "SLC7A2, isoform B (CAT-2B)-mediated uptake of cationic amino acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8356", - "label": "Gua-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8355", - "label": "Gly [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8354", - "label": "CAR translocates from the cytosol to the mitochondrial intermembrane space", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "8353", - "label": "CAR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "8352", - "label": "Concentrative transport (import) of nucleosides plus sodium ions by solute carrier family 28 (sodium-coupled nucleoside transporter), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8351", - "label": "(d)GMP or (d)IMP + H2O => (d)G or (d)I + orthophosphate (NT5C)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8350", - "label": "Cho [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8349", - "label": "malate [mitochondrial matrix] + alpha-ketoglutarate [cytosol] <=> malate [cytosol] + alpha-ketoglutarate [mitochondrial matrix]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8348", - "label": "Exchange of alpha-ketoglutarate (2-oxoglutarate) and malate across the inner mitochondrial membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8347", - "label": "SLC1A4-mediated exchange of extracellular cysteine for cytosolic alanine, serine, or threonine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8346", - "label": "NMUR2:NMS [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "8345", - "label": "phenylalanine + pyruvate => 3-(indol-3-yl)pyruvate + alanine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8344", - "label": "NTPDase5 hydrolyzes nucleoside diphosphates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8343", - "label": "PALM [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8342", - "label": "L-Met [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8341", - "label": "MAT1A multimers transfer Ado from ATP to L-Met", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8340", - "label": "CoA-SH [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "8339", - "label": "Thy [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - } - ], - "edges": [ - { - "id": "9397", - "label": "488448 (-) 488450", - "from": "8666", - "to": "8664", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9396", - "label": "488448 (-) 489264", - "from": "8666", - "to": "8393", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9395", - "label": "488448 (-) 499958", - "from": "8666", - "to": "8581", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9394", - "label": "488448 (-) 1673563", - "from": "8666", - "to": "8558", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9393", - "label": "304129 (-) 369394", - "from": "8665", - "to": "8416", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9392", - "label": "304129 (-) 299541", - "from": "8665", - "to": "8497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9391", - "label": "488450 (-) 488449", - "from": "8664", - "to": "8662", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9390", - "label": "1684482 (-) 1684022", - "from": "8663", - "to": "8484", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9389", - "label": "488449 (-) 1676693", - "from": "8662", - "to": "8537", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9388", - "label": "488449 (-) 1677011", - "from": "8662", - "to": "8424", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9387", - "label": "488449 (-) 1669819", - "from": "8662", - "to": "8430", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9386", - "label": "488449 (-) 1676402", - "from": "8662", - "to": "8619", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9385", - "label": "488449 (-) 1675402", - "from": "8662", - "to": "8610", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9384", - "label": "1672201 (-) 529112", - "from": "8661", - "to": "8422", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9383", - "label": "1701898 (-) 529112", - "from": "8660", - "to": "8422", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9382", - "label": "834570 (-) 1695353", - "from": "8659", - "to": "8464", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9381", - "label": "834570 (-) 1684105", - "from": "8659", - "to": "8456", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9380", - "label": "834570 (-) 1695832", - "from": "8659", - "to": "8634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9379", - "label": "834570 (-) 1690356", - "from": "8659", - "to": "8415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9378", - "label": "762890 (-) 196703", - "from": "8658", - "to": "8628", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9377", - "label": "492556 (-) 1684105", - "from": "8657", - "to": "8456", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9376", - "label": "492556 (-) 1684482", - "from": "8657", - "to": "8663", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9375", - "label": "492556 (-) 1682942", - "from": "8657", - "to": "8504", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9374", - "label": "492556 (-) 1684283", - "from": "8657", - "to": "8389", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9373", - "label": "834584 (-) 834585", - "from": "8656", - "to": "8655", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9372", - "label": "834585 (-) 834570", - "from": "8655", - "to": "8659", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9371", - "label": "1614875 (-) 173043", - "from": "8654", - "to": "8340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9370", - "label": "1678366 (-) 192424", - "from": "8653", - "to": "8363", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9369", - "label": "2083872 (-) 1688388", - "from": "8652", - "to": "8387", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9368", - "label": "501796 (-) 504017", - "from": "8651", - "to": "8589", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9367", - "label": "501797 (-) 504017", - "from": "8650", - "to": "8589", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9366", - "label": "305190 (-) 299541", - "from": "8649", - "to": "8497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9365", - "label": "501798 (-) 501796", - "from": "8648", - "to": "8651", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9364", - "label": "501798 (-) 501797", - "from": "8648", - "to": "8650", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9363", - "label": "836645 (-) 192256", - "from": "8647", - "to": "8409", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9362", - "label": "836645 (-) 505412", - "from": "8647", - "to": "8477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9361", - "label": "836646 (-) 192424", - "from": "8646", - "to": "8363", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9360", - "label": "836646 (-) 192688", - "from": "8646", - "to": "8600", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9359", - "label": "834608 (-) 834584", - "from": "8645", - "to": "8656", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9358", - "label": "303154 (-) 369394", - "from": "8644", - "to": "8416", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9357", - "label": "759862 (-) 759867", - "from": "8643", - "to": "8641", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9356", - "label": "299067 (-) 1084713", - "from": "8642", - "to": "8570", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9355", - "label": "299067 (-) 369394", - "from": "8642", - "to": "8416", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9354", - "label": "299067 (-) 299541", - "from": "8642", - "to": "8497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9353", - "label": "299067 (-) 1684347", - "from": "8642", - "to": "8374", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9352", - "label": "299067 (-) 1695833", - "from": "8642", - "to": "8633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9351", - "label": "299067 (-) 1690532", - "from": "8642", - "to": "8365", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9350", - "label": "759867 (-) 759646", - "from": "8641", - "to": "8380", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9349", - "label": "1837125 (-) 213934", - "from": "8640", - "to": "8359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9348", - "label": "495691 (-) 501023", - "from": "8639", - "to": "8573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9347", - "label": "495696 (-) 495691", - "from": "8638", - "to": "8639", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9346", - "label": "762961 (-) 195984", - "from": "8637", - "to": "8540", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9345", - "label": "304210 (-) 369394", - "from": "8636", - "to": "8416", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9344", - "label": "304210 (-) 299541", - "from": "8636", - "to": "8497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9343", - "label": "1504342 (-) 196703", - "from": "8635", - "to": "8628", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9342", - "label": "1695832 (-) 1695836", - "from": "8634", - "to": "8629", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9341", - "label": "1695832 (-) 170951", - "from": "8634", - "to": "8350", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9340", - "label": "1695832 (-) 1695379", - "from": "8634", - "to": "8451", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9339", - "label": "1695832 (-) 1695840", - "from": "8634", - "to": "8626", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9338", - "label": "1695832 (-) 1695035", - "from": "8634", - "to": "8566", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9337", - "label": "1695832 (-) 298310", - "from": "8634", - "to": "8564", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9336", - "label": "1695832 (-) 299127", - "from": "8634", - "to": "8618", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9335", - "label": "1695832 (-) 1684248", - "from": "8634", - "to": "8401", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9334", - "label": "1695832 (-) 1695300", - "from": "8634", - "to": "8476", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9333", - "label": "1695832 (-) 1695297", - "from": "8634", - "to": "8479", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9332", - "label": "1695832 (-) 1695376", - "from": "8634", - "to": "8453", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9331", - "label": "1695832 (-) 1695841", - "from": "8634", - "to": "8623", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9330", - "label": "1695832 (-) 1695835", - "from": "8634", - "to": "8631", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9329", - "label": "1695832 (-) 330932", - "from": "8634", - "to": "8599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9328", - "label": "1695832 (-) 299067", - "from": "8634", - "to": "8642", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9327", - "label": "1695832 (-) 1695381", - "from": "8634", - "to": "8450", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9326", - "label": "1695833 (-) 779764", - "from": "8633", - "to": "8509", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9325", - "label": "1695833 (-) 170436", - "from": "8633", - "to": "8522", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9324", - "label": "1695833 (-) 1695842", - "from": "8633", - "to": "8625", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9323", - "label": "1695833 (-) 834570", - "from": "8633", - "to": "8659", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9322", - "label": "1695833 (-) 1695306", - "from": "8633", - "to": "8475", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9321", - "label": "1695833 (-) 834827", - "from": "8633", - "to": "8577", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9320", - "label": "1695833 (-) 1695048", - "from": "8633", - "to": "8563", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9319", - "label": "1695833 (-) 842940", - "from": "8633", - "to": "8598", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9318", - "label": "1695833 (-) 1695372", - "from": "8633", - "to": "8455", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9317", - "label": "1695833 (-) 791922", - "from": "8633", - "to": "8549", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9316", - "label": "1695833 (-) 784286", - "from": "8633", - "to": "8366", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9315", - "label": "1695833 (-) 835002", - "from": "8633", - "to": "8526", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9314", - "label": "1695833 (-) 354741", - "from": "8633", - "to": "8529", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9313", - "label": "1695833 (-) 1695310", - "from": "8633", - "to": "8473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9312", - "label": "1695833 (-) 1695367", - "from": "8633", - "to": "8457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9311", - "label": "1695833 (-) 1695843", - "from": "8633", - "to": "8624", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9310", - "label": "221274 (-) 1543972", - "from": "8632", - "to": "8398", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9309", - "label": "1695835 (-) 1695833", - "from": "8631", - "to": "8633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9308", - "label": "196700 (-) 1656520", - "from": "8630", - "to": "8427", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9307", - "label": "196700 (-) 196704", - "from": "8630", - "to": "8627", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9306", - "label": "196700 (-) 762961", - "from": "8630", - "to": "8637", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9305", - "label": "196700 (-) 202943", - "from": "8630", - "to": "8597", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9304", - "label": "1695836 (-) 1695833", - "from": "8629", - "to": "8633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9303", - "label": "196703 (-) 759483", - "from": "8628", - "to": "8429", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9302", - "label": "196703 (-) 197125", - "from": "8628", - "to": "8502", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9301", - "label": "196704 (-) 195984", - "from": "8627", - "to": "8540", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9300", - "label": "196704 (-) 196703", - "from": "8627", - "to": "8628", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9299", - "label": "1695840 (-) 1695833", - "from": "8626", - "to": "8633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9298", - "label": "1695842 (-) 1695832", - "from": "8625", - "to": "8634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9297", - "label": "1695843 (-) 1695832", - "from": "8624", - "to": "8634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9296", - "label": "1695841 (-) 1695833", - "from": "8623", - "to": "8633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9295", - "label": "785513 (-) 192424", - "from": "8621", - "to": "8363", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9294", - "label": "500848 (-) 495549", - "from": "8620", - "to": "8356", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9293", - "label": "500848 (-) 492556", - "from": "8620", - "to": "8657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9292", - "label": "500848 (-) 492262", - "from": "8620", - "to": "8420", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9291", - "label": "1676402 (-) 780263", - "from": "8619", - "to": "8342", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9290", - "label": "299127 (-) 369394", - "from": "8618", - "to": "8416", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9289", - "label": "299127 (-) 1695833", - "from": "8618", - "to": "8633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9288", - "label": "299127 (-) 299541", - "from": "8618", - "to": "8497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9287", - "label": "299127 (-) 1695352", - "from": "8618", - "to": "8465", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9286", - "label": "826488 (-) 557190", - "from": "8617", - "to": "8613", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9285", - "label": "195711 (-) 195705", - "from": "8615", - "to": "8616", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9284", - "label": "1676420 (-) 782973", - "from": "8614", - "to": "8462", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9283", - "label": "557190 (-) 842569", - "from": "8613", - "to": "8384", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9282", - "label": "1683591 (-) 492556", - "from": "8612", - "to": "8657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9281", - "label": "1683591 (-) 504075", - "from": "8612", - "to": "8580", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9280", - "label": "1683591 (-) 1683355", - "from": "8612", - "to": "8367", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9279", - "label": "1683591 (-) 495549", - "from": "8612", - "to": "8356", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9278", - "label": "1683591 (-) 492262", - "from": "8612", - "to": "8420", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9277", - "label": "1683591 (-) 504077", - "from": "8612", - "to": "8578", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9276", - "label": "1683591 (-) 504076", - "from": "8612", - "to": "8579", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9275", - "label": "488582 (-) 488448", - "from": "8611", - "to": "8666", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9274", - "label": "1675402 (-) 780263", - "from": "8610", - "to": "8342", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9273", - "label": "840845 (-) 192424", - "from": "8609", - "to": "8363", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9272", - "label": "840846 (-) 192256", - "from": "8608", - "to": "8409", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9271", - "label": "304276 (-) 299541", - "from": "8607", - "to": "8497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9270", - "label": "304276 (-) 369394", - "from": "8607", - "to": "8416", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9269", - "label": "774296 (-) 774298", - "from": "8606", - "to": "8605", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9268", - "label": "774298 (-) 196703", - "from": "8605", - "to": "8628", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9267", - "label": "1675419 (-) 1673857", - "from": "8604", - "to": "8460", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9266", - "label": "1675419 (-) 1669818", - "from": "8604", - "to": "8431", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9265", - "label": "1675419 (-) 835458", - "from": "8604", - "to": "8371", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9264", - "label": "1675419 (-) 1669817", - "from": "8604", - "to": "8432", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9263", - "label": "1697954 (-) 1695300", - "from": "8603", - "to": "8476", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9262", - "label": "1697954 (-) 1695290", - "from": "8603", - "to": "8482", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9261", - "label": "1697954 (-) 1695376", - "from": "8603", - "to": "8453", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9260", - "label": "1697954 (-) 1695297", - "from": "8603", - "to": "8479", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9259", - "label": "1697954 (-) 1695035", - "from": "8603", - "to": "8566", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9258", - "label": "1697954 (-) 1695840", - "from": "8603", - "to": "8626", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9257", - "label": "1675430 (-) 782973", - "from": "8601", - "to": "8462", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9256", - "label": "192688 (-) 1863046", - "from": "8600", - "to": "8544", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9255", - "label": "192688 (-) 192706", - "from": "8600", - "to": "8594", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9254", - "label": "192688 (-) 200401", - "from": "8600", - "to": "8426", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9253", - "label": "330932 (-) 1695352", - "from": "8599", - "to": "8465", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9252", - "label": "330932 (-) 1684347", - "from": "8599", - "to": "8374", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9251", - "label": "330932 (-) 1085307", - "from": "8599", - "to": "8373", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9250", - "label": "330932 (-) 1695833", - "from": "8599", - "to": "8633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9249", - "label": "330932 (-) 369394", - "from": "8599", - "to": "8416", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9248", - "label": "842940 (-) 1695832", - "from": "8598", - "to": "8634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9247", - "label": "202943 (-) 196703", - "from": "8597", - "to": "8628", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9246", - "label": "202943 (-) 195984", - "from": "8597", - "to": "8540", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9245", - "label": "192704 (-) 758581", - "from": "8596", - "to": "8392", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9244", - "label": "192704 (-) 778685", - "from": "8596", - "to": "8525", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9243", - "label": "192704 (-) 774298", - "from": "8596", - "to": "8605", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9242", - "label": "192704 (-) 762890", - "from": "8596", - "to": "8658", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9241", - "label": "192704 (-) 198397", - "from": "8596", - "to": "8410", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9240", - "label": "192704 (-) 762663", - "from": "8596", - "to": "8395", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9239", - "label": "1835201 (-) 173043", - "from": "8595", - "to": "8340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9238", - "label": "192706 (-) 192425", - "from": "8594", - "to": "8362", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9237", - "label": "917695 (-) 917666", - "from": "8593", - "to": "8602", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9236", - "label": "199873 (-) 192424", - "from": "8592", - "to": "8363", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9235", - "label": "199874 (-) 192256", - "from": "8591", - "to": "8409", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9234", - "label": "504017 (-) 504010", - "from": "8589", - "to": "8590", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9233", - "label": "784597 (-) 784603", - "from": "8588", - "to": "8586", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9232", - "label": "784597 (-) 1677011", - "from": "8588", - "to": "8424", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9231", - "label": "784597 (-) 1676119", - "from": "8588", - "to": "8382", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9230", - "label": "784597 (-) 1676693", - "from": "8588", - "to": "8537", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9229", - "label": "784597 (-) 1674923", - "from": "8588", - "to": "8438", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9228", - "label": "784597 (-) 1675402", - "from": "8588", - "to": "8610", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9227", - "label": "784597 (-) 1669819", - "from": "8588", - "to": "8430", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9226", - "label": "784597 (-) 1676716", - "from": "8588", - "to": "8531", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9225", - "label": "793816 (-) 191969", - "from": "8587", - "to": "8516", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9224", - "label": "784603 (-) 780263", - "from": "8586", - "to": "8342", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9223", - "label": "1835230 (-) 759862", - "from": "8585", - "to": "8643", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9222", - "label": "496865 (-) 1684482", - "from": "8584", - "to": "8663", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9221", - "label": "496865 (-) 1684283", - "from": "8584", - "to": "8389", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9220", - "label": "261355 (-) 1679651", - "from": "8583", - "to": "8572", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9219", - "label": "261355 (-) 1065763", - "from": "8583", - "to": "8399", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9218", - "label": "261355 (-) 331494", - "from": "8583", - "to": "8419", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9217", - "label": "261355 (-) 488902", - "from": "8583", - "to": "8521", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9216", - "label": "261355 (-) 299541", - "from": "8583", - "to": "8497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9215", - "label": "194803 (-) 1863096", - "from": "8582", - "to": "8527", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9214", - "label": "194803 (-) 1690278", - "from": "8582", - "to": "8440", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9213", - "label": "499958 (-) 495541", - "from": "8581", - "to": "8358", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9212", - "label": "504075 (-) 1684482", - "from": "8580", - "to": "8663", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9211", - "label": "504075 (-) 1682942", - "from": "8580", - "to": "8504", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9210", - "label": "504075 (-) 1684283", - "from": "8580", - "to": "8389", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9209", - "label": "504076 (-) 1684482", - "from": "8579", - "to": "8663", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9208", - "label": "504076 (-) 1684283", - "from": "8579", - "to": "8389", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9207", - "label": "504076 (-) 1682942", - "from": "8579", - "to": "8504", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9206", - "label": "504077 (-) 1684482", - "from": "8578", - "to": "8663", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9205", - "label": "504077 (-) 1682942", - "from": "8578", - "to": "8504", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9204", - "label": "504077 (-) 1684283", - "from": "8578", - "to": "8389", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9203", - "label": "834827 (-) 1690356", - "from": "8577", - "to": "8415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9202", - "label": "834827 (-) 1695832", - "from": "8577", - "to": "8634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9201", - "label": "834827 (-) 1684105", - "from": "8577", - "to": "8456", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9200", - "label": "834827 (-) 1695353", - "from": "8577", - "to": "8464", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9199", - "label": "906508 (-) 173043", - "from": "8576", - "to": "8340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9198", - "label": "827667 (-) 1675419", - "from": "8575", - "to": "8604", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9197", - "label": "827667 (-) 1675208", - "from": "8575", - "to": "8347", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9196", - "label": "827667 (-) 1676683", - "from": "8575", - "to": "8542", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9195", - "label": "827667 (-) 1674608", - "from": "8575", - "to": "8550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9194", - "label": "501018 (-) 2083872", - "from": "8574", - "to": "8652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9193", - "label": "501023 (-) 501018", - "from": "8573", - "to": "8574", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9192", - "label": "1679651 (-) 191978", - "from": "8572", - "to": "8514", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9191", - "label": "194852 (-) 832950", - "from": "8571", - "to": "8528", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9190", - "label": "194852 (-) 1835429", - "from": "8571", - "to": "8534", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9189", - "label": "194852 (-) 209865", - "from": "8571", - "to": "8348", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9188", - "label": "1084713 (-) 208598", - "from": "8570", - "to": "8423", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9187", - "label": "1084713 (-) 354741", - "from": "8570", - "to": "8529", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9186", - "label": "181558 (-) 917695", - "from": "8569", - "to": "8593", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9185", - "label": "501047 (-) 495691", - "from": "8568", - "to": "8639", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9184", - "label": "1675578 (-) 783021", - "from": "8567", - "to": "8436", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9183", - "label": "1675578 (-) 552820", - "from": "8567", - "to": "8376", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9182", - "label": "1695035 (-) 1695833", - "from": "8566", - "to": "8633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9181", - "label": "298309 (-) 299541", - "from": "8565", - "to": "8497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9180", - "label": "298309 (-) 369394", - "from": "8565", - "to": "8416", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9179", - "label": "298310 (-) 364005", - "from": "8564", - "to": "8515", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9178", - "label": "298310 (-) 369394", - "from": "8564", - "to": "8416", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9177", - "label": "298310 (-) 1082975", - "from": "8564", - "to": "8470", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9176", - "label": "298310 (-) 1695833", - "from": "8564", - "to": "8633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9175", - "label": "298310 (-) 1695352", - "from": "8564", - "to": "8465", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9174", - "label": "298310 (-) 329305", - "from": "8564", - "to": "8472", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9173", - "label": "298310 (-) 1085261", - "from": "8564", - "to": "8383", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9172", - "label": "298310 (-) 299541", - "from": "8564", - "to": "8497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9171", - "label": "298310 (-) 1690536", - "from": "8564", - "to": "8364", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9170", - "label": "298310 (-) 1684347", - "from": "8564", - "to": "8374", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9169", - "label": "1695048 (-) 1697954", - "from": "8563", - "to": "8603", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9168", - "label": "1695048 (-) 1695832", - "from": "8563", - "to": "8634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9167", - "label": "298315 (-) 299541", - "from": "8562", - "to": "8497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9166", - "label": "298315 (-) 369394", - "from": "8562", - "to": "8416", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9165", - "label": "193872 (-) 193037", - "from": "8561", - "to": "8499", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9164", - "label": "193879 (-) 1083941", - "from": "8560", - "to": "8492", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9163", - "label": "193879 (-) 836276", - "from": "8560", - "to": "8434", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9162", - "label": "193879 (-) 853660", - "from": "8560", - "to": "8444", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9161", - "label": "193879 (-) 1599163", - "from": "8560", - "to": "8428", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9160", - "label": "193879 (-) 780841", - "from": "8560", - "to": "8491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9159", - "label": "193879 (-) 2033028", - "from": "8560", - "to": "8545", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9158", - "label": "193879 (-) 907096", - "from": "8560", - "to": "8381", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9157", - "label": "193879 (-) 906508", - "from": "8560", - "to": "8576", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9156", - "label": "193879 (-) 1479321", - "from": "8560", - "to": "8447", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9155", - "label": "193879 (-) 2109975", - "from": "8560", - "to": "8496", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9154", - "label": "193879 (-) 1612455", - "from": "8560", - "to": "8439", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9153", - "label": "193879 (-) 1835201", - "from": "8560", - "to": "8595", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9152", - "label": "193879 (-) 781113", - "from": "8560", - "to": "8391", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9151", - "label": "193879 (-) 1599186", - "from": "8560", - "to": "8425", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9150", - "label": "193879 (-) 852652", - "from": "8560", - "to": "8437", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9149", - "label": "193879 (-) 852543", - "from": "8560", - "to": "8480", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9148", - "label": "1673562 (-) 488448", - "from": "8559", - "to": "8666", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9147", - "label": "1673562 (-) 835458", - "from": "8559", - "to": "8371", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9146", - "label": "1673563 (-) 488449", - "from": "8558", - "to": "8662", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9145", - "label": "835948 (-) 835458", - "from": "8557", - "to": "8371", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9144", - "label": "772463 (-) 192424", - "from": "8555", - "to": "8363", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9143", - "label": "772464 (-) 192256", - "from": "8554", - "to": "8409", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9142", - "label": "825713 (-) 192424", - "from": "8553", - "to": "8363", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9141", - "label": "825712 (-) 192256", - "from": "8552", - "to": "8409", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9140", - "label": "1675635 (-) 552820", - "from": "8551", - "to": "8376", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9139", - "label": "1675635 (-) 783021", - "from": "8551", - "to": "8436", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9138", - "label": "1675635 (-) 784597", - "from": "8551", - "to": "8588", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9137", - "label": "1674608 (-) 835458", - "from": "8550", - "to": "8371", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9136", - "label": "1674608 (-) 1669817", - "from": "8550", - "to": "8432", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9135", - "label": "1674608 (-) 1673857", - "from": "8550", - "to": "8460", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9134", - "label": "1674608 (-) 1669818", - "from": "8550", - "to": "8431", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9133", - "label": "1674608 (-) 221274", - "from": "8550", - "to": "8632", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9132", - "label": "791922 (-) 1695832", - "from": "8549", - "to": "8634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9131", - "label": "791922 (-) 1695353", - "from": "8549", - "to": "8464", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9130", - "label": "1695098 (-) 330475", - "from": "8548", - "to": "8418", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9129", - "label": "302460 (-) 299541", - "from": "8547", - "to": "8497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9128", - "label": "330112 (-) 1684368", - "from": "8546", - "to": "8368", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9127", - "label": "330112 (-) 1684347", - "from": "8546", - "to": "8374", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9126", - "label": "330112 (-) 1683591", - "from": "8546", - "to": "8612", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9125", - "label": "330112 (-) 1684282", - "from": "8546", - "to": "8390", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9124", - "label": "330112 (-) 1683390", - "from": "8546", - "to": "8352", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9123", - "label": "330112 (-) 1682941", - "from": "8546", - "to": "8505", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9122", - "label": "2033028 (-) 173043", - "from": "8545", - "to": "8340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9121", - "label": "1863046 (-) 1863083", - "from": "8544", - "to": "8532", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9120", - "label": "778631 (-) 1589811", - "from": "8543", - "to": "8486", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9119", - "label": "1676683 (-) 835458", - "from": "8542", - "to": "8371", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9118", - "label": "1676683 (-) 1673857", - "from": "8542", - "to": "8460", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9117", - "label": "1676683 (-) 1669817", - "from": "8542", - "to": "8432", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9116", - "label": "1676683 (-) 1669818", - "from": "8542", - "to": "8431", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9115", - "label": "785808 (-) 194151", - "from": "8541", - "to": "8469", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9114", - "label": "195984 (-) 195989", - "from": "8540", - "to": "8536", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9113", - "label": "193940 (-) 193018", - "from": "8539", - "to": "8508", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9112", - "label": "193940 (-) 191978", - "from": "8539", - "to": "8514", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9111", - "label": "193941 (-) 194151", - "from": "8538", - "to": "8469", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9110", - "label": "193941 (-) 191969", - "from": "8538", - "to": "8516", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9109", - "label": "1676693 (-) 782973", - "from": "8537", - "to": "8462", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9108", - "label": "1676693 (-) 780263", - "from": "8537", - "to": "8342", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9107", - "label": "195989 (-) 195705", - "from": "8536", - "to": "8616", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9106", - "label": "192932 (-) 192688", - "from": "8535", - "to": "8600", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9105", - "label": "1835429 (-) 195340", - "from": "8534", - "to": "8405", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9104", - "label": "301477 (-) 369394", - "from": "8533", - "to": "8416", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9103", - "label": "301477 (-) 299541", - "from": "8533", - "to": "8497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9102", - "label": "1676716 (-) 783021", - "from": "8531", - "to": "8436", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9101", - "label": "1676716 (-) 782973", - "from": "8531", - "to": "8462", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9100", - "label": "1676716 (-) 221274", - "from": "8531", - "to": "8632", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9099", - "label": "1676716 (-) 552820", - "from": "8531", - "to": "8376", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9098", - "label": "1676716 (-) 780263", - "from": "8531", - "to": "8342", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9097", - "label": "1676716 (-) 498622", - "from": "8531", - "to": "8355", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9096", - "label": "785842 (-) 194151", - "from": "8530", - "to": "8469", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9095", - "label": "354741 (-) 1684105", - "from": "8529", - "to": "8456", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9094", - "label": "354741 (-) 1695832", - "from": "8529", - "to": "8634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9093", - "label": "354741 (-) 1690356", - "from": "8529", - "to": "8415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9092", - "label": "354741 (-) 836276", - "from": "8529", - "to": "8434", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9091", - "label": "832950 (-) 195340", - "from": "8528", - "to": "8405", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9090", - "label": "1863096 (-) 330402", - "from": "8527", - "to": "8441", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9089", - "label": "835002 (-) 1695353", - "from": "8526", - "to": "8464", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9088", - "label": "835002 (-) 1684105", - "from": "8526", - "to": "8456", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9087", - "label": "835002 (-) 1690356", - "from": "8526", - "to": "8415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9086", - "label": "835002 (-) 1695832", - "from": "8526", - "to": "8634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9085", - "label": "778685 (-) 196703", - "from": "8525", - "to": "8628", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9084", - "label": "796093 (-) 191978", - "from": "8524", - "to": "8514", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9083", - "label": "796094 (-) 200217", - "from": "8523", - "to": "8493", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9082", - "label": "796094 (-) 191969", - "from": "8523", - "to": "8516", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9081", - "label": "170436 (-) 1083941", - "from": "8522", - "to": "8492", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9080", - "label": "170436 (-) 1695832", - "from": "8522", - "to": "8634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9079", - "label": "170436 (-) 1695353", - "from": "8522", - "to": "8464", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9078", - "label": "488902 (-) 191978", - "from": "8521", - "to": "8514", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9077", - "label": "776649 (-) 191978", - "from": "8520", - "to": "8514", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9076", - "label": "776650 (-) 775952", - "from": "8519", - "to": "8404", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9075", - "label": "776650 (-) 191969", - "from": "8519", - "to": "8516", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9074", - "label": "496074 (-) 495549", - "from": "8518", - "to": "8356", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9073", - "label": "496074 (-) 492262", - "from": "8518", - "to": "8420", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9072", - "label": "1673677 (-) 783021", - "from": "8517", - "to": "8436", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9071", - "label": "1673677 (-) 552820", - "from": "8517", - "to": "8376", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9070", - "label": "191969 (-) 776649", - "from": "8516", - "to": "8520", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9069", - "label": "191969 (-) 1694430", - "from": "8516", - "to": "8421", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9068", - "label": "191969 (-) 209864", - "from": "8516", - "to": "8349", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9067", - "label": "191969 (-) 193940", - "from": "8516", - "to": "8539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9066", - "label": "191969 (-) 843528", - "from": "8516", - "to": "8406", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9065", - "label": "191969 (-) 1695098", - "from": "8516", - "to": "8548", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9064", - "label": "191969 (-) 796093", - "from": "8516", - "to": "8524", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9063", - "label": "191969 (-) 191982", - "from": "8516", - "to": "8512", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9062", - "label": "364005 (-) 298310", - "from": "8515", - "to": "8564", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9061", - "label": "364005 (-) 298315", - "from": "8515", - "to": "8562", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9060", - "label": "191978 (-) 1673905", - "from": "8514", - "to": "8435", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9059", - "label": "191978 (-) 776650", - "from": "8514", - "to": "8519", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9058", - "label": "191978 (-) 488582", - "from": "8514", - "to": "8611", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9057", - "label": "191978 (-) 191983", - "from": "8514", - "to": "8511", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9056", - "label": "191978 (-) 796094", - "from": "8514", - "to": "8523", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9055", - "label": "191978 (-) 778121", - "from": "8514", - "to": "8369", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9054", - "label": "191978 (-) 193941", - "from": "8514", - "to": "8538", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9053", - "label": "191978 (-) 1678366", - "from": "8514", - "to": "8653", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9052", - "label": "191978 (-) 793816", - "from": "8514", - "to": "8587", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9051", - "label": "791020 (-) 194803", - "from": "8513", - "to": "8582", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9050", - "label": "791020 (-) 193018", - "from": "8513", - "to": "8508", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9049", - "label": "791020 (-) 778631", - "from": "8513", - "to": "8543", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9048", - "label": "191982 (-) 191978", - "from": "8512", - "to": "8514", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9047", - "label": "191983 (-) 191969", - "from": "8511", - "to": "8516", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9046", - "label": "193011 (-) 192932", - "from": "8510", - "to": "8535", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9045", - "label": "779764 (-) 1695832", - "from": "8509", - "to": "8634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9044", - "label": "193018 (-) 193941", - "from": "8508", - "to": "8538", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9043", - "label": "193018 (-) 785842", - "from": "8508", - "to": "8530", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9042", - "label": "193018 (-) 826150", - "from": "8508", - "to": "8397", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9041", - "label": "193018 (-) 785808", - "from": "8508", - "to": "8541", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9040", - "label": "193018 (-) 1863175", - "from": "8508", - "to": "8501", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9039", - "label": "193018 (-) 194202", - "from": "8508", - "to": "8446", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9038", - "label": "193018 (-) 775119", - "from": "8508", - "to": "8345", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9037", - "label": "760316 (-) 1837125", - "from": "8507", - "to": "8640", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9036", - "label": "760316 (-) 760331", - "from": "8507", - "to": "8500", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9035", - "label": "409084 (-) 330112", - "from": "8506", - "to": "8546", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9034", - "label": "1682941 (-) 495549", - "from": "8505", - "to": "8356", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9033", - "label": "1682941 (-) 504076", - "from": "8505", - "to": "8579", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9032", - "label": "1682941 (-) 504077", - "from": "8505", - "to": "8578", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9031", - "label": "1682941 (-) 492556", - "from": "8505", - "to": "8657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9030", - "label": "1682941 (-) 504075", - "from": "8505", - "to": "8580", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9029", - "label": "1682941 (-) 1683355", - "from": "8505", - "to": "8367", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9028", - "label": "1682941 (-) 492262", - "from": "8505", - "to": "8420", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9027", - "label": "1682942 (-) 504010", - "from": "8504", - "to": "8590", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9026", - "label": "1674755 (-) 783021", - "from": "8503", - "to": "8436", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9025", - "label": "1674755 (-) 552820", - "from": "8503", - "to": "8376", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9024", - "label": "197125 (-) 196700", - "from": "8502", - "to": "8630", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9023", - "label": "1863175 (-) 193011", - "from": "8501", - "to": "8510", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9022", - "label": "760331 (-) 213934", - "from": "8500", - "to": "8359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9021", - "label": "193037 (-) 193018", - "from": "8499", - "to": "8508", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9020", - "label": "299537 (-) 369394", - "from": "8498", - "to": "8416", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9019", - "label": "299537 (-) 299541", - "from": "8498", - "to": "8497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9018", - "label": "299541 (-) 298547", - "from": "8497", - "to": "8485", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9017", - "label": "299541 (-) 303154", - "from": "8497", - "to": "8644", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9016", - "label": "299541 (-) 298656", - "from": "8497", - "to": "8442", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9015", - "label": "299541 (-) 303994", - "from": "8497", - "to": "8375", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9014", - "label": "299541 (-) 304210", - "from": "8497", - "to": "8636", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9013", - "label": "299541 (-) 261355", - "from": "8497", - "to": "8583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9012", - "label": "299541 (-) 298645", - "from": "8497", - "to": "8448", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9011", - "label": "299541 (-) 280539", - "from": "8497", - "to": "8343", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9010", - "label": "299541 (-) 301477", - "from": "8497", - "to": "8533", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9009", - "label": "299541 (-) 299537", - "from": "8497", - "to": "8498", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9008", - "label": "299541 (-) 298315", - "from": "8497", - "to": "8562", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9007", - "label": "299541 (-) 298618", - "from": "8497", - "to": "8463", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9006", - "label": "299541 (-) 298309", - "from": "8497", - "to": "8565", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9005", - "label": "299541 (-) 298310", - "from": "8497", - "to": "8564", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9004", - "label": "299541 (-) 298651", - "from": "8497", - "to": "8445", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9003", - "label": "299541 (-) 299127", - "from": "8497", - "to": "8618", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9002", - "label": "299541 (-) 293444", - "from": "8497", - "to": "8478", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9001", - "label": "299541 (-) 301845", - "from": "8497", - "to": "8403", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9000", - "label": "299541 (-) 298614", - "from": "8497", - "to": "8466", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8999", - "label": "299541 (-) 304129", - "from": "8497", - "to": "8665", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8998", - "label": "299541 (-) 299067", - "from": "8497", - "to": "8642", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8997", - "label": "299541 (-) 298623", - "from": "8497", - "to": "8461", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8996", - "label": "299541 (-) 304276", - "from": "8497", - "to": "8607", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8995", - "label": "2109975 (-) 173043", - "from": "8496", - "to": "8340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8994", - "label": "299544 (-) 299541", - "from": "8495", - "to": "8497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8993", - "label": "371225 (-) 835453", - "from": "8494", - "to": "8372", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8992", - "label": "371225 (-) 835948", - "from": "8494", - "to": "8557", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8991", - "label": "200217 (-) 1675635", - "from": "8493", - "to": "8551", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8990", - "label": "1083941 (-) 173043", - "from": "8492", - "to": "8340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8989", - "label": "780841 (-) 173043", - "from": "8491", - "to": "8340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8988", - "label": "311850 (-) 299541", - "from": "8490", - "to": "8497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8987", - "label": "492077 (-) 501047", - "from": "8489", - "to": "8568", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8986", - "label": "492077 (-) 1684283", - "from": "8489", - "to": "8389", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8985", - "label": "843309 (-) 195984", - "from": "8488", - "to": "8540", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8984", - "label": "1259054 (-) 193872", - "from": "8487", - "to": "8561", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8983", - "label": "1589811 (-) 193879", - "from": "8486", - "to": "8560", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8982", - "label": "298547 (-) 502744", - "from": "8485", - "to": "8344", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8981", - "label": "298547 (-) 501798", - "from": "8485", - "to": "8648", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8980", - "label": "309814 (-) 299541", - "from": "8483", - "to": "8497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8979", - "label": "1695290 (-) 1695352", - "from": "8482", - "to": "8465", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8978", - "label": "1848892 (-) 759862", - "from": "8481", - "to": "8643", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8977", - "label": "852543 (-) 173043", - "from": "8480", - "to": "8340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8976", - "label": "1695297 (-) 1695352", - "from": "8479", - "to": "8465", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8975", - "label": "1695297 (-) 1695833", - "from": "8479", - "to": "8633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8974", - "label": "293444 (-) 299541", - "from": "8478", - "to": "8497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8973", - "label": "293444 (-) 329305", - "from": "8478", - "to": "8472", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8972", - "label": "293444 (-) 369394", - "from": "8478", - "to": "8416", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8971", - "label": "293444 (-) 364005", - "from": "8478", - "to": "8515", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8970", - "label": "293444 (-) 409084", - "from": "8478", - "to": "8506", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8969", - "label": "505412 (-) 836646", - "from": "8477", - "to": "8646", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8968", - "label": "505412 (-) 837278", - "from": "8477", - "to": "8443", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8967", - "label": "1695300 (-) 1695833", - "from": "8476", - "to": "8633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8966", - "label": "1695300 (-) 1695352", - "from": "8476", - "to": "8465", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8965", - "label": "1695306 (-) 1695832", - "from": "8475", - "to": "8634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8964", - "label": "1695306 (-) 1695353", - "from": "8475", - "to": "8464", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8963", - "label": "1695307 (-) 1695353", - "from": "8474", - "to": "8464", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8962", - "label": "1695310 (-) 1695353", - "from": "8473", - "to": "8464", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8961", - "label": "1695310 (-) 1695832", - "from": "8473", - "to": "8634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8960", - "label": "329305 (-) 298315", - "from": "8472", - "to": "8562", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8959", - "label": "329305 (-) 298310", - "from": "8472", - "to": "8564", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8958", - "label": "832095 (-) 192424", - "from": "8471", - "to": "8363", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8957", - "label": "1082975 (-) 834827", - "from": "8470", - "to": "8577", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8956", - "label": "194151 (-) 193940", - "from": "8469", - "to": "8539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8955", - "label": "194151 (-) 1675208", - "from": "8469", - "to": "8347", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8954", - "label": "194151 (-) 1674608", - "from": "8469", - "to": "8550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8953", - "label": "194151 (-) 1676683", - "from": "8469", - "to": "8542", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8952", - "label": "194151 (-) 1675419", - "from": "8469", - "to": "8604", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8951", - "label": "194151 (-) 1673562", - "from": "8469", - "to": "8559", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8950", - "label": "329329 (-) 329305", - "from": "8468", - "to": "8472", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8949", - "label": "1848946 (-) 759862", - "from": "8467", - "to": "8643", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8948", - "label": "298614 (-) 1675578", - "from": "8466", - "to": "8567", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8947", - "label": "298614 (-) 1676716", - "from": "8466", - "to": "8531", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8946", - "label": "298614 (-) 1675041", - "from": "8466", - "to": "8400", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8945", - "label": "298614 (-) 1674755", - "from": "8466", - "to": "8503", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8944", - "label": "298614 (-) 1673677", - "from": "8466", - "to": "8517", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8943", - "label": "298614 (-) 1675635", - "from": "8466", - "to": "8551", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8942", - "label": "298614 (-) 1674167", - "from": "8466", - "to": "8357", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8941", - "label": "1695352 (-) 784286", - "from": "8465", - "to": "8366", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8940", - "label": "1695352 (-) 1695310", - "from": "8465", - "to": "8473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8939", - "label": "1695352 (-) 1695367", - "from": "8465", - "to": "8457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8938", - "label": "1695352 (-) 834570", - "from": "8465", - "to": "8659", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8937", - "label": "1695352 (-) 1695306", - "from": "8465", - "to": "8475", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8936", - "label": "1695352 (-) 1695307", - "from": "8465", - "to": "8474", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8935", - "label": "1695352 (-) 781114", - "from": "8465", - "to": "8388", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8934", - "label": "1695352 (-) 1695374", - "from": "8465", - "to": "8454", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8933", - "label": "1695352 (-) 1695366", - "from": "8465", - "to": "8459", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8932", - "label": "1695352 (-) 781057", - "from": "8465", - "to": "8408", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8931", - "label": "1695352 (-) 1695372", - "from": "8465", - "to": "8455", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8930", - "label": "1695352 (-) 835002", - "from": "8465", - "to": "8526", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8929", - "label": "1695352 (-) 834827", - "from": "8465", - "to": "8577", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8928", - "label": "1695352 (-) 791922", - "from": "8465", - "to": "8549", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8927", - "label": "1695352 (-) 170436", - "from": "8465", - "to": "8522", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8926", - "label": "1695353 (-) 1684248", - "from": "8464", - "to": "8401", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8925", - "label": "298618 (-) 1675578", - "from": "8463", - "to": "8567", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8924", - "label": "298618 (-) 1674167", - "from": "8463", - "to": "8357", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8923", - "label": "298618 (-) 1676716", - "from": "8463", - "to": "8531", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8922", - "label": "298618 (-) 1675041", - "from": "8463", - "to": "8400", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8921", - "label": "298618 (-) 1675635", - "from": "8463", - "to": "8551", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8920", - "label": "298618 (-) 1674755", - "from": "8463", - "to": "8503", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8919", - "label": "298618 (-) 1673677", - "from": "8463", - "to": "8517", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8918", - "label": "782973 (-) 1675911", - "from": "8462", - "to": "8458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8917", - "label": "782973 (-) 784120", - "from": "8462", - "to": "8413", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8916", - "label": "298623 (-) 1675041", - "from": "8461", - "to": "8400", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8915", - "label": "298623 (-) 1674167", - "from": "8461", - "to": "8357", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8914", - "label": "298623 (-) 1675578", - "from": "8461", - "to": "8567", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8913", - "label": "298623 (-) 1674755", - "from": "8461", - "to": "8503", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8912", - "label": "1673857 (-) 1675402", - "from": "8460", - "to": "8610", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8911", - "label": "1673857 (-) 1677011", - "from": "8460", - "to": "8424", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8910", - "label": "1673857 (-) 1676693", - "from": "8460", - "to": "8537", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8909", - "label": "1695366 (-) 1695353", - "from": "8459", - "to": "8464", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8908", - "label": "1675911 (-) 774296", - "from": "8458", - "to": "8606", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8907", - "label": "1695367 (-) 1695832", - "from": "8457", - "to": "8634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8906", - "label": "1695367 (-) 1695353", - "from": "8457", - "to": "8464", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8905", - "label": "1684105 (-) 1684248", - "from": "8456", - "to": "8401", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8904", - "label": "1695372 (-) 1695832", - "from": "8455", - "to": "8634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8903", - "label": "1695372 (-) 1695353", - "from": "8455", - "to": "8464", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8902", - "label": "1695374 (-) 1695353", - "from": "8454", - "to": "8464", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8901", - "label": "1695376 (-) 1695352", - "from": "8453", - "to": "8465", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8900", - "label": "1695376 (-) 1695833", - "from": "8453", - "to": "8633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8899", - "label": "488083 (-) 1600253", - "from": "8452", - "to": "8411", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8898", - "label": "1695379 (-) 1695352", - "from": "8451", - "to": "8465", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8897", - "label": "1695379 (-) 1695833", - "from": "8451", - "to": "8633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8896", - "label": "1695381 (-) 1695352", - "from": "8450", - "to": "8465", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8895", - "label": "1695381 (-) 1695833", - "from": "8450", - "to": "8633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8894", - "label": "1688214 (-) 181558", - "from": "8449", - "to": "8569", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8893", - "label": "298645 (-) 791020", - "from": "8448", - "to": "8513", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8892", - "label": "298645 (-) 299541", - "from": "8448", - "to": "8497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8891", - "label": "1479321 (-) 173043", - "from": "8447", - "to": "8340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8890", - "label": "194202 (-) 194803", - "from": "8446", - "to": "8582", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8889", - "label": "298651 (-) 299541", - "from": "8445", - "to": "8497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8888", - "label": "298651 (-) 791020", - "from": "8445", - "to": "8513", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8887", - "label": "853660 (-) 173043", - "from": "8444", - "to": "8340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8886", - "label": "837278 (-) 192688", - "from": "8443", - "to": "8600", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8885", - "label": "298656 (-) 791020", - "from": "8442", - "to": "8513", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8884", - "label": "298656 (-) 299541", - "from": "8442", - "to": "8497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8883", - "label": "330402 (-) 331494", - "from": "8441", - "to": "8419", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8882", - "label": "1690278 (-) 501018", - "from": "8440", - "to": "8574", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8881", - "label": "1690278 (-) 330402", - "from": "8440", - "to": "8441", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8880", - "label": "1612455 (-) 173043", - "from": "8439", - "to": "8340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8879", - "label": "1674923 (-) 780263", - "from": "8438", - "to": "8342", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8878", - "label": "852652 (-) 173043", - "from": "8437", - "to": "8340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8877", - "label": "783021 (-) 1675911", - "from": "8436", - "to": "8458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8876", - "label": "1673905 (-) 261355", - "from": "8435", - "to": "8583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8875", - "label": "1673905 (-) 827667", - "from": "8435", - "to": "8575", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8874", - "label": "836276 (-) 173043", - "from": "8434", - "to": "8340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8873", - "label": "759479 (-) 759648", - "from": "8433", - "to": "8378", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8872", - "label": "1669817 (-) 1673905", - "from": "8432", - "to": "8435", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8871", - "label": "1669817 (-) 1676693", - "from": "8432", - "to": "8537", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8870", - "label": "1669817 (-) 1676716", - "from": "8432", - "to": "8531", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8869", - "label": "1669817 (-) 1669819", - "from": "8432", - "to": "8430", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8868", - "label": "1669817 (-) 1677011", - "from": "8432", - "to": "8424", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8867", - "label": "1669818 (-) 1675402", - "from": "8431", - "to": "8610", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8866", - "label": "1669818 (-) 1669819", - "from": "8431", - "to": "8430", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8865", - "label": "1669818 (-) 1676420", - "from": "8431", - "to": "8614", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8864", - "label": "1669818 (-) 1676402", - "from": "8431", - "to": "8619", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8863", - "label": "1669818 (-) 1676693", - "from": "8431", - "to": "8537", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8862", - "label": "1669818 (-) 1676716", - "from": "8431", - "to": "8531", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8861", - "label": "1669818 (-) 1677011", - "from": "8431", - "to": "8424", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8860", - "label": "1669819 (-) 780263", - "from": "8430", - "to": "8342", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8859", - "label": "759483 (-) 759479", - "from": "8429", - "to": "8433", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8858", - "label": "1599163 (-) 173043", - "from": "8428", - "to": "8340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8857", - "label": "1656520 (-) 196703", - "from": "8427", - "to": "8628", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8856", - "label": "200401 (-) 192704", - "from": "8426", - "to": "8596", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8855", - "label": "1599186 (-) 173043", - "from": "8425", - "to": "8340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8854", - "label": "1677011 (-) 780263", - "from": "8424", - "to": "8342", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8853", - "label": "208598 (-) 1701898", - "from": "8423", - "to": "8660", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8852", - "label": "208598 (-) 1672201", - "from": "8423", - "to": "8661", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8851", - "label": "529112 (-) 1835230", - "from": "8422", - "to": "8585", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8850", - "label": "529112 (-) 1848946", - "from": "8422", - "to": "8467", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8849", - "label": "529112 (-) 1848892", - "from": "8422", - "to": "8481", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8848", - "label": "1694430 (-) 330475", - "from": "8421", - "to": "8418", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8847", - "label": "1694430 (-) 1695048", - "from": "8421", - "to": "8563", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8846", - "label": "492262 (-) 1682942", - "from": "8420", - "to": "8504", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8845", - "label": "492262 (-) 1684482", - "from": "8420", - "to": "8663", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8844", - "label": "492262 (-) 1684283", - "from": "8420", - "to": "8389", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8843", - "label": "331494 (-) 310020", - "from": "8419", - "to": "8407", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8842", - "label": "331494 (-) 309814", - "from": "8419", - "to": "8483", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8841", - "label": "331494 (-) 305190", - "from": "8419", - "to": "8649", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8840", - "label": "331494 (-) 293444", - "from": "8419", - "to": "8478", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8839", - "label": "331494 (-) 311850", - "from": "8419", - "to": "8490", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8838", - "label": "331494 (-) 299544", - "from": "8419", - "to": "8495", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8837", - "label": "331494 (-) 302460", - "from": "8419", - "to": "8547", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8836", - "label": "331494 (-) 309196", - "from": "8419", - "to": "8346", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8835", - "label": "331494 (-) 329329", - "from": "8419", - "to": "8468", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8834", - "label": "330475 (-) 331494", - "from": "8418", - "to": "8419", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8833", - "label": "379628 (-) 1259054", - "from": "8417", - "to": "8487", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8832", - "label": "369394 (-) 371225", - "from": "8416", - "to": "8494", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8831", - "label": "369394 (-) 298309", - "from": "8416", - "to": "8565", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8830", - "label": "369394 (-) 304129", - "from": "8416", - "to": "8665", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8829", - "label": "369394 (-) 330112", - "from": "8416", - "to": "8546", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8828", - "label": "369394 (-) 299127", - "from": "8416", - "to": "8618", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8827", - "label": "369394 (-) 298310", - "from": "8416", - "to": "8564", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8826", - "label": "369394 (-) 298315", - "from": "8416", - "to": "8562", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8825", - "label": "369394 (-) 304210", - "from": "8416", - "to": "8636", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8824", - "label": "369394 (-) 299067", - "from": "8416", - "to": "8642", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8823", - "label": "369394 (-) 299537", - "from": "8416", - "to": "8498", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8822", - "label": "369394 (-) 304276", - "from": "8416", - "to": "8607", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8821", - "label": "369394 (-) 301477", - "from": "8416", - "to": "8533", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8820", - "label": "369394 (-) 293444", - "from": "8416", - "to": "8478", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8819", - "label": "369394 (-) 330932", - "from": "8416", - "to": "8599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8818", - "label": "369394 (-) 303994", - "from": "8416", - "to": "8375", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8817", - "label": "369394 (-) 301845", - "from": "8416", - "to": "8403", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8816", - "label": "369394 (-) 379628", - "from": "8416", - "to": "8417", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8815", - "label": "1690356 (-) 1690504", - "from": "8415", - "to": "8370", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8814", - "label": "492279 (-) 1684283", - "from": "8414", - "to": "8389", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8813", - "label": "492279 (-) 495696", - "from": "8414", - "to": "8638", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8812", - "label": "784120 (-) 784286", - "from": "8413", - "to": "8366", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8811", - "label": "843513 (-) 760931", - "from": "8412", - "to": "8622", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8810", - "label": "1600253 (-) 196703", - "from": "8411", - "to": "8628", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8809", - "label": "198397 (-) 196703", - "from": "8410", - "to": "8628", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8808", - "label": "192256 (-) 197125", - "from": "8409", - "to": "8502", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8807", - "label": "192256 (-) 832095", - "from": "8409", - "to": "8471", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8806", - "label": "192256 (-) 199873", - "from": "8409", - "to": "8592", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8805", - "label": "192256 (-) 843309", - "from": "8409", - "to": "8488", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8804", - "label": "192256 (-) 207655", - "from": "8409", - "to": "8396", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8803", - "label": "192256 (-) 772463", - "from": "8409", - "to": "8555", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8802", - "label": "192256 (-) 840845", - "from": "8409", - "to": "8609", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8801", - "label": "192256 (-) 836646", - "from": "8409", - "to": "8646", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8800", - "label": "192256 (-) 785513", - "from": "8409", - "to": "8621", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8799", - "label": "192256 (-) 209865", - "from": "8409", - "to": "8348", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8798", - "label": "192256 (-) 825713", - "from": "8409", - "to": "8553", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8797", - "label": "192256 (-) 192428", - "from": "8409", - "to": "8360", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8796", - "label": "781057 (-) 1695353", - "from": "8408", - "to": "8464", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8795", - "label": "781057 (-) 780841", - "from": "8408", - "to": "8491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8794", - "label": "310020 (-) 299541", - "from": "8407", - "to": "8497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8793", - "label": "843528 (-) 760768", - "from": "8406", - "to": "8353", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8792", - "label": "195340 (-) 195711", - "from": "8405", - "to": "8615", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8791", - "label": "775952 (-) 834608", - "from": "8404", - "to": "8645", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8790", - "label": "301845 (-) 369394", - "from": "8403", - "to": "8416", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8789", - "label": "301845 (-) 299541", - "from": "8403", - "to": "8497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8788", - "label": "1684246 (-) 1684105", - "from": "8402", - "to": "8456", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8787", - "label": "1684248 (-) 1695833", - "from": "8401", - "to": "8633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8786", - "label": "1684248 (-) 1695352", - "from": "8401", - "to": "8465", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8785", - "label": "1684248 (-) 1684347", - "from": "8401", - "to": "8374", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8784", - "label": "1675041 (-) 552820", - "from": "8400", - "to": "8376", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8783", - "label": "1675041 (-) 783021", - "from": "8400", - "to": "8436", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8782", - "label": "1065763 (-) 191978", - "from": "8399", - "to": "8514", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8781", - "label": "1543972 (-) 173043", - "from": "8398", - "to": "8340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8780", - "label": "826150 (-) 194151", - "from": "8397", - "to": "8469", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8779", - "label": "207655 (-) 192424", - "from": "8396", - "to": "8363", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8778", - "label": "762663 (-) 196703", - "from": "8395", - "to": "8628", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8777", - "label": "503591 (-) 1684283", - "from": "8394", - "to": "8389", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8776", - "label": "489264 (-) 488083", - "from": "8393", - "to": "8452", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8775", - "label": "758581 (-) 196703", - "from": "8392", - "to": "8628", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8774", - "label": "781113 (-) 173043", - "from": "8391", - "to": "8340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8773", - "label": "1684282 (-) 492556", - "from": "8390", - "to": "8657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8772", - "label": "1684282 (-) 1684295", - "from": "8390", - "to": "8385", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8771", - "label": "1684282 (-) 504075", - "from": "8390", - "to": "8580", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8770", - "label": "1684282 (-) 492077", - "from": "8390", - "to": "8489", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8769", - "label": "1684282 (-) 504077", - "from": "8390", - "to": "8578", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8768", - "label": "1684282 (-) 492262", - "from": "8390", - "to": "8420", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8767", - "label": "1684282 (-) 1684294", - "from": "8390", - "to": "8386", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8766", - "label": "1684282 (-) 503591", - "from": "8390", - "to": "8394", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8765", - "label": "1684282 (-) 496865", - "from": "8390", - "to": "8584", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8764", - "label": "1684282 (-) 495549", - "from": "8390", - "to": "8356", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8763", - "label": "1684282 (-) 504076", - "from": "8390", - "to": "8579", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8762", - "label": "1684282 (-) 492279", - "from": "8390", - "to": "8414", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8761", - "label": "1684282 (-) 503799", - "from": "8390", - "to": "8339", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8760", - "label": "1684283 (-) 504010", - "from": "8389", - "to": "8590", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8759", - "label": "781114 (-) 781113", - "from": "8388", - "to": "8391", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8758", - "label": "781114 (-) 1695353", - "from": "8388", - "to": "8464", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8757", - "label": "1688388 (-) 1688214", - "from": "8387", - "to": "8449", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8756", - "label": "1684294 (-) 1684283", - "from": "8386", - "to": "8389", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8755", - "label": "1684295 (-) 1684283", - "from": "8385", - "to": "8389", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8754", - "label": "842569 (-) 842092", - "from": "8384", - "to": "8556", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8753", - "label": "1085261 (-) 834827", - "from": "8383", - "to": "8577", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8752", - "label": "1676119 (-) 780263", - "from": "8382", - "to": "8342", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8751", - "label": "907096 (-) 173043", - "from": "8381", - "to": "8340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8750", - "label": "759646 (-) 759648", - "from": "8380", - "to": "8378", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8749", - "label": "759648 (-) 759647", - "from": "8378", - "to": "8379", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8748", - "label": "760692 (-) 760316", - "from": "8377", - "to": "8507", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8747", - "label": "552820 (-) 1675911", - "from": "8376", - "to": "8458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8746", - "label": "303994 (-) 299541", - "from": "8375", - "to": "8497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8745", - "label": "303994 (-) 369394", - "from": "8375", - "to": "8416", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8744", - "label": "1684347 (-) 834827", - "from": "8374", - "to": "8577", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8743", - "label": "1684347 (-) 354741", - "from": "8374", - "to": "8529", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8742", - "label": "1684347 (-) 834570", - "from": "8374", - "to": "8659", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8741", - "label": "1684347 (-) 492556", - "from": "8374", - "to": "8657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8740", - "label": "1684347 (-) 1684246", - "from": "8374", - "to": "8402", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8739", - "label": "1684347 (-) 835002", - "from": "8374", - "to": "8526", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8738", - "label": "1085307 (-) 834570", - "from": "8373", - "to": "8659", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8737", - "label": "835453 (-) 835458", - "from": "8372", - "to": "8371", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8736", - "label": "835458 (-) 1676402", - "from": "8371", - "to": "8619", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8735", - "label": "835458 (-) 1677011", - "from": "8371", - "to": "8424", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8734", - "label": "835458 (-) 1675430", - "from": "8371", - "to": "8601", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8733", - "label": "835458 (-) 1675402", - "from": "8371", - "to": "8610", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8732", - "label": "835458 (-) 1669819", - "from": "8371", - "to": "8430", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8731", - "label": "835458 (-) 1676716", - "from": "8371", - "to": "8531", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8730", - "label": "835458 (-) 1676420", - "from": "8371", - "to": "8614", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8729", - "label": "835458 (-) 1676693", - "from": "8371", - "to": "8537", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8728", - "label": "778121 (-) 192424", - "from": "8369", - "to": "8363", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8727", - "label": "1684368 (-) 504075", - "from": "8368", - "to": "8580", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8726", - "label": "1684368 (-) 504077", - "from": "8368", - "to": "8578", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8725", - "label": "1684368 (-) 504076", - "from": "8368", - "to": "8579", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8724", - "label": "1684368 (-) 492556", - "from": "8368", - "to": "8657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8723", - "label": "1683355 (-) 1682942", - "from": "8367", - "to": "8504", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8722", - "label": "784286 (-) 1695832", - "from": "8366", - "to": "8634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8721", - "label": "784286 (-) 1690356", - "from": "8366", - "to": "8415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8720", - "label": "784286 (-) 1695353", - "from": "8366", - "to": "8464", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8719", - "label": "1690532 (-) 354741", - "from": "8365", - "to": "8529", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8718", - "label": "1690536 (-) 834827", - "from": "8364", - "to": "8577", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8717", - "label": "192424 (-) 840846", - "from": "8363", - "to": "8608", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8716", - "label": "192424 (-) 192427", - "from": "8363", - "to": "8361", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8715", - "label": "192424 (-) 772464", - "from": "8363", - "to": "8554", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8714", - "label": "192424 (-) 199874", - "from": "8363", - "to": "8591", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8713", - "label": "192424 (-) 825712", - "from": "8363", - "to": "8552", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8712", - "label": "192424 (-) 774298", - "from": "8363", - "to": "8605", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8711", - "label": "192424 (-) 836645", - "from": "8363", - "to": "8647", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8710", - "label": "192425 (-) 198397", - "from": "8362", - "to": "8410", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8709", - "label": "192427 (-) 192256", - "from": "8361", - "to": "8409", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8708", - "label": "192428 (-) 192424", - "from": "8360", - "to": "8363", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8707", - "label": "192428 (-) 192425", - "from": "8360", - "to": "8362", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8706", - "label": "213934 (-) 759867", - "from": "8359", - "to": "8641", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8705", - "label": "495541 (-) 500848", - "from": "8358", - "to": "8620", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8704", - "label": "495541 (-) 496074", - "from": "8358", - "to": "8518", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8703", - "label": "495541 (-) 495550", - "from": "8358", - "to": "8351", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8702", - "label": "1674167 (-) 552820", - "from": "8357", - "to": "8376", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8701", - "label": "1674167 (-) 783021", - "from": "8357", - "to": "8436", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8700", - "label": "495549 (-) 1684482", - "from": "8356", - "to": "8663", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8699", - "label": "495549 (-) 1684283", - "from": "8356", - "to": "8389", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8698", - "label": "495549 (-) 1682942", - "from": "8356", - "to": "8504", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8697", - "label": "498622 (-) 1614875", - "from": "8355", - "to": "8654", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8696", - "label": "760767 (-) 759647", - "from": "8354", - "to": "8379", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8695", - "label": "760768 (-) 760767", - "from": "8353", - "to": "8354", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8694", - "label": "760768 (-) 843513", - "from": "8353", - "to": "8412", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8693", - "label": "1683390 (-) 504075", - "from": "8352", - "to": "8580", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8692", - "label": "1683390 (-) 492556", - "from": "8352", - "to": "8657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8691", - "label": "1683390 (-) 492262", - "from": "8352", - "to": "8420", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8690", - "label": "1683390 (-) 495549", - "from": "8352", - "to": "8356", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8689", - "label": "495550 (-) 492262", - "from": "8351", - "to": "8420", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8688", - "label": "495550 (-) 495549", - "from": "8351", - "to": "8356", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8687", - "label": "170951 (-) 1695833", - "from": "8350", - "to": "8633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8686", - "label": "170951 (-) 1695352", - "from": "8350", - "to": "8465", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8685", - "label": "209864 (-) 192256", - "from": "8349", - "to": "8409", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8684", - "label": "209864 (-) 194852", - "from": "8349", - "to": "8571", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8683", - "label": "209865 (-) 195340", - "from": "8348", - "to": "8405", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8682", - "label": "1675208 (-) 835458", - "from": "8347", - "to": "8371", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8681", - "label": "1675208 (-) 1673857", - "from": "8347", - "to": "8460", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8680", - "label": "1675208 (-) 1669817", - "from": "8347", - "to": "8432", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8679", - "label": "1675208 (-) 1669818", - "from": "8347", - "to": "8431", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8678", - "label": "309196 (-) 299541", - "from": "8346", - "to": "8497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8677", - "label": "775119 (-) 194151", - "from": "8345", - "to": "8469", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8676", - "label": "502744 (-) 501797", - "from": "8344", - "to": "8650", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8675", - "label": "502744 (-) 501796", - "from": "8344", - "to": "8651", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8674", - "label": "280539 (-) 760692", - "from": "8343", - "to": "8377", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8673", - "label": "780263 (-) 780267", - "from": "8342", - "to": "8341", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8672", - "label": "780263 (-) 826488", - "from": "8342", - "to": "8617", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8671", - "label": "780267 (-) 557190", - "from": "8341", - "to": "8613", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8670", - "label": "173043 (-) 1837125", - "from": "8340", - "to": "8640", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8669", - "label": "173043 (-) 760331", - "from": "8340", - "to": "8500", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8668", - "label": "173043 (-) 1504342", - "from": "8340", - "to": "8635", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "8667", - "label": "503799 (-) 1684283", - "from": "8339", - "to": "8389", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_updown_Acetate_graphml.json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_updown_Acetate_graphml.json deleted file mode 100644 index 185901d9eb..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_updown_Acetate_graphml.json +++ /dev/null @@ -1,14956 +0,0 @@ -{ - "nodes": [ - { - "id": "497", - "label": "Dissociation of phosphorylated 4EBP1 from eIF4E", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "496", - "label": "DecS-GHRL-1(24-50) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "495", - "label": "P2RY11 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "494", - "label": "EIF4E [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "493", - "label": "eIF4E:4E-BP1-P [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "492", - "label": "Ade-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "491", - "label": "PolyUb-Misfolded PCNT [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "490", - "label": "AHCY:NAD+ tetramer hydrolyses AdoHcy", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "489", - "label": "DecS-GHRL-1(24-51) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "488", - "label": "CASP8(385-479) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "487", - "label": "O-octanoyl-L-serine-GHRL-1(24-51) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "486", - "label": "Exocytosis of secretory granule membrane proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "485", - "label": "PARN deadenylates mRNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "484", - "label": "Release of PLCG from FCGR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "483", - "label": "clustered IgG-Ag:p-FCGRs:p-6Y-SYK:p-3Y-PLCG [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "482", - "label": "AdoHcy [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "481", - "label": "Bradykinin receptor:Bradykinin [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "480", - "label": "GGC-RAB7B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "479", - "label": "Retinoic acid activates HOXB4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "478", - "label": "Disintegration of matrix layer", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "477", - "label": "Ubiquitinated IkB is degraded", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "476", - "label": "NF-kappaB p50,p65,c-Rel:ub-p-IKB [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "475", - "label": "NF-kappaB p65:p65:ub-p-IkB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "474", - "label": "Phosphorylation and activation of PLCG", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "473", - "label": "Degradation of CD8", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "472", - "label": "TLR2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "471", - "label": "Exocytosis of Insulin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "470", - "label": "SUMO1:p-T4827-HERC2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "469", - "label": "PTEN [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "468", - "label": "TGFA(24-98) [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "467", - "label": "5HT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "466", - "label": "Translation of ATF4", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "465", - "label": "trans-Golgi Network Derived Vesicle Uncoating", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "464", - "label": "IL1B(117-269) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "463", - "label": "p-S25,S1778-TP53BP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "462", - "label": "IRAK2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "461", - "label": "AREG(101-187) [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "460", - "label": "Dissociation of BRAF/RAF fusion complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "459", - "label": "p-T899-EIF2AK4 (GCN2) phosphorylates EIF2AS1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "458", - "label": "CTNNB1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "457", - "label": "NPS [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "456", - "label": "CBL neddylates TGFBR2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "455", - "label": "OCT2 mediates tubular secretion of organic cations in the kidney", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "454", - "label": "PLCG1 phosphorylation by p-EGFR:p-ERBB2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "453", - "label": "NEDD8-AcM-UBE2M [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "452", - "label": "Dissociation of hp-IRAK1:TRAF6 or IRAK2:TRAF6-oligomer from the activated TLR5 or 10:oligo-Myd88:p-IRAK4 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "451", - "label": "PP2A [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "450", - "label": "SIN3A [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "449", - "label": "TTLLs polyglutamylate tubulin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "448", - "label": "Loading of acetylcholine in synaptic vesicles", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "447", - "label": "p-IRAK2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "446", - "label": "p-T185,Y187-MAPK1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "445", - "label": "PolyUb-Misfolded PARK7 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "444", - "label": "COP9 signalosome deneddylates cytosolic CRL E3 ubiquitin ligase complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "443", - "label": "(d)AMP, (d)GMP, or (d)IMP + H2O => (deoxy)adenosine, (deoxy)guanosine, or (deoxy)inosine + orthophosphate (NT5C1A)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "442", - "label": "EIF2AK3 (PERK) phosphorylates EIF2S1 (eIF2-alpha)Phosphorylation of eIF2-alpha by PERK", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "441", - "label": "PPP1R3C [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "440", - "label": "Hist [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "439", - "label": "Expression of PPARGC1A (PGC-1alpha)", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "438", - "label": "AGTR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "437", - "label": "Expression of AVP", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "436", - "label": "Aggresome dissociates from dynein and microtubule", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "435", - "label": "Microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "434", - "label": "alpha-beta tubulin dimer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "433", - "label": "KLF4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "432", - "label": "MAPK3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "431", - "label": "RNF152 [lysosomal membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "430", - "label": "NAM [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "429", - "label": "NPSR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "428", - "label": "TNKS and TNKS2 PARylate PTEN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "427", - "label": "p-S166-RIPK1:p-S199,227-RIPK3 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "426", - "label": "PP2A (A:C) [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "425", - "label": "NF-kappaB p65:p65 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "424", - "label": "FKBP1A [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "423", - "label": "RASA1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "422", - "label": "FGF18 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "421", - "label": "ARRB2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "420", - "label": "EIF2S1:EIF2S2:EIF2S3 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "419", - "label": "NF-kappaB p50:c-Rel:ub-p-IKB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "418", - "label": "Exocytosis of ficolin-rich granule lumen proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "417", - "label": "Regulation of protein ISGylation by ISG15 deconjugating enzyme USP18", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "416", - "label": "CCNH [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "415", - "label": "Transfer of SUMO2 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "414", - "label": "UBE2I [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "413", - "label": "SEC31A:SEC13:SEC23IP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "412", - "label": "Interleukin-1 family are secreted", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "411", - "label": "Interleukin-1 family [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "410", - "label": "Expression of CLOCK", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "409", - "label": "2xMyri-IL1A [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "408", - "label": "IL18 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "407", - "label": "PPIA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "406", - "label": "EIF4G1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "405", - "label": "SUMO3:UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "404", - "label": "The receptor:G-protein complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "403", - "label": "Dissociation of RAS:RAF complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "402", - "label": "IL8 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "401", - "label": "Dissociation of RAS:RAF1 mutant complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "400", - "label": "RAB1:GTP [endoplasmic reticulum-Golgi intermediate compartment membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "399", - "label": "p-4Y-PLCG1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "398", - "label": "Dynein:Dynactin:microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "397", - "label": "trans-Golgi Network Derived Lysosomal Vesicle Uncoating", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "396", - "label": "Expression of PERIOD-1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "395", - "label": "DNAJC6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "394", - "label": "OPRM1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "393", - "label": "E2F7 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "392", - "label": "PTEN gene transcription is stimulated by TP53, EGR1, PPARG, ATF2, MAF1, and inhibited by NR2E1, SALL4, MECOM, SNAI1, SNAI2, JUN", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "391", - "label": "L-Glu [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "390", - "label": "PAXIP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "389", - "label": "Expression of NPAS2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "388", - "label": "FOSB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "387", - "label": "UMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "386", - "label": "Interleukin-1 family precursors are cleaved by caspase-1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "385", - "label": "CCR4-NOT complex deadenylates mRNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "384", - "label": "p-T202,Y204-MAPK3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "383", - "label": "Transfer of SUMO3 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "382", - "label": "NFKB1(1-433):RELA [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "381", - "label": "Expression of STAT3-upregulated extracellular proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "380", - "label": "Thy-dRib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "379", - "label": "Cyt-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "378", - "label": "(d)CMP, TMP, or (d)UMP + H2O => (deoxy)cytidine, thymidine, or (deoxy)uridine + orthophosphate (NT5C3)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "377", - "label": "Ura-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "376", - "label": "Expression of CEBPB in adipogenesis", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "375", - "label": "RNF111 ubiquitinates SUMOylated XPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "374", - "label": "Dissociation of moderate activity BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "373", - "label": "Ub,SUMO:XPC:RAD23:CETN2:Open bubble-dsDNA:PAR-UV-DDB:TFIIH Core:XPA:PAR-PARP1, PAR-PARP2:CHD1L [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "372", - "label": "Dissociation of hp-IRAK1:TRAF6 from the activated TLR:oligo-Myd88:TIRAP:p-IRAK4 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "371", - "label": "p-S,2T-IRAK4:oligo-MyD88:TIRAP:activated TLR receptor [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "370", - "label": "Beta-catenin is released from the destruction complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "369", - "label": "VCP [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "368", - "label": "CREM isoform 6 (ICER1) [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "367", - "label": "Pellino ubiquitinates hp-IRAK1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "366", - "label": "40S ribosomal complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "365", - "label": "NF-kappaB p50:c-Rel [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "364", - "label": "PIP3:BTK:G beta-gamma complex dissociates to Active BTK, PIP3 and G beta-gamma complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "363", - "label": "PTEN mRNA translation is inhibited by miR-137", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "362", - "label": "IL1A(1-271) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "361", - "label": "IL1B(1-269) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "360", - "label": "p-Y701-STAT1, p-Y705-STAT3, p-Y649-STAT5 dissociates from IL9:p-Y116-IL9R:JAK1:IL2RG:p-904,939-JAK3:p-Y705-STAT3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "359", - "label": "p-T,Y MAPKs [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "358", - "label": "ADR, NAd [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "357", - "label": "hp-IRAK1:3xK63-polyUb-TRAF6:3xUBE2N:UBE2V1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "356", - "label": "SLC24A1 exchanges 4Na+ for Ca2+, K+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "355", - "label": "NAd [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "354", - "label": "PPARGC1A [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "353", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "352", - "label": "JAK1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "351", - "label": "TGFA(24-98) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "350", - "label": "Expression of Leptin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "349", - "label": "K+-independent Li+/Ca2+ exchanger transport", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "348", - "label": "S1P [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "347", - "label": "MMPs cleave HB-EGF", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "346", - "label": "NEDD8 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "345", - "label": "Ac-CoA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "344", - "label": "p-4Y-PLCG1 dissociates from activated FGFR3 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "343", - "label": "GRB2-1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "342", - "label": "NF-KappaB p50:p50:ub-p-IKBA [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "341", - "label": "NF-kappaB p50:p50 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "340", - "label": "MNA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "339", - "label": "Phosphorylation of IRAK2 bound to the activated IRAK4:MyD88 oligomer:TIRAP:activated TLR complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "338", - "label": "STAT1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "337", - "label": "p-IRAK2:p-IRAK4:oligo-MyD88:TIRAP:activated TLR [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "336", - "label": "SAR1B:GTP [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "335", - "label": "Dissociation of p-IRAK2:TRAF6 from the activated TLR:oligo-Myd88:TIRAP:p-IRAK4 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "334", - "label": "LPAR1,2,3,5:LPA [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "333", - "label": "p-4Y-PLCG1 dissociates from activated FGFR3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "332", - "label": "PolyUb-Misfolded Proteins [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "331", - "label": "NF-kappaB p50:p65:ub-p-IKB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "330", - "label": "Ade-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "329", - "label": "PolyUb-misfolded nascent CFTR [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "328", - "label": "NF-kB migrates to the nucleus and turns on transcription", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "327", - "label": "IL1B [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "326", - "label": "NF-kappaB p50,p65,c-Rel dimer [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "325", - "label": "Dissociation of phosphorylated PLCG1 from ligand-responsive p-6Y-EGFR mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "324", - "label": "AGTR1 [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "323", - "label": "AdoSeMet is converted to AdeSeHCys by MetTrans(1)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "322", - "label": "PPTN11 dephosphorylates SPRY2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "321", - "label": "PLCG1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "320", - "label": "RIPK3 is phosphorylated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "319", - "label": "RIPK1:RIPK3 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "318", - "label": "Release of L-Glutamate at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "317", - "label": "AVP(20-28) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "316", - "label": "Disassembly of COPII coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "315", - "label": "CEBPB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "314", - "label": "p-T,T486,T488-EIF2AK1 phosphorylates EIF2S1 (eIF2-alpha)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "313", - "label": "SCF-beta-TrCP ubiquitinylates IkB", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "312", - "label": "FGFR1OP-FGFR1 phosphorylates STAT1 and STAT3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "311", - "label": "GYS1 catalyzes the incorporation of phosphoglucose into glycogen-GYG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "310", - "label": "Start codon recognition", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "309", - "label": "EP300 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "308", - "label": "Phosphorylated STAT3 Dimer Translocates to the Nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "307", - "label": "SAA1(19-122) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "306", - "label": "COPII vesicle with MHC class I [ER to Golgi transport vesicle membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "305", - "label": "p-Y705-STAT3 dimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "304", - "label": "CCPs deglutamylate tubulin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "303", - "label": "Vesicle budding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "302", - "label": "HCMV Nuclear Pore Docking", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "301", - "label": "Estrogen-responsive MYC gene expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "300", - "label": "Budding of COPII coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "299", - "label": "COPI vesicle uncoating at the ER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "298", - "label": "RAB1:GTP:coatomer:p24 dimers:SEC22B:cargo:NBAS:RINT1:ZW10:STX18:USE1L:BNIP1 [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "297", - "label": "L-Glu [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "296", - "label": "RIPK3 binds RIPK1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "295", - "label": "eIF2:GTP is hydrolyzed, eIFs are released", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "294", - "label": "SOCS2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "293", - "label": "RAB6:GTP displaces PAFAH1B1 from dynein:dynactin complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "292", - "label": "OPRM1 gene expression is repressed by MECP2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "291", - "label": "TGFA precursor [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "290", - "label": "E2F1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "289", - "label": "ADORA2B:Ade-Rib:GsGTP dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "288", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "287", - "label": "p-Y705-STAT3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "286", - "label": "Dissociation of Rho GTP:GDP from GDI complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "285", - "label": "Phosphorylation of 4E-BP1 by activated mTORC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "284", - "label": "AREG precursor [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "283", - "label": "ATP2B1-4 transport cytosolic Ca2+ to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "282", - "label": "PPARG [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "281", - "label": "Deacetylation of cleaved cohesin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "280", - "label": "Cleaved Cohesin:PDS5:WAPAL [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "279", - "label": "SIK1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "278", - "label": "PGE2 [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "277", - "label": "RHOA:GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "276", - "label": "NOB1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "275", - "label": "The Ligand:GPCR:Gq complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "274", - "label": "MON1:CCZ1 exchanges GTP for GDP on RAB7", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "273", - "label": "CASR:Ca2+ [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "272", - "label": "Active PLC-gamma1 dissociates from EGFR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "271", - "label": "CXCR4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "270", - "label": "ARHGDIA [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "269", - "label": "Myr82K-Myr83K-IL1A [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "268", - "label": "p-4Y-PLCG1 dissociates from activated FGFR2 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "267", - "label": "AcCho [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "266", - "label": "Cho is acetylated to AcCho by CHAT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "265", - "label": "(d)CMP, TMP, or (d)UMP + H2O => (deoxy)cytidine, thymidine, or (deoxy)uridine + orthophosphate (NT5C1A)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "264", - "label": "MCHR1,MCHR2:PMCH(147-165) [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "263", - "label": "RNF4 ubiquitinates MDC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "262", - "label": "AREG(101-187) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "261", - "label": "TMED2:TMED10 tetramer:GPI-CD59, GPI-FOLR1 [endoplasmic reticulum-Golgi intermediate compartment membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "260", - "label": "NMUR1,NMUR2:NMU [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "259", - "label": "PolyUb:misfolded proteins dissociate from PRKN:UBE2N:UBE2V1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "258", - "label": "TMP, uridine 2', 3', or 5' monophosphates, or deoxyuridine 3' or 5' monophosphates + H2O => thymidine or (deoxy)uridine + orthophosphate [NT5C]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "257", - "label": "p-BMAL1:p-CLOCK,NPAS2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "256", - "label": "G-protein beta-gamma complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "255", - "label": "p-IRAK2 [endosome membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "254", - "label": "Exocytosis of specific granule membrane proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "253", - "label": "PTEN mRNA translation is negatively regulated by microRNAs", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "252", - "label": "FGL2 [ficolin-1-rich granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "251", - "label": "BTRC [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "250", - "label": "PTAFR [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "249", - "label": "Vesicle is tethered through binding GOLGA2:GORASP1, GOLGB1 and the COG complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "248", - "label": "RAB1:GTP:USO1:coatomer:PalmC-YKT6:p24 dimers:cargo:spectrin:anykrin [transport vesicle]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "247", - "label": "Dissociation of oncogenic RAS:RAF complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "246", - "label": "DNA DNA DSBs:p-MRN:p-S1981,Ac-K3016-ATM:KAT5:K63PolyUb-K14,K16,p-S139-H2AFX,Me2K21-HIST1H4A-Nucleosome:SUMO2:K1840,p-5T-MDC1:p-S102-WHSC1:RNF8:Zn2+:SUMO1:p-T4827-HERC2:UBE2N:UBE2V2:RNF168:PIAS4:p-S25,S1778-TP53BP1:p-5S,2T-BRCA1-A complex [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "245", - "label": "Release of p-PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "244", - "label": "Stimulation of IL8 transcription in senescent cells", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "243", - "label": "G-protein alpha (i):GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "242", - "label": "Dissociation of phosphorylated PLC-gamma 1 from p-EGFRvIII mutant", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "241", - "label": "p-4Y-PLCG1 dissociates from activated FGFR2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "240", - "label": "Negative regulation of DDX58/IFIH1 signaling by RNF216", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "239", - "label": "Phosphorylated heterodimers of ERBB2 KD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "238", - "label": "PolyUb-Misfolded cilia proteins [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "237", - "label": "PolyUb-Misfolded CETN1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "236", - "label": "PPARG:Fatty Acid:RXRA:Mediator:Coactivator Complex [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "235", - "label": "Retinoic acid activates HOXB1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "234", - "label": "GDI1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "233", - "label": "RNF8:Zn2+ [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "232", - "label": "KIFC1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "231", - "label": "NF-kappaB translocates from the cytosol to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "230", - "label": "OCT1 transports organic cations out of hepatic cells", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "229", - "label": "K48PolyUb-K21,22-p-S32,36-IkBA:NF-kB complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "228", - "label": "HDAC3 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "227", - "label": "Separation of sister chromatids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "226", - "label": "Fatty acid ligands activate PPARA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "225", - "label": "Dissociation of hp-IRAK1/or IRAK2:TRAF6-oligomer from the p-IRAK4 :oligo-Myd88:activated TLR7/8 or 9 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "224", - "label": "p-S,2T-IRAK4:oligo-MyD88:activated TLR7/8 or 9 receptor [endosome membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "223", - "label": "Equilibrative transport (export) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "222", - "label": "Phosphorylation and activation of PLCG due to FCGR3A effect", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "221", - "label": "HBEGF(63-148) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "220", - "label": "p-Y-STATs translocate to nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "219", - "label": "Dissociation of high activity BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "218", - "label": "AcCho [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "217", - "label": "p-4Y-PLCG1 dissociates from activated FGFR4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "216", - "label": "CH3COO- [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "215", - "label": "Acyl Ghrelin and C-Ghrelin are secreted", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "214", - "label": "SLC8A1,2,3 exchange 3Na+ for Ca2+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "213", - "label": "p-Y1105-ARHGAP35 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "212", - "label": "Expression of IL-8", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "211", - "label": "p190RhoGEF exchanges GTP for GDP on RHOA, activating it", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "210", - "label": "Phosphorylation of CTLA-4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "209", - "label": "p-Y705-STAT3 dimer translocates from cytosol to nucleoplasm", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "208", - "label": "Fusion of viral membrane with host cell membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "207", - "label": "Viral core surrounded by Matrix layer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "206", - "label": "p-Y-STATs dissociate", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "205", - "label": "SLC7A11-mediated exchange of extracellular cysteine and cytosolic glutamate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "204", - "label": "E2F7 and E2F8 homo- and heterodimers inhibit E2F1 expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "203", - "label": "UBE2N:UBE2V1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "202", - "label": "p-4Y-PLCG1 dissociates from activated FGFR4 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "201", - "label": "BMAL1:CLOCK,NPAS2 heterodimer is phosphorylated and translocates to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "200", - "label": "DNA DSB:p-MRN:p-S1981,Ac-K3016-ATM:KAT5 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "199", - "label": "myristoylated nef [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "198", - "label": "SPRY2 binds CBL", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "197", - "label": "Expression of BMAL1 (ARNTL).", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "196", - "label": "p115-RhoGEF activation of RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "195", - "label": "ARFGAPs stimulate ARF GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "194", - "label": "BET1:GOSR2:STX5 bind v-SNARES on tethered vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "193", - "label": "Phosphorylated heterodimers of ERBB2 ECD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "192", - "label": "18SE pre-rRNA in pre-40S particles is nucleolytically processed during translocation from the nucleus to the cytosol", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "191", - "label": "Ca2+ [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "190", - "label": "GDI2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "189", - "label": "NNMT transfers CH3 from SAM to NAM to form MNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "188", - "label": "PI(3,4,5)P3 [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "187", - "label": "The Ligand:GPCR:Gi complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "186", - "label": "MyrG-p-Y419-SRC [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "185", - "label": "MYC [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "184", - "label": "The Ligand:GPCR:Gs complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "183", - "label": "SLC24A1-4 exchange extracellular 4Na+ for cytosolic Ca2+, K+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "182", - "label": "PTHLH [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "181", - "label": "Recovery of RNA synthesis after TC-NER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "180", - "label": "Dissociation of clathrin-associated proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "179", - "label": "NFKB1:RELA translocates from the cytosol to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "178", - "label": "NFKB1(1-433):RELA [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "177", - "label": "Cytosolic DUSPs dephosphorylate MAPKs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "176", - "label": "SAR1 Activation And Membrane Binding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "175", - "label": "SAR1B:GDP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "174", - "label": "SAR1B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "173", - "label": "FPR2:FPR2 ligands [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "172", - "label": "FPR2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "171", - "label": "VCPKMT (METTL21D) transfers 3xCH3 from 3xAdoMet to VCP", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "170", - "label": "PIAS4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "169", - "label": "Polyglutamylated microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "168", - "label": "GPR39 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "167", - "label": "Processing of caspases", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "166", - "label": "26S proteasome processes K48PolyUb-K21,22-p-S32,36-IkBA:NF-kB complex to form NF-kB complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "165", - "label": "Transfer of SUMO1 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "164", - "label": "ARRB1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "163", - "label": "Acyl Ghrelin [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "162", - "label": "O-octanoyl-L-serine-GHRL-1(24-50) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "161", - "label": "Release of PLCG from FCGR3A", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "160", - "label": "IgG:Leishmania surface:p-FCGR3A:p-6Y-SYK:p-3Y-PLCG [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "159", - "label": "Loss of SAR1B GTPase", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "158", - "label": "Dissociation of the Gi alpha:G olf complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "157", - "label": "Activated NTRK3 stimulates PI3K activity", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "156", - "label": "TGFA precursor [ER to Golgi transport vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "155", - "label": "GNAL [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "154", - "label": "ARHGAP35 stimulates RHOA GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "153", - "label": "PIAS4 SUMOylates NR4A2 with SUMO2,3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "152", - "label": "AREG precursor [ER to Golgi transport vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "151", - "label": "p-S52-EIF2S1:EIF2S2:EIF2S3 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "150", - "label": "TLR2 [secretory granule membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "149", - "label": "PolyUb-Misfolded IFT88 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "148", - "label": "CLOCK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "147", - "label": "RNF152 polyubiquitinates RRAGA", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "146", - "label": "ARNTL [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "145", - "label": "NPAS2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "144", - "label": "UBE2N:UBE2V2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "143", - "label": "p-S102-WHSC1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "142", - "label": "Ca2+ [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "141", - "label": "CASP8(217-374) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "140", - "label": "RhoA is activated by nucleotide exchange and inhibits axonal growth", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "139", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "138", - "label": "PPARG:RXRA heterodimer binds to fatty acid-like ligands", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "137", - "label": "RHOA:GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "136", - "label": "GYS2 catalyzes the incorporation of phosphoglucose into glycogen-GYG2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "135", - "label": "Transfer of NEDD8 to AcM-UBE2M", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "134", - "label": "NGEF exchanges GTP for GDP on RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "133", - "label": "SEC13 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "132", - "label": "TRAF3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "131", - "label": "Caspase-8 cleaves IL1B precursor", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "130", - "label": "TRAF6 binding leads to IRAK1:TRAF6 release", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "129", - "label": "Association of Ku heterodimer with ends of DNA double-strand break", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "128", - "label": "NCOR1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "127", - "label": "PolyUb-Misfolded Proteins:HDAC6 dissociate from complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "126", - "label": "p-2S,S376,T,T209,T387-IRAK1:TRAF6 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "125", - "label": "p-SPHK1 phosphorylates sphingosine to sphingosine 1-phosphate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "124", - "label": "NR4A2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "123", - "label": "RASA1 stimulates RAS GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "122", - "label": "p-Y705-STAT3 dimer, p-Y641-STAT6 dimer translocate to nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "121", - "label": "Dissociation of paradoxically activated RAS:BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "120", - "label": "p-Y641-STAT6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "119", - "label": "PIAS4 SUMOylates MDC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "118", - "label": "LEP [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "117", - "label": "CGA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "116", - "label": "SUMO2:UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "115", - "label": "TRPs transport extracellular Ca2+ to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "114", - "label": "GCG(53-81) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "113", - "label": "CBL [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "112", - "label": "TRAF6 ubiquitinqtes IRF7 within the activated TLR7/8 or 9 complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "111", - "label": "SRC autophosphorylation is positively regulated by InlA-bound CDH1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "110", - "label": "STAT1 and STAT3 dimers translocate to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "109", - "label": "WNT5A:FZD4 is endocytosed", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "108", - "label": "viral dsRNA:IFIH1, viral dsRNA:K63polyUb-DDX58:MAVS [mitochondrial outer membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "107", - "label": "p-Y701-STAT1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "106", - "label": "The p75NTR:NgR:MDGI complex reduces RHOA-GDI activity, displacing RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "105", - "label": "Retrograde vesicle is tethered at the ER by the NRZ complex and t-SNAREs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "104", - "label": "TNFRSF1B [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "103", - "label": "AP-2 Complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "102", - "label": "Overexpressed HIST1H2AC and ESR1:ESTG bind MYC and BCL2 genes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "101", - "label": "UBE2N [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "100", - "label": "Nef mediated disruption of CD4:Lck Complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "99", - "label": "PolyUb-Misfolded ARL13B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "98", - "label": "Degradation of CD4", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "97", - "label": "Release of acetylcholine at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "96", - "label": "BTRC:CUL1:SKP1 (SCF-beta-TrCP1) ubiquitinylates PER proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "95", - "label": "TRAF6 is K63 poly-ubiquitinated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "94", - "label": "Acetylcholine Loaded Synaptic Vesicle [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "93", - "label": "PTEN mRNA translation negatively regulated by microRNAs", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "92", - "label": "PTEN mRNA [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "91", - "label": "Retinoic acid activates HOXD4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "90", - "label": "SUMO1:C93-UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "89", - "label": "G-proteins dissociate from plasma-membrane estrogen receptors", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "88", - "label": "Expression of PPARG", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "87", - "label": "RNF168 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "86", - "label": "TGFBR2 is recruited to tight junctions after TGF-beta stimulation", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "85", - "label": "Retinoic acid activates HOXA1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "84", - "label": "SPAST (spastin) mediates the severing of microtubules at chromosome attachment sites", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "83", - "label": "ATF4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "82", - "label": "CSNK1D phosphorylates SEC23", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "81", - "label": "cIAP1,2 ubiquitinates NIK in cIAP1,2:TRAF2::TRAF3:NIK", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "80", - "label": "beta-TRCP ubiquitinates IkB-alpha in p-S32,33-IkB-alpha:NF-kB complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "79", - "label": "TNFRSF1B [specific granule membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "78", - "label": "GMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "77", - "label": "MYC gene expression is enhanced by E2F1, STAT3, and CEBPB and repressed by CEBPA", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "76", - "label": "EIF4B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "75", - "label": "Histone H2A [nucleoplasm]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "74", - "label": "TRAF6:hp-IRAK1 [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "73", - "label": "NMUR2:NMS [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "72", - "label": "USO1 homodimer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "71", - "label": "UBE2N:UBE2V1 dissociates from hp-IRAK1:3xK63-polyUb-TRAF6:3xUBE2N:UBE2V1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "70", - "label": "mature mRNA (eukaryotic, capped and deadenylated) [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "69", - "label": "Exosome Complex hydrolyzes mRNA by 3' to 5' exoribonuclease digestion", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "68", - "label": "SNAI2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "67", - "label": "K63PolyUb:K14,K16,p-S139-H2AFX,Me2K21-HIST1H4A-Nucleosome [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "66", - "label": "PER1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "65", - "label": "LCK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "64", - "label": "coatomer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "63", - "label": "Phosphorylated heterodimers of ERBB2 TMD/JMD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "62", - "label": "SUMOylation of XPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "61", - "label": "PAFAH1B1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - } - ], - "edges": [ - { - "id": "1118", - "label": "572416 (-) 572418", - "from": "497", - "to": "494", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1117", - "label": "305153 (-) 299541", - "from": "496", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1116", - "label": "304129 (-) 299541", - "from": "495", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1115", - "label": "572418 (-) 1031197", - "from": "494", - "to": "485", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1114", - "label": "572418 (-) 994566", - "from": "494", - "to": "385", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1113", - "label": "572417 (-) 572416", - "from": "493", - "to": "497", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1112", - "label": "492556 (-) 1684105", - "from": "492", - "to": "223", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1111", - "label": "6157 (-) 13130", - "from": "491", - "to": "127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1110", - "label": "6157 (-) 8322", - "from": "491", - "to": "436", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1109", - "label": "826382 (-) 492556", - "from": "490", - "to": "492", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1108", - "label": "305167 (-) 299541", - "from": "489", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1107", - "label": "618516 (-) 1035755", - "from": "488", - "to": "296", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1106", - "label": "305175 (-) 299541", - "from": "487", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1105", - "label": "1098777 (-) 303707", - "from": "486", - "to": "250", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1104", - "label": "1031197 (-) 992230", - "from": "485", - "to": "70", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1103", - "label": "289822 (-) 94950", - "from": "484", - "to": "188", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1102", - "label": "289823 (-) 289822", - "from": "483", - "to": "484", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1101", - "label": "554016 (-) 826382", - "from": "482", - "to": "490", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1100", - "label": "305190 (-) 299541", - "from": "481", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1099", - "label": "1882150 (-) 2098710", - "from": "480", - "to": "274", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1098", - "label": "1341480 (-) 320330", - "from": "479", - "to": "128", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1097", - "label": "1412138 (-) 1411783", - "from": "478", - "to": "199", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1096", - "label": "616491 (-) 550154", - "from": "477", - "to": "382", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1095", - "label": "616491 (-) 616607", - "from": "477", - "to": "425", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1094", - "label": "616491 (-) 616843", - "from": "477", - "to": "326", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1093", - "label": "616491 (-) 616818", - "from": "477", - "to": "341", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1092", - "label": "616491 (-) 616732", - "from": "477", - "to": "365", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1091", - "label": "616492 (-) 616491", - "from": "476", - "to": "477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1090", - "label": "616493 (-) 616491", - "from": "475", - "to": "477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1089", - "label": "289835 (-) 289823", - "from": "474", - "to": "483", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1088", - "label": "1473583 (-) 1411783", - "from": "473", - "to": "199", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1087", - "label": "244783 (-) 243984", - "from": "472", - "to": "372", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1086", - "label": "1668145 (-) 251616", - "from": "471", - "to": "191", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1085", - "label": "54322 (-) 743241", - "from": "470", - "to": "129", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1084", - "label": "127029 (-) 540822", - "from": "469", - "to": "428", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1083", - "label": "2131002 (-) 2131705", - "from": "468", - "to": "180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1082", - "label": "299067 (-) 299541", - "from": "467", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1081", - "label": "1299518 (-) 1299378", - "from": "466", - "to": "83", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1080", - "label": "2119743 (-) 254746", - "from": "465", - "to": "164", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1079", - "label": "955460 (-) 955573", - "from": "464", - "to": "412", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1078", - "label": "62537 (-) 743241", - "from": "463", - "to": "129", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1077", - "label": "245834 (-) 1205619", - "from": "462", - "to": "339", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1076", - "label": "2131021 (-) 2131705", - "from": "461", - "to": "180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1075", - "label": "975952 (-) 250984", - "from": "460", - "to": "446", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1074", - "label": "975952 (-) 251144", - "from": "460", - "to": "384", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1073", - "label": "975952 (-) 251201", - "from": "460", - "to": "359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1072", - "label": "1296465 (-) 1297199", - "from": "459", - "to": "151", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1071", - "label": "703570 (-) 1410943", - "from": "458", - "to": "111", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1070", - "label": "304210 (-) 299541", - "from": "457", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1069", - "label": "950359 (-) 569211", - "from": "456", - "to": "113", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1068", - "label": "1695832 (-) 298310", - "from": "455", - "to": "355", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1067", - "label": "1695832 (-) 299127", - "from": "455", - "to": "440", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1066", - "label": "1695832 (-) 299067", - "from": "455", - "to": "467", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1065", - "label": "964698 (-) 144608", - "from": "454", - "to": "399", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1064", - "label": "950362 (-) 950359", - "from": "453", - "to": "456", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1063", - "label": "247900 (-) 245706", - "from": "452", - "to": "74", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1062", - "label": "46171 (-) 703760", - "from": "451", - "to": "370", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1061", - "label": "320604 (-) 1430006", - "from": "450", - "to": "292", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1060", - "label": "1934430 (-) 1935115", - "from": "449", - "to": "169", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1059", - "label": "1084519 (-) 1084321", - "from": "448", - "to": "94", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1058", - "label": "243816 (-) 247900", - "from": "447", - "to": "452", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1057", - "label": "250984 (-) 392955", - "from": "446", - "to": "177", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1056", - "label": "6250 (-) 8322", - "from": "445", - "to": "436", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1055", - "label": "6250 (-) 13130", - "from": "445", - "to": "127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1054", - "label": "1911913 (-) 978264", - "from": "444", - "to": "346", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1053", - "label": "500848 (-) 492556", - "from": "443", - "to": "492", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1052", - "label": "1299572 (-) 1297199", - "from": "442", - "to": "151", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1051", - "label": "916596 (-) 917308", - "from": "441", - "to": "136", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1050", - "label": "916596 (-) 916923", - "from": "441", - "to": "311", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1049", - "label": "299127 (-) 299541", - "from": "440", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1048", - "label": "322680 (-) 321865", - "from": "439", - "to": "354", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1047", - "label": "314489 (-) 299541", - "from": "438", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1046", - "label": "1338496 (-) 301477", - "from": "437", - "to": "317", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1045", - "label": "8322 (-) 8325", - "from": "436", - "to": "435", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1044", - "label": "8325 (-) 1934430", - "from": "435", - "to": "449", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1043", - "label": "8325 (-) 638896", - "from": "435", - "to": "84", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1042", - "label": "8327 (-) 1935831", - "from": "434", - "to": "304", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1041", - "label": "160903 (-) 1382672", - "from": "433", - "to": "376", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1040", - "label": "258188 (-) 1793199", - "from": "432", - "to": "417", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1039", - "label": "1867917 (-) 1871665", - "from": "431", - "to": "147", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1038", - "label": "540820 (-) 792292", - "from": "430", - "to": "189", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1037", - "label": "540820 (-) 798102", - "from": "430", - "to": "323", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1036", - "label": "304276 (-) 299541", - "from": "429", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1035", - "label": "540822 (-) 540820", - "from": "428", - "to": "430", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1034", - "label": "1035416 (-) 2085752", - "from": "427", - "to": "115", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1033", - "label": "571548 (-) 571803", - "from": "426", - "to": "322", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1032", - "label": "616607 (-) 617080", - "from": "425", - "to": "231", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1031", - "label": "422049 (-) 573953", - "from": "424", - "to": "285", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1030", - "label": "565410 (-) 1200984", - "from": "423", - "to": "125", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1029", - "label": "133281 (-) 1484122", - "from": "422", - "to": "344", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1028", - "label": "133281 (-) 1485345", - "from": "422", - "to": "268", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1027", - "label": "133281 (-) 1485501", - "from": "422", - "to": "202", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1026", - "label": "133281 (-) 289149", - "from": "422", - "to": "333", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1025", - "label": "133281 (-) 291429", - "from": "422", - "to": "241", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1024", - "label": "133281 (-) 291483", - "from": "422", - "to": "217", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1023", - "label": "255142 (-) 974036", - "from": "421", - "to": "401", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1022", - "label": "255142 (-) 973072", - "from": "421", - "to": "374", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1021", - "label": "255142 (-) 971358", - "from": "421", - "to": "247", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1020", - "label": "255142 (-) 973669", - "from": "421", - "to": "121", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1019", - "label": "255142 (-) 972439", - "from": "421", - "to": "219", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1018", - "label": "255142 (-) 975952", - "from": "421", - "to": "460", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1017", - "label": "255142 (-) 252110", - "from": "421", - "to": "403", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1016", - "label": "1296552 (-) 1299889", - "from": "420", - "to": "314", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1015", - "label": "1296552 (-) 1296465", - "from": "420", - "to": "459", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1014", - "label": "1296552 (-) 1299572", - "from": "420", - "to": "442", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1013", - "label": "616621 (-) 616491", - "from": "419", - "to": "477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1012", - "label": "1116334 (-) 593090", - "from": "418", - "to": "407", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1011", - "label": "1793199 (-) 149916", - "from": "417", - "to": "321", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1010", - "label": "1793199 (-) 286028", - "from": "417", - "to": "352", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1009", - "label": "1793199 (-) 570743", - "from": "417", - "to": "338", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1008", - "label": "92336 (-) 1243896", - "from": "416", - "to": "181", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1007", - "label": "923825 (-) 77681", - "from": "415", - "to": "116", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1006", - "label": "64690 (-) 1886473", - "from": "414", - "to": "383", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1005", - "label": "64690 (-) 923825", - "from": "414", - "to": "415", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1004", - "label": "64690 (-) 67353", - "from": "414", - "to": "165", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1003", - "label": "887987 (-) 888278", - "from": "413", - "to": "303", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1002", - "label": "955573 (-) 952711", - "from": "412", - "to": "327", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1001", - "label": "955574 (-) 955573", - "from": "411", - "to": "412", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1000", - "label": "324791 (-) 321329", - "from": "410", - "to": "148", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "999", - "label": "955575 (-) 955573", - "from": "409", - "to": "412", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "998", - "label": "955580 (-) 955573", - "from": "408", - "to": "412", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "997", - "label": "593090 (-) 1411759", - "from": "407", - "to": "208", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "996", - "label": "573635 (-) 994566", - "from": "406", - "to": "385", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "995", - "label": "573635 (-) 1031197", - "from": "406", - "to": "485", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "994", - "label": "1238218 (-) 1238006", - "from": "405", - "to": "62", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "993", - "label": "1538253 (-) 293444", - "from": "404", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "992", - "label": "252110 (-) 251201", - "from": "403", - "to": "359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "991", - "label": "252110 (-) 251144", - "from": "403", - "to": "384", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "990", - "label": "252110 (-) 250984", - "from": "403", - "to": "446", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "989", - "label": "333006 (-) 331494", - "from": "402", - "to": "187", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "988", - "label": "974036 (-) 251144", - "from": "401", - "to": "384", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "987", - "label": "974036 (-) 251201", - "from": "401", - "to": "359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "986", - "label": "974036 (-) 250984", - "from": "401", - "to": "446", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "985", - "label": "877790 (-) 877267", - "from": "400", - "to": "195", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "984", - "label": "144608 (-) 151325", - "from": "399", - "to": "161", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "983", - "label": "144608 (-) 289822", - "from": "399", - "to": "484", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "982", - "label": "875746 (-) 2111986", - "from": "398", - "to": "293", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "981", - "label": "2117860 (-) 254746", - "from": "397", - "to": "164", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "980", - "label": "1337573 (-) 1337326", - "from": "396", - "to": "66", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "979", - "label": "2117862 (-) 2119743", - "from": "395", - "to": "465", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "978", - "label": "2117862 (-) 2117860", - "from": "395", - "to": "397", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "977", - "label": "336103 (-) 331494", - "from": "394", - "to": "187", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "976", - "label": "336103 (-) 1538253", - "from": "394", - "to": "404", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "975", - "label": "988389 (-) 988852", - "from": "393", - "to": "204", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "974", - "label": "226535 (-) 225188", - "from": "392", - "to": "92", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "973", - "label": "261355 (-) 299541", - "from": "391", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "972", - "label": "743664 (-) 1341480", - "from": "390", - "to": "479", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "971", - "label": "743664 (-) 1341349", - "from": "390", - "to": "91", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "970", - "label": "743664 (-) 1341038", - "from": "390", - "to": "235", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "969", - "label": "743664 (-) 1340336", - "from": "390", - "to": "85", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "968", - "label": "324862 (-) 321328", - "from": "389", - "to": "145", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "967", - "label": "660736 (-) 2062814", - "from": "388", - "to": "301", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "966", - "label": "504065 (-) 504078", - "from": "387", - "to": "378", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "965", - "label": "504065 (-) 504360", - "from": "387", - "to": "265", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "964", - "label": "504065 (-) 504377", - "from": "387", - "to": "258", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "963", - "label": "955652 (-) 955580", - "from": "386", - "to": "408", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "962", - "label": "955652 (-) 955574", - "from": "386", - "to": "411", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "961", - "label": "955652 (-) 955460", - "from": "386", - "to": "464", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "960", - "label": "994566 (-) 992230", - "from": "385", - "to": "70", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "959", - "label": "251144 (-) 392955", - "from": "384", - "to": "177", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "958", - "label": "1886473 (-) 1238218", - "from": "383", - "to": "405", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "957", - "label": "550154 (-) 617080", - "from": "382", - "to": "231", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "956", - "label": "550154 (-) 550650", - "from": "382", - "to": "179", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "955", - "label": "550154 (-) 646528", - "from": "382", - "to": "328", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "954", - "label": "1806603 (-) 310723", - "from": "381", - "to": "307", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "953", - "label": "504076 (-) 1684283", - "from": "380", - "to": "139", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "952", - "label": "504076 (-) 1682942", - "from": "380", - "to": "288", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "951", - "label": "504077 (-) 1682942", - "from": "379", - "to": "288", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "950", - "label": "504077 (-) 1684283", - "from": "379", - "to": "139", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "949", - "label": "504078 (-) 504076", - "from": "378", - "to": "380", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "948", - "label": "504078 (-) 504077", - "from": "378", - "to": "379", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "947", - "label": "504078 (-) 504075", - "from": "378", - "to": "377", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "946", - "label": "504075 (-) 1682942", - "from": "377", - "to": "288", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "945", - "label": "504075 (-) 1684283", - "from": "377", - "to": "139", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "944", - "label": "1382672 (-) 441773", - "from": "376", - "to": "315", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "943", - "label": "1237263 (-) 55093", - "from": "375", - "to": "144", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "942", - "label": "973072 (-) 251144", - "from": "374", - "to": "384", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "941", - "label": "973072 (-) 251201", - "from": "374", - "to": "359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "940", - "label": "973072 (-) 250984", - "from": "374", - "to": "446", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "939", - "label": "1237265 (-) 1237263", - "from": "373", - "to": "375", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "938", - "label": "243984 (-) 245706", - "from": "372", - "to": "74", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "937", - "label": "243987 (-) 243984", - "from": "371", - "to": "372", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "936", - "label": "703760 (-) 703570", - "from": "370", - "to": "458", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "935", - "label": "13588 (-) 1884935", - "from": "369", - "to": "171", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "934", - "label": "1337624 (-) 1337573", - "from": "368", - "to": "396", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "933", - "label": "1205524 (-) 14012", - "from": "367", - "to": "203", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "932", - "label": "814361 (-) 1952238", - "from": "366", - "to": "295", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "931", - "label": "814361 (-) 1953214", - "from": "366", - "to": "310", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "930", - "label": "616732 (-) 617080", - "from": "365", - "to": "231", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "929", - "label": "1522976 (-) 293444", - "from": "364", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "928", - "label": "1429803 (-) 127029", - "from": "363", - "to": "469", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "927", - "label": "955702 (-) 955652", - "from": "362", - "to": "386", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "926", - "label": "955707 (-) 955652", - "from": "361", - "to": "386", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "925", - "label": "955707 (-) 1156931", - "from": "361", - "to": "131", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "924", - "label": "1046846 (-) 570878", - "from": "360", - "to": "287", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "923", - "label": "251201 (-) 392955", - "from": "359", - "to": "177", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "922", - "label": "298309 (-) 299541", - "from": "358", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "921", - "label": "241990 (-) 958434", - "from": "357", - "to": "71", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "920", - "label": "1534279 (-) 251616", - "from": "356", - "to": "191", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "919", - "label": "298310 (-) 299541", - "from": "355", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "918", - "label": "321865 (-) 1382736", - "from": "354", - "to": "350", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "917", - "label": "298315 (-) 299541", - "from": "353", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "916", - "label": "286028 (-) 1046846", - "from": "352", - "to": "360", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "915", - "label": "286028 (-) 1807026", - "from": "352", - "to": "206", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "914", - "label": "101711 (-) 1490324", - "from": "351", - "to": "325", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "913", - "label": "101711 (-) 1490531", - "from": "351", - "to": "242", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "912", - "label": "101711 (-) 291357", - "from": "351", - "to": "272", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "911", - "label": "1382736 (-) 327533", - "from": "350", - "to": "118", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "910", - "label": "1681748 (-) 251616", - "from": "349", - "to": "191", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "909", - "label": "554324 (-) 554327", - "from": "348", - "to": "347", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "908", - "label": "554327 (-) 98964", - "from": "347", - "to": "221", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "907", - "label": "978264 (-) 1916734", - "from": "346", - "to": "135", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "906", - "label": "193879 (-) 1083941", - "from": "345", - "to": "266", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "905", - "label": "1484122 (-) 144608", - "from": "344", - "to": "399", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "904", - "label": "132458 (-) 1214047", - "from": "343", - "to": "245", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "903", - "label": "616817 (-) 616491", - "from": "342", - "to": "477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "902", - "label": "616818 (-) 617080", - "from": "341", - "to": "231", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "901", - "label": "791922 (-) 1695832", - "from": "340", - "to": "455", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "900", - "label": "791922 (-) 1695353", - "from": "340", - "to": "230", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "899", - "label": "1205619 (-) 1205623", - "from": "339", - "to": "337", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "898", - "label": "570743 (-) 1482169", - "from": "338", - "to": "312", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "897", - "label": "1205623 (-) 1205624", - "from": "337", - "to": "335", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "896", - "label": "883065 (-) 1200606", - "from": "336", - "to": "300", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "895", - "label": "1205624 (-) 243987", - "from": "335", - "to": "371", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "894", - "label": "302460 (-) 299541", - "from": "334", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "893", - "label": "289149 (-) 144608", - "from": "333", - "to": "399", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "892", - "label": "5502 (-) 13130", - "from": "332", - "to": "127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "891", - "label": "5502 (-) 8322", - "from": "332", - "to": "436", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "890", - "label": "616831 (-) 616491", - "from": "331", - "to": "477", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "889", - "label": "330112 (-) 409084", - "from": "330", - "to": "289", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "888", - "label": "330112 (-) 369394", - "from": "330", - "to": "184", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "887", - "label": "330112 (-) 331494", - "from": "330", - "to": "187", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "886", - "label": "5503 (-) 8322", - "from": "329", - "to": "436", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "885", - "label": "5503 (-) 13130", - "from": "329", - "to": "127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "884", - "label": "646528 (-) 550651", - "from": "328", - "to": "178", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "883", - "label": "952711 (-) 958275", - "from": "327", - "to": "130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "882", - "label": "616843 (-) 617080", - "from": "326", - "to": "231", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "881", - "label": "1490324 (-) 144608", - "from": "325", - "to": "399", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "880", - "label": "2131348 (-) 2131705", - "from": "324", - "to": "180", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "879", - "label": "798102 (-) 791922", - "from": "323", - "to": "340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "878", - "label": "571803 (-) 132458", - "from": "322", - "to": "343", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "877", - "label": "149916 (-) 1488882", - "from": "321", - "to": "63", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "876", - "label": "149916 (-) 1489512", - "from": "321", - "to": "239", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "875", - "label": "149916 (-) 964698", - "from": "321", - "to": "454", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "874", - "label": "149916 (-) 1489627", - "from": "321", - "to": "193", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "873", - "label": "149916 (-) 289835", - "from": "321", - "to": "474", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "872", - "label": "149916 (-) 157322", - "from": "321", - "to": "222", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "871", - "label": "1035681 (-) 1035416", - "from": "320", - "to": "427", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "870", - "label": "1035683 (-) 1035681", - "from": "319", - "to": "320", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "869", - "label": "1065380 (-) 261355", - "from": "318", - "to": "391", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "868", - "label": "301477 (-) 299541", - "from": "317", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "867", - "label": "1200554 (-) 43842", - "from": "316", - "to": "133", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "866", - "label": "441773 (-) 1382312", - "from": "315", - "to": "88", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "865", - "label": "1299889 (-) 1297199", - "from": "314", - "to": "151", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "864", - "label": "616886 (-) 616493", - "from": "313", - "to": "475", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "863", - "label": "616886 (-) 616831", - "from": "313", - "to": "331", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "862", - "label": "616886 (-) 616621", - "from": "313", - "to": "419", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "861", - "label": "616886 (-) 616817", - "from": "313", - "to": "342", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "860", - "label": "616886 (-) 616492", - "from": "313", - "to": "476", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "859", - "label": "1482169 (-) 570878", - "from": "312", - "to": "287", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "858", - "label": "1482169 (-) 935814", - "from": "312", - "to": "107", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "857", - "label": "916923 (-) 504065", - "from": "311", - "to": "387", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "856", - "label": "1953214 (-) 1296552", - "from": "310", - "to": "420", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "855", - "label": "321983 (-) 1382736", - "from": "309", - "to": "350", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "854", - "label": "587203 (-) 441814", - "from": "308", - "to": "305", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "853", - "label": "310723 (-) 299541", - "from": "307", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "852", - "label": "1200581 (-) 1200554", - "from": "306", - "to": "316", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "851", - "label": "441814 (-) 1806603", - "from": "305", - "to": "381", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "850", - "label": "1935831 (-) 191978", - "from": "304", - "to": "297", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "849", - "label": "888278 (-) 883456", - "from": "303", - "to": "174", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "848", - "label": "1477081 (-) 8325", - "from": "302", - "to": "435", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "847", - "label": "2062814 (-) 418544", - "from": "301", - "to": "185", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "846", - "label": "1200606 (-) 1200581", - "from": "300", - "to": "306", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "845", - "label": "2112990 (-) 874479", - "from": "299", - "to": "64", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "844", - "label": "2112991 (-) 2112990", - "from": "298", - "to": "299", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "843", - "label": "191978 (-) 1673905", - "from": "297", - "to": "205", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "842", - "label": "1035755 (-) 1035683", - "from": "296", - "to": "319", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "841", - "label": "1952238 (-) 572418", - "from": "295", - "to": "494", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "840", - "label": "1952238 (-) 574400", - "from": "295", - "to": "76", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "839", - "label": "1952238 (-) 573635", - "from": "295", - "to": "406", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "838", - "label": "1798639 (-) 1911913", - "from": "294", - "to": "444", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "837", - "label": "2111986 (-) 49150", - "from": "293", - "to": "61", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "836", - "label": "1430006 (-) 336103", - "from": "292", - "to": "394", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "835", - "label": "882169 (-) 888278", - "from": "291", - "to": "303", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "834", - "label": "882169 (-) 883490", - "from": "291", - "to": "159", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "833", - "label": "398844 (-) 1386423", - "from": "290", - "to": "77", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "832", - "label": "409084 (-) 293444", - "from": "289", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "831", - "label": "1682942 (-) 330112", - "from": "288", - "to": "330", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "830", - "label": "570878 (-) 627554", - "from": "287", - "to": "122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "829", - "label": "570878 (-) 1806998", - "from": "287", - "to": "220", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "828", - "label": "570878 (-) 1802928", - "from": "287", - "to": "209", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "827", - "label": "570878 (-) 935811", - "from": "287", - "to": "110", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "826", - "label": "570878 (-) 587203", - "from": "287", - "to": "308", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "825", - "label": "2059776 (-) 653856", - "from": "286", - "to": "270", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "824", - "label": "573953 (-) 572417", - "from": "285", - "to": "493", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "823", - "label": "882178 (-) 883490", - "from": "284", - "to": "159", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "822", - "label": "882178 (-) 888278", - "from": "284", - "to": "303", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "821", - "label": "1790467 (-) 251616", - "from": "283", - "to": "191", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "820", - "label": "232970 (-) 1382736", - "from": "282", - "to": "350", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "819", - "label": "637452 (-) 193879", - "from": "281", - "to": "345", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "818", - "label": "637453 (-) 637452", - "from": "280", - "to": "281", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "817", - "label": "1337870 (-) 1337573", - "from": "279", - "to": "396", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "816", - "label": "299537 (-) 299541", - "from": "278", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "815", - "label": "653843 (-) 730789", - "from": "277", - "to": "211", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "814", - "label": "653843 (-) 737088", - "from": "277", - "to": "134", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "813", - "label": "653843 (-) 1538767", - "from": "277", - "to": "196", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "812", - "label": "653843 (-) 654138", - "from": "277", - "to": "140", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "811", - "label": "1988115 (-) 1987295", - "from": "276", - "to": "192", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "810", - "label": "299541 (-) 298651", - "from": "275", - "to": "216", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "809", - "label": "2098710 (-) 2052724", - "from": "274", - "to": "234", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "808", - "label": "2098710 (-) 2052833", - "from": "274", - "to": "190", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "807", - "label": "299544 (-) 299541", - "from": "273", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "806", - "label": "291357 (-) 144608", - "from": "272", - "to": "399", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "805", - "label": "343583 (-) 331494", - "from": "271", - "to": "187", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "804", - "label": "653856 (-) 654215", - "from": "270", - "to": "106", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "803", - "label": "952865 (-) 958275", - "from": "269", - "to": "130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "802", - "label": "1485345 (-) 144608", - "from": "268", - "to": "399", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "801", - "label": "1083940 (-) 1084519", - "from": "267", - "to": "448", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "800", - "label": "1083941 (-) 1083940", - "from": "266", - "to": "267", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "799", - "label": "504360 (-) 504077", - "from": "265", - "to": "379", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "798", - "label": "504360 (-) 504075", - "from": "265", - "to": "377", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "797", - "label": "504360 (-) 504076", - "from": "265", - "to": "380", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "796", - "label": "311850 (-) 299541", - "from": "264", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "795", - "label": "77362 (-) 62263", - "from": "263", - "to": "143", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "794", - "label": "77362 (-) 54189", - "from": "263", - "to": "87", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "793", - "label": "77362 (-) 54322", - "from": "263", - "to": "470", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "792", - "label": "77362 (-) 55277", - "from": "263", - "to": "67", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "791", - "label": "77362 (-) 54900", - "from": "263", - "to": "233", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "790", - "label": "77362 (-) 55093", - "from": "263", - "to": "144", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "789", - "label": "77362 (-) 61124", - "from": "263", - "to": "200", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "788", - "label": "77362 (-) 54026", - "from": "263", - "to": "170", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "787", - "label": "77362 (-) 62537", - "from": "263", - "to": "463", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "786", - "label": "101938 (-) 1490531", - "from": "262", - "to": "242", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "785", - "label": "101938 (-) 1490324", - "from": "262", - "to": "325", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "784", - "label": "101938 (-) 291357", - "from": "262", - "to": "272", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "783", - "label": "878133 (-) 877267", - "from": "261", - "to": "195", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "782", - "label": "309814 (-) 299541", - "from": "260", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "781", - "label": "13879 (-) 6157", - "from": "259", - "to": "491", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "780", - "label": "13879 (-) 5503", - "from": "259", - "to": "329", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "779", - "label": "13879 (-) 5738", - "from": "259", - "to": "237", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "778", - "label": "13879 (-) 6250", - "from": "259", - "to": "445", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "777", - "label": "13879 (-) 5737", - "from": "259", - "to": "238", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "776", - "label": "13879 (-) 5502", - "from": "259", - "to": "332", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "775", - "label": "13879 (-) 5936", - "from": "259", - "to": "149", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "774", - "label": "13879 (-) 6042", - "from": "259", - "to": "99", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "773", - "label": "504377 (-) 504076", - "from": "258", - "to": "380", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "772", - "label": "504377 (-) 504075", - "from": "258", - "to": "377", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "771", - "label": "321084 (-) 1338496", - "from": "257", - "to": "437", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "770", - "label": "293444 (-) 299541", - "from": "256", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "769", - "label": "616006 (-) 616064", - "from": "255", - "to": "225", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "768", - "label": "1107533 (-) 310021", - "from": "254", - "to": "172", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "767", - "label": "396880 (-) 127029", - "from": "253", - "to": "469", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "766", - "label": "1119825 (-) 1116334", - "from": "252", - "to": "418", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "765", - "label": "389722 (-) 549814", - "from": "251", - "to": "80", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "764", - "label": "389722 (-) 616886", - "from": "251", - "to": "313", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "763", - "label": "303707 (-) 299541", - "from": "250", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "762", - "label": "875099 (-) 875746", - "from": "249", - "to": "398", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "761", - "label": "875101 (-) 875099", - "from": "248", - "to": "249", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "760", - "label": "971358 (-) 250984", - "from": "247", - "to": "446", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "759", - "label": "971358 (-) 251144", - "from": "247", - "to": "384", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "758", - "label": "971358 (-) 251201", - "from": "247", - "to": "359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "757", - "label": "77403 (-) 77362", - "from": "246", - "to": "263", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "756", - "label": "1214047 (-) 144608", - "from": "245", - "to": "399", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "755", - "label": "970337 (-) 333006", - "from": "244", - "to": "402", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "754", - "label": "350818 (-) 555944", - "from": "243", - "to": "89", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "753", - "label": "1490531 (-) 144608", - "from": "242", - "to": "399", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "752", - "label": "291429 (-) 144608", - "from": "241", - "to": "399", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "751", - "label": "1159782 (-) 954243", - "from": "240", - "to": "108", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "750", - "label": "1489512 (-) 144608", - "from": "239", - "to": "399", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "749", - "label": "5737 (-) 8322", - "from": "238", - "to": "436", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "748", - "label": "5737 (-) 13130", - "from": "238", - "to": "127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "747", - "label": "5738 (-) 8322", - "from": "237", - "to": "436", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "746", - "label": "5738 (-) 13130", - "from": "237", - "to": "127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "745", - "label": "1378926 (-) 1382736", - "from": "236", - "to": "350", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "744", - "label": "1341038 (-) 320330", - "from": "235", - "to": "128", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "743", - "label": "2052724 (-) 2059776", - "from": "234", - "to": "286", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "742", - "label": "54900 (-) 743241", - "from": "233", - "to": "129", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "741", - "label": "1771125 (-) 2114443", - "from": "232", - "to": "105", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "740", - "label": "617080 (-) 550651", - "from": "231", - "to": "178", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "739", - "label": "1695353 (-) 298310", - "from": "230", - "to": "355", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "738", - "label": "1695353 (-) 299127", - "from": "230", - "to": "440", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "737", - "label": "550522 (-) 550679", - "from": "229", - "to": "166", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "736", - "label": "227964 (-) 324791", - "from": "228", - "to": "410", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "735", - "label": "227964 (-) 320128", - "from": "228", - "to": "226", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "734", - "label": "227964 (-) 1382203", - "from": "228", - "to": "138", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "733", - "label": "227964 (-) 322680", - "from": "228", - "to": "439", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "732", - "label": "227964 (-) 324862", - "from": "228", - "to": "389", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "731", - "label": "227964 (-) 322256", - "from": "228", - "to": "197", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "730", - "label": "637566 (-) 637453", - "from": "227", - "to": "280", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "729", - "label": "320128 (-) 320604", - "from": "226", - "to": "450", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "728", - "label": "616064 (-) 616067", - "from": "225", - "to": "224", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "727", - "label": "616067 (-) 1206141", - "from": "224", - "to": "112", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "726", - "label": "1684105 (-) 298310", - "from": "223", - "to": "355", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "725", - "label": "1684105 (-) 299067", - "from": "223", - "to": "467", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "724", - "label": "157322 (-) 151326", - "from": "222", - "to": "160", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "723", - "label": "98964 (-) 1490531", - "from": "221", - "to": "242", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "722", - "label": "98964 (-) 1490324", - "from": "221", - "to": "325", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "721", - "label": "98964 (-) 291357", - "from": "221", - "to": "272", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "720", - "label": "1806998 (-) 441814", - "from": "220", - "to": "305", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "719", - "label": "972439 (-) 251201", - "from": "219", - "to": "359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "718", - "label": "972439 (-) 251144", - "from": "219", - "to": "384", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "717", - "label": "972439 (-) 250984", - "from": "219", - "to": "446", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "716", - "label": "171672 (-) 299541", - "from": "218", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "715", - "label": "291483 (-) 144608", - "from": "217", - "to": "399", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "714", - "label": "327326 (-) 304925", - "from": "215", - "to": "162", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "713", - "label": "327326 (-) 304924", - "from": "215", - "to": "163", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "712", - "label": "327326 (-) 305175", - "from": "215", - "to": "487", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "711", - "label": "327326 (-) 305167", - "from": "215", - "to": "489", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "710", - "label": "327326 (-) 305153", - "from": "215", - "to": "496", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "709", - "label": "1682080 (-) 251616", - "from": "214", - "to": "191", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "708", - "label": "719521 (-) 719714", - "from": "213", - "to": "123", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "707", - "label": "1941154 (-) 333006", - "from": "212", - "to": "402", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "706", - "label": "730789 (-) 654141", - "from": "211", - "to": "137", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "705", - "label": "672431 (-) 46171", - "from": "210", - "to": "451", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "704", - "label": "1802928 (-) 441814", - "from": "209", - "to": "305", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "703", - "label": "1411759 (-) 1411760", - "from": "208", - "to": "207", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "702", - "label": "1411760 (-) 1412138", - "from": "207", - "to": "478", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "701", - "label": "1807026 (-) 935814", - "from": "206", - "to": "107", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "700", - "label": "1807026 (-) 570878", - "from": "206", - "to": "287", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "699", - "label": "1807026 (-) 627557", - "from": "206", - "to": "120", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "698", - "label": "1673905 (-) 261355", - "from": "205", - "to": "391", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "697", - "label": "988852 (-) 398844", - "from": "204", - "to": "290", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "696", - "label": "14012 (-) 13879", - "from": "203", - "to": "259", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "695", - "label": "1485501 (-) 144608", - "from": "202", - "to": "399", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "694", - "label": "322239 (-) 321084", - "from": "201", - "to": "257", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "693", - "label": "61124 (-) 743241", - "from": "200", - "to": "129", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "692", - "label": "1411783 (-) 1473433", - "from": "199", - "to": "100", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "691", - "label": "572111 (-) 571548", - "from": "198", - "to": "426", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "690", - "label": "322256 (-) 321330", - "from": "197", - "to": "146", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "689", - "label": "1538767 (-) 654141", - "from": "196", - "to": "137", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "688", - "label": "877267 (-) 875101", - "from": "195", - "to": "248", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "687", - "label": "884435 (-) 874464", - "from": "194", - "to": "72", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "686", - "label": "884435 (-) 878133", - "from": "194", - "to": "261", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "685", - "label": "1489627 (-) 144608", - "from": "193", - "to": "399", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "684", - "label": "1987295 (-) 814361", - "from": "192", - "to": "366", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "683", - "label": "251616 (-) 299541", - "from": "191", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "682", - "label": "2052833 (-) 2059776", - "from": "190", - "to": "286", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "681", - "label": "792292 (-) 791922", - "from": "189", - "to": "340", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "680", - "label": "94950 (-) 1522976", - "from": "188", - "to": "364", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "679", - "label": "331494 (-) 310020", - "from": "187", - "to": "173", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "678", - "label": "331494 (-) 309814", - "from": "187", - "to": "260", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "677", - "label": "331494 (-) 305190", - "from": "187", - "to": "481", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "676", - "label": "331494 (-) 293444", - "from": "187", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "675", - "label": "331494 (-) 311850", - "from": "187", - "to": "264", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "674", - "label": "331494 (-) 299544", - "from": "187", - "to": "273", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "673", - "label": "331494 (-) 302460", - "from": "187", - "to": "334", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "672", - "label": "331494 (-) 309196", - "from": "187", - "to": "73", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "671", - "label": "103150 (-) 1049381", - "from": "186", - "to": "157", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "670", - "label": "418544 (-) 2062227", - "from": "185", - "to": "102", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "669", - "label": "369394 (-) 298309", - "from": "184", - "to": "358", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "668", - "label": "369394 (-) 304129", - "from": "184", - "to": "495", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "667", - "label": "369394 (-) 299127", - "from": "184", - "to": "440", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "666", - "label": "369394 (-) 298310", - "from": "184", - "to": "355", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "665", - "label": "369394 (-) 298315", - "from": "184", - "to": "353", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "664", - "label": "369394 (-) 304210", - "from": "184", - "to": "457", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "663", - "label": "369394 (-) 299067", - "from": "184", - "to": "467", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "662", - "label": "369394 (-) 299537", - "from": "184", - "to": "278", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "661", - "label": "369394 (-) 304276", - "from": "184", - "to": "429", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "660", - "label": "369394 (-) 301477", - "from": "184", - "to": "317", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "659", - "label": "369394 (-) 293444", - "from": "184", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "658", - "label": "369394 (-) 303994", - "from": "184", - "to": "114", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "657", - "label": "369394 (-) 301845", - "from": "184", - "to": "168", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "656", - "label": "1681138 (-) 251616", - "from": "183", - "to": "191", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "655", - "label": "373494 (-) 369394", - "from": "182", - "to": "184", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "654", - "label": "1243896 (-) 321983", - "from": "181", - "to": "309", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "653", - "label": "2131705 (-) 698257", - "from": "180", - "to": "103", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "652", - "label": "2131705 (-) 2117862", - "from": "180", - "to": "395", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "651", - "label": "550650 (-) 550651", - "from": "179", - "to": "178", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "650", - "label": "550651 (-) 970337", - "from": "178", - "to": "244", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "649", - "label": "392955 (-) 258188", - "from": "177", - "to": "432", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "648", - "label": "883453 (-) 883065", - "from": "176", - "to": "336", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "647", - "label": "883455 (-) 883453", - "from": "175", - "to": "176", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "646", - "label": "883456 (-) 883453", - "from": "174", - "to": "176", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "645", - "label": "310020 (-) 299541", - "from": "173", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "644", - "label": "310021 (-) 299541", - "from": "172", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "643", - "label": "1884935 (-) 554016", - "from": "171", - "to": "482", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "642", - "label": "54026 (-) 743241", - "from": "170", - "to": "129", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "641", - "label": "1935115 (-) 1935831", - "from": "169", - "to": "304", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "640", - "label": "301845 (-) 299541", - "from": "168", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "639", - "label": "1159958 (-) 618296", - "from": "167", - "to": "141", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "638", - "label": "1159958 (-) 618516", - "from": "167", - "to": "488", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "637", - "label": "550679 (-) 550154", - "from": "166", - "to": "382", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "636", - "label": "67353 (-) 64422", - "from": "165", - "to": "90", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "635", - "label": "254746 (-) 974036", - "from": "164", - "to": "401", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "634", - "label": "254746 (-) 975952", - "from": "164", - "to": "460", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "633", - "label": "254746 (-) 973669", - "from": "164", - "to": "121", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "632", - "label": "254746 (-) 252110", - "from": "164", - "to": "403", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "631", - "label": "254746 (-) 971358", - "from": "164", - "to": "247", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "630", - "label": "254746 (-) 973072", - "from": "164", - "to": "374", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "629", - "label": "254746 (-) 972439", - "from": "164", - "to": "219", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "628", - "label": "304924 (-) 299541", - "from": "163", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "627", - "label": "304925 (-) 299541", - "from": "162", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "626", - "label": "151325 (-) 94950", - "from": "161", - "to": "188", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "625", - "label": "151326 (-) 151325", - "from": "160", - "to": "161", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "624", - "label": "883490 (-) 883455", - "from": "159", - "to": "175", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "623", - "label": "1082148 (-) 350818", - "from": "158", - "to": "243", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "622", - "label": "1049381 (-) 94950", - "from": "157", - "to": "188", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "621", - "label": "884516 (-) 884435", - "from": "156", - "to": "194", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "620", - "label": "884516 (-) 885683", - "from": "156", - "to": "82", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "619", - "label": "1082151 (-) 1082148", - "from": "155", - "to": "158", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "618", - "label": "719655 (-) 719521", - "from": "154", - "to": "213", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "617", - "label": "1889063 (-) 64690", - "from": "153", - "to": "414", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "616", - "label": "884524 (-) 884435", - "from": "152", - "to": "194", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "615", - "label": "884524 (-) 885683", - "from": "152", - "to": "82", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "614", - "label": "1297199 (-) 1299518", - "from": "151", - "to": "466", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "613", - "label": "1103663 (-) 1098777", - "from": "150", - "to": "486", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "612", - "label": "5936 (-) 13130", - "from": "149", - "to": "127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "611", - "label": "5936 (-) 8322", - "from": "149", - "to": "436", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "610", - "label": "321329 (-) 322239", - "from": "148", - "to": "201", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "609", - "label": "1871665 (-) 14228", - "from": "147", - "to": "101", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "608", - "label": "321330 (-) 322239", - "from": "146", - "to": "201", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "607", - "label": "321328 (-) 322239", - "from": "145", - "to": "201", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "606", - "label": "55093 (-) 743241", - "from": "144", - "to": "129", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "605", - "label": "62263 (-) 743241", - "from": "143", - "to": "129", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "604", - "label": "130871 (-) 1681138", - "from": "142", - "to": "183", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "603", - "label": "130871 (-) 1681748", - "from": "142", - "to": "349", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "602", - "label": "130871 (-) 1065380", - "from": "142", - "to": "318", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "601", - "label": "130871 (-) 1682080", - "from": "142", - "to": "214", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "600", - "label": "130871 (-) 1790467", - "from": "142", - "to": "283", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "599", - "label": "130871 (-) 1668145", - "from": "142", - "to": "471", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "598", - "label": "130871 (-) 1534279", - "from": "142", - "to": "356", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "597", - "label": "618296 (-) 1035755", - "from": "141", - "to": "296", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "596", - "label": "654138 (-) 654141", - "from": "140", - "to": "137", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "595", - "label": "1684283 (-) 330112", - "from": "139", - "to": "330", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "594", - "label": "1382203 (-) 1378926", - "from": "138", - "to": "236", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "593", - "label": "654141 (-) 952239", - "from": "137", - "to": "86", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "592", - "label": "654141 (-) 719655", - "from": "137", - "to": "154", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "591", - "label": "917308 (-) 504065", - "from": "136", - "to": "387", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "590", - "label": "1916734 (-) 950362", - "from": "135", - "to": "453", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "589", - "label": "737088 (-) 654141", - "from": "134", - "to": "137", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "588", - "label": "43842 (-) 1477081", - "from": "133", - "to": "302", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "587", - "label": "1035074 (-) 1159782", - "from": "132", - "to": "240", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "586", - "label": "1156931 (-) 955460", - "from": "131", - "to": "464", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "585", - "label": "958275 (-) 958290", - "from": "130", - "to": "126", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "584", - "label": "743241 (-) 743664", - "from": "129", - "to": "390", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "583", - "label": "320330 (-) 324862", - "from": "128", - "to": "389", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "582", - "label": "320330 (-) 320128", - "from": "128", - "to": "226", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "581", - "label": "320330 (-) 322256", - "from": "128", - "to": "197", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "580", - "label": "320330 (-) 1382203", - "from": "128", - "to": "138", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "579", - "label": "320330 (-) 324791", - "from": "128", - "to": "410", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "578", - "label": "320330 (-) 322680", - "from": "128", - "to": "439", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "577", - "label": "13130 (-) 13588", - "from": "127", - "to": "369", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "576", - "label": "958290 (-) 958368", - "from": "126", - "to": "95", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "575", - "label": "1200984 (-) 554324", - "from": "125", - "to": "348", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "574", - "label": "1466203 (-) 1889063", - "from": "124", - "to": "153", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "573", - "label": "719714 (-) 565410", - "from": "123", - "to": "423", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "572", - "label": "627554 (-) 441814", - "from": "122", - "to": "305", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "571", - "label": "973669 (-) 250984", - "from": "121", - "to": "446", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "570", - "label": "973669 (-) 251144", - "from": "121", - "to": "384", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "569", - "label": "973669 (-) 251201", - "from": "121", - "to": "359", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "568", - "label": "627557 (-) 1806998", - "from": "120", - "to": "220", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "567", - "label": "627557 (-) 627554", - "from": "120", - "to": "122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "566", - "label": "77671 (-) 77403", - "from": "119", - "to": "246", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "565", - "label": "327533 (-) 327326", - "from": "118", - "to": "215", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "564", - "label": "369519 (-) 369394", - "from": "117", - "to": "184", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "563", - "label": "77681 (-) 1238006", - "from": "116", - "to": "62", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "562", - "label": "77681 (-) 77671", - "from": "116", - "to": "119", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "561", - "label": "2085752 (-) 130871", - "from": "115", - "to": "142", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "560", - "label": "303994 (-) 299541", - "from": "114", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "559", - "label": "569211 (-) 572111", - "from": "113", - "to": "198", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "558", - "label": "1206141 (-) 14012", - "from": "112", - "to": "203", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "557", - "label": "1410943 (-) 103150", - "from": "111", - "to": "186", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "556", - "label": "935811 (-) 441814", - "from": "110", - "to": "305", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "555", - "label": "698244 (-) 255142", - "from": "109", - "to": "421", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "554", - "label": "954243 (-) 1159958", - "from": "108", - "to": "167", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "553", - "label": "935814 (-) 935811", - "from": "107", - "to": "110", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "552", - "label": "935814 (-) 1806998", - "from": "107", - "to": "220", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "551", - "label": "654215 (-) 653843", - "from": "106", - "to": "277", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "550", - "label": "2114443 (-) 2112991", - "from": "105", - "to": "298", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "549", - "label": "1116044 (-) 1799093", - "from": "104", - "to": "81", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "548", - "label": "698257 (-) 1473583", - "from": "103", - "to": "473", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "547", - "label": "698257 (-) 1473437", - "from": "103", - "to": "98", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "546", - "label": "698257 (-) 698244", - "from": "103", - "to": "109", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "545", - "label": "2062227 (-) 79817", - "from": "102", - "to": "75", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "544", - "label": "14228 (-) 13879", - "from": "101", - "to": "259", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "543", - "label": "1473433 (-) 138223", - "from": "100", - "to": "65", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "542", - "label": "6042 (-) 8322", - "from": "99", - "to": "436", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "541", - "label": "6042 (-) 13130", - "from": "99", - "to": "127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "540", - "label": "1473437 (-) 1411783", - "from": "98", - "to": "199", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "539", - "label": "1084318 (-) 171672", - "from": "97", - "to": "218", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "538", - "label": "1338271 (-) 389722", - "from": "96", - "to": "251", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "537", - "label": "958368 (-) 241990", - "from": "95", - "to": "357", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "536", - "label": "1084321 (-) 1084318", - "from": "94", - "to": "97", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "535", - "label": "225187 (-) 127029", - "from": "93", - "to": "469", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "534", - "label": "225188 (-) 396880", - "from": "92", - "to": "253", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "533", - "label": "225188 (-) 1429803", - "from": "92", - "to": "363", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "532", - "label": "225188 (-) 225187", - "from": "92", - "to": "93", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "531", - "label": "1341349 (-) 320330", - "from": "91", - "to": "128", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "530", - "label": "64422 (-) 1238006", - "from": "90", - "to": "62", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "529", - "label": "555944 (-) 293444", - "from": "89", - "to": "256", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "528", - "label": "1382312 (-) 232970", - "from": "88", - "to": "282", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "527", - "label": "54189 (-) 743241", - "from": "87", - "to": "129", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "526", - "label": "952239 (-) 422049", - "from": "86", - "to": "424", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "525", - "label": "1340336 (-) 320330", - "from": "85", - "to": "128", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "524", - "label": "1340336 (-) 227964", - "from": "85", - "to": "228", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "523", - "label": "638896 (-) 8327", - "from": "84", - "to": "434", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "522", - "label": "1299378 (-) 1941154", - "from": "83", - "to": "212", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "521", - "label": "885683 (-) 887987", - "from": "82", - "to": "413", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "520", - "label": "885683 (-) 877790", - "from": "82", - "to": "400", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "519", - "label": "1799093 (-) 1035074", - "from": "81", - "to": "132", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "518", - "label": "549814 (-) 550522", - "from": "80", - "to": "229", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "517", - "label": "1113015 (-) 1107533", - "from": "79", - "to": "254", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "516", - "label": "495541 (-) 500848", - "from": "78", - "to": "443", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "515", - "label": "1386423 (-) 418544", - "from": "77", - "to": "185", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "514", - "label": "574400 (-) 1031197", - "from": "76", - "to": "485", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "513", - "label": "574400 (-) 994566", - "from": "76", - "to": "385", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "512", - "label": "79817 (-) 970337", - "from": "75", - "to": "244", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "511", - "label": "245706 (-) 1205524", - "from": "74", - "to": "367", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "510", - "label": "309196 (-) 299541", - "from": "73", - "to": "275", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "509", - "label": "874464 (-) 877267", - "from": "72", - "to": "195", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "508", - "label": "958434 (-) 14012", - "from": "71", - "to": "203", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "507", - "label": "992230 (-) 992233", - "from": "70", - "to": "69", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "506", - "label": "992233 (-) 495541", - "from": "69", - "to": "78", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "505", - "label": "233452 (-) 226535", - "from": "68", - "to": "392", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "504", - "label": "55277 (-) 743241", - "from": "67", - "to": "129", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "503", - "label": "1337326 (-) 1338271", - "from": "66", - "to": "96", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "502", - "label": "138223 (-) 672431", - "from": "65", - "to": "210", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "501", - "label": "874479 (-) 877267", - "from": "64", - "to": "195", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "500", - "label": "1488882 (-) 144608", - "from": "63", - "to": "399", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "499", - "label": "1238006 (-) 1237265", - "from": "62", - "to": "373", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "498", - "label": "49150 (-) 637566", - "from": "61", - "to": "227", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_updown_Butyrate_graphml.json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_updown_Butyrate_graphml.json deleted file mode 100644 index 9c37548625..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_updown_Butyrate_graphml.json +++ /dev/null @@ -1,14956 +0,0 @@ -{ - "nodes": [ - { - "id": "1973", - "label": "Dissociation of phosphorylated 4EBP1 from eIF4E", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1972", - "label": "DecS-GHRL-1(24-50) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1971", - "label": "P2RY11 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1970", - "label": "EIF4E [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1969", - "label": "eIF4E:4E-BP1-P [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1968", - "label": "Ade-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1967", - "label": "PolyUb-Misfolded PCNT [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1966", - "label": "AHCY:NAD+ tetramer hydrolyses AdoHcy", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1965", - "label": "DecS-GHRL-1(24-51) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1964", - "label": "CASP8(385-479) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1963", - "label": "O-octanoyl-L-serine-GHRL-1(24-51) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1962", - "label": "Exocytosis of secretory granule membrane proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1961", - "label": "PARN deadenylates mRNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1960", - "label": "Release of PLCG from FCGR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1959", - "label": "clustered IgG-Ag:p-FCGRs:p-6Y-SYK:p-3Y-PLCG [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1958", - "label": "AdoHcy [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1957", - "label": "Bradykinin receptor:Bradykinin [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1956", - "label": "GGC-RAB7B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1955", - "label": "Retinoic acid activates HOXB4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1954", - "label": "Disintegration of matrix layer", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1953", - "label": "Ubiquitinated IkB is degraded", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1952", - "label": "NF-kappaB p50,p65,c-Rel:ub-p-IKB [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1951", - "label": "NF-kappaB p65:p65:ub-p-IkB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1950", - "label": "Phosphorylation and activation of PLCG", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1949", - "label": "Degradation of CD8", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1948", - "label": "TLR2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1947", - "label": "Exocytosis of Insulin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1946", - "label": "SUMO1:p-T4827-HERC2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1945", - "label": "PTEN [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1944", - "label": "TGFA(24-98) [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1943", - "label": "5HT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1942", - "label": "Translation of ATF4", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1941", - "label": "trans-Golgi Network Derived Vesicle Uncoating", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1940", - "label": "IL1B(117-269) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1939", - "label": "p-S25,S1778-TP53BP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1938", - "label": "IRAK2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1937", - "label": "AREG(101-187) [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1936", - "label": "Dissociation of BRAF/RAF fusion complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1935", - "label": "p-T899-EIF2AK4 (GCN2) phosphorylates EIF2AS1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1934", - "label": "CTNNB1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1933", - "label": "NPS [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1932", - "label": "CBL neddylates TGFBR2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1931", - "label": "OCT2 mediates tubular secretion of organic cations in the kidney", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1930", - "label": "PLCG1 phosphorylation by p-EGFR:p-ERBB2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1929", - "label": "NEDD8-AcM-UBE2M [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1928", - "label": "Dissociation of hp-IRAK1:TRAF6 or IRAK2:TRAF6-oligomer from the activated TLR5 or 10:oligo-Myd88:p-IRAK4 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1927", - "label": "PP2A [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1926", - "label": "SIN3A [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1925", - "label": "TTLLs polyglutamylate tubulin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1924", - "label": "Loading of acetylcholine in synaptic vesicles", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1923", - "label": "p-IRAK2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1922", - "label": "p-T185,Y187-MAPK1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1921", - "label": "PolyUb-Misfolded PARK7 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1920", - "label": "COP9 signalosome deneddylates cytosolic CRL E3 ubiquitin ligase complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1919", - "label": "(d)AMP, (d)GMP, or (d)IMP + H2O => (deoxy)adenosine, (deoxy)guanosine, or (deoxy)inosine + orthophosphate (NT5C1A)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1918", - "label": "EIF2AK3 (PERK) phosphorylates EIF2S1 (eIF2-alpha)Phosphorylation of eIF2-alpha by PERK", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1917", - "label": "PPP1R3C [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1916", - "label": "Hist [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1915", - "label": "Expression of PPARGC1A (PGC-1alpha)", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1914", - "label": "AGTR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1913", - "label": "Expression of AVP", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1912", - "label": "Aggresome dissociates from dynein and microtubule", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1911", - "label": "Microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1910", - "label": "alpha-beta tubulin dimer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1909", - "label": "KLF4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1908", - "label": "MAPK3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1907", - "label": "RNF152 [lysosomal membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1906", - "label": "NAM [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1905", - "label": "NPSR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1904", - "label": "TNKS and TNKS2 PARylate PTEN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1903", - "label": "p-S166-RIPK1:p-S199,227-RIPK3 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1902", - "label": "PP2A (A:C) [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1901", - "label": "NF-kappaB p65:p65 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1900", - "label": "FKBP1A [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1899", - "label": "RASA1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1898", - "label": "FGF18 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1897", - "label": "ARRB2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1896", - "label": "EIF2S1:EIF2S2:EIF2S3 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1895", - "label": "NF-kappaB p50:c-Rel:ub-p-IKB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1894", - "label": "Exocytosis of ficolin-rich granule lumen proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1893", - "label": "Regulation of protein ISGylation by ISG15 deconjugating enzyme USP18", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1892", - "label": "CCNH [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1891", - "label": "Transfer of SUMO2 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1890", - "label": "UBE2I [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1889", - "label": "SEC31A:SEC13:SEC23IP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1888", - "label": "Interleukin-1 family are secreted", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1887", - "label": "Interleukin-1 family [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1886", - "label": "Expression of CLOCK", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1885", - "label": "2xMyri-IL1A [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1884", - "label": "IL18 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1883", - "label": "PPIA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1882", - "label": "EIF4G1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1881", - "label": "SUMO3:UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1880", - "label": "The receptor:G-protein complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1879", - "label": "Dissociation of RAS:RAF complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1878", - "label": "IL8 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1877", - "label": "Dissociation of RAS:RAF1 mutant complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1876", - "label": "RAB1:GTP [endoplasmic reticulum-Golgi intermediate compartment membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1875", - "label": "p-4Y-PLCG1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1874", - "label": "Dynein:Dynactin:microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1873", - "label": "trans-Golgi Network Derived Lysosomal Vesicle Uncoating", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1872", - "label": "Expression of PERIOD-1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1871", - "label": "DNAJC6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1870", - "label": "OPRM1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1869", - "label": "E2F7 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1868", - "label": "PTEN gene transcription is stimulated by TP53, EGR1, PPARG, ATF2, MAF1, and inhibited by NR2E1, SALL4, MECOM, SNAI1, SNAI2, JUN", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1867", - "label": "L-Glu [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1866", - "label": "PAXIP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1865", - "label": "Expression of NPAS2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1864", - "label": "FOSB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1863", - "label": "UMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1862", - "label": "Interleukin-1 family precursors are cleaved by caspase-1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1861", - "label": "CCR4-NOT complex deadenylates mRNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1860", - "label": "p-T202,Y204-MAPK3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1859", - "label": "Transfer of SUMO3 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1858", - "label": "NFKB1(1-433):RELA [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1857", - "label": "Expression of STAT3-upregulated extracellular proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1856", - "label": "Thy-dRib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1855", - "label": "Cyt-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1854", - "label": "(d)CMP, TMP, or (d)UMP + H2O => (deoxy)cytidine, thymidine, or (deoxy)uridine + orthophosphate (NT5C3)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1853", - "label": "Ura-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1852", - "label": "Expression of CEBPB in adipogenesis", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1851", - "label": "RNF111 ubiquitinates SUMOylated XPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1850", - "label": "Dissociation of moderate activity BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1849", - "label": "Ub,SUMO:XPC:RAD23:CETN2:Open bubble-dsDNA:PAR-UV-DDB:TFIIH Core:XPA:PAR-PARP1, PAR-PARP2:CHD1L [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1848", - "label": "Dissociation of hp-IRAK1:TRAF6 from the activated TLR:oligo-Myd88:TIRAP:p-IRAK4 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1847", - "label": "p-S,2T-IRAK4:oligo-MyD88:TIRAP:activated TLR receptor [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1846", - "label": "Beta-catenin is released from the destruction complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1845", - "label": "VCP [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1844", - "label": "CREM isoform 6 (ICER1) [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1843", - "label": "Pellino ubiquitinates hp-IRAK1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1842", - "label": "40S ribosomal complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1841", - "label": "NF-kappaB p50:c-Rel [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1840", - "label": "PIP3:BTK:G beta-gamma complex dissociates to Active BTK, PIP3 and G beta-gamma complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1839", - "label": "PTEN mRNA translation is inhibited by miR-137", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1838", - "label": "IL1A(1-271) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1837", - "label": "IL1B(1-269) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1836", - "label": "p-Y701-STAT1, p-Y705-STAT3, p-Y649-STAT5 dissociates from IL9:p-Y116-IL9R:JAK1:IL2RG:p-904,939-JAK3:p-Y705-STAT3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1835", - "label": "p-T,Y MAPKs [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1834", - "label": "ADR, NAd [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1833", - "label": "hp-IRAK1:3xK63-polyUb-TRAF6:3xUBE2N:UBE2V1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1832", - "label": "SLC24A1 exchanges 4Na+ for Ca2+, K+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1831", - "label": "NAd [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1830", - "label": "PPARGC1A [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1829", - "label": "ADR [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1828", - "label": "JAK1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1827", - "label": "TGFA(24-98) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1826", - "label": "Expression of Leptin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1825", - "label": "K+-independent Li+/Ca2+ exchanger transport", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1824", - "label": "S1P [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1823", - "label": "MMPs cleave HB-EGF", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1822", - "label": "NEDD8 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1821", - "label": "Ac-CoA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1820", - "label": "p-4Y-PLCG1 dissociates from activated FGFR3 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1819", - "label": "GRB2-1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1818", - "label": "NF-KappaB p50:p50:ub-p-IKBA [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1817", - "label": "NF-kappaB p50:p50 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1816", - "label": "MNA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1815", - "label": "Phosphorylation of IRAK2 bound to the activated IRAK4:MyD88 oligomer:TIRAP:activated TLR complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1814", - "label": "STAT1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1813", - "label": "p-IRAK2:p-IRAK4:oligo-MyD88:TIRAP:activated TLR [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1812", - "label": "SAR1B:GTP [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1811", - "label": "Dissociation of p-IRAK2:TRAF6 from the activated TLR:oligo-Myd88:TIRAP:p-IRAK4 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1810", - "label": "LPAR1,2,3,5:LPA [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1809", - "label": "p-4Y-PLCG1 dissociates from activated FGFR3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1808", - "label": "PolyUb-Misfolded Proteins [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1807", - "label": "NF-kappaB p50:p65:ub-p-IKB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1806", - "label": "Ade-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1805", - "label": "PolyUb-misfolded nascent CFTR [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1804", - "label": "NF-kB migrates to the nucleus and turns on transcription", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1803", - "label": "IL1B [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1802", - "label": "NF-kappaB p50,p65,c-Rel dimer [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1801", - "label": "Dissociation of phosphorylated PLCG1 from ligand-responsive p-6Y-EGFR mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1800", - "label": "AGTR1 [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1799", - "label": "AdoSeMet is converted to AdeSeHCys by MetTrans(1)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1798", - "label": "PPTN11 dephosphorylates SPRY2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1797", - "label": "PLCG1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1796", - "label": "RIPK3 is phosphorylated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1795", - "label": "RIPK1:RIPK3 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1794", - "label": "Release of L-Glutamate at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1793", - "label": "AVP(20-28) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1792", - "label": "Disassembly of COPII coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1791", - "label": "CEBPB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1790", - "label": "p-T,T486,T488-EIF2AK1 phosphorylates EIF2S1 (eIF2-alpha)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1789", - "label": "SCF-beta-TrCP ubiquitinylates IkB", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1788", - "label": "FGFR1OP-FGFR1 phosphorylates STAT1 and STAT3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1787", - "label": "GYS1 catalyzes the incorporation of phosphoglucose into glycogen-GYG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1786", - "label": "Start codon recognition", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1785", - "label": "EP300 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1784", - "label": "Phosphorylated STAT3 Dimer Translocates to the Nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1783", - "label": "SAA1(19-122) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1782", - "label": "COPII vesicle with MHC class I [ER to Golgi transport vesicle membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1781", - "label": "p-Y705-STAT3 dimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1780", - "label": "CCPs deglutamylate tubulin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1779", - "label": "Vesicle budding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1778", - "label": "HCMV Nuclear Pore Docking", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1777", - "label": "Estrogen-responsive MYC gene expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1776", - "label": "Budding of COPII coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1775", - "label": "COPI vesicle uncoating at the ER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1774", - "label": "RAB1:GTP:coatomer:p24 dimers:SEC22B:cargo:NBAS:RINT1:ZW10:STX18:USE1L:BNIP1 [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1773", - "label": "L-Glu [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1772", - "label": "RIPK3 binds RIPK1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1771", - "label": "eIF2:GTP is hydrolyzed, eIFs are released", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1770", - "label": "SOCS2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1769", - "label": "RAB6:GTP displaces PAFAH1B1 from dynein:dynactin complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1768", - "label": "OPRM1 gene expression is repressed by MECP2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1767", - "label": "TGFA precursor [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1766", - "label": "E2F1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1765", - "label": "ADORA2B:Ade-Rib:GsGTP dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1764", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1763", - "label": "p-Y705-STAT3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1762", - "label": "Dissociation of Rho GTP:GDP from GDI complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1761", - "label": "Phosphorylation of 4E-BP1 by activated mTORC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1760", - "label": "AREG precursor [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1759", - "label": "ATP2B1-4 transport cytosolic Ca2+ to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1758", - "label": "PPARG [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1757", - "label": "Deacetylation of cleaved cohesin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1756", - "label": "Cleaved Cohesin:PDS5:WAPAL [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1755", - "label": "SIK1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1754", - "label": "PGE2 [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1753", - "label": "RHOA:GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1752", - "label": "NOB1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1751", - "label": "The Ligand:GPCR:Gq complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1750", - "label": "MON1:CCZ1 exchanges GTP for GDP on RAB7", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1749", - "label": "CASR:Ca2+ [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1748", - "label": "Active PLC-gamma1 dissociates from EGFR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1747", - "label": "CXCR4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1746", - "label": "ARHGDIA [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1745", - "label": "Myr82K-Myr83K-IL1A [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1744", - "label": "p-4Y-PLCG1 dissociates from activated FGFR2 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1743", - "label": "AcCho [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1742", - "label": "Cho is acetylated to AcCho by CHAT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1741", - "label": "(d)CMP, TMP, or (d)UMP + H2O => (deoxy)cytidine, thymidine, or (deoxy)uridine + orthophosphate (NT5C1A)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1740", - "label": "MCHR1,MCHR2:PMCH(147-165) [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1739", - "label": "RNF4 ubiquitinates MDC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1738", - "label": "AREG(101-187) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1737", - "label": "TMED2:TMED10 tetramer:GPI-CD59, GPI-FOLR1 [endoplasmic reticulum-Golgi intermediate compartment membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1736", - "label": "NMUR1,NMUR2:NMU [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1735", - "label": "PolyUb:misfolded proteins dissociate from PRKN:UBE2N:UBE2V1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1734", - "label": "TMP, uridine 2', 3', or 5' monophosphates, or deoxyuridine 3' or 5' monophosphates + H2O => thymidine or (deoxy)uridine + orthophosphate [NT5C]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1733", - "label": "p-BMAL1:p-CLOCK,NPAS2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1732", - "label": "G-protein beta-gamma complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1731", - "label": "p-IRAK2 [endosome membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1730", - "label": "Exocytosis of specific granule membrane proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1729", - "label": "PTEN mRNA translation is negatively regulated by microRNAs", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1728", - "label": "FGL2 [ficolin-1-rich granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1727", - "label": "BTRC [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1726", - "label": "PTAFR [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1725", - "label": "Vesicle is tethered through binding GOLGA2:GORASP1, GOLGB1 and the COG complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1724", - "label": "RAB1:GTP:USO1:coatomer:PalmC-YKT6:p24 dimers:cargo:spectrin:anykrin [transport vesicle]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1723", - "label": "Dissociation of oncogenic RAS:RAF complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1722", - "label": "DNA DNA DSBs:p-MRN:p-S1981,Ac-K3016-ATM:KAT5:K63PolyUb-K14,K16,p-S139-H2AFX,Me2K21-HIST1H4A-Nucleosome:SUMO2:K1840,p-5T-MDC1:p-S102-WHSC1:RNF8:Zn2+:SUMO1:p-T4827-HERC2:UBE2N:UBE2V2:RNF168:PIAS4:p-S25,S1778-TP53BP1:p-5S,2T-BRCA1-A complex [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1721", - "label": "Release of p-PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1720", - "label": "Stimulation of IL8 transcription in senescent cells", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1719", - "label": "G-protein alpha (i):GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1718", - "label": "Dissociation of phosphorylated PLC-gamma 1 from p-EGFRvIII mutant", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1717", - "label": "p-4Y-PLCG1 dissociates from activated FGFR2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1716", - "label": "Negative regulation of DDX58/IFIH1 signaling by RNF216", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1715", - "label": "Phosphorylated heterodimers of ERBB2 KD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1714", - "label": "PolyUb-Misfolded cilia proteins [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1713", - "label": "PolyUb-Misfolded CETN1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1712", - "label": "PPARG:Fatty Acid:RXRA:Mediator:Coactivator Complex [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1711", - "label": "Retinoic acid activates HOXB1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1710", - "label": "GDI1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1709", - "label": "RNF8:Zn2+ [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1708", - "label": "KIFC1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1707", - "label": "NF-kappaB translocates from the cytosol to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1706", - "label": "OCT1 transports organic cations out of hepatic cells", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1705", - "label": "K48PolyUb-K21,22-p-S32,36-IkBA:NF-kB complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1704", - "label": "HDAC3 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1703", - "label": "Separation of sister chromatids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1702", - "label": "Fatty acid ligands activate PPARA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1701", - "label": "Dissociation of hp-IRAK1/or IRAK2:TRAF6-oligomer from the p-IRAK4 :oligo-Myd88:activated TLR7/8 or 9 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1700", - "label": "p-S,2T-IRAK4:oligo-MyD88:activated TLR7/8 or 9 receptor [endosome membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1699", - "label": "Equilibrative transport (export) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1698", - "label": "Phosphorylation and activation of PLCG due to FCGR3A effect", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1697", - "label": "HBEGF(63-148) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1696", - "label": "BUT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1695", - "label": "p-Y-STATs translocate to nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1694", - "label": "Dissociation of high activity BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1693", - "label": "AcCho [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1692", - "label": "p-4Y-PLCG1 dissociates from activated FGFR4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1691", - "label": "Acyl Ghrelin and C-Ghrelin are secreted", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1690", - "label": "SLC8A1,2,3 exchange 3Na+ for Ca2+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1689", - "label": "p-Y1105-ARHGAP35 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1688", - "label": "Expression of IL-8", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1687", - "label": "p190RhoGEF exchanges GTP for GDP on RHOA, activating it", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1686", - "label": "Phosphorylation of CTLA-4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1685", - "label": "p-Y705-STAT3 dimer translocates from cytosol to nucleoplasm", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1684", - "label": "Fusion of viral membrane with host cell membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1683", - "label": "Viral core surrounded by Matrix layer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1682", - "label": "p-Y-STATs dissociate", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1681", - "label": "SLC7A11-mediated exchange of extracellular cysteine and cytosolic glutamate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1680", - "label": "E2F7 and E2F8 homo- and heterodimers inhibit E2F1 expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1679", - "label": "UBE2N:UBE2V1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1678", - "label": "p-4Y-PLCG1 dissociates from activated FGFR4 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1677", - "label": "BMAL1:CLOCK,NPAS2 heterodimer is phosphorylated and translocates to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1676", - "label": "DNA DSB:p-MRN:p-S1981,Ac-K3016-ATM:KAT5 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1675", - "label": "myristoylated nef [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1674", - "label": "SPRY2 binds CBL", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1673", - "label": "Expression of BMAL1 (ARNTL).", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1672", - "label": "p115-RhoGEF activation of RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1671", - "label": "ARFGAPs stimulate ARF GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1670", - "label": "BET1:GOSR2:STX5 bind v-SNARES on tethered vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1669", - "label": "Phosphorylated heterodimers of ERBB2 ECD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1668", - "label": "18SE pre-rRNA in pre-40S particles is nucleolytically processed during translocation from the nucleus to the cytosol", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1667", - "label": "Ca2+ [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1666", - "label": "GDI2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1665", - "label": "NNMT transfers CH3 from SAM to NAM to form MNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1664", - "label": "PI(3,4,5)P3 [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1663", - "label": "The Ligand:GPCR:Gi complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1662", - "label": "MyrG-p-Y419-SRC [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1661", - "label": "MYC [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1660", - "label": "The Ligand:GPCR:Gs complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1659", - "label": "SLC24A1-4 exchange extracellular 4Na+ for cytosolic Ca2+, K+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1658", - "label": "PTHLH [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1657", - "label": "Recovery of RNA synthesis after TC-NER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1656", - "label": "Dissociation of clathrin-associated proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1655", - "label": "NFKB1:RELA translocates from the cytosol to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1654", - "label": "NFKB1(1-433):RELA [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1653", - "label": "Cytosolic DUSPs dephosphorylate MAPKs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1652", - "label": "SAR1 Activation And Membrane Binding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1651", - "label": "SAR1B:GDP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1650", - "label": "SAR1B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1649", - "label": "FPR2:FPR2 ligands [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1648", - "label": "FPR2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1647", - "label": "VCPKMT (METTL21D) transfers 3xCH3 from 3xAdoMet to VCP", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1646", - "label": "PIAS4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1645", - "label": "Polyglutamylated microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1644", - "label": "GPR39 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1643", - "label": "Processing of caspases", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1642", - "label": "26S proteasome processes K48PolyUb-K21,22-p-S32,36-IkBA:NF-kB complex to form NF-kB complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1641", - "label": "Transfer of SUMO1 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1640", - "label": "ARRB1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1639", - "label": "Acyl Ghrelin [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1638", - "label": "O-octanoyl-L-serine-GHRL-1(24-50) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1637", - "label": "Release of PLCG from FCGR3A", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1636", - "label": "IgG:Leishmania surface:p-FCGR3A:p-6Y-SYK:p-3Y-PLCG [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1635", - "label": "Loss of SAR1B GTPase", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1634", - "label": "Dissociation of the Gi alpha:G olf complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1633", - "label": "Activated NTRK3 stimulates PI3K activity", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1632", - "label": "TGFA precursor [ER to Golgi transport vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1631", - "label": "GNAL [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1630", - "label": "ARHGAP35 stimulates RHOA GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1629", - "label": "PIAS4 SUMOylates NR4A2 with SUMO2,3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1628", - "label": "AREG precursor [ER to Golgi transport vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1627", - "label": "p-S52-EIF2S1:EIF2S2:EIF2S3 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1626", - "label": "TLR2 [secretory granule membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1625", - "label": "PolyUb-Misfolded IFT88 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1624", - "label": "CLOCK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1623", - "label": "RNF152 polyubiquitinates RRAGA", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1622", - "label": "ARNTL [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1621", - "label": "NPAS2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1620", - "label": "UBE2N:UBE2V2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1619", - "label": "p-S102-WHSC1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1618", - "label": "Ca2+ [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1617", - "label": "CASP8(217-374) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1616", - "label": "RhoA is activated by nucleotide exchange and inhibits axonal growth", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1615", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1614", - "label": "PPARG:RXRA heterodimer binds to fatty acid-like ligands", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1613", - "label": "RHOA:GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1612", - "label": "GYS2 catalyzes the incorporation of phosphoglucose into glycogen-GYG2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1611", - "label": "Transfer of NEDD8 to AcM-UBE2M", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1610", - "label": "NGEF exchanges GTP for GDP on RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1609", - "label": "SEC13 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1608", - "label": "TRAF3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1607", - "label": "Caspase-8 cleaves IL1B precursor", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1606", - "label": "TRAF6 binding leads to IRAK1:TRAF6 release", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1605", - "label": "Association of Ku heterodimer with ends of DNA double-strand break", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1604", - "label": "NCOR1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1603", - "label": "PolyUb-Misfolded Proteins:HDAC6 dissociate from complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1602", - "label": "p-2S,S376,T,T209,T387-IRAK1:TRAF6 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1601", - "label": "p-SPHK1 phosphorylates sphingosine to sphingosine 1-phosphate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1600", - "label": "NR4A2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1599", - "label": "RASA1 stimulates RAS GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1598", - "label": "p-Y705-STAT3 dimer, p-Y641-STAT6 dimer translocate to nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1597", - "label": "Dissociation of paradoxically activated RAS:BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1596", - "label": "p-Y641-STAT6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1595", - "label": "PIAS4 SUMOylates MDC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1594", - "label": "LEP [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1593", - "label": "CGA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1592", - "label": "SUMO2:UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1591", - "label": "TRPs transport extracellular Ca2+ to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1590", - "label": "GCG(53-81) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1589", - "label": "CBL [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1588", - "label": "TRAF6 ubiquitinqtes IRF7 within the activated TLR7/8 or 9 complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1587", - "label": "SRC autophosphorylation is positively regulated by InlA-bound CDH1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1586", - "label": "STAT1 and STAT3 dimers translocate to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1585", - "label": "WNT5A:FZD4 is endocytosed", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1584", - "label": "viral dsRNA:IFIH1, viral dsRNA:K63polyUb-DDX58:MAVS [mitochondrial outer membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1583", - "label": "p-Y701-STAT1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1582", - "label": "The p75NTR:NgR:MDGI complex reduces RHOA-GDI activity, displacing RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1581", - "label": "Retrograde vesicle is tethered at the ER by the NRZ complex and t-SNAREs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1580", - "label": "TNFRSF1B [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1579", - "label": "AP-2 Complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1578", - "label": "Overexpressed HIST1H2AC and ESR1:ESTG bind MYC and BCL2 genes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1577", - "label": "UBE2N [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1576", - "label": "Nef mediated disruption of CD4:Lck Complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1575", - "label": "PolyUb-Misfolded ARL13B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1574", - "label": "Degradation of CD4", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1573", - "label": "Release of acetylcholine at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1572", - "label": "BTRC:CUL1:SKP1 (SCF-beta-TrCP1) ubiquitinylates PER proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1571", - "label": "TRAF6 is K63 poly-ubiquitinated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1570", - "label": "Acetylcholine Loaded Synaptic Vesicle [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1569", - "label": "PTEN mRNA translation negatively regulated by microRNAs", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1568", - "label": "PTEN mRNA [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1567", - "label": "Retinoic acid activates HOXD4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1566", - "label": "SUMO1:C93-UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1565", - "label": "G-proteins dissociate from plasma-membrane estrogen receptors", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1564", - "label": "Expression of PPARG", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1563", - "label": "RNF168 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1562", - "label": "TGFBR2 is recruited to tight junctions after TGF-beta stimulation", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1561", - "label": "Retinoic acid activates HOXA1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1560", - "label": "SPAST (spastin) mediates the severing of microtubules at chromosome attachment sites", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1559", - "label": "ATF4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1558", - "label": "CSNK1D phosphorylates SEC23", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1557", - "label": "cIAP1,2 ubiquitinates NIK in cIAP1,2:TRAF2::TRAF3:NIK", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1556", - "label": "beta-TRCP ubiquitinates IkB-alpha in p-S32,33-IkB-alpha:NF-kB complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1555", - "label": "TNFRSF1B [specific granule membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1554", - "label": "GMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "1553", - "label": "MYC gene expression is enhanced by E2F1, STAT3, and CEBPB and repressed by CEBPA", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1552", - "label": "EIF4B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1551", - "label": "Histone H2A [nucleoplasm]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1550", - "label": "TRAF6:hp-IRAK1 [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1549", - "label": "NMUR2:NMS [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1548", - "label": "USO1 homodimer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1547", - "label": "UBE2N:UBE2V1 dissociates from hp-IRAK1:3xK63-polyUb-TRAF6:3xUBE2N:UBE2V1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "1546", - "label": "mature mRNA (eukaryotic, capped and deadenylated) [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "1545", - "label": "Exosome Complex hydrolyzes mRNA by 3' to 5' exoribonuclease digestion", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1544", - "label": "SNAI2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "1543", - "label": "K63PolyUb:K14,K16,p-S139-H2AFX,Me2K21-HIST1H4A-Nucleosome [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1542", - "label": "PER1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "1541", - "label": "LCK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "1540", - "label": "coatomer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "1539", - "label": "Phosphorylated heterodimers of ERBB2 TMD/JMD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1538", - "label": "SUMOylation of XPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1537", - "label": "PAFAH1B1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - } - ], - "edges": [ - { - "id": "2594", - "label": "572416 (-) 572418", - "from": "1973", - "to": "1970", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2593", - "label": "305153 (-) 299541", - "from": "1972", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2592", - "label": "304129 (-) 299541", - "from": "1971", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2591", - "label": "572418 (-) 1031197", - "from": "1970", - "to": "1961", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2590", - "label": "572418 (-) 994566", - "from": "1970", - "to": "1861", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2589", - "label": "572417 (-) 572416", - "from": "1969", - "to": "1973", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2588", - "label": "492556 (-) 1684105", - "from": "1968", - "to": "1699", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2587", - "label": "6157 (-) 13130", - "from": "1967", - "to": "1603", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2586", - "label": "6157 (-) 8322", - "from": "1967", - "to": "1912", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2585", - "label": "826382 (-) 492556", - "from": "1966", - "to": "1968", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2584", - "label": "305167 (-) 299541", - "from": "1965", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2583", - "label": "618516 (-) 1035755", - "from": "1964", - "to": "1772", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2582", - "label": "305175 (-) 299541", - "from": "1963", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2581", - "label": "1098777 (-) 303707", - "from": "1962", - "to": "1726", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2580", - "label": "1031197 (-) 992230", - "from": "1961", - "to": "1546", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2579", - "label": "289822 (-) 94950", - "from": "1960", - "to": "1664", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2578", - "label": "289823 (-) 289822", - "from": "1959", - "to": "1960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2577", - "label": "554016 (-) 826382", - "from": "1958", - "to": "1966", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2576", - "label": "305190 (-) 299541", - "from": "1957", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2575", - "label": "1882150 (-) 2098710", - "from": "1956", - "to": "1750", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2574", - "label": "1341480 (-) 320330", - "from": "1955", - "to": "1604", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2573", - "label": "1412138 (-) 1411783", - "from": "1954", - "to": "1675", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2572", - "label": "616491 (-) 550154", - "from": "1953", - "to": "1858", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2571", - "label": "616491 (-) 616607", - "from": "1953", - "to": "1901", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2570", - "label": "616491 (-) 616843", - "from": "1953", - "to": "1802", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2569", - "label": "616491 (-) 616818", - "from": "1953", - "to": "1817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2568", - "label": "616491 (-) 616732", - "from": "1953", - "to": "1841", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2567", - "label": "616492 (-) 616491", - "from": "1952", - "to": "1953", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2566", - "label": "616493 (-) 616491", - "from": "1951", - "to": "1953", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2565", - "label": "289835 (-) 289823", - "from": "1950", - "to": "1959", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2564", - "label": "1473583 (-) 1411783", - "from": "1949", - "to": "1675", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2563", - "label": "244783 (-) 243984", - "from": "1948", - "to": "1848", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2562", - "label": "1668145 (-) 251616", - "from": "1947", - "to": "1667", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2561", - "label": "54322 (-) 743241", - "from": "1946", - "to": "1605", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2560", - "label": "127029 (-) 540822", - "from": "1945", - "to": "1904", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2559", - "label": "2131002 (-) 2131705", - "from": "1944", - "to": "1656", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2558", - "label": "299067 (-) 299541", - "from": "1943", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2557", - "label": "1299518 (-) 1299378", - "from": "1942", - "to": "1559", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2556", - "label": "2119743 (-) 254746", - "from": "1941", - "to": "1640", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2555", - "label": "955460 (-) 955573", - "from": "1940", - "to": "1888", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2554", - "label": "62537 (-) 743241", - "from": "1939", - "to": "1605", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2553", - "label": "245834 (-) 1205619", - "from": "1938", - "to": "1815", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2552", - "label": "2131021 (-) 2131705", - "from": "1937", - "to": "1656", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2551", - "label": "975952 (-) 250984", - "from": "1936", - "to": "1922", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2550", - "label": "975952 (-) 251144", - "from": "1936", - "to": "1860", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2549", - "label": "975952 (-) 251201", - "from": "1936", - "to": "1835", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2548", - "label": "1296465 (-) 1297199", - "from": "1935", - "to": "1627", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2547", - "label": "703570 (-) 1410943", - "from": "1934", - "to": "1587", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2546", - "label": "304210 (-) 299541", - "from": "1933", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2545", - "label": "950359 (-) 569211", - "from": "1932", - "to": "1589", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2544", - "label": "1695832 (-) 298310", - "from": "1931", - "to": "1831", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2543", - "label": "1695832 (-) 299127", - "from": "1931", - "to": "1916", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2542", - "label": "1695832 (-) 299067", - "from": "1931", - "to": "1943", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2541", - "label": "964698 (-) 144608", - "from": "1930", - "to": "1875", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2540", - "label": "950362 (-) 950359", - "from": "1929", - "to": "1932", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2539", - "label": "247900 (-) 245706", - "from": "1928", - "to": "1550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2538", - "label": "46171 (-) 703760", - "from": "1927", - "to": "1846", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2537", - "label": "320604 (-) 1430006", - "from": "1926", - "to": "1768", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2536", - "label": "1934430 (-) 1935115", - "from": "1925", - "to": "1645", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2535", - "label": "1084519 (-) 1084321", - "from": "1924", - "to": "1570", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2534", - "label": "243816 (-) 247900", - "from": "1923", - "to": "1928", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2533", - "label": "250984 (-) 392955", - "from": "1922", - "to": "1653", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2532", - "label": "6250 (-) 8322", - "from": "1921", - "to": "1912", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2531", - "label": "6250 (-) 13130", - "from": "1921", - "to": "1603", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2530", - "label": "1911913 (-) 978264", - "from": "1920", - "to": "1822", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2529", - "label": "500848 (-) 492556", - "from": "1919", - "to": "1968", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2528", - "label": "1299572 (-) 1297199", - "from": "1918", - "to": "1627", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2527", - "label": "916596 (-) 917308", - "from": "1917", - "to": "1612", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2526", - "label": "916596 (-) 916923", - "from": "1917", - "to": "1787", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2525", - "label": "299127 (-) 299541", - "from": "1916", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2524", - "label": "322680 (-) 321865", - "from": "1915", - "to": "1830", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2523", - "label": "314489 (-) 299541", - "from": "1914", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2522", - "label": "1338496 (-) 301477", - "from": "1913", - "to": "1793", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2521", - "label": "8322 (-) 8325", - "from": "1912", - "to": "1911", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2520", - "label": "8325 (-) 1934430", - "from": "1911", - "to": "1925", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2519", - "label": "8325 (-) 638896", - "from": "1911", - "to": "1560", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2518", - "label": "8327 (-) 1935831", - "from": "1910", - "to": "1780", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2517", - "label": "160903 (-) 1382672", - "from": "1909", - "to": "1852", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2516", - "label": "258188 (-) 1793199", - "from": "1908", - "to": "1893", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2515", - "label": "1867917 (-) 1871665", - "from": "1907", - "to": "1623", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2514", - "label": "540820 (-) 792292", - "from": "1906", - "to": "1665", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2513", - "label": "540820 (-) 798102", - "from": "1906", - "to": "1799", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2512", - "label": "304276 (-) 299541", - "from": "1905", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2511", - "label": "540822 (-) 540820", - "from": "1904", - "to": "1906", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2510", - "label": "1035416 (-) 2085752", - "from": "1903", - "to": "1591", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2509", - "label": "571548 (-) 571803", - "from": "1902", - "to": "1798", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2508", - "label": "616607 (-) 617080", - "from": "1901", - "to": "1707", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2507", - "label": "422049 (-) 573953", - "from": "1900", - "to": "1761", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2506", - "label": "565410 (-) 1200984", - "from": "1899", - "to": "1601", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2505", - "label": "133281 (-) 1484122", - "from": "1898", - "to": "1820", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2504", - "label": "133281 (-) 1485345", - "from": "1898", - "to": "1744", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2503", - "label": "133281 (-) 1485501", - "from": "1898", - "to": "1678", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2502", - "label": "133281 (-) 289149", - "from": "1898", - "to": "1809", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2501", - "label": "133281 (-) 291429", - "from": "1898", - "to": "1717", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2500", - "label": "133281 (-) 291483", - "from": "1898", - "to": "1692", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2499", - "label": "255142 (-) 974036", - "from": "1897", - "to": "1877", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2498", - "label": "255142 (-) 973072", - "from": "1897", - "to": "1850", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2497", - "label": "255142 (-) 971358", - "from": "1897", - "to": "1723", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2496", - "label": "255142 (-) 973669", - "from": "1897", - "to": "1597", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2495", - "label": "255142 (-) 972439", - "from": "1897", - "to": "1694", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2494", - "label": "255142 (-) 975952", - "from": "1897", - "to": "1936", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2493", - "label": "255142 (-) 252110", - "from": "1897", - "to": "1879", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2492", - "label": "1296552 (-) 1299889", - "from": "1896", - "to": "1790", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2491", - "label": "1296552 (-) 1296465", - "from": "1896", - "to": "1935", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2490", - "label": "1296552 (-) 1299572", - "from": "1896", - "to": "1918", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2489", - "label": "616621 (-) 616491", - "from": "1895", - "to": "1953", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2488", - "label": "1116334 (-) 593090", - "from": "1894", - "to": "1883", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2487", - "label": "1793199 (-) 149916", - "from": "1893", - "to": "1797", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2486", - "label": "1793199 (-) 286028", - "from": "1893", - "to": "1828", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2485", - "label": "1793199 (-) 570743", - "from": "1893", - "to": "1814", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2484", - "label": "92336 (-) 1243896", - "from": "1892", - "to": "1657", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2483", - "label": "923825 (-) 77681", - "from": "1891", - "to": "1592", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2482", - "label": "64690 (-) 1886473", - "from": "1890", - "to": "1859", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2481", - "label": "64690 (-) 923825", - "from": "1890", - "to": "1891", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2480", - "label": "64690 (-) 67353", - "from": "1890", - "to": "1641", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2479", - "label": "887987 (-) 888278", - "from": "1889", - "to": "1779", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2478", - "label": "955573 (-) 952711", - "from": "1888", - "to": "1803", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2477", - "label": "955574 (-) 955573", - "from": "1887", - "to": "1888", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2476", - "label": "324791 (-) 321329", - "from": "1886", - "to": "1624", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2475", - "label": "955575 (-) 955573", - "from": "1885", - "to": "1888", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2474", - "label": "955580 (-) 955573", - "from": "1884", - "to": "1888", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2473", - "label": "593090 (-) 1411759", - "from": "1883", - "to": "1684", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2472", - "label": "573635 (-) 994566", - "from": "1882", - "to": "1861", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2471", - "label": "573635 (-) 1031197", - "from": "1882", - "to": "1961", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2470", - "label": "1238218 (-) 1238006", - "from": "1881", - "to": "1538", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2469", - "label": "1538253 (-) 293444", - "from": "1880", - "to": "1732", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2468", - "label": "252110 (-) 251201", - "from": "1879", - "to": "1835", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2467", - "label": "252110 (-) 251144", - "from": "1879", - "to": "1860", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2466", - "label": "252110 (-) 250984", - "from": "1879", - "to": "1922", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2465", - "label": "333006 (-) 331494", - "from": "1878", - "to": "1663", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2464", - "label": "974036 (-) 251144", - "from": "1877", - "to": "1860", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2463", - "label": "974036 (-) 251201", - "from": "1877", - "to": "1835", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2462", - "label": "974036 (-) 250984", - "from": "1877", - "to": "1922", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2461", - "label": "877790 (-) 877267", - "from": "1876", - "to": "1671", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2460", - "label": "144608 (-) 151325", - "from": "1875", - "to": "1637", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2459", - "label": "144608 (-) 289822", - "from": "1875", - "to": "1960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2458", - "label": "875746 (-) 2111986", - "from": "1874", - "to": "1769", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2457", - "label": "2117860 (-) 254746", - "from": "1873", - "to": "1640", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2456", - "label": "1337573 (-) 1337326", - "from": "1872", - "to": "1542", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2455", - "label": "2117862 (-) 2119743", - "from": "1871", - "to": "1941", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2454", - "label": "2117862 (-) 2117860", - "from": "1871", - "to": "1873", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2453", - "label": "336103 (-) 331494", - "from": "1870", - "to": "1663", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2452", - "label": "336103 (-) 1538253", - "from": "1870", - "to": "1880", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2451", - "label": "988389 (-) 988852", - "from": "1869", - "to": "1680", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2450", - "label": "226535 (-) 225188", - "from": "1868", - "to": "1568", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2449", - "label": "261355 (-) 299541", - "from": "1867", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2448", - "label": "743664 (-) 1341480", - "from": "1866", - "to": "1955", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2447", - "label": "743664 (-) 1341349", - "from": "1866", - "to": "1567", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2446", - "label": "743664 (-) 1341038", - "from": "1866", - "to": "1711", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2445", - "label": "743664 (-) 1340336", - "from": "1866", - "to": "1561", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2444", - "label": "324862 (-) 321328", - "from": "1865", - "to": "1621", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2443", - "label": "660736 (-) 2062814", - "from": "1864", - "to": "1777", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2442", - "label": "504065 (-) 504078", - "from": "1863", - "to": "1854", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2441", - "label": "504065 (-) 504360", - "from": "1863", - "to": "1741", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2440", - "label": "504065 (-) 504377", - "from": "1863", - "to": "1734", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2439", - "label": "955652 (-) 955580", - "from": "1862", - "to": "1884", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2438", - "label": "955652 (-) 955574", - "from": "1862", - "to": "1887", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2437", - "label": "955652 (-) 955460", - "from": "1862", - "to": "1940", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2436", - "label": "994566 (-) 992230", - "from": "1861", - "to": "1546", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2435", - "label": "251144 (-) 392955", - "from": "1860", - "to": "1653", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2434", - "label": "1886473 (-) 1238218", - "from": "1859", - "to": "1881", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2433", - "label": "550154 (-) 617080", - "from": "1858", - "to": "1707", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2432", - "label": "550154 (-) 550650", - "from": "1858", - "to": "1655", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2431", - "label": "550154 (-) 646528", - "from": "1858", - "to": "1804", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2430", - "label": "1806603 (-) 310723", - "from": "1857", - "to": "1783", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2429", - "label": "504076 (-) 1684283", - "from": "1856", - "to": "1615", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2428", - "label": "504076 (-) 1682942", - "from": "1856", - "to": "1764", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2427", - "label": "504077 (-) 1682942", - "from": "1855", - "to": "1764", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2426", - "label": "504077 (-) 1684283", - "from": "1855", - "to": "1615", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2425", - "label": "504078 (-) 504076", - "from": "1854", - "to": "1856", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2424", - "label": "504078 (-) 504077", - "from": "1854", - "to": "1855", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2423", - "label": "504078 (-) 504075", - "from": "1854", - "to": "1853", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2422", - "label": "504075 (-) 1682942", - "from": "1853", - "to": "1764", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2421", - "label": "504075 (-) 1684283", - "from": "1853", - "to": "1615", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2420", - "label": "1382672 (-) 441773", - "from": "1852", - "to": "1791", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2419", - "label": "1237263 (-) 55093", - "from": "1851", - "to": "1620", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2418", - "label": "973072 (-) 251144", - "from": "1850", - "to": "1860", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2417", - "label": "973072 (-) 251201", - "from": "1850", - "to": "1835", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2416", - "label": "973072 (-) 250984", - "from": "1850", - "to": "1922", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2415", - "label": "1237265 (-) 1237263", - "from": "1849", - "to": "1851", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2414", - "label": "243984 (-) 245706", - "from": "1848", - "to": "1550", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2413", - "label": "243987 (-) 243984", - "from": "1847", - "to": "1848", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2412", - "label": "703760 (-) 703570", - "from": "1846", - "to": "1934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2411", - "label": "13588 (-) 1884935", - "from": "1845", - "to": "1647", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2410", - "label": "1337624 (-) 1337573", - "from": "1844", - "to": "1872", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2409", - "label": "1205524 (-) 14012", - "from": "1843", - "to": "1679", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2408", - "label": "814361 (-) 1952238", - "from": "1842", - "to": "1771", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2407", - "label": "814361 (-) 1953214", - "from": "1842", - "to": "1786", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2406", - "label": "616732 (-) 617080", - "from": "1841", - "to": "1707", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2405", - "label": "1522976 (-) 293444", - "from": "1840", - "to": "1732", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2404", - "label": "1429803 (-) 127029", - "from": "1839", - "to": "1945", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2403", - "label": "955702 (-) 955652", - "from": "1838", - "to": "1862", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2402", - "label": "955707 (-) 955652", - "from": "1837", - "to": "1862", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2401", - "label": "955707 (-) 1156931", - "from": "1837", - "to": "1607", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2400", - "label": "1046846 (-) 570878", - "from": "1836", - "to": "1763", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2399", - "label": "251201 (-) 392955", - "from": "1835", - "to": "1653", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2398", - "label": "298309 (-) 299541", - "from": "1834", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2397", - "label": "241990 (-) 958434", - "from": "1833", - "to": "1547", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2396", - "label": "1534279 (-) 251616", - "from": "1832", - "to": "1667", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2395", - "label": "298310 (-) 299541", - "from": "1831", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2394", - "label": "321865 (-) 1382736", - "from": "1830", - "to": "1826", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2393", - "label": "298315 (-) 299541", - "from": "1829", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2392", - "label": "286028 (-) 1046846", - "from": "1828", - "to": "1836", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2391", - "label": "286028 (-) 1807026", - "from": "1828", - "to": "1682", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2390", - "label": "101711 (-) 1490324", - "from": "1827", - "to": "1801", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2389", - "label": "101711 (-) 1490531", - "from": "1827", - "to": "1718", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2388", - "label": "101711 (-) 291357", - "from": "1827", - "to": "1748", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2387", - "label": "1382736 (-) 327533", - "from": "1826", - "to": "1594", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2386", - "label": "1681748 (-) 251616", - "from": "1825", - "to": "1667", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2385", - "label": "554324 (-) 554327", - "from": "1824", - "to": "1823", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2384", - "label": "554327 (-) 98964", - "from": "1823", - "to": "1697", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2383", - "label": "978264 (-) 1916734", - "from": "1822", - "to": "1611", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2382", - "label": "193879 (-) 1083941", - "from": "1821", - "to": "1742", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2381", - "label": "1484122 (-) 144608", - "from": "1820", - "to": "1875", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2380", - "label": "132458 (-) 1214047", - "from": "1819", - "to": "1721", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2379", - "label": "616817 (-) 616491", - "from": "1818", - "to": "1953", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2378", - "label": "616818 (-) 617080", - "from": "1817", - "to": "1707", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2377", - "label": "791922 (-) 1695832", - "from": "1816", - "to": "1931", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2376", - "label": "791922 (-) 1695353", - "from": "1816", - "to": "1706", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2375", - "label": "1205619 (-) 1205623", - "from": "1815", - "to": "1813", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2374", - "label": "570743 (-) 1482169", - "from": "1814", - "to": "1788", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2373", - "label": "1205623 (-) 1205624", - "from": "1813", - "to": "1811", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2372", - "label": "883065 (-) 1200606", - "from": "1812", - "to": "1776", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2371", - "label": "1205624 (-) 243987", - "from": "1811", - "to": "1847", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2370", - "label": "302460 (-) 299541", - "from": "1810", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2369", - "label": "289149 (-) 144608", - "from": "1809", - "to": "1875", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2368", - "label": "5502 (-) 13130", - "from": "1808", - "to": "1603", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2367", - "label": "5502 (-) 8322", - "from": "1808", - "to": "1912", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2366", - "label": "616831 (-) 616491", - "from": "1807", - "to": "1953", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2365", - "label": "330112 (-) 409084", - "from": "1806", - "to": "1765", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2364", - "label": "330112 (-) 369394", - "from": "1806", - "to": "1660", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2363", - "label": "330112 (-) 331494", - "from": "1806", - "to": "1663", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2362", - "label": "5503 (-) 8322", - "from": "1805", - "to": "1912", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2361", - "label": "5503 (-) 13130", - "from": "1805", - "to": "1603", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2360", - "label": "646528 (-) 550651", - "from": "1804", - "to": "1654", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2359", - "label": "952711 (-) 958275", - "from": "1803", - "to": "1606", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2358", - "label": "616843 (-) 617080", - "from": "1802", - "to": "1707", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2357", - "label": "1490324 (-) 144608", - "from": "1801", - "to": "1875", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2356", - "label": "2131348 (-) 2131705", - "from": "1800", - "to": "1656", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2355", - "label": "798102 (-) 791922", - "from": "1799", - "to": "1816", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2354", - "label": "571803 (-) 132458", - "from": "1798", - "to": "1819", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2353", - "label": "149916 (-) 1488882", - "from": "1797", - "to": "1539", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2352", - "label": "149916 (-) 1489512", - "from": "1797", - "to": "1715", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2351", - "label": "149916 (-) 964698", - "from": "1797", - "to": "1930", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2350", - "label": "149916 (-) 1489627", - "from": "1797", - "to": "1669", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2349", - "label": "149916 (-) 289835", - "from": "1797", - "to": "1950", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2348", - "label": "149916 (-) 157322", - "from": "1797", - "to": "1698", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2347", - "label": "1035681 (-) 1035416", - "from": "1796", - "to": "1903", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2346", - "label": "1035683 (-) 1035681", - "from": "1795", - "to": "1796", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2345", - "label": "1065380 (-) 261355", - "from": "1794", - "to": "1867", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2344", - "label": "301477 (-) 299541", - "from": "1793", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2343", - "label": "1200554 (-) 43842", - "from": "1792", - "to": "1609", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2342", - "label": "441773 (-) 1382312", - "from": "1791", - "to": "1564", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2341", - "label": "1299889 (-) 1297199", - "from": "1790", - "to": "1627", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2340", - "label": "616886 (-) 616493", - "from": "1789", - "to": "1951", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2339", - "label": "616886 (-) 616831", - "from": "1789", - "to": "1807", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2338", - "label": "616886 (-) 616621", - "from": "1789", - "to": "1895", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2337", - "label": "616886 (-) 616817", - "from": "1789", - "to": "1818", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2336", - "label": "616886 (-) 616492", - "from": "1789", - "to": "1952", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2335", - "label": "1482169 (-) 570878", - "from": "1788", - "to": "1763", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2334", - "label": "1482169 (-) 935814", - "from": "1788", - "to": "1583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2333", - "label": "916923 (-) 504065", - "from": "1787", - "to": "1863", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2332", - "label": "1953214 (-) 1296552", - "from": "1786", - "to": "1896", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2331", - "label": "321983 (-) 1382736", - "from": "1785", - "to": "1826", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2330", - "label": "587203 (-) 441814", - "from": "1784", - "to": "1781", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2329", - "label": "310723 (-) 299541", - "from": "1783", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2328", - "label": "1200581 (-) 1200554", - "from": "1782", - "to": "1792", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2327", - "label": "441814 (-) 1806603", - "from": "1781", - "to": "1857", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2326", - "label": "1935831 (-) 191978", - "from": "1780", - "to": "1773", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2325", - "label": "888278 (-) 883456", - "from": "1779", - "to": "1650", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2324", - "label": "1477081 (-) 8325", - "from": "1778", - "to": "1911", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2323", - "label": "2062814 (-) 418544", - "from": "1777", - "to": "1661", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2322", - "label": "1200606 (-) 1200581", - "from": "1776", - "to": "1782", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2321", - "label": "2112990 (-) 874479", - "from": "1775", - "to": "1540", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2320", - "label": "2112991 (-) 2112990", - "from": "1774", - "to": "1775", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2319", - "label": "191978 (-) 1673905", - "from": "1773", - "to": "1681", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2318", - "label": "1035755 (-) 1035683", - "from": "1772", - "to": "1795", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2317", - "label": "1952238 (-) 572418", - "from": "1771", - "to": "1970", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2316", - "label": "1952238 (-) 574400", - "from": "1771", - "to": "1552", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2315", - "label": "1952238 (-) 573635", - "from": "1771", - "to": "1882", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2314", - "label": "1798639 (-) 1911913", - "from": "1770", - "to": "1920", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2313", - "label": "2111986 (-) 49150", - "from": "1769", - "to": "1537", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2312", - "label": "1430006 (-) 336103", - "from": "1768", - "to": "1870", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2311", - "label": "882169 (-) 888278", - "from": "1767", - "to": "1779", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2310", - "label": "882169 (-) 883490", - "from": "1767", - "to": "1635", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2309", - "label": "398844 (-) 1386423", - "from": "1766", - "to": "1553", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2308", - "label": "409084 (-) 293444", - "from": "1765", - "to": "1732", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2307", - "label": "1682942 (-) 330112", - "from": "1764", - "to": "1806", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2306", - "label": "570878 (-) 627554", - "from": "1763", - "to": "1598", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2305", - "label": "570878 (-) 1806998", - "from": "1763", - "to": "1695", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2304", - "label": "570878 (-) 1802928", - "from": "1763", - "to": "1685", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2303", - "label": "570878 (-) 935811", - "from": "1763", - "to": "1586", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2302", - "label": "570878 (-) 587203", - "from": "1763", - "to": "1784", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2301", - "label": "2059776 (-) 653856", - "from": "1762", - "to": "1746", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2300", - "label": "573953 (-) 572417", - "from": "1761", - "to": "1969", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2299", - "label": "882178 (-) 883490", - "from": "1760", - "to": "1635", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2298", - "label": "882178 (-) 888278", - "from": "1760", - "to": "1779", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2297", - "label": "1790467 (-) 251616", - "from": "1759", - "to": "1667", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2296", - "label": "232970 (-) 1382736", - "from": "1758", - "to": "1826", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2295", - "label": "637452 (-) 193879", - "from": "1757", - "to": "1821", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2294", - "label": "637453 (-) 637452", - "from": "1756", - "to": "1757", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2293", - "label": "1337870 (-) 1337573", - "from": "1755", - "to": "1872", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2292", - "label": "299537 (-) 299541", - "from": "1754", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2291", - "label": "653843 (-) 730789", - "from": "1753", - "to": "1687", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2290", - "label": "653843 (-) 737088", - "from": "1753", - "to": "1610", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2289", - "label": "653843 (-) 1538767", - "from": "1753", - "to": "1672", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2288", - "label": "653843 (-) 654138", - "from": "1753", - "to": "1616", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2287", - "label": "1988115 (-) 1987295", - "from": "1752", - "to": "1668", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2286", - "label": "299541 (-) 298645", - "from": "1751", - "to": "1696", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2285", - "label": "2098710 (-) 2052724", - "from": "1750", - "to": "1710", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2284", - "label": "2098710 (-) 2052833", - "from": "1750", - "to": "1666", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2283", - "label": "299544 (-) 299541", - "from": "1749", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2282", - "label": "291357 (-) 144608", - "from": "1748", - "to": "1875", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2281", - "label": "343583 (-) 331494", - "from": "1747", - "to": "1663", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2280", - "label": "653856 (-) 654215", - "from": "1746", - "to": "1582", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2279", - "label": "952865 (-) 958275", - "from": "1745", - "to": "1606", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2278", - "label": "1485345 (-) 144608", - "from": "1744", - "to": "1875", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2277", - "label": "1083940 (-) 1084519", - "from": "1743", - "to": "1924", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2276", - "label": "1083941 (-) 1083940", - "from": "1742", - "to": "1743", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2275", - "label": "504360 (-) 504077", - "from": "1741", - "to": "1855", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2274", - "label": "504360 (-) 504075", - "from": "1741", - "to": "1853", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2273", - "label": "504360 (-) 504076", - "from": "1741", - "to": "1856", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2272", - "label": "311850 (-) 299541", - "from": "1740", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2271", - "label": "77362 (-) 62263", - "from": "1739", - "to": "1619", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2270", - "label": "77362 (-) 54189", - "from": "1739", - "to": "1563", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2269", - "label": "77362 (-) 54322", - "from": "1739", - "to": "1946", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2268", - "label": "77362 (-) 55277", - "from": "1739", - "to": "1543", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2267", - "label": "77362 (-) 54900", - "from": "1739", - "to": "1709", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2266", - "label": "77362 (-) 55093", - "from": "1739", - "to": "1620", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2265", - "label": "77362 (-) 61124", - "from": "1739", - "to": "1676", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2264", - "label": "77362 (-) 54026", - "from": "1739", - "to": "1646", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2263", - "label": "77362 (-) 62537", - "from": "1739", - "to": "1939", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2262", - "label": "101938 (-) 1490531", - "from": "1738", - "to": "1718", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2261", - "label": "101938 (-) 1490324", - "from": "1738", - "to": "1801", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2260", - "label": "101938 (-) 291357", - "from": "1738", - "to": "1748", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2259", - "label": "878133 (-) 877267", - "from": "1737", - "to": "1671", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2258", - "label": "309814 (-) 299541", - "from": "1736", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2257", - "label": "13879 (-) 6157", - "from": "1735", - "to": "1967", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2256", - "label": "13879 (-) 5503", - "from": "1735", - "to": "1805", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2255", - "label": "13879 (-) 5738", - "from": "1735", - "to": "1713", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2254", - "label": "13879 (-) 6250", - "from": "1735", - "to": "1921", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2253", - "label": "13879 (-) 5737", - "from": "1735", - "to": "1714", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2252", - "label": "13879 (-) 5502", - "from": "1735", - "to": "1808", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2251", - "label": "13879 (-) 5936", - "from": "1735", - "to": "1625", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2250", - "label": "13879 (-) 6042", - "from": "1735", - "to": "1575", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2249", - "label": "504377 (-) 504076", - "from": "1734", - "to": "1856", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2248", - "label": "504377 (-) 504075", - "from": "1734", - "to": "1853", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2247", - "label": "321084 (-) 1338496", - "from": "1733", - "to": "1913", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2246", - "label": "293444 (-) 299541", - "from": "1732", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2245", - "label": "616006 (-) 616064", - "from": "1731", - "to": "1701", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2244", - "label": "1107533 (-) 310021", - "from": "1730", - "to": "1648", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2243", - "label": "396880 (-) 127029", - "from": "1729", - "to": "1945", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2242", - "label": "1119825 (-) 1116334", - "from": "1728", - "to": "1894", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2241", - "label": "389722 (-) 549814", - "from": "1727", - "to": "1556", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2240", - "label": "389722 (-) 616886", - "from": "1727", - "to": "1789", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2239", - "label": "303707 (-) 299541", - "from": "1726", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2238", - "label": "875099 (-) 875746", - "from": "1725", - "to": "1874", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2237", - "label": "875101 (-) 875099", - "from": "1724", - "to": "1725", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2236", - "label": "971358 (-) 250984", - "from": "1723", - "to": "1922", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2235", - "label": "971358 (-) 251144", - "from": "1723", - "to": "1860", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2234", - "label": "971358 (-) 251201", - "from": "1723", - "to": "1835", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2233", - "label": "77403 (-) 77362", - "from": "1722", - "to": "1739", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2232", - "label": "1214047 (-) 144608", - "from": "1721", - "to": "1875", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2231", - "label": "970337 (-) 333006", - "from": "1720", - "to": "1878", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2230", - "label": "350818 (-) 555944", - "from": "1719", - "to": "1565", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2229", - "label": "1490531 (-) 144608", - "from": "1718", - "to": "1875", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2228", - "label": "291429 (-) 144608", - "from": "1717", - "to": "1875", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2227", - "label": "1159782 (-) 954243", - "from": "1716", - "to": "1584", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2226", - "label": "1489512 (-) 144608", - "from": "1715", - "to": "1875", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2225", - "label": "5737 (-) 8322", - "from": "1714", - "to": "1912", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2224", - "label": "5737 (-) 13130", - "from": "1714", - "to": "1603", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2223", - "label": "5738 (-) 8322", - "from": "1713", - "to": "1912", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2222", - "label": "5738 (-) 13130", - "from": "1713", - "to": "1603", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2221", - "label": "1378926 (-) 1382736", - "from": "1712", - "to": "1826", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2220", - "label": "1341038 (-) 320330", - "from": "1711", - "to": "1604", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2219", - "label": "2052724 (-) 2059776", - "from": "1710", - "to": "1762", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2218", - "label": "54900 (-) 743241", - "from": "1709", - "to": "1605", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2217", - "label": "1771125 (-) 2114443", - "from": "1708", - "to": "1581", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2216", - "label": "617080 (-) 550651", - "from": "1707", - "to": "1654", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2215", - "label": "1695353 (-) 298310", - "from": "1706", - "to": "1831", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2214", - "label": "1695353 (-) 299127", - "from": "1706", - "to": "1916", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2213", - "label": "550522 (-) 550679", - "from": "1705", - "to": "1642", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2212", - "label": "227964 (-) 324791", - "from": "1704", - "to": "1886", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2211", - "label": "227964 (-) 320128", - "from": "1704", - "to": "1702", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2210", - "label": "227964 (-) 1382203", - "from": "1704", - "to": "1614", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2209", - "label": "227964 (-) 322680", - "from": "1704", - "to": "1915", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2208", - "label": "227964 (-) 324862", - "from": "1704", - "to": "1865", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2207", - "label": "227964 (-) 322256", - "from": "1704", - "to": "1673", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2206", - "label": "637566 (-) 637453", - "from": "1703", - "to": "1756", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2205", - "label": "320128 (-) 320604", - "from": "1702", - "to": "1926", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2204", - "label": "616064 (-) 616067", - "from": "1701", - "to": "1700", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2203", - "label": "616067 (-) 1206141", - "from": "1700", - "to": "1588", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2202", - "label": "1684105 (-) 298310", - "from": "1699", - "to": "1831", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2201", - "label": "1684105 (-) 299067", - "from": "1699", - "to": "1943", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2200", - "label": "157322 (-) 151326", - "from": "1698", - "to": "1636", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2199", - "label": "98964 (-) 1490531", - "from": "1697", - "to": "1718", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2198", - "label": "98964 (-) 1490324", - "from": "1697", - "to": "1801", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2197", - "label": "98964 (-) 291357", - "from": "1697", - "to": "1748", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2196", - "label": "1806998 (-) 441814", - "from": "1695", - "to": "1781", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2195", - "label": "972439 (-) 251201", - "from": "1694", - "to": "1835", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2194", - "label": "972439 (-) 251144", - "from": "1694", - "to": "1860", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2193", - "label": "972439 (-) 250984", - "from": "1694", - "to": "1922", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2192", - "label": "171672 (-) 299541", - "from": "1693", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2191", - "label": "291483 (-) 144608", - "from": "1692", - "to": "1875", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2190", - "label": "327326 (-) 304925", - "from": "1691", - "to": "1638", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2189", - "label": "327326 (-) 304924", - "from": "1691", - "to": "1639", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2188", - "label": "327326 (-) 305175", - "from": "1691", - "to": "1963", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2187", - "label": "327326 (-) 305167", - "from": "1691", - "to": "1965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2186", - "label": "327326 (-) 305153", - "from": "1691", - "to": "1972", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2185", - "label": "1682080 (-) 251616", - "from": "1690", - "to": "1667", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2184", - "label": "719521 (-) 719714", - "from": "1689", - "to": "1599", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2183", - "label": "1941154 (-) 333006", - "from": "1688", - "to": "1878", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2182", - "label": "730789 (-) 654141", - "from": "1687", - "to": "1613", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2181", - "label": "672431 (-) 46171", - "from": "1686", - "to": "1927", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2180", - "label": "1802928 (-) 441814", - "from": "1685", - "to": "1781", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2179", - "label": "1411759 (-) 1411760", - "from": "1684", - "to": "1683", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2178", - "label": "1411760 (-) 1412138", - "from": "1683", - "to": "1954", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2177", - "label": "1807026 (-) 935814", - "from": "1682", - "to": "1583", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2176", - "label": "1807026 (-) 570878", - "from": "1682", - "to": "1763", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2175", - "label": "1807026 (-) 627557", - "from": "1682", - "to": "1596", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2174", - "label": "1673905 (-) 261355", - "from": "1681", - "to": "1867", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2173", - "label": "988852 (-) 398844", - "from": "1680", - "to": "1766", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2172", - "label": "14012 (-) 13879", - "from": "1679", - "to": "1735", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2171", - "label": "1485501 (-) 144608", - "from": "1678", - "to": "1875", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2170", - "label": "322239 (-) 321084", - "from": "1677", - "to": "1733", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2169", - "label": "61124 (-) 743241", - "from": "1676", - "to": "1605", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2168", - "label": "1411783 (-) 1473433", - "from": "1675", - "to": "1576", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2167", - "label": "572111 (-) 571548", - "from": "1674", - "to": "1902", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2166", - "label": "322256 (-) 321330", - "from": "1673", - "to": "1622", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2165", - "label": "1538767 (-) 654141", - "from": "1672", - "to": "1613", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2164", - "label": "877267 (-) 875101", - "from": "1671", - "to": "1724", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2163", - "label": "884435 (-) 874464", - "from": "1670", - "to": "1548", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2162", - "label": "884435 (-) 878133", - "from": "1670", - "to": "1737", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2161", - "label": "1489627 (-) 144608", - "from": "1669", - "to": "1875", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2160", - "label": "1987295 (-) 814361", - "from": "1668", - "to": "1842", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2159", - "label": "251616 (-) 299541", - "from": "1667", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2158", - "label": "2052833 (-) 2059776", - "from": "1666", - "to": "1762", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2157", - "label": "792292 (-) 791922", - "from": "1665", - "to": "1816", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2156", - "label": "94950 (-) 1522976", - "from": "1664", - "to": "1840", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2155", - "label": "331494 (-) 310020", - "from": "1663", - "to": "1649", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2154", - "label": "331494 (-) 309814", - "from": "1663", - "to": "1736", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2153", - "label": "331494 (-) 305190", - "from": "1663", - "to": "1957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2152", - "label": "331494 (-) 293444", - "from": "1663", - "to": "1732", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2151", - "label": "331494 (-) 311850", - "from": "1663", - "to": "1740", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2150", - "label": "331494 (-) 299544", - "from": "1663", - "to": "1749", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2149", - "label": "331494 (-) 302460", - "from": "1663", - "to": "1810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2148", - "label": "331494 (-) 309196", - "from": "1663", - "to": "1549", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2147", - "label": "103150 (-) 1049381", - "from": "1662", - "to": "1633", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2146", - "label": "418544 (-) 2062227", - "from": "1661", - "to": "1578", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2145", - "label": "369394 (-) 298309", - "from": "1660", - "to": "1834", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2144", - "label": "369394 (-) 304129", - "from": "1660", - "to": "1971", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2143", - "label": "369394 (-) 299127", - "from": "1660", - "to": "1916", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2142", - "label": "369394 (-) 298310", - "from": "1660", - "to": "1831", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2141", - "label": "369394 (-) 298315", - "from": "1660", - "to": "1829", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2140", - "label": "369394 (-) 304210", - "from": "1660", - "to": "1933", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2139", - "label": "369394 (-) 299067", - "from": "1660", - "to": "1943", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2138", - "label": "369394 (-) 299537", - "from": "1660", - "to": "1754", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2137", - "label": "369394 (-) 304276", - "from": "1660", - "to": "1905", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2136", - "label": "369394 (-) 301477", - "from": "1660", - "to": "1793", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2135", - "label": "369394 (-) 293444", - "from": "1660", - "to": "1732", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2134", - "label": "369394 (-) 303994", - "from": "1660", - "to": "1590", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2133", - "label": "369394 (-) 301845", - "from": "1660", - "to": "1644", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2132", - "label": "1681138 (-) 251616", - "from": "1659", - "to": "1667", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2131", - "label": "373494 (-) 369394", - "from": "1658", - "to": "1660", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2130", - "label": "1243896 (-) 321983", - "from": "1657", - "to": "1785", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2129", - "label": "2131705 (-) 698257", - "from": "1656", - "to": "1579", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2128", - "label": "2131705 (-) 2117862", - "from": "1656", - "to": "1871", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2127", - "label": "550650 (-) 550651", - "from": "1655", - "to": "1654", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2126", - "label": "550651 (-) 970337", - "from": "1654", - "to": "1720", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2125", - "label": "392955 (-) 258188", - "from": "1653", - "to": "1908", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2124", - "label": "883453 (-) 883065", - "from": "1652", - "to": "1812", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2123", - "label": "883455 (-) 883453", - "from": "1651", - "to": "1652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2122", - "label": "883456 (-) 883453", - "from": "1650", - "to": "1652", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2121", - "label": "310020 (-) 299541", - "from": "1649", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2120", - "label": "310021 (-) 299541", - "from": "1648", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2119", - "label": "1884935 (-) 554016", - "from": "1647", - "to": "1958", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2118", - "label": "54026 (-) 743241", - "from": "1646", - "to": "1605", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2117", - "label": "1935115 (-) 1935831", - "from": "1645", - "to": "1780", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2116", - "label": "301845 (-) 299541", - "from": "1644", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2115", - "label": "1159958 (-) 618296", - "from": "1643", - "to": "1617", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2114", - "label": "1159958 (-) 618516", - "from": "1643", - "to": "1964", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2113", - "label": "550679 (-) 550154", - "from": "1642", - "to": "1858", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2112", - "label": "67353 (-) 64422", - "from": "1641", - "to": "1566", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2111", - "label": "254746 (-) 974036", - "from": "1640", - "to": "1877", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2110", - "label": "254746 (-) 975952", - "from": "1640", - "to": "1936", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2109", - "label": "254746 (-) 973669", - "from": "1640", - "to": "1597", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2108", - "label": "254746 (-) 252110", - "from": "1640", - "to": "1879", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2107", - "label": "254746 (-) 971358", - "from": "1640", - "to": "1723", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2106", - "label": "254746 (-) 973072", - "from": "1640", - "to": "1850", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2105", - "label": "254746 (-) 972439", - "from": "1640", - "to": "1694", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2104", - "label": "304924 (-) 299541", - "from": "1639", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2103", - "label": "304925 (-) 299541", - "from": "1638", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2102", - "label": "151325 (-) 94950", - "from": "1637", - "to": "1664", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2101", - "label": "151326 (-) 151325", - "from": "1636", - "to": "1637", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2100", - "label": "883490 (-) 883455", - "from": "1635", - "to": "1651", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2099", - "label": "1082148 (-) 350818", - "from": "1634", - "to": "1719", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2098", - "label": "1049381 (-) 94950", - "from": "1633", - "to": "1664", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2097", - "label": "884516 (-) 884435", - "from": "1632", - "to": "1670", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2096", - "label": "884516 (-) 885683", - "from": "1632", - "to": "1558", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2095", - "label": "1082151 (-) 1082148", - "from": "1631", - "to": "1634", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2094", - "label": "719655 (-) 719521", - "from": "1630", - "to": "1689", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2093", - "label": "1889063 (-) 64690", - "from": "1629", - "to": "1890", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2092", - "label": "884524 (-) 884435", - "from": "1628", - "to": "1670", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2091", - "label": "884524 (-) 885683", - "from": "1628", - "to": "1558", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2090", - "label": "1297199 (-) 1299518", - "from": "1627", - "to": "1942", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2089", - "label": "1103663 (-) 1098777", - "from": "1626", - "to": "1962", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2088", - "label": "5936 (-) 13130", - "from": "1625", - "to": "1603", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2087", - "label": "5936 (-) 8322", - "from": "1625", - "to": "1912", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2086", - "label": "321329 (-) 322239", - "from": "1624", - "to": "1677", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2085", - "label": "1871665 (-) 14228", - "from": "1623", - "to": "1577", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2084", - "label": "321330 (-) 322239", - "from": "1622", - "to": "1677", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2083", - "label": "321328 (-) 322239", - "from": "1621", - "to": "1677", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2082", - "label": "55093 (-) 743241", - "from": "1620", - "to": "1605", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2081", - "label": "62263 (-) 743241", - "from": "1619", - "to": "1605", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2080", - "label": "130871 (-) 1681138", - "from": "1618", - "to": "1659", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2079", - "label": "130871 (-) 1681748", - "from": "1618", - "to": "1825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2078", - "label": "130871 (-) 1065380", - "from": "1618", - "to": "1794", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2077", - "label": "130871 (-) 1682080", - "from": "1618", - "to": "1690", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2076", - "label": "130871 (-) 1790467", - "from": "1618", - "to": "1759", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2075", - "label": "130871 (-) 1668145", - "from": "1618", - "to": "1947", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2074", - "label": "130871 (-) 1534279", - "from": "1618", - "to": "1832", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2073", - "label": "618296 (-) 1035755", - "from": "1617", - "to": "1772", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2072", - "label": "654138 (-) 654141", - "from": "1616", - "to": "1613", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2071", - "label": "1684283 (-) 330112", - "from": "1615", - "to": "1806", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2070", - "label": "1382203 (-) 1378926", - "from": "1614", - "to": "1712", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2069", - "label": "654141 (-) 952239", - "from": "1613", - "to": "1562", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2068", - "label": "654141 (-) 719655", - "from": "1613", - "to": "1630", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2067", - "label": "917308 (-) 504065", - "from": "1612", - "to": "1863", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2066", - "label": "1916734 (-) 950362", - "from": "1611", - "to": "1929", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2065", - "label": "737088 (-) 654141", - "from": "1610", - "to": "1613", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2064", - "label": "43842 (-) 1477081", - "from": "1609", - "to": "1778", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2063", - "label": "1035074 (-) 1159782", - "from": "1608", - "to": "1716", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2062", - "label": "1156931 (-) 955460", - "from": "1607", - "to": "1940", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2061", - "label": "958275 (-) 958290", - "from": "1606", - "to": "1602", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2060", - "label": "743241 (-) 743664", - "from": "1605", - "to": "1866", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2059", - "label": "320330 (-) 324862", - "from": "1604", - "to": "1865", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2058", - "label": "320330 (-) 320128", - "from": "1604", - "to": "1702", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2057", - "label": "320330 (-) 322256", - "from": "1604", - "to": "1673", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2056", - "label": "320330 (-) 1382203", - "from": "1604", - "to": "1614", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2055", - "label": "320330 (-) 324791", - "from": "1604", - "to": "1886", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2054", - "label": "320330 (-) 322680", - "from": "1604", - "to": "1915", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2053", - "label": "13130 (-) 13588", - "from": "1603", - "to": "1845", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2052", - "label": "958290 (-) 958368", - "from": "1602", - "to": "1571", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2051", - "label": "1200984 (-) 554324", - "from": "1601", - "to": "1824", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2050", - "label": "1466203 (-) 1889063", - "from": "1600", - "to": "1629", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2049", - "label": "719714 (-) 565410", - "from": "1599", - "to": "1899", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2048", - "label": "627554 (-) 441814", - "from": "1598", - "to": "1781", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2047", - "label": "973669 (-) 250984", - "from": "1597", - "to": "1922", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2046", - "label": "973669 (-) 251144", - "from": "1597", - "to": "1860", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2045", - "label": "973669 (-) 251201", - "from": "1597", - "to": "1835", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2044", - "label": "627557 (-) 1806998", - "from": "1596", - "to": "1695", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2043", - "label": "627557 (-) 627554", - "from": "1596", - "to": "1598", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2042", - "label": "77671 (-) 77403", - "from": "1595", - "to": "1722", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2041", - "label": "327533 (-) 327326", - "from": "1594", - "to": "1691", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2040", - "label": "369519 (-) 369394", - "from": "1593", - "to": "1660", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2039", - "label": "77681 (-) 1238006", - "from": "1592", - "to": "1538", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2038", - "label": "77681 (-) 77671", - "from": "1592", - "to": "1595", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2037", - "label": "2085752 (-) 130871", - "from": "1591", - "to": "1618", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2036", - "label": "303994 (-) 299541", - "from": "1590", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2035", - "label": "569211 (-) 572111", - "from": "1589", - "to": "1674", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2034", - "label": "1206141 (-) 14012", - "from": "1588", - "to": "1679", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2033", - "label": "1410943 (-) 103150", - "from": "1587", - "to": "1662", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2032", - "label": "935811 (-) 441814", - "from": "1586", - "to": "1781", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2031", - "label": "698244 (-) 255142", - "from": "1585", - "to": "1897", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2030", - "label": "954243 (-) 1159958", - "from": "1584", - "to": "1643", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2029", - "label": "935814 (-) 935811", - "from": "1583", - "to": "1586", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2028", - "label": "935814 (-) 1806998", - "from": "1583", - "to": "1695", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2027", - "label": "654215 (-) 653843", - "from": "1582", - "to": "1753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2026", - "label": "2114443 (-) 2112991", - "from": "1581", - "to": "1774", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2025", - "label": "1116044 (-) 1799093", - "from": "1580", - "to": "1557", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2024", - "label": "698257 (-) 1473583", - "from": "1579", - "to": "1949", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2023", - "label": "698257 (-) 1473437", - "from": "1579", - "to": "1574", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2022", - "label": "698257 (-) 698244", - "from": "1579", - "to": "1585", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2021", - "label": "2062227 (-) 79817", - "from": "1578", - "to": "1551", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2020", - "label": "14228 (-) 13879", - "from": "1577", - "to": "1735", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2019", - "label": "1473433 (-) 138223", - "from": "1576", - "to": "1541", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2018", - "label": "6042 (-) 8322", - "from": "1575", - "to": "1912", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2017", - "label": "6042 (-) 13130", - "from": "1575", - "to": "1603", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2016", - "label": "1473437 (-) 1411783", - "from": "1574", - "to": "1675", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2015", - "label": "1084318 (-) 171672", - "from": "1573", - "to": "1693", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2014", - "label": "1338271 (-) 389722", - "from": "1572", - "to": "1727", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2013", - "label": "958368 (-) 241990", - "from": "1571", - "to": "1833", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2012", - "label": "1084321 (-) 1084318", - "from": "1570", - "to": "1573", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2011", - "label": "225187 (-) 127029", - "from": "1569", - "to": "1945", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2010", - "label": "225188 (-) 396880", - "from": "1568", - "to": "1729", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2009", - "label": "225188 (-) 1429803", - "from": "1568", - "to": "1839", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2008", - "label": "225188 (-) 225187", - "from": "1568", - "to": "1569", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2007", - "label": "1341349 (-) 320330", - "from": "1567", - "to": "1604", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2006", - "label": "64422 (-) 1238006", - "from": "1566", - "to": "1538", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2005", - "label": "555944 (-) 293444", - "from": "1565", - "to": "1732", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2004", - "label": "1382312 (-) 232970", - "from": "1564", - "to": "1758", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2003", - "label": "54189 (-) 743241", - "from": "1563", - "to": "1605", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2002", - "label": "952239 (-) 422049", - "from": "1562", - "to": "1900", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2001", - "label": "1340336 (-) 320330", - "from": "1561", - "to": "1604", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2000", - "label": "1340336 (-) 227964", - "from": "1561", - "to": "1704", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1999", - "label": "638896 (-) 8327", - "from": "1560", - "to": "1910", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1998", - "label": "1299378 (-) 1941154", - "from": "1559", - "to": "1688", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1997", - "label": "885683 (-) 887987", - "from": "1558", - "to": "1889", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1996", - "label": "885683 (-) 877790", - "from": "1558", - "to": "1876", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1995", - "label": "1799093 (-) 1035074", - "from": "1557", - "to": "1608", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1994", - "label": "549814 (-) 550522", - "from": "1556", - "to": "1705", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1993", - "label": "1113015 (-) 1107533", - "from": "1555", - "to": "1730", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1992", - "label": "495541 (-) 500848", - "from": "1554", - "to": "1919", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1991", - "label": "1386423 (-) 418544", - "from": "1553", - "to": "1661", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1990", - "label": "574400 (-) 1031197", - "from": "1552", - "to": "1961", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1989", - "label": "574400 (-) 994566", - "from": "1552", - "to": "1861", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1988", - "label": "79817 (-) 970337", - "from": "1551", - "to": "1720", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1987", - "label": "245706 (-) 1205524", - "from": "1550", - "to": "1843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1986", - "label": "309196 (-) 299541", - "from": "1549", - "to": "1751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1985", - "label": "874464 (-) 877267", - "from": "1548", - "to": "1671", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1984", - "label": "958434 (-) 14012", - "from": "1547", - "to": "1679", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1983", - "label": "992230 (-) 992233", - "from": "1546", - "to": "1545", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1982", - "label": "992233 (-) 495541", - "from": "1545", - "to": "1554", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1981", - "label": "233452 (-) 226535", - "from": "1544", - "to": "1868", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1980", - "label": "55277 (-) 743241", - "from": "1543", - "to": "1605", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1979", - "label": "1337326 (-) 1338271", - "from": "1542", - "to": "1572", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1978", - "label": "138223 (-) 672431", - "from": "1541", - "to": "1686", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1977", - "label": "874479 (-) 877267", - "from": "1540", - "to": "1671", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1976", - "label": "1488882 (-) 144608", - "from": "1539", - "to": "1875", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1975", - "label": "1238006 (-) 1237265", - "from": "1538", - "to": "1849", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1974", - "label": "49150 (-) 637566", - "from": "1537", - "to": "1703", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_updown_Serotonin_graphml.json b/appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_updown_Serotonin_graphml.json deleted file mode 100644 index 805dde631f..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/cytoscape_data/minMeanShort_updown_Serotonin_graphml.json +++ /dev/null @@ -1,15466 +0,0 @@ -{ - "nodes": [ - { - "id": "4160", - "label": "Dissociation of phosphorylated 4EBP1 from eIF4E", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4159", - "label": "DecS-GHRL-1(24-50) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4158", - "label": "eIF4E:4E-BP1-P [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4157", - "label": "EIF4E [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4156", - "label": "Ade-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4155", - "label": "PolyUb-Misfolded PCNT [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4154", - "label": "Aquaporin-9 passively transports glycerol into cell", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4153", - "label": "DecS-GHRL-1(24-51) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4152", - "label": "AHCY:NAD+ tetramer hydrolyses AdoHcy", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4151", - "label": "CASP8(385-479) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4150", - "label": "O-octanoyl-L-serine-GHRL-1(24-51) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4149", - "label": "Exocytosis of secretory granule membrane proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4148", - "label": "PARN deadenylates mRNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4147", - "label": "Release of PLCG from FCGR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4146", - "label": "clustered IgG-Ag:p-FCGRs:p-6Y-SYK:p-3Y-PLCG [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4145", - "label": "AdoHcy [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4144", - "label": "Bradykinin receptor:Bradykinin [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4143", - "label": "GGC-RAB7B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4142", - "label": "Retinoic acid activates HOXB4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4141", - "label": "Disintegration of matrix layer", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "4140", - "label": "Ubiquitinated IkB is degraded", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4139", - "label": "NF-kappaB p50,p65,c-Rel:ub-p-IKB [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "4138", - "label": "NF-kappaB p65:p65:ub-p-IkB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4137", - "label": "Phosphorylation and activation of PLCG", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4136", - "label": "Degradation of CD8", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4135", - "label": "TLR2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4134", - "label": "Exocytosis of Insulin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4133", - "label": "SUMO1:p-T4827-HERC2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4132", - "label": "PTEN [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4131", - "label": "TGFA(24-98) [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4130", - "label": "5HT [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4129", - "label": "trans-Golgi Network Derived Vesicle Uncoating", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4128", - "label": "IL1B(117-269) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4127", - "label": "p-S25,S1778-TP53BP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4126", - "label": "IRAK2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4125", - "label": "POMC(138-176) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4124", - "label": "AREG(101-187) [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4123", - "label": "Dissociation of BRAF/RAF fusion complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4122", - "label": "CTNNB1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4121", - "label": "CBL neddylates TGFBR2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4120", - "label": "OCT2 mediates tubular secretion of organic cations in the kidney", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4119", - "label": "PLCG1 phosphorylation by p-EGFR:p-ERBB2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4118", - "label": "NEDD8-AcM-UBE2M [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4117", - "label": "Dissociation of hp-IRAK1:TRAF6 or IRAK2:TRAF6-oligomer from the activated TLR5 or 10:oligo-Myd88:p-IRAK4 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4116", - "label": "PP2A [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4115", - "label": "SIN3A [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4114", - "label": "TTLLs polyglutamylate tubulin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4113", - "label": "Loading of acetylcholine in synaptic vesicles", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4112", - "label": "p-IRAK2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4111", - "label": "p-T185,Y187-MAPK1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4110", - "label": "PolyUb-Misfolded PARK7 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4109", - "label": "COP9 signalosome deneddylates cytosolic CRL E3 ubiquitin ligase complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4108", - "label": "(d)AMP, (d)GMP, or (d)IMP + H2O => (deoxy)adenosine, (deoxy)guanosine, or (deoxy)inosine + orthophosphate (NT5C1A)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4107", - "label": "MAG [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4106", - "label": "PPP1R3C [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4105", - "label": "DAGs [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4104", - "label": "Expression of PPARGC1A (PGC-1alpha)", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4103", - "label": "MAT2B:MAT2A:K+:2Mg2+ transfers Ado from ATP to L-Met", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4102", - "label": "AGTR1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4101", - "label": "Expression of AVP", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4100", - "label": "Microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4099", - "label": "AdoMet [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4098", - "label": "alpha-beta tubulin dimer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4097", - "label": "KLF4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4096", - "label": "MAPK3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4095", - "label": "RNF152 [lysosomal membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4094", - "label": "NAM [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4093", - "label": "TNKS and TNKS2 PARylate PTEN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4092", - "label": "p-S166-RIPK1:p-S199,227-RIPK3 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4091", - "label": "PP2A (A:C) [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4090", - "label": "NF-kappaB p65:p65 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4089", - "label": "FKBP1A [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4088", - "label": "FGF18 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4087", - "label": "ARRB2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4086", - "label": "NF-kappaB p50:c-Rel:ub-p-IKB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4085", - "label": "Exocytosis of ficolin-rich granule lumen proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4084", - "label": "Regulation of protein ISGylation by ISG15 deconjugating enzyme USP18", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4083", - "label": "CCNH [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4082", - "label": "Transfer of SUMO2 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4081", - "label": "UBE2I [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4080", - "label": "SEC31A:SEC13:SEC23IP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4079", - "label": "Interleukin-1 family are secreted", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "4078", - "label": "Interleukin-1 family [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "4077", - "label": "Expression of CLOCK", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4076", - "label": "2xMyri-IL1A [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4075", - "label": "IL18 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4074", - "label": "chylomicron => TG-depleted chylomicron + 50 long-chain fatty acids + 50 diacylglycerols", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4073", - "label": "PPIA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4072", - "label": "EIF4G1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4071", - "label": "SUMO3:UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4070", - "label": "The receptor:G-protein complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4069", - "label": "Dissociation of RAS:RAF complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4068", - "label": "nascent chylomicron + spherical HDL:apoC-II:apoC-III:apoE =>spherical HDL + chylomicron", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4067", - "label": "nascent chylomicron [extracellular region]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4066", - "label": "IL8 [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4065", - "label": "Dissociation of RAS:RAF1 mutant complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4064", - "label": "chylomicron [extracellular region]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4063", - "label": "RAB1:GTP [endoplasmic reticulum-Golgi intermediate compartment membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4062", - "label": "p-4Y-PLCG1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4061", - "label": "Dynein:Dynactin:microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4060", - "label": "nascent chylomicron [endoplasmic reticulum lumen] => nascent chylomicron [extracellular]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4059", - "label": "trans-Golgi Network Derived Lysosomal Vesicle Uncoating", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4058", - "label": "Expression of PERIOD-1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "4057", - "label": "DNAJC6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4056", - "label": "OPRM1 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4055", - "label": "E2F7 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4054", - "label": "PTEN gene transcription is stimulated by TP53, EGR1, PPARG, ATF2, MAF1, and inhibited by NR2E1, SALL4, MECOM, SNAI1, SNAI2, JUN", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4053", - "label": "L-Glu [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4052", - "label": "PAXIP1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4051", - "label": "Expression of NPAS2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4050", - "label": "FOSB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4049", - "label": "UMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4048", - "label": "Interleukin-1 family precursors are cleaved by caspase-1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4047", - "label": "CCR4-NOT complex deadenylates mRNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4046", - "label": "p-T202,Y204-MAPK3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4045", - "label": "Transfer of SUMO3 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4044", - "label": "NFKB1(1-433):RELA [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4043", - "label": "Expression of STAT3-upregulated extracellular proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4042", - "label": "Thy-dRib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4041", - "label": "Cyt-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4040", - "label": "(d)CMP, TMP, or (d)UMP + H2O => (deoxy)cytidine, thymidine, or (deoxy)uridine + orthophosphate (NT5C3)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4039", - "label": "Ura-Rib [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "4038", - "label": "Expression of CEBPB in adipogenesis", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4037", - "label": "RNF111 ubiquitinates SUMOylated XPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4036", - "label": "Dissociation of moderate activity BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4035", - "label": "Ub,SUMO:XPC:RAD23:CETN2:Open bubble-dsDNA:PAR-UV-DDB:TFIIH Core:XPA:PAR-PARP1, PAR-PARP2:CHD1L [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4034", - "label": "Dissociation of hp-IRAK1:TRAF6 from the activated TLR:oligo-Myd88:TIRAP:p-IRAK4 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4033", - "label": "p-S,2T-IRAK4:oligo-MyD88:TIRAP:activated TLR receptor [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4032", - "label": "Beta-catenin is released from the destruction complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4031", - "label": "VCP [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4030", - "label": "CREM isoform 6 (ICER1) [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4029", - "label": "Pellino ubiquitinates hp-IRAK1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4028", - "label": "Noradrenaline is converted to adrenaline", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4027", - "label": "40S ribosomal complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4026", - "label": "NF-kappaB p50:c-Rel [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4025", - "label": "PIP3:BTK:G beta-gamma complex dissociates to Active BTK, PIP3 and G beta-gamma complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4024", - "label": "PTEN mRNA translation is inhibited by miR-137", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4023", - "label": "IL1A(1-271) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4022", - "label": "IL1B(1-269) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4021", - "label": "p-Y701-STAT1, p-Y705-STAT3, p-Y649-STAT5 dissociates from IL9:p-Y116-IL9R:JAK1:IL2RG:p-904,939-JAK3:p-Y705-STAT3", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4020", - "label": "p-T,Y MAPKs [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "4019", - "label": "hp-IRAK1:3xK63-polyUb-TRAF6:3xUBE2N:UBE2V1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4018", - "label": "SLC24A1 exchanges 4Na+ for Ca2+, K+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4017", - "label": "CIM [cytosol]", - "databaseLabel": "ChemicalDrug", - "font": { - "color": "#ff9900" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff9900", - "hover": { - "background": "#FFFFFF", - "border": "#ff9900" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff9900" - } - } - }, - { - "id": "4016", - "label": "PPARGC1A [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4015", - "label": "JAK1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4014", - "label": "TGFA(24-98) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "4013", - "label": "Expression of Leptin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4012", - "label": "K+-independent Li+/Ca2+ exchanger transport", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4011", - "label": "Ac-CoA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4010", - "label": "NEDD8 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4009", - "label": "p-4Y-PLCG1 dissociates from activated FGFR3 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4008", - "label": "GRB2-1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4007", - "label": "Glucagon-like Peptide 1 is secreted from intestinal L cells", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "4006", - "label": "NF-KappaB p50:p50:ub-p-IKBA [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4005", - "label": "NF-kappaB p50:p50 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4004", - "label": "MNA [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "4003", - "label": "Phosphorylation of IRAK2 bound to the activated IRAK4:MyD88 oligomer:TIRAP:activated TLR complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "4002", - "label": "STAT1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "4001", - "label": "p-IRAK2:p-IRAK4:oligo-MyD88:TIRAP:activated TLR [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "4000", - "label": "SAR1B:GTP [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3999", - "label": "Dissociation of p-IRAK2:TRAF6 from the activated TLR:oligo-Myd88:TIRAP:p-IRAK4 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3998", - "label": "LPAR1,2,3,5:LPA [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3997", - "label": "p-4Y-PLCG1 dissociates from activated FGFR3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3996", - "label": "PolyUb-Misfolded Proteins [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "3995", - "label": "NF-kappaB p50:p65:ub-p-IKB [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3994", - "label": "Ade-Rib [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3993", - "label": "PolyUb-misfolded nascent CFTR [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3992", - "label": "NF-kB migrates to the nucleus and turns on transcription", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3991", - "label": "IL1B [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3990", - "label": "NF-kappaB p50,p65,c-Rel dimer [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "3989", - "label": "Dissociation of phosphorylated PLCG1 from ligand-responsive p-6Y-EGFR mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3988", - "label": "PXLP-K314-GPT transaminates PYR to form L-Ala", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3987", - "label": "AdoSeMet is converted to AdeSeHCys by MetTrans(1)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3986", - "label": "AGTR1 [clathrin-coated endocytic vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3985", - "label": "PPTN11 dephosphorylates SPRY2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3984", - "label": "PLCG1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3983", - "label": "RIPK3 is phosphorylated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3982", - "label": "RIPK1:RIPK3 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3981", - "label": "Release of L-Glutamate at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3980", - "label": "AVP(20-28) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3979", - "label": "JUN binds the PTEN gene promoter", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3978", - "label": "Disassembly of COPII coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3977", - "label": "CEBPB [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3976", - "label": "SCF-beta-TrCP ubiquitinylates IkB", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3975", - "label": "FGFR1OP-FGFR1 phosphorylates STAT1 and STAT3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3974", - "label": "PC is transphosphatidylated to PG by PLD1-4/6", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3973", - "label": "ADR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "3972", - "label": "GYS1 catalyzes the incorporation of phosphoglucose into glycogen-GYG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3971", - "label": "EP300 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3970", - "label": "Phosphorylated STAT3 Dimer Translocates to the Nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3969", - "label": "Cho [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3968", - "label": "COPII vesicle with MHC class I [ER to Golgi transport vesicle membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3967", - "label": "SAA1(19-122) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3966", - "label": "p-Y705-STAT3 dimer [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3965", - "label": "CCPs deglutamylate tubulin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3964", - "label": "Vesicle budding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "3963", - "label": "HCMV Nuclear Pore Docking", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3962", - "label": "Estrogen-responsive MYC gene expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3961", - "label": "Budding of COPII coated vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3960", - "label": "COPI vesicle uncoating at the ER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3959", - "label": "RAB1:GTP:coatomer:p24 dimers:SEC22B:cargo:NBAS:RINT1:ZW10:STX18:USE1L:BNIP1 [endoplasmic reticulum membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3958", - "label": "2OG [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3957", - "label": "JUN:PTEN gene [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3956", - "label": "L-Glu [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3955", - "label": "RIPK3 binds RIPK1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3954", - "label": "eIF2:GTP is hydrolyzed, eIFs are released", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3953", - "label": "SOCS2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3952", - "label": "RAB6:GTP displaces PAFAH1B1 from dynein:dynactin complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3951", - "label": "OPRM1 gene expression is repressed by MECP2", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3950", - "label": "TGFA precursor [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3949", - "label": "PYR [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3948", - "label": "E2F1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3947", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3946", - "label": "p-Y705-STAT3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3945", - "label": "Dissociation of Rho GTP:GDP from GDI complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3944", - "label": "Phosphorylation of 4E-BP1 by activated mTORC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3943", - "label": "AREG precursor [endoplasmic reticulum membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3942", - "label": "ATP2B1-4 transport cytosolic Ca2+ to extracellular region", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3941", - "label": "PPARG [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3940", - "label": "Deacetylation of cleaved cohesin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3939", - "label": "Cleaved Cohesin:PDS5:WAPAL [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3938", - "label": "SIK1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3937", - "label": "phosphoenolpyruvate + ADP => pyruvate + ATP", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3936", - "label": "RHOA:GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3935", - "label": "NOB1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3934", - "label": "The Ligand:GPCR:Gq complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3933", - "label": "CPLX1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3932", - "label": "MON1:CCZ1 exchanges GTP for GDP on RAB7", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3931", - "label": "CASR:Ca2+ [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3930", - "label": "Active PLC-gamma1 dissociates from EGFR", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3929", - "label": "Release of GABA at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3928", - "label": "CXCR4 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3927", - "label": "ARHGDIA [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3926", - "label": "Myr82K-Myr83K-IL1A [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3925", - "label": "p-4Y-PLCG1 dissociates from activated FGFR2 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3924", - "label": "AcCho [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3923", - "label": "Cho is acetylated to AcCho by CHAT", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3922", - "label": "Transamination of MOB to methionine", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3921", - "label": "Digestion of diacylglycerols by extracellular PTL:colipase", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3920", - "label": "(d)CMP, TMP, or (d)UMP + H2O => (deoxy)cytidine, thymidine, or (deoxy)uridine + orthophosphate (NT5C1A)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3919", - "label": "GPR84 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3918", - "label": "MCHR1,MCHR2:PMCH(147-165) [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3917", - "label": "L-amino acid [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3916", - "label": "RNF4 ubiquitinates MDC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3915", - "label": "AREG(101-187) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3914", - "label": "TMED2:TMED10 tetramer:GPI-CD59, GPI-FOLR1 [endoplasmic reticulum-Golgi intermediate compartment membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3913", - "label": "NMUR1,NMUR2:NMU [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3912", - "label": "PolyUb:misfolded proteins dissociate from PRKN:UBE2N:UBE2V1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3911", - "label": "TMP, uridine 2', 3', or 5' monophosphates, or deoxyuridine 3' or 5' monophosphates + H2O => thymidine or (deoxy)uridine + orthophosphate [NT5C]", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3910", - "label": "K48polyUb-antigenic substrate [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "3909", - "label": "p-BMAL1:p-CLOCK,NPAS2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3908", - "label": "G-protein beta-gamma complex [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3907", - "label": "p-IRAK2 [endosome membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3906", - "label": "Exocytosis of specific granule membrane proteins", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3905", - "label": "PTEN mRNA translation is negatively regulated by microRNAs", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3904", - "label": "FGL2 [ficolin-1-rich granule lumen]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3903", - "label": "BTRC [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3902", - "label": "PTAFR [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3901", - "label": "Vesicle is tethered through binding GOLGA2:GORASP1, GOLGB1 and the COG complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3900", - "label": "RAB1:GTP:USO1:coatomer:PalmC-YKT6:p24 dimers:cargo:spectrin:anykrin [transport vesicle]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3899", - "label": "Dissociation of oncogenic RAS:RAF complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3898", - "label": "DNA DNA DSBs:p-MRN:p-S1981,Ac-K3016-ATM:KAT5:K63PolyUb-K14,K16,p-S139-H2AFX,Me2K21-HIST1H4A-Nucleosome:SUMO2:K1840,p-5T-MDC1:p-S102-WHSC1:RNF8:Zn2+:SUMO1:p-T4827-HERC2:UBE2N:UBE2V2:RNF168:PIAS4:p-S25,S1778-TP53BP1:p-5S,2T-BRCA1-A complex [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3897", - "label": "Release of p-PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3896", - "label": "Stimulation of IL8 transcription in senescent cells", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3895", - "label": "G-protein alpha (i):GDP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3894", - "label": "Dissociation of phosphorylated PLC-gamma 1 from p-EGFRvIII mutant", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3893", - "label": "p-4Y-PLCG1 dissociates from activated FGFR2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3892", - "label": "Negative regulation of DDX58/IFIH1 signaling by RNF216", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3891", - "label": "Phosphorylated heterodimers of ERBB2 KD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3890", - "label": "PolyUb-Misfolded cilia proteins [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "3889", - "label": "PolyUb-Misfolded CETN1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3888", - "label": "PPARG:Fatty Acid:RXRA:Mediator:Coactivator Complex [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3887", - "label": "Retinoic acid activates HOXB1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3886", - "label": "GDI1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3885", - "label": "RNF8:Zn2+ [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3884", - "label": "KIFC1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3883", - "label": "NF-kappaB translocates from the cytosol to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3882", - "label": "K48PolyUb-K21,22-p-S32,36-IkBA:NF-kB complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3881", - "label": "HDAC3 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3880", - "label": "Release of E3 from polyubiquitinated substrate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3879", - "label": "Separation of sister chromatids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3878", - "label": "Fatty acid ligands activate PPARA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3877", - "label": "Dissociation of hp-IRAK1/or IRAK2:TRAF6-oligomer from the p-IRAK4 :oligo-Myd88:activated TLR7/8 or 9 complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3876", - "label": "p-S,2T-IRAK4:oligo-MyD88:activated TLR7/8 or 9 receptor [endosome membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3875", - "label": "Equilibrative transport (export) of adenosine and biogenic amines by solute carrier family 29 (nucleoside transporters), member 4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3874", - "label": "Phosphorylation and activation of PLCG due to FCGR3A effect", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3873", - "label": "Proteasomal cleavage of substrate", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3872", - "label": "p-Y-STATs translocate to nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3871", - "label": "Dissociation of high activity BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3870", - "label": "AcCho [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3869", - "label": "p-4Y-PLCG1 dissociates from activated FGFR4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3868", - "label": "Acyl Ghrelin and C-Ghrelin are secreted", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3867", - "label": "SLC8A1,2,3 exchange 3Na+ for Ca2+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3866", - "label": "p190RhoGEF exchanges GTP for GDP on RHOA, activating it", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3865", - "label": "Release of docked serotonin loaded synaptic vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3864", - "label": "Aquaporins passively transport glycerol into cells", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3863", - "label": "STXBP1-1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3862", - "label": "Phosphorylation of CTLA-4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3861", - "label": "p-Y705-STAT3 dimer translocates from cytosol to nucleoplasm", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3860", - "label": "Fusion of viral membrane with host cell membrane", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3859", - "label": "Viral core surrounded by Matrix layer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3858", - "label": "p-Y-STATs dissociate", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3857", - "label": "N-acetylation of serotonin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3856", - "label": "SLC7A11-mediated exchange of extracellular cysteine and cytosolic glutamate", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3855", - "label": "E2F7 and E2F8 homo- and heterodimers inhibit E2F1 expression", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3854", - "label": "UBE2N:UBE2V1 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3853", - "label": "p-4Y-PLCG1 dissociates from activated FGFR4 mutants", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3852", - "label": "BMAL1:CLOCK,NPAS2 heterodimer is phosphorylated and translocates to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3851", - "label": "DNA DSB:p-MRN:p-S1981,Ac-K3016-ATM:KAT5 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3850", - "label": "myristoylated nef [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3849", - "label": "SPRY2 binds CBL", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3848", - "label": "Expression of BMAL1 (ARNTL).", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3847", - "label": "p115-RhoGEF activation of RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3846", - "label": "ARFGAPs stimulate ARF GTPase activity", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3845", - "label": "BET1:GOSR2:STX5 bind v-SNARES on tethered vesicle", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3844", - "label": "Phosphorylated heterodimers of ERBB2 ECD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3843", - "label": "OAT1-3 transport organic anions with antiport of dicarboxylic acids", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3842", - "label": "18SE pre-rRNA in pre-40S particles is nucleolytically processed during translocation from the nucleus to the cytosol", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3841", - "label": "Ca2+ [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3840", - "label": "GDI2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3839", - "label": "NNMT transfers CH3 from SAM to NAM to form MNA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3838", - "label": "PI(3,4,5)P3 [plasma membrane]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3837", - "label": "The Ligand:GPCR:Gi complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3836", - "label": "MyrG-p-Y419-SRC [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3835", - "label": "MYC [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3834", - "label": "The Ligand:GPCR:Gs complex dissociates", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3833", - "label": "SLC24A1-4 exchange extracellular 4Na+ for cytosolic Ca2+, K+", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3832", - "label": "SNAP25 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3831", - "label": "PTHLH [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3830", - "label": "Recovery of RNA synthesis after TC-NER", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3829", - "label": "Dissociation of clathrin-associated proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3828", - "label": "NFKB1:RELA translocates from the cytosol to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3827", - "label": "NFKB1(1-433):RELA [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3826", - "label": "Cytosolic DUSPs dephosphorylate MAPKs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3825", - "label": "SAR1 Activation And Membrane Binding", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3824", - "label": "SAR1B:GDP [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3823", - "label": "SAR1B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3822", - "label": "FPR2:FPR2 ligands [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3821", - "label": "FPR2 [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3820", - "label": "VCPKMT (METTL21D) transfers 3xCH3 from 3xAdoMet to VCP", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3819", - "label": "Glycerol [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3818", - "label": "PIAS4 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3817", - "label": "Polyglutamylated microtubule [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3816", - "label": "Processing of caspases", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3815", - "label": "26S proteasome processes K48PolyUb-K21,22-p-S32,36-IkBA:NF-kB complex to form NF-kB complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3814", - "label": "Transfer of SUMO1 from E1 to UBE2I (UBC9)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3813", - "label": "ARRB1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3812", - "label": "Acyl Ghrelin [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "3811", - "label": "O-octanoyl-L-serine-GHRL-1(24-50) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3810", - "label": "Release of PLCG from FCGR3A", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3809", - "label": "IgG:Leishmania surface:p-FCGR3A:p-6Y-SYK:p-3Y-PLCG [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3808", - "label": "Loss of SAR1B GTPase", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3807", - "label": "Dissociation of the Gi alpha:G olf complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3806", - "label": "Activated NTRK3 stimulates PI3K activity", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3805", - "label": "TGFA precursor [ER to Golgi transport vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3804", - "label": "GNAL [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3803", - "label": "PIAS4 SUMOylates NR4A2 with SUMO2,3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3802", - "label": "Digestion of monoacylglycerols by extracellular CEL (bile salt-dependent lipase)", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3801", - "label": "glycerol [extracellular region]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3800", - "label": "AREG precursor [ER to Golgi transport vesicle membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3799", - "label": "TLR2 [secretory granule membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3798", - "label": "PolyUb-Misfolded IFT88 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3797", - "label": "CLOCK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3796", - "label": "RNF152 polyubiquitinates RRAGA", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3795", - "label": "ARNTL [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3794", - "label": "NPAS2 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3793", - "label": "UBE2N:UBE2V2 [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3792", - "label": "p-S102-WHSC1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3791", - "label": "Ca2+ [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3790", - "label": "CASP8(217-374) [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3789", - "label": "RhoA is activated by nucleotide exchange and inhibits axonal growth", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3788", - "label": "Equilibrative transport (export) of nucleosides and free bases by solute carrier family 29 (nucleoside transporters), member 2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3787", - "label": "PPARG:RXRA heterodimer binds to fatty acid-like ligands", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3786", - "label": "RHOA:GTP [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3785", - "label": "GYS2 catalyzes the incorporation of phosphoglucose into glycogen-GYG2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3784", - "label": "Transfer of NEDD8 to AcM-UBE2M", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3783", - "label": "NGEF exchanges GTP for GDP on RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3782", - "label": "SEC13 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3781", - "label": "TRAF3 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3780", - "label": "Caspase-8 cleaves IL1B precursor", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3779", - "label": "TRAF6 binding leads to IRAK1:TRAF6 release", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3778", - "label": "Association of Ku heterodimer with ends of DNA double-strand break", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3777", - "label": "NCOR1 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3776", - "label": "PolyUb-Misfolded Proteins:HDAC6 dissociate from complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3775", - "label": "p-2S,S376,T,T209,T387-IRAK1:TRAF6 [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3774", - "label": "Ac5HT [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3773", - "label": "NR4A2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3772", - "label": "p-Y705-STAT3 dimer, p-Y641-STAT6 dimer translocate to nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3771", - "label": "Dissociation of paradoxically activated RAS:BRAF complexes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3770", - "label": "p-Y641-STAT6 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3769", - "label": "PIAS4 SUMOylates MDC1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3768", - "label": "LEP [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3767", - "label": "CGA [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3766", - "label": "SUMO2:UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3765", - "label": "Methylation of N-acetyl-5-HT to form melatonin", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3764", - "label": "TRPs transport extracellular Ca2+ to cytosol", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3763", - "label": "CBL [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3762", - "label": "TRAF6 ubiquitinqtes IRF7 within the activated TLR7/8 or 9 complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3761", - "label": "SRC autophosphorylation is positively regulated by InlA-bound CDH1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3760", - "label": "STAT1 and STAT3 dimers translocate to the nucleus", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3759", - "label": "WNT5A:FZD4 is endocytosed", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3758", - "label": "viral dsRNA:IFIH1, viral dsRNA:K63polyUb-DDX58:MAVS [mitochondrial outer membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3757", - "label": "p-Y701-STAT1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3756", - "label": "The p75NTR:NgR:MDGI complex reduces RHOA-GDI activity, displacing RHOA", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3755", - "label": "Retrograde vesicle is tethered at the ER by the NRZ complex and t-SNAREs", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3754", - "label": "TNFRSF1B [plasma membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3753", - "label": "AP-2 Complex [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3752", - "label": "Overexpressed HIST1H2AC and ESR1:ESTG bind MYC and BCL2 genes", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3751", - "label": "UBE2N [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3750", - "label": "Nef mediated disruption of CD4:Lck Complex", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3749", - "label": "PolyUb-Misfolded ARL13B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3748", - "label": "Degradation of CD4", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3747", - "label": "Release of acetylcholine at the synapse", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3746", - "label": "BTRC:CUL1:SKP1 (SCF-beta-TrCP1) ubiquitinylates PER proteins", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3745", - "label": "TRAF6 is K63 poly-ubiquitinated", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3744", - "label": "Acetylcholine Loaded Synaptic Vesicle [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3743", - "label": "PTEN mRNA translation negatively regulated by microRNAs", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3742", - "label": "PTEN mRNA [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3741", - "label": "Retinoic acid activates HOXD4 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3740", - "label": "SUMO1:C93-UBE2I [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3739", - "label": "G-proteins dissociate from plasma-membrane estrogen receptors", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3738", - "label": "Expression of PPARG", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3737", - "label": "RNF168 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3736", - "label": "TGFBR2 is recruited to tight junctions after TGF-beta stimulation", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3735", - "label": "Retinoic acid activates HOXA1 chromatin", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3734", - "label": "SPAST (spastin) mediates the severing of microtubules at chromosome attachment sites", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3733", - "label": "CSNK1D phosphorylates SEC23", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "3732", - "label": "cIAP1,2 ubiquitinates NIK in cIAP1,2:TRAF2::TRAF3:NIK", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3731", - "label": "beta-TRCP ubiquitinates IkB-alpha in p-S32,33-IkB-alpha:NF-kB complex", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3730", - "label": "TNFRSF1B [specific granule membrane]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3729", - "label": "GMP [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3728", - "label": "MYC gene expression is enhanced by E2F1, STAT3, and CEBPB and repressed by CEBPA", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3727", - "label": "EIF4B [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3726", - "label": "Histone H2A [nucleoplasm]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "3725", - "label": "TRAF6:hp-IRAK1 [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3724", - "label": "NMUR2:NMS [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3723", - "label": "mature GLP-1 [extracellular region]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "3722", - "label": "GLP-1 (7-37) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3721", - "label": "USO1 homodimer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3720", - "label": "ArgN-GCG(98-127) [extracellular region]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3719", - "label": "RIMS1:UNC13B:BZRAP1:Alpha-liprin [plasma membrane]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3718", - "label": "RIMS1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3717", - "label": "UBE2N:UBE2V1 dissociates from hp-IRAK1:3xK63-polyUb-TRAF6:3xUBE2N:UBE2V1", - "databaseLabel": "BlackBoxEvent", - "font": { - "color": "#9999ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#9999ff", - "hover": { - "background": "#FFFFFF", - "border": "#9999ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#9999ff" - } - } - }, - { - "id": "3716", - "label": "mature mRNA (eukaryotic, capped and deadenylated) [cytosol]", - "databaseLabel": "DatabaseObject", - "font": { - "color": "#0a96b4" - }, - "color": { - "background": "#FFFFFF", - "border": "#0a96b4", - "hover": { - "background": "#FFFFFF", - "border": "#0a96b4" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0a96b4" - } - } - }, - { - "id": "3715", - "label": "L-Met [cytosol]", - "databaseLabel": "SimpleEntity", - "font": { - "color": "#43bf49" - }, - "color": { - "background": "#FFFFFF", - "border": "#43bf49", - "hover": { - "background": "#FFFFFF", - "border": "#43bf49" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#43bf49" - } - } - }, - { - "id": "3714", - "label": "Exosome Complex hydrolyzes mRNA by 3' to 5' exoribonuclease digestion", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3713", - "label": "MAT1A multimers transfer Ado from ATP to L-Met", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3712", - "label": "SNAI2 [nucleoplasm]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff0000", - "hover": { - "background": "#FFFFFF", - "border": "#ff0000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff0000" - } - } - }, - { - "id": "3711", - "label": "K63PolyUb:K14,K16,p-S139-H2AFX,Me2K21-HIST1H4A-Nucleosome [nucleoplasm]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3710", - "label": "PER1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#0000ff", - "hover": { - "background": "#FFFFFF", - "border": "#0000ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#0000ff" - } - } - }, - { - "id": "3709", - "label": "LCK [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - }, - { - "id": "3708", - "label": "coatomer [cytosol]", - "databaseLabel": "Complex", - "font": { - "color": "#CC0066" - }, - "color": { - "background": "#FFFFFF", - "border": "#CC0066", - "hover": { - "background": "#FFFFFF", - "border": "#CC0066" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#CC0066" - } - } - }, - { - "id": "3707", - "label": "Phosphorylated heterodimers of ERBB2 TMD/JMD mutants and EGFR phosphorylate PLCG1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3706", - "label": "SUMOylation of XPC", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3705", - "label": "PAFAH1B1 [cytosol]", - "databaseLabel": "EntityWithAccessionedSequence", - "font": { - "color": "#ff33ff" - }, - "color": { - "background": "#FFFFFF", - "border": "#ff33ff", - "hover": { - "background": "#FFFFFF", - "border": "#ff33ff" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ff33ff" - } - } - } - ], - "edges": [ - { - "id": "4794", - "label": "572416 (-) 572418", - "from": "4160", - "to": "4157", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4793", - "label": "305153 (-) 299541", - "from": "4159", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4792", - "label": "572417 (-) 572416", - "from": "4158", - "to": "4160", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4791", - "label": "572418 (-) 1031197", - "from": "4157", - "to": "4148", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4790", - "label": "572418 (-) 994566", - "from": "4157", - "to": "4047", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4789", - "label": "492556 (-) 1684105", - "from": "4156", - "to": "3875", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4788", - "label": "6157 (-) 13130", - "from": "4155", - "to": "3776", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4787", - "label": "2068493 (-) 174857", - "from": "4154", - "to": "3819", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4786", - "label": "305167 (-) 299541", - "from": "4153", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4785", - "label": "826382 (-) 492556", - "from": "4152", - "to": "4156", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4784", - "label": "618516 (-) 1035755", - "from": "4151", - "to": "3955", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4783", - "label": "305175 (-) 299541", - "from": "4150", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4782", - "label": "1098777 (-) 303707", - "from": "4149", - "to": "3902", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4781", - "label": "1031197 (-) 992230", - "from": "4148", - "to": "3716", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4780", - "label": "289822 (-) 94950", - "from": "4147", - "to": "3838", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4779", - "label": "289823 (-) 289822", - "from": "4146", - "to": "4147", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4778", - "label": "554016 (-) 826382", - "from": "4145", - "to": "4152", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4777", - "label": "305190 (-) 299541", - "from": "4144", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4776", - "label": "1882150 (-) 2098710", - "from": "4143", - "to": "3932", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4775", - "label": "1341480 (-) 320330", - "from": "4142", - "to": "3777", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4774", - "label": "1412138 (-) 1411783", - "from": "4141", - "to": "3850", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4773", - "label": "616491 (-) 550154", - "from": "4140", - "to": "4044", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4772", - "label": "616491 (-) 616607", - "from": "4140", - "to": "4090", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4771", - "label": "616491 (-) 616843", - "from": "4140", - "to": "3990", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4770", - "label": "616491 (-) 616818", - "from": "4140", - "to": "4005", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4769", - "label": "616491 (-) 616732", - "from": "4140", - "to": "4026", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4768", - "label": "616492 (-) 616491", - "from": "4139", - "to": "4140", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4767", - "label": "616493 (-) 616491", - "from": "4138", - "to": "4140", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4766", - "label": "289835 (-) 289823", - "from": "4137", - "to": "4146", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4765", - "label": "1473583 (-) 1411783", - "from": "4136", - "to": "3850", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4764", - "label": "244783 (-) 243984", - "from": "4135", - "to": "4034", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4763", - "label": "1668145 (-) 251616", - "from": "4134", - "to": "3841", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4762", - "label": "54322 (-) 743241", - "from": "4133", - "to": "3778", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4761", - "label": "127029 (-) 540822", - "from": "4132", - "to": "4093", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4760", - "label": "2131002 (-) 2131705", - "from": "4131", - "to": "3829", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4759", - "label": "2119743 (-) 254746", - "from": "4129", - "to": "3813", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4758", - "label": "955460 (-) 955573", - "from": "4128", - "to": "4079", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4757", - "label": "62537 (-) 743241", - "from": "4127", - "to": "3778", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4756", - "label": "245834 (-) 1205619", - "from": "4126", - "to": "4003", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4755", - "label": "378957 (-) 369394", - "from": "4125", - "to": "3834", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4754", - "label": "2131021 (-) 2131705", - "from": "4124", - "to": "3829", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4753", - "label": "975952 (-) 250984", - "from": "4123", - "to": "4111", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4752", - "label": "975952 (-) 251144", - "from": "4123", - "to": "4046", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4751", - "label": "975952 (-) 251201", - "from": "4123", - "to": "4020", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4750", - "label": "703570 (-) 1410943", - "from": "4122", - "to": "3761", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4749", - "label": "950359 (-) 569211", - "from": "4121", - "to": "3763", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4748", - "label": "1695832 (-) 299067", - "from": "4120", - "to": "4130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4747", - "label": "964698 (-) 144608", - "from": "4119", - "to": "4062", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4746", - "label": "950362 (-) 950359", - "from": "4118", - "to": "4121", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4745", - "label": "247900 (-) 245706", - "from": "4117", - "to": "3725", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4744", - "label": "46171 (-) 703760", - "from": "4116", - "to": "4032", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4743", - "label": "320604 (-) 1430006", - "from": "4115", - "to": "3951", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4742", - "label": "1934430 (-) 1935115", - "from": "4114", - "to": "3817", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4741", - "label": "1084519 (-) 1084321", - "from": "4113", - "to": "3744", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4740", - "label": "243816 (-) 247900", - "from": "4112", - "to": "4117", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4739", - "label": "250984 (-) 392955", - "from": "4111", - "to": "3826", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4738", - "label": "250984 (-) 396709", - "from": "4111", - "to": "3979", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4737", - "label": "6250 (-) 13130", - "from": "4110", - "to": "3776", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4736", - "label": "1911913 (-) 978264", - "from": "4109", - "to": "4010", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4735", - "label": "500848 (-) 492556", - "from": "4108", - "to": "4156", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4734", - "label": "1387634 (-) 1388332", - "from": "4107", - "to": "3802", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4733", - "label": "916596 (-) 917308", - "from": "4106", - "to": "3785", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4732", - "label": "916596 (-) 916923", - "from": "4106", - "to": "3972", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4731", - "label": "1376373 (-) 1387047", - "from": "4105", - "to": "3921", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4730", - "label": "322680 (-) 321865", - "from": "4104", - "to": "4016", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4729", - "label": "826488 (-) 557190", - "from": "4103", - "to": "4099", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4728", - "label": "314489 (-) 299541", - "from": "4102", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4727", - "label": "1338496 (-) 301477", - "from": "4101", - "to": "3980", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4726", - "label": "8325 (-) 1934430", - "from": "4100", - "to": "4114", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4725", - "label": "8325 (-) 638896", - "from": "4100", - "to": "3734", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4724", - "label": "557190 (-) 792292", - "from": "4099", - "to": "3839", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4723", - "label": "557190 (-) 834838", - "from": "4099", - "to": "4028", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4722", - "label": "8327 (-) 1935831", - "from": "4098", - "to": "3965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4721", - "label": "160903 (-) 1382672", - "from": "4097", - "to": "4038", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4720", - "label": "258188 (-) 1793199", - "from": "4096", - "to": "4084", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4719", - "label": "1867917 (-) 1871665", - "from": "4095", - "to": "3796", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4718", - "label": "540820 (-) 792292", - "from": "4094", - "to": "3839", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4717", - "label": "540820 (-) 798102", - "from": "4094", - "to": "3987", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4716", - "label": "540822 (-) 540820", - "from": "4093", - "to": "4094", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4715", - "label": "1035416 (-) 2085752", - "from": "4092", - "to": "3764", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4714", - "label": "571548 (-) 571803", - "from": "4091", - "to": "3985", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4713", - "label": "616607 (-) 617080", - "from": "4090", - "to": "3883", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4712", - "label": "422049 (-) 573953", - "from": "4089", - "to": "3944", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4711", - "label": "133281 (-) 1484122", - "from": "4088", - "to": "4009", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4710", - "label": "133281 (-) 1485345", - "from": "4088", - "to": "3925", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4709", - "label": "133281 (-) 1485501", - "from": "4088", - "to": "3853", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4708", - "label": "133281 (-) 289149", - "from": "4088", - "to": "3997", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4707", - "label": "133281 (-) 291429", - "from": "4088", - "to": "3893", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4706", - "label": "133281 (-) 291483", - "from": "4088", - "to": "3869", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4705", - "label": "255142 (-) 974036", - "from": "4087", - "to": "4065", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4704", - "label": "255142 (-) 973072", - "from": "4087", - "to": "4036", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4703", - "label": "255142 (-) 971358", - "from": "4087", - "to": "3899", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4702", - "label": "255142 (-) 973669", - "from": "4087", - "to": "3771", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4701", - "label": "255142 (-) 972439", - "from": "4087", - "to": "3871", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4700", - "label": "255142 (-) 975952", - "from": "4087", - "to": "4123", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4699", - "label": "255142 (-) 252110", - "from": "4087", - "to": "4069", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4698", - "label": "616621 (-) 616491", - "from": "4086", - "to": "4140", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4697", - "label": "1116334 (-) 593090", - "from": "4085", - "to": "4073", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4696", - "label": "1793199 (-) 149916", - "from": "4084", - "to": "3984", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4695", - "label": "1793199 (-) 286028", - "from": "4084", - "to": "4015", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4694", - "label": "1793199 (-) 570743", - "from": "4084", - "to": "4002", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4693", - "label": "92336 (-) 1243896", - "from": "4083", - "to": "3830", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4692", - "label": "923825 (-) 77681", - "from": "4082", - "to": "3766", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4691", - "label": "64690 (-) 1886473", - "from": "4081", - "to": "4045", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4690", - "label": "64690 (-) 923825", - "from": "4081", - "to": "4082", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4689", - "label": "64690 (-) 67353", - "from": "4081", - "to": "3814", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4688", - "label": "887987 (-) 888278", - "from": "4080", - "to": "3964", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4687", - "label": "955573 (-) 952711", - "from": "4079", - "to": "3991", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4686", - "label": "955574 (-) 955573", - "from": "4078", - "to": "4079", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4685", - "label": "324791 (-) 321329", - "from": "4077", - "to": "3797", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4684", - "label": "955575 (-) 955573", - "from": "4076", - "to": "4079", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4683", - "label": "955580 (-) 955573", - "from": "4075", - "to": "4079", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4682", - "label": "1662144 (-) 1376373", - "from": "4074", - "to": "4105", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4681", - "label": "593090 (-) 1411759", - "from": "4073", - "to": "3860", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4680", - "label": "573635 (-) 994566", - "from": "4072", - "to": "4047", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4679", - "label": "573635 (-) 1031197", - "from": "4072", - "to": "4148", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4678", - "label": "1238218 (-) 1238006", - "from": "4071", - "to": "3706", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4677", - "label": "1538253 (-) 293444", - "from": "4070", - "to": "3908", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4676", - "label": "252110 (-) 251201", - "from": "4069", - "to": "4020", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4675", - "label": "252110 (-) 251144", - "from": "4069", - "to": "4046", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4674", - "label": "252110 (-) 250984", - "from": "4069", - "to": "4111", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4673", - "label": "1661135 (-) 1661142", - "from": "4068", - "to": "4064", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4672", - "label": "1661136 (-) 1661135", - "from": "4067", - "to": "4068", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4671", - "label": "333006 (-) 331494", - "from": "4066", - "to": "3837", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4670", - "label": "974036 (-) 251144", - "from": "4065", - "to": "4046", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4669", - "label": "974036 (-) 251201", - "from": "4065", - "to": "4020", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4668", - "label": "974036 (-) 250984", - "from": "4065", - "to": "4111", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4667", - "label": "1661142 (-) 1662144", - "from": "4064", - "to": "4074", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4666", - "label": "877790 (-) 877267", - "from": "4063", - "to": "3846", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4665", - "label": "144608 (-) 151325", - "from": "4062", - "to": "3810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4664", - "label": "144608 (-) 289822", - "from": "4062", - "to": "4147", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4663", - "label": "875746 (-) 2111986", - "from": "4061", - "to": "3952", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4662", - "label": "1661155 (-) 1661136", - "from": "4060", - "to": "4067", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4661", - "label": "2117860 (-) 254746", - "from": "4059", - "to": "3813", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4660", - "label": "1337573 (-) 1337326", - "from": "4058", - "to": "3710", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4659", - "label": "2117862 (-) 2119743", - "from": "4057", - "to": "4129", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4658", - "label": "2117862 (-) 2117860", - "from": "4057", - "to": "4059", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4657", - "label": "336103 (-) 331494", - "from": "4056", - "to": "3837", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4656", - "label": "336103 (-) 1538253", - "from": "4056", - "to": "4070", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4655", - "label": "988389 (-) 988852", - "from": "4055", - "to": "3855", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4654", - "label": "226535 (-) 225188", - "from": "4054", - "to": "3742", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4653", - "label": "261355 (-) 299541", - "from": "4053", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4652", - "label": "743664 (-) 1341480", - "from": "4052", - "to": "4142", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4651", - "label": "743664 (-) 1341349", - "from": "4052", - "to": "3741", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4650", - "label": "743664 (-) 1341038", - "from": "4052", - "to": "3887", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4649", - "label": "743664 (-) 1340336", - "from": "4052", - "to": "3735", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4648", - "label": "324862 (-) 321328", - "from": "4051", - "to": "3794", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4647", - "label": "660736 (-) 2062814", - "from": "4050", - "to": "3962", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4646", - "label": "504065 (-) 504078", - "from": "4049", - "to": "4040", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4645", - "label": "504065 (-) 504360", - "from": "4049", - "to": "3920", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4644", - "label": "504065 (-) 504377", - "from": "4049", - "to": "3911", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4643", - "label": "955652 (-) 955580", - "from": "4048", - "to": "4075", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4642", - "label": "955652 (-) 955574", - "from": "4048", - "to": "4078", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4641", - "label": "955652 (-) 955460", - "from": "4048", - "to": "4128", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4640", - "label": "994566 (-) 992230", - "from": "4047", - "to": "3716", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4639", - "label": "251144 (-) 392955", - "from": "4046", - "to": "3826", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4638", - "label": "251144 (-) 396709", - "from": "4046", - "to": "3979", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4637", - "label": "1886473 (-) 1238218", - "from": "4045", - "to": "4071", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4636", - "label": "550154 (-) 617080", - "from": "4044", - "to": "3883", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4635", - "label": "550154 (-) 550650", - "from": "4044", - "to": "3828", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4634", - "label": "550154 (-) 646528", - "from": "4044", - "to": "3992", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4633", - "label": "1806603 (-) 378957", - "from": "4043", - "to": "4125", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4632", - "label": "1806603 (-) 310723", - "from": "4043", - "to": "3967", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4631", - "label": "504076 (-) 1684283", - "from": "4042", - "to": "3788", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4630", - "label": "504076 (-) 1682942", - "from": "4042", - "to": "3947", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4629", - "label": "504077 (-) 1682942", - "from": "4041", - "to": "3947", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4628", - "label": "504077 (-) 1684283", - "from": "4041", - "to": "3788", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4627", - "label": "504078 (-) 504076", - "from": "4040", - "to": "4042", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4626", - "label": "504078 (-) 504077", - "from": "4040", - "to": "4041", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4625", - "label": "504078 (-) 504075", - "from": "4040", - "to": "4039", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4624", - "label": "504075 (-) 1682942", - "from": "4039", - "to": "3947", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4623", - "label": "504075 (-) 1684283", - "from": "4039", - "to": "3788", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4622", - "label": "1382672 (-) 441773", - "from": "4038", - "to": "3977", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4621", - "label": "1237263 (-) 55093", - "from": "4037", - "to": "3793", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4620", - "label": "973072 (-) 251144", - "from": "4036", - "to": "4046", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4619", - "label": "973072 (-) 251201", - "from": "4036", - "to": "4020", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4618", - "label": "973072 (-) 250984", - "from": "4036", - "to": "4111", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4617", - "label": "1237265 (-) 1237263", - "from": "4035", - "to": "4037", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4616", - "label": "243984 (-) 245706", - "from": "4034", - "to": "3725", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4615", - "label": "243987 (-) 243984", - "from": "4033", - "to": "4034", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4614", - "label": "703760 (-) 703570", - "from": "4032", - "to": "4122", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4613", - "label": "13588 (-) 1884935", - "from": "4031", - "to": "3820", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4612", - "label": "1337624 (-) 1337573", - "from": "4030", - "to": "4058", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4611", - "label": "1205524 (-) 14012", - "from": "4029", - "to": "3854", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4610", - "label": "834838 (-) 835002", - "from": "4028", - "to": "3973", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4609", - "label": "814361 (-) 1952238", - "from": "4027", - "to": "3954", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4608", - "label": "616732 (-) 617080", - "from": "4026", - "to": "3883", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4607", - "label": "1522976 (-) 293444", - "from": "4025", - "to": "3908", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4606", - "label": "1429803 (-) 127029", - "from": "4024", - "to": "4132", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4605", - "label": "955702 (-) 955652", - "from": "4023", - "to": "4048", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4604", - "label": "955707 (-) 955652", - "from": "4022", - "to": "4048", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4603", - "label": "955707 (-) 1156931", - "from": "4022", - "to": "3780", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4602", - "label": "1046846 (-) 570878", - "from": "4021", - "to": "3946", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4601", - "label": "251201 (-) 392955", - "from": "4020", - "to": "3826", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4600", - "label": "241990 (-) 958434", - "from": "4019", - "to": "3717", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4599", - "label": "1534279 (-) 251616", - "from": "4018", - "to": "3841", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4598", - "label": "1695048 (-) 1695832", - "from": "4017", - "to": "4120", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4597", - "label": "321865 (-) 1382736", - "from": "4016", - "to": "4013", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4596", - "label": "286028 (-) 1046846", - "from": "4015", - "to": "4021", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4595", - "label": "286028 (-) 1807026", - "from": "4015", - "to": "3858", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4594", - "label": "101711 (-) 1490324", - "from": "4014", - "to": "3989", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4593", - "label": "101711 (-) 1490531", - "from": "4014", - "to": "3894", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4592", - "label": "101711 (-) 291357", - "from": "4014", - "to": "3930", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4591", - "label": "1382736 (-) 327533", - "from": "4013", - "to": "3768", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4590", - "label": "1681748 (-) 251616", - "from": "4012", - "to": "3841", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4589", - "label": "193879 (-) 1083941", - "from": "4011", - "to": "3923", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4588", - "label": "193879 (-) 836276", - "from": "4011", - "to": "3857", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4587", - "label": "193879 (-) 193037", - "from": "4011", - "to": "3937", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4586", - "label": "978264 (-) 1916734", - "from": "4010", - "to": "3784", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4585", - "label": "1484122 (-) 144608", - "from": "4009", - "to": "4062", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4584", - "label": "132458 (-) 1214047", - "from": "4008", - "to": "3897", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4583", - "label": "1949040 (-) 374742", - "from": "4007", - "to": "3723", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4582", - "label": "1949040 (-) 374754", - "from": "4007", - "to": "3720", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4581", - "label": "1949040 (-) 374743", - "from": "4007", - "to": "3722", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4580", - "label": "616817 (-) 616491", - "from": "4006", - "to": "4140", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4579", - "label": "616818 (-) 617080", - "from": "4005", - "to": "3883", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4578", - "label": "791922 (-) 1695832", - "from": "4004", - "to": "4120", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4577", - "label": "1205619 (-) 1205623", - "from": "4003", - "to": "4001", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4576", - "label": "570743 (-) 1482169", - "from": "4002", - "to": "3975", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4575", - "label": "1205623 (-) 1205624", - "from": "4001", - "to": "3999", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4574", - "label": "883065 (-) 1200606", - "from": "4000", - "to": "3961", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4573", - "label": "1205624 (-) 243987", - "from": "3999", - "to": "4033", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4572", - "label": "302460 (-) 299541", - "from": "3998", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4571", - "label": "289149 (-) 144608", - "from": "3997", - "to": "4062", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4570", - "label": "5502 (-) 13130", - "from": "3996", - "to": "3776", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4569", - "label": "616831 (-) 616491", - "from": "3995", - "to": "4140", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4568", - "label": "330112 (-) 369394", - "from": "3994", - "to": "3834", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4567", - "label": "5503 (-) 13130", - "from": "3993", - "to": "3776", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4566", - "label": "646528 (-) 550651", - "from": "3992", - "to": "3827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4565", - "label": "952711 (-) 958275", - "from": "3991", - "to": "3779", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4564", - "label": "616843 (-) 617080", - "from": "3990", - "to": "3883", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4563", - "label": "1490324 (-) 144608", - "from": "3989", - "to": "4062", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4562", - "label": "193941 (-) 191969", - "from": "3988", - "to": "3958", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4561", - "label": "798102 (-) 791922", - "from": "3987", - "to": "4004", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4560", - "label": "2131348 (-) 2131705", - "from": "3986", - "to": "3829", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4559", - "label": "571803 (-) 132458", - "from": "3985", - "to": "4008", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4558", - "label": "149916 (-) 1488882", - "from": "3984", - "to": "3707", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4557", - "label": "149916 (-) 1489512", - "from": "3984", - "to": "3891", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4556", - "label": "149916 (-) 964698", - "from": "3984", - "to": "4119", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4555", - "label": "149916 (-) 1489627", - "from": "3984", - "to": "3844", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4554", - "label": "149916 (-) 289835", - "from": "3984", - "to": "4137", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4553", - "label": "149916 (-) 157322", - "from": "3984", - "to": "3874", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4552", - "label": "1035681 (-) 1035416", - "from": "3983", - "to": "4092", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4551", - "label": "1035683 (-) 1035681", - "from": "3982", - "to": "3983", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4550", - "label": "1065380 (-) 351918", - "from": "3981", - "to": "3863", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4549", - "label": "1065380 (-) 352790", - "from": "3981", - "to": "3933", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4548", - "label": "1065380 (-) 353251", - "from": "3981", - "to": "3719", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4547", - "label": "1065380 (-) 261355", - "from": "3981", - "to": "4053", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4546", - "label": "301477 (-) 369394", - "from": "3980", - "to": "3834", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4545", - "label": "301477 (-) 299541", - "from": "3980", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4544", - "label": "396709 (-) 232930", - "from": "3979", - "to": "3957", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4543", - "label": "1200554 (-) 43842", - "from": "3978", - "to": "3782", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4542", - "label": "441773 (-) 1382312", - "from": "3977", - "to": "3738", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4541", - "label": "616886 (-) 616493", - "from": "3976", - "to": "4138", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4540", - "label": "616886 (-) 616831", - "from": "3976", - "to": "3995", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4539", - "label": "616886 (-) 616621", - "from": "3976", - "to": "4086", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4538", - "label": "616886 (-) 616817", - "from": "3976", - "to": "4006", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4537", - "label": "616886 (-) 616492", - "from": "3976", - "to": "4139", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4536", - "label": "1482169 (-) 570878", - "from": "3975", - "to": "3946", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4535", - "label": "1482169 (-) 935814", - "from": "3975", - "to": "3757", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4534", - "label": "1853882 (-) 170436", - "from": "3974", - "to": "3969", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4533", - "label": "835002 (-) 1684105", - "from": "3973", - "to": "3875", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4532", - "label": "835002 (-) 1695832", - "from": "3973", - "to": "4120", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4531", - "label": "916923 (-) 504065", - "from": "3972", - "to": "4049", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4530", - "label": "321983 (-) 1382736", - "from": "3971", - "to": "4013", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4529", - "label": "587203 (-) 441814", - "from": "3970", - "to": "3966", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4528", - "label": "170436 (-) 1695832", - "from": "3969", - "to": "4120", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4527", - "label": "1200581 (-) 1200554", - "from": "3968", - "to": "3978", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4526", - "label": "310723 (-) 299541", - "from": "3967", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4525", - "label": "441814 (-) 1806603", - "from": "3966", - "to": "4043", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4524", - "label": "1935831 (-) 191978", - "from": "3965", - "to": "3956", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4523", - "label": "888278 (-) 883456", - "from": "3964", - "to": "3823", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4522", - "label": "1477081 (-) 8325", - "from": "3963", - "to": "4100", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4521", - "label": "2062814 (-) 418544", - "from": "3962", - "to": "3835", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4520", - "label": "1200606 (-) 1200581", - "from": "3961", - "to": "3968", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4519", - "label": "2112990 (-) 874479", - "from": "3960", - "to": "3708", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4518", - "label": "2112991 (-) 2112990", - "from": "3959", - "to": "3960", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4517", - "label": "191969 (-) 1694430", - "from": "3958", - "to": "3843", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4516", - "label": "232930 (-) 226535", - "from": "3957", - "to": "4054", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4515", - "label": "191978 (-) 1673905", - "from": "3956", - "to": "3856", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4514", - "label": "1035755 (-) 1035683", - "from": "3955", - "to": "3982", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4513", - "label": "1952238 (-) 572418", - "from": "3954", - "to": "4157", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4512", - "label": "1952238 (-) 574400", - "from": "3954", - "to": "3727", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4511", - "label": "1952238 (-) 573635", - "from": "3954", - "to": "4072", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4510", - "label": "1798639 (-) 1911913", - "from": "3953", - "to": "4109", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4509", - "label": "2111986 (-) 49150", - "from": "3952", - "to": "3705", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4508", - "label": "1430006 (-) 336103", - "from": "3951", - "to": "4056", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4507", - "label": "882169 (-) 888278", - "from": "3950", - "to": "3964", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4506", - "label": "882169 (-) 883490", - "from": "3950", - "to": "3808", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4505", - "label": "193018 (-) 193941", - "from": "3949", - "to": "3988", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4504", - "label": "398844 (-) 1386423", - "from": "3948", - "to": "3728", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4503", - "label": "1682942 (-) 330112", - "from": "3947", - "to": "3994", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4502", - "label": "570878 (-) 627554", - "from": "3946", - "to": "3772", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4501", - "label": "570878 (-) 1806998", - "from": "3946", - "to": "3872", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4500", - "label": "570878 (-) 1802928", - "from": "3946", - "to": "3861", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4499", - "label": "570878 (-) 935811", - "from": "3946", - "to": "3760", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4498", - "label": "570878 (-) 587203", - "from": "3946", - "to": "3970", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4497", - "label": "2059776 (-) 653856", - "from": "3945", - "to": "3927", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4496", - "label": "573953 (-) 572417", - "from": "3944", - "to": "4158", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4495", - "label": "882178 (-) 883490", - "from": "3943", - "to": "3808", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4494", - "label": "882178 (-) 888278", - "from": "3943", - "to": "3964", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4493", - "label": "1790467 (-) 251616", - "from": "3942", - "to": "3841", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4492", - "label": "232970 (-) 1382736", - "from": "3941", - "to": "4013", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4491", - "label": "637452 (-) 193879", - "from": "3940", - "to": "4011", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4490", - "label": "637453 (-) 637452", - "from": "3939", - "to": "3940", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4489", - "label": "1337870 (-) 1337573", - "from": "3938", - "to": "4058", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4488", - "label": "193037 (-) 193018", - "from": "3937", - "to": "3949", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4487", - "label": "653843 (-) 730789", - "from": "3936", - "to": "3866", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4486", - "label": "653843 (-) 737088", - "from": "3936", - "to": "3783", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4485", - "label": "653843 (-) 1538767", - "from": "3936", - "to": "3847", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4484", - "label": "653843 (-) 654138", - "from": "3936", - "to": "3789", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4483", - "label": "1988115 (-) 1987295", - "from": "3935", - "to": "3842", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4482", - "label": "299541 (-) 299067", - "from": "3934", - "to": "4130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4481", - "label": "352790 (-) 351915", - "from": "3933", - "to": "3865", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4480", - "label": "2098710 (-) 2052724", - "from": "3932", - "to": "3886", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4479", - "label": "2098710 (-) 2052833", - "from": "3932", - "to": "3840", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4478", - "label": "299544 (-) 299541", - "from": "3931", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4477", - "label": "291357 (-) 144608", - "from": "3930", - "to": "4062", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4476", - "label": "357917 (-) 351918", - "from": "3929", - "to": "3863", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4475", - "label": "357917 (-) 352790", - "from": "3929", - "to": "3933", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4474", - "label": "357917 (-) 353252", - "from": "3929", - "to": "3718", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4473", - "label": "343583 (-) 331494", - "from": "3928", - "to": "3837", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4472", - "label": "653856 (-) 654215", - "from": "3927", - "to": "3756", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4471", - "label": "952865 (-) 958275", - "from": "3926", - "to": "3779", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4470", - "label": "1485345 (-) 144608", - "from": "3925", - "to": "4062", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4469", - "label": "1083940 (-) 1084519", - "from": "3924", - "to": "4113", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4468", - "label": "1083941 (-) 1083940", - "from": "3923", - "to": "3924", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4467", - "label": "834084 (-) 780263", - "from": "3922", - "to": "3715", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4466", - "label": "1387047 (-) 1387634", - "from": "3921", - "to": "4107", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4465", - "label": "504360 (-) 504077", - "from": "3920", - "to": "4041", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4464", - "label": "504360 (-) 504075", - "from": "3920", - "to": "4039", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4463", - "label": "504360 (-) 504076", - "from": "3920", - "to": "4042", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4462", - "label": "372265 (-) 369394", - "from": "3919", - "to": "3834", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4461", - "label": "311850 (-) 299541", - "from": "3918", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4460", - "label": "834090 (-) 834084", - "from": "3917", - "to": "3922", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4459", - "label": "77362 (-) 62263", - "from": "3916", - "to": "3792", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4458", - "label": "77362 (-) 54189", - "from": "3916", - "to": "3737", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4457", - "label": "77362 (-) 54322", - "from": "3916", - "to": "4133", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4456", - "label": "77362 (-) 55277", - "from": "3916", - "to": "3711", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4455", - "label": "77362 (-) 54900", - "from": "3916", - "to": "3885", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4454", - "label": "77362 (-) 55093", - "from": "3916", - "to": "3793", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4453", - "label": "77362 (-) 61124", - "from": "3916", - "to": "3851", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4452", - "label": "77362 (-) 54026", - "from": "3916", - "to": "3818", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4451", - "label": "77362 (-) 62537", - "from": "3916", - "to": "4127", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4450", - "label": "101938 (-) 1490531", - "from": "3915", - "to": "3894", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4449", - "label": "101938 (-) 1490324", - "from": "3915", - "to": "3989", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4448", - "label": "101938 (-) 291357", - "from": "3915", - "to": "3930", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4447", - "label": "878133 (-) 877267", - "from": "3914", - "to": "3846", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4446", - "label": "309814 (-) 299541", - "from": "3913", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4445", - "label": "13879 (-) 6157", - "from": "3912", - "to": "4155", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4444", - "label": "13879 (-) 5503", - "from": "3912", - "to": "3993", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4443", - "label": "13879 (-) 5738", - "from": "3912", - "to": "3889", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4442", - "label": "13879 (-) 6250", - "from": "3912", - "to": "4110", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4441", - "label": "13879 (-) 5737", - "from": "3912", - "to": "3890", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4440", - "label": "13879 (-) 5502", - "from": "3912", - "to": "3996", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4439", - "label": "13879 (-) 5936", - "from": "3912", - "to": "3798", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4438", - "label": "13879 (-) 6042", - "from": "3912", - "to": "3749", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4437", - "label": "504377 (-) 504076", - "from": "3911", - "to": "4042", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4436", - "label": "504377 (-) 504075", - "from": "3911", - "to": "4039", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4435", - "label": "1171001 (-) 1196686", - "from": "3910", - "to": "3873", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4434", - "label": "321084 (-) 1338496", - "from": "3909", - "to": "4101", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4433", - "label": "293444 (-) 299541", - "from": "3908", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4432", - "label": "293444 (-) 369394", - "from": "3908", - "to": "3834", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4431", - "label": "616006 (-) 616064", - "from": "3907", - "to": "3877", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4430", - "label": "1107533 (-) 310021", - "from": "3906", - "to": "3821", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4429", - "label": "1107533 (-) 372265", - "from": "3906", - "to": "3919", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4428", - "label": "1107533 (-) 354035", - "from": "3906", - "to": "3832", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4427", - "label": "396880 (-) 127029", - "from": "3905", - "to": "4132", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4426", - "label": "1119825 (-) 1116334", - "from": "3904", - "to": "4085", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4425", - "label": "389722 (-) 549814", - "from": "3903", - "to": "3731", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4424", - "label": "389722 (-) 616886", - "from": "3903", - "to": "3976", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4423", - "label": "389722 (-) 1196670", - "from": "3903", - "to": "3880", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4422", - "label": "303707 (-) 299541", - "from": "3902", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4421", - "label": "875099 (-) 875746", - "from": "3901", - "to": "4061", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4420", - "label": "875101 (-) 875099", - "from": "3900", - "to": "3901", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4419", - "label": "971358 (-) 250984", - "from": "3899", - "to": "4111", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4418", - "label": "971358 (-) 251144", - "from": "3899", - "to": "4046", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4417", - "label": "971358 (-) 251201", - "from": "3899", - "to": "4020", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4416", - "label": "77403 (-) 77362", - "from": "3898", - "to": "3916", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4415", - "label": "1214047 (-) 144608", - "from": "3897", - "to": "4062", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4414", - "label": "970337 (-) 333006", - "from": "3896", - "to": "4066", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4413", - "label": "350818 (-) 555944", - "from": "3895", - "to": "3739", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4412", - "label": "1490531 (-) 144608", - "from": "3894", - "to": "4062", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4411", - "label": "291429 (-) 144608", - "from": "3893", - "to": "4062", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4410", - "label": "1159782 (-) 954243", - "from": "3892", - "to": "3758", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4409", - "label": "1489512 (-) 144608", - "from": "3891", - "to": "4062", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4408", - "label": "5737 (-) 13130", - "from": "3890", - "to": "3776", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4407", - "label": "5738 (-) 13130", - "from": "3889", - "to": "3776", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4406", - "label": "1378926 (-) 1382736", - "from": "3888", - "to": "4013", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4405", - "label": "1341038 (-) 320330", - "from": "3887", - "to": "3777", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4404", - "label": "2052724 (-) 2059776", - "from": "3886", - "to": "3945", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4403", - "label": "54900 (-) 743241", - "from": "3885", - "to": "3778", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4402", - "label": "1771125 (-) 2114443", - "from": "3884", - "to": "3755", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4401", - "label": "617080 (-) 550651", - "from": "3883", - "to": "3827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4400", - "label": "550522 (-) 550679", - "from": "3882", - "to": "3815", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4399", - "label": "227964 (-) 324791", - "from": "3881", - "to": "4077", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4398", - "label": "227964 (-) 320128", - "from": "3881", - "to": "3878", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4397", - "label": "227964 (-) 1382203", - "from": "3881", - "to": "3787", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4396", - "label": "227964 (-) 322680", - "from": "3881", - "to": "4104", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4395", - "label": "227964 (-) 324862", - "from": "3881", - "to": "4051", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4394", - "label": "227964 (-) 322256", - "from": "3881", - "to": "3848", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4393", - "label": "1196670 (-) 1171001", - "from": "3880", - "to": "3910", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4392", - "label": "637566 (-) 637453", - "from": "3879", - "to": "3939", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4391", - "label": "320128 (-) 320604", - "from": "3878", - "to": "4115", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4390", - "label": "616064 (-) 616067", - "from": "3877", - "to": "3876", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4389", - "label": "616067 (-) 1206141", - "from": "3876", - "to": "3762", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4388", - "label": "1684105 (-) 299067", - "from": "3875", - "to": "4130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4387", - "label": "157322 (-) 151326", - "from": "3874", - "to": "3809", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4386", - "label": "1196686 (-) 834090", - "from": "3873", - "to": "3917", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4385", - "label": "1806998 (-) 441814", - "from": "3872", - "to": "3966", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4384", - "label": "972439 (-) 251201", - "from": "3871", - "to": "4020", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4383", - "label": "972439 (-) 251144", - "from": "3871", - "to": "4046", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4382", - "label": "972439 (-) 250984", - "from": "3871", - "to": "4111", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4381", - "label": "171672 (-) 299541", - "from": "3870", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4380", - "label": "291483 (-) 144608", - "from": "3869", - "to": "4062", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4379", - "label": "327326 (-) 304925", - "from": "3868", - "to": "3811", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4378", - "label": "327326 (-) 304924", - "from": "3868", - "to": "3812", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4377", - "label": "327326 (-) 305175", - "from": "3868", - "to": "4150", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4376", - "label": "327326 (-) 305167", - "from": "3868", - "to": "4153", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4375", - "label": "327326 (-) 305153", - "from": "3868", - "to": "4159", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4374", - "label": "1682080 (-) 251616", - "from": "3867", - "to": "3841", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4373", - "label": "730789 (-) 654141", - "from": "3866", - "to": "3786", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4372", - "label": "351915 (-) 299067", - "from": "3865", - "to": "4130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4371", - "label": "2069164 (-) 174857", - "from": "3864", - "to": "3819", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4370", - "label": "351918 (-) 351915", - "from": "3863", - "to": "3865", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4369", - "label": "672431 (-) 46171", - "from": "3862", - "to": "4116", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4368", - "label": "1802928 (-) 441814", - "from": "3861", - "to": "3966", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4367", - "label": "1411759 (-) 1411760", - "from": "3860", - "to": "3859", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4366", - "label": "1411760 (-) 1412138", - "from": "3859", - "to": "4141", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4365", - "label": "1807026 (-) 935814", - "from": "3858", - "to": "3757", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4364", - "label": "1807026 (-) 570878", - "from": "3858", - "to": "3946", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4363", - "label": "1807026 (-) 627557", - "from": "3858", - "to": "3770", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4362", - "label": "836276 (-) 836439", - "from": "3857", - "to": "3774", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4361", - "label": "1673905 (-) 261355", - "from": "3856", - "to": "4053", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4360", - "label": "988852 (-) 398844", - "from": "3855", - "to": "3948", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4359", - "label": "14012 (-) 13879", - "from": "3854", - "to": "3912", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4358", - "label": "1485501 (-) 144608", - "from": "3853", - "to": "4062", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4357", - "label": "322239 (-) 321084", - "from": "3852", - "to": "3909", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4356", - "label": "61124 (-) 743241", - "from": "3851", - "to": "3778", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4355", - "label": "1411783 (-) 1473433", - "from": "3850", - "to": "3750", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4354", - "label": "572111 (-) 571548", - "from": "3849", - "to": "4091", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4353", - "label": "322256 (-) 321330", - "from": "3848", - "to": "3795", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4352", - "label": "1538767 (-) 654141", - "from": "3847", - "to": "3786", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4351", - "label": "877267 (-) 875101", - "from": "3846", - "to": "3900", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4350", - "label": "884435 (-) 874464", - "from": "3845", - "to": "3721", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4349", - "label": "884435 (-) 878133", - "from": "3845", - "to": "3914", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4348", - "label": "1489627 (-) 144608", - "from": "3844", - "to": "4062", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4347", - "label": "1694430 (-) 1695048", - "from": "3843", - "to": "4017", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4346", - "label": "1987295 (-) 814361", - "from": "3842", - "to": "4027", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4345", - "label": "251616 (-) 299541", - "from": "3841", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4344", - "label": "2052833 (-) 2059776", - "from": "3840", - "to": "3945", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4343", - "label": "792292 (-) 791922", - "from": "3839", - "to": "4004", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4342", - "label": "94950 (-) 1522976", - "from": "3838", - "to": "4025", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4341", - "label": "331494 (-) 310020", - "from": "3837", - "to": "3822", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4340", - "label": "331494 (-) 309814", - "from": "3837", - "to": "3913", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4339", - "label": "331494 (-) 305190", - "from": "3837", - "to": "4144", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4338", - "label": "331494 (-) 293444", - "from": "3837", - "to": "3908", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4337", - "label": "331494 (-) 311850", - "from": "3837", - "to": "3918", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4336", - "label": "331494 (-) 299544", - "from": "3837", - "to": "3931", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4335", - "label": "331494 (-) 302460", - "from": "3837", - "to": "3998", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4334", - "label": "331494 (-) 309196", - "from": "3837", - "to": "3724", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4333", - "label": "103150 (-) 1049381", - "from": "3836", - "to": "3806", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4332", - "label": "418544 (-) 2062227", - "from": "3835", - "to": "3752", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4331", - "label": "369394 (-) 299067", - "from": "3834", - "to": "4130", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4330", - "label": "1681138 (-) 251616", - "from": "3833", - "to": "3841", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4329", - "label": "354035 (-) 351915", - "from": "3832", - "to": "3865", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4328", - "label": "373494 (-) 369394", - "from": "3831", - "to": "3834", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4327", - "label": "1243896 (-) 321983", - "from": "3830", - "to": "3971", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4326", - "label": "2131705 (-) 698257", - "from": "3829", - "to": "3753", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4325", - "label": "2131705 (-) 2117862", - "from": "3829", - "to": "4057", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4324", - "label": "550650 (-) 550651", - "from": "3828", - "to": "3827", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4323", - "label": "550651 (-) 970337", - "from": "3827", - "to": "3896", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4322", - "label": "392955 (-) 258188", - "from": "3826", - "to": "4096", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4321", - "label": "883453 (-) 883065", - "from": "3825", - "to": "4000", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4320", - "label": "883455 (-) 883453", - "from": "3824", - "to": "3825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4319", - "label": "883456 (-) 1661155", - "from": "3823", - "to": "4060", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4318", - "label": "883456 (-) 883453", - "from": "3823", - "to": "3825", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4317", - "label": "310020 (-) 299541", - "from": "3822", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4316", - "label": "310021 (-) 299541", - "from": "3821", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4315", - "label": "1884935 (-) 554016", - "from": "3820", - "to": "4145", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4314", - "label": "174857 (-) 1853882", - "from": "3819", - "to": "3974", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4313", - "label": "54026 (-) 743241", - "from": "3818", - "to": "3778", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4312", - "label": "1935115 (-) 1935831", - "from": "3817", - "to": "3965", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4311", - "label": "1159958 (-) 618296", - "from": "3816", - "to": "3790", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4310", - "label": "1159958 (-) 618516", - "from": "3816", - "to": "4151", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4309", - "label": "550679 (-) 550154", - "from": "3815", - "to": "4044", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4308", - "label": "67353 (-) 64422", - "from": "3814", - "to": "3740", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4307", - "label": "254746 (-) 974036", - "from": "3813", - "to": "4065", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4306", - "label": "254746 (-) 975952", - "from": "3813", - "to": "4123", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4305", - "label": "254746 (-) 973669", - "from": "3813", - "to": "3771", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4304", - "label": "254746 (-) 252110", - "from": "3813", - "to": "4069", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4303", - "label": "254746 (-) 971358", - "from": "3813", - "to": "3899", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4302", - "label": "254746 (-) 973072", - "from": "3813", - "to": "4036", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4301", - "label": "254746 (-) 972439", - "from": "3813", - "to": "3871", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4300", - "label": "304924 (-) 299541", - "from": "3812", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4299", - "label": "304925 (-) 299541", - "from": "3811", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4298", - "label": "151325 (-) 94950", - "from": "3810", - "to": "3838", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4297", - "label": "151326 (-) 151325", - "from": "3809", - "to": "3810", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4296", - "label": "883490 (-) 883455", - "from": "3808", - "to": "3824", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4295", - "label": "1082148 (-) 350818", - "from": "3807", - "to": "3895", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4294", - "label": "1049381 (-) 94950", - "from": "3806", - "to": "3838", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4293", - "label": "884516 (-) 884435", - "from": "3805", - "to": "3845", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4292", - "label": "884516 (-) 885683", - "from": "3805", - "to": "3733", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4291", - "label": "1082151 (-) 1082148", - "from": "3804", - "to": "3807", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4290", - "label": "1889063 (-) 64690", - "from": "3803", - "to": "4081", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4289", - "label": "1388332 (-) 1388333", - "from": "3802", - "to": "3801", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4288", - "label": "1388333 (-) 2069164", - "from": "3801", - "to": "3864", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4287", - "label": "1388333 (-) 2068493", - "from": "3801", - "to": "4154", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4286", - "label": "884524 (-) 884435", - "from": "3800", - "to": "3845", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4285", - "label": "884524 (-) 885683", - "from": "3800", - "to": "3733", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4284", - "label": "1103663 (-) 1098777", - "from": "3799", - "to": "4149", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4283", - "label": "5936 (-) 13130", - "from": "3798", - "to": "3776", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4282", - "label": "321329 (-) 322239", - "from": "3797", - "to": "3852", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4281", - "label": "1871665 (-) 14228", - "from": "3796", - "to": "3751", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4280", - "label": "321330 (-) 322239", - "from": "3795", - "to": "3852", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4279", - "label": "321328 (-) 322239", - "from": "3794", - "to": "3852", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4278", - "label": "55093 (-) 743241", - "from": "3793", - "to": "3778", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4277", - "label": "62263 (-) 743241", - "from": "3792", - "to": "3778", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4276", - "label": "130871 (-) 1681138", - "from": "3791", - "to": "3833", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4275", - "label": "130871 (-) 1681748", - "from": "3791", - "to": "4012", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4274", - "label": "130871 (-) 1065380", - "from": "3791", - "to": "3981", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4273", - "label": "130871 (-) 1682080", - "from": "3791", - "to": "3867", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4272", - "label": "130871 (-) 1790467", - "from": "3791", - "to": "3942", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4271", - "label": "130871 (-) 357917", - "from": "3791", - "to": "3929", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4270", - "label": "130871 (-) 1668145", - "from": "3791", - "to": "4134", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4269", - "label": "130871 (-) 1534279", - "from": "3791", - "to": "4018", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4268", - "label": "618296 (-) 1035755", - "from": "3790", - "to": "3955", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4267", - "label": "654138 (-) 654141", - "from": "3789", - "to": "3786", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4266", - "label": "1684283 (-) 330112", - "from": "3788", - "to": "3994", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4265", - "label": "1382203 (-) 1378926", - "from": "3787", - "to": "3888", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4264", - "label": "654141 (-) 952239", - "from": "3786", - "to": "3736", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4263", - "label": "917308 (-) 504065", - "from": "3785", - "to": "4049", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4262", - "label": "1916734 (-) 950362", - "from": "3784", - "to": "4118", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4261", - "label": "737088 (-) 654141", - "from": "3783", - "to": "3786", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4260", - "label": "43842 (-) 1477081", - "from": "3782", - "to": "3963", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4259", - "label": "1035074 (-) 1159782", - "from": "3781", - "to": "3892", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4258", - "label": "1156931 (-) 955460", - "from": "3780", - "to": "4128", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4257", - "label": "958275 (-) 958290", - "from": "3779", - "to": "3775", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4256", - "label": "743241 (-) 743664", - "from": "3778", - "to": "4052", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4255", - "label": "320330 (-) 324862", - "from": "3777", - "to": "4051", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4254", - "label": "320330 (-) 320128", - "from": "3777", - "to": "3878", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4253", - "label": "320330 (-) 322256", - "from": "3777", - "to": "3848", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4252", - "label": "320330 (-) 1382203", - "from": "3777", - "to": "3787", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4251", - "label": "320330 (-) 324791", - "from": "3777", - "to": "4077", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4250", - "label": "320330 (-) 322680", - "from": "3777", - "to": "4104", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4249", - "label": "13130 (-) 13588", - "from": "3776", - "to": "4031", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4248", - "label": "958290 (-) 958368", - "from": "3775", - "to": "3745", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4247", - "label": "836439 (-) 836471", - "from": "3774", - "to": "3765", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4246", - "label": "1466203 (-) 1889063", - "from": "3773", - "to": "3803", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4245", - "label": "627554 (-) 441814", - "from": "3772", - "to": "3966", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4244", - "label": "973669 (-) 250984", - "from": "3771", - "to": "4111", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4243", - "label": "973669 (-) 251144", - "from": "3771", - "to": "4046", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4242", - "label": "973669 (-) 251201", - "from": "3771", - "to": "4020", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4241", - "label": "627557 (-) 1806998", - "from": "3770", - "to": "3872", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4240", - "label": "627557 (-) 627554", - "from": "3770", - "to": "3772", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4239", - "label": "77671 (-) 77403", - "from": "3769", - "to": "3898", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4238", - "label": "327533 (-) 327326", - "from": "3768", - "to": "3868", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4237", - "label": "327533 (-) 1949040", - "from": "3768", - "to": "4007", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4236", - "label": "369519 (-) 369394", - "from": "3767", - "to": "3834", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4235", - "label": "77681 (-) 1238006", - "from": "3766", - "to": "3706", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4234", - "label": "77681 (-) 77671", - "from": "3766", - "to": "3769", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4233", - "label": "836471 (-) 554016", - "from": "3765", - "to": "4145", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4232", - "label": "2085752 (-) 130871", - "from": "3764", - "to": "3791", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4231", - "label": "569211 (-) 572111", - "from": "3763", - "to": "3849", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4230", - "label": "1206141 (-) 14012", - "from": "3762", - "to": "3854", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4229", - "label": "1410943 (-) 103150", - "from": "3761", - "to": "3836", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4228", - "label": "935811 (-) 441814", - "from": "3760", - "to": "3966", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4227", - "label": "698244 (-) 255142", - "from": "3759", - "to": "4087", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4226", - "label": "954243 (-) 1159958", - "from": "3758", - "to": "3816", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4225", - "label": "935814 (-) 935811", - "from": "3757", - "to": "3760", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4224", - "label": "935814 (-) 1806998", - "from": "3757", - "to": "3872", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4223", - "label": "654215 (-) 653843", - "from": "3756", - "to": "3936", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4222", - "label": "2114443 (-) 2112991", - "from": "3755", - "to": "3959", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4221", - "label": "1116044 (-) 1799093", - "from": "3754", - "to": "3732", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4220", - "label": "698257 (-) 1473583", - "from": "3753", - "to": "4136", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4219", - "label": "698257 (-) 1473437", - "from": "3753", - "to": "3748", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4218", - "label": "698257 (-) 698244", - "from": "3753", - "to": "3759", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4217", - "label": "2062227 (-) 79817", - "from": "3752", - "to": "3726", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4216", - "label": "14228 (-) 13879", - "from": "3751", - "to": "3912", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4215", - "label": "1473433 (-) 138223", - "from": "3750", - "to": "3709", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4214", - "label": "6042 (-) 13130", - "from": "3749", - "to": "3776", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4213", - "label": "1473437 (-) 1411783", - "from": "3748", - "to": "3850", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4212", - "label": "1084318 (-) 352790", - "from": "3747", - "to": "3933", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4211", - "label": "1084318 (-) 171672", - "from": "3747", - "to": "3870", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4210", - "label": "1084318 (-) 351918", - "from": "3747", - "to": "3863", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4209", - "label": "1084318 (-) 353251", - "from": "3747", - "to": "3719", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4208", - "label": "1338271 (-) 389722", - "from": "3746", - "to": "3903", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4207", - "label": "958368 (-) 241990", - "from": "3745", - "to": "4019", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4206", - "label": "1084321 (-) 1084318", - "from": "3744", - "to": "3747", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4205", - "label": "225187 (-) 127029", - "from": "3743", - "to": "4132", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4204", - "label": "225188 (-) 396880", - "from": "3742", - "to": "3905", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4203", - "label": "225188 (-) 1429803", - "from": "3742", - "to": "4024", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4202", - "label": "225188 (-) 225187", - "from": "3742", - "to": "3743", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4201", - "label": "1341349 (-) 320330", - "from": "3741", - "to": "3777", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4200", - "label": "64422 (-) 1238006", - "from": "3740", - "to": "3706", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4199", - "label": "555944 (-) 293444", - "from": "3739", - "to": "3908", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4198", - "label": "1382312 (-) 232970", - "from": "3738", - "to": "3941", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4197", - "label": "54189 (-) 743241", - "from": "3737", - "to": "3778", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4196", - "label": "952239 (-) 422049", - "from": "3736", - "to": "4089", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4195", - "label": "1340336 (-) 320330", - "from": "3735", - "to": "3777", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4194", - "label": "1340336 (-) 227964", - "from": "3735", - "to": "3881", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4193", - "label": "638896 (-) 8327", - "from": "3734", - "to": "4098", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4192", - "label": "885683 (-) 887987", - "from": "3733", - "to": "4080", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4191", - "label": "885683 (-) 877790", - "from": "3733", - "to": "4063", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4190", - "label": "1799093 (-) 1035074", - "from": "3732", - "to": "3781", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4189", - "label": "549814 (-) 550522", - "from": "3731", - "to": "3882", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4188", - "label": "1113015 (-) 1107533", - "from": "3730", - "to": "3906", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4187", - "label": "495541 (-) 500848", - "from": "3729", - "to": "4108", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4186", - "label": "1386423 (-) 418544", - "from": "3728", - "to": "3835", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4185", - "label": "574400 (-) 1031197", - "from": "3727", - "to": "4148", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4184", - "label": "574400 (-) 994566", - "from": "3727", - "to": "4047", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4183", - "label": "79817 (-) 970337", - "from": "3726", - "to": "3896", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4182", - "label": "245706 (-) 1205524", - "from": "3725", - "to": "4029", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4181", - "label": "309196 (-) 299541", - "from": "3724", - "to": "3934", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4180", - "label": "374742 (-) 369394", - "from": "3723", - "to": "3834", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4179", - "label": "374743 (-) 369394", - "from": "3722", - "to": "3834", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4178", - "label": "874464 (-) 877267", - "from": "3721", - "to": "3846", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4177", - "label": "374754 (-) 369394", - "from": "3720", - "to": "3834", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4176", - "label": "353251 (-) 351915", - "from": "3719", - "to": "3865", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4175", - "label": "353252 (-) 351915", - "from": "3718", - "to": "3865", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4174", - "label": "958434 (-) 14012", - "from": "3717", - "to": "3854", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4173", - "label": "992230 (-) 992233", - "from": "3716", - "to": "3714", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4172", - "label": "780263 (-) 780267", - "from": "3715", - "to": "3713", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4171", - "label": "780263 (-) 826488", - "from": "3715", - "to": "4103", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4170", - "label": "992233 (-) 495541", - "from": "3714", - "to": "3729", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4169", - "label": "780267 (-) 557190", - "from": "3713", - "to": "4099", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4168", - "label": "233452 (-) 226535", - "from": "3712", - "to": "4054", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4167", - "label": "55277 (-) 743241", - "from": "3711", - "to": "3778", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4166", - "label": "1337326 (-) 1338271", - "from": "3710", - "to": "3746", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4165", - "label": "138223 (-) 672431", - "from": "3709", - "to": "3862", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4164", - "label": "874479 (-) 877267", - "from": "3708", - "to": "3846", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4163", - "label": "1488882 (-) 144608", - "from": "3707", - "to": "4062", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4162", - "label": "1238006 (-) 1237265", - "from": "3706", - "to": "4035", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "4161", - "label": "49150 (-) 637566", - "from": "3705", - "to": "3879", - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/marina_sankey_data/uncharacterized_iModulon_genes_and_top20_metabolites_vis_js.json b/appserver/neo4japp/services/shortest_path_data/marina_sankey_data/uncharacterized_iModulon_genes_and_top20_metabolites_vis_js.json deleted file mode 100644 index f65e430b12..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/marina_sankey_data/uncharacterized_iModulon_genes_and_top20_metabolites_vis_js.json +++ /dev/null @@ -1,16867 +0,0 @@ -{ - "nodes": [ - { - "id": 79872, - "label": "EC-2.7.9.2", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 34821, - "label": "crp", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 10247, - "label": "UDP-α-D-galactose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 8202, - "label": "adenine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 10254, - "label": "2-octaprenylphenol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 55311, - "label": "fumD TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 77849, - "label": "EC-6.3.3.3", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 79898, - "label": "EC-2.7.1.48", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 10277, - "label": "2,5-diamino-6-(5-phospho-D-ribosylamino)pyrimidin-4(3H)-one", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 61485, - "label": "queuosine precursor transporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 34864, - "label": "ubiA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 77873, - "label": "EC-6.3.4.2", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 10291, - "label": "6-phospho D-glucono-1,5-lactone", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 79927, - "label": "EC-6.3.4.13", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 77881, - "label": "EC-2.6.1.16", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 79934, - "label": "EC-1.13.11.16", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 6213, - "label": "maltose", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 10311, - "label": "2-phospho-4-(cytidine 5'-diphospho)-2-C-methyl-D-erythritol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 79943, - "label": "EC-2.7.7.27", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8266, - "label": "β-alanine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 10314, - "label": "4-(cytidine 5'-diphospho)-2-C-methyl-D-erythritol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 8271, - "label": "pyridoxal", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 59472, - "label": "NtrC-Phosphorylated DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 77903, - "label": "EC-2.7.2.4", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 79953, - "label": "EC-4.2.1.20", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8276, - "label": "melibiose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 77913, - "label": "EC-4.1.3.27", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 55386, - "label": "tcyJ TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 79968, - "label": "EC-2.6.1.81", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 10339, - "label": "D-erythro-7,8-dihydroneopterin", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 79975, - "label": "EC-1.14.11.33", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 79976, - "label": "EC-2.7.1.148", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 59500, - "label": "DNA-binding transcriptional dual regulator LeuO", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 61550, - "label": "alkaline phosphatase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 6255, - "label": "D-glucopyranose", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 10354, - "label": "(1R,6R)-6-hydroxy-2-succinylcyclohexa-2,4-diene-1-carboxylate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 57472, - "label": "small regulatory RNA GcvB", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 77955, - "label": "EC-2.7.4.14|EC-2.7.4.25", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 10373, - "label": "shikimate 3-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 80007, - "label": "EC-2.3.1.1", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 80008, - "label": "EC-3.1.5.1", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 2183, - "label": "a soluble [acyl-carrier protein]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 10387, - "label": "5-amino-6-(5-phospho-D-ribosylamino)uracil", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 80021, - "label": "EC-4.4.1.13", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 34974, - "label": "yjfY", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 59551, - "label": "Phosphorylated DNA-binding transcriptional activator ZraR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 8354, - "label": "enterobactin", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 8355, - "label": "succinate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 80036, - "label": "EC-4.1.1.11", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 57511, - "label": "porphobilinogen synthase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 77993, - "label": "EC-3.1.3.74", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 80045, - "label": "EC-3.5.4.25", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 80050, - "label": "EC-3.1.2.6", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 78003, - "label": "EC-1.2.1.71", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 61620, - "label": "DNA-binding transcriptional dual regulator CRP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 8374, - "label": "oxaloacetate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 10423, - "label": "ppGpp", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 80057, - "label": "EC-3.7.1.14", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 78013, - "label": "EC-4.1.1.50", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 35009, - "label": "gcvB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 35014, - "label": "yeaQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 10440, - "label": "γ-glutamyl-L-putrescine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 61647, - "label": "6,7-dimethyl-8-ribityllumazine synthase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 80081, - "label": "EC-2.1.1.45", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 78036, - "label": "malate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 32981, - "label": "hcaR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 80084, - "label": "EC-1.1.1.193", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 80090, - "label": "EC-3.1.3", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 80104, - "label": "EC-5.4.2.2", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 78061, - "label": "EC-3.1.1", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8433, - "label": "acetaldehyde", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 33010, - "label": "yiiM", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 80115, - "label": "EC-6.3.2.14", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8447, - "label": "1-butanal", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 8450, - "label": "formaldehyde", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 78089, - "label": "EC-2.7.7.87", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 2315, - "label": "an acyl-[acyl-carrier protein]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 59659, - "label": "sensor histidine kinase ArcB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 8466, - "label": "(S)-lactaldehyde", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 78103, - "label": "EC-1.14.14.5", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 35095, - "label": "ydhQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 78105, - "label": "EC-4.1.1.18", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 78107, - "label": "EC-4.2.1.32", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 80160, - "label": "EC-2.4.1.25", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 80164, - "label": "EC-6.3.1.9|EC-6.3.1.8", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 78119, - "label": "EC-2.7.4.6", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 80171, - "label": "EC-1.5.1.38", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 59691, - "label": "DNA-binding transcriptional activator Dan", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 78128, - "label": "aspartate:succinate antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 80180, - "label": "EC-2.2.1.6", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 10239, - "label": "UDP-α-D-galactofuranose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 33084, - "label": "mscL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 8512, - "label": "(R)-lipoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 35140, - "label": "yacL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 59722, - "label": "cardiolipin synthase B", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 78156, - "label": "EC-7.4.2.11", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8530, - "label": "(7R,8S)-diaminononanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 10584, - "label": "(2R)-2,3-dihydroxy-3-methylbutanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 8538, - "label": "D-glycero-β-D-manno-heptose 1-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 78175, - "label": "EC-3.1.3.25", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 2415, - "label": "an L-1-phosphatidyl-sn-glycerol", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 55667, - "label": "ivy TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 8569, - "label": "2-C-methyl-D-erythritol-2,4-cyclodiphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 33149, - "label": "cycA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 10632, - "label": "N-(2,3-dihydroxybenzoyl)-L-serine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 10643, - "label": "UMP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 57747, - "label": "NADPH-dependent FMN reductase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 10646, - "label": "CMP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 8604, - "label": "3-phenylpropanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 78238, - "label": "EC-1.1.1.23", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8609, - "label": "L-phenylalanine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 35234, - "label": "yjdP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 8614, - "label": "2-succinyl-5-enolpyruvoyl-6-hydroxy-3-cyclohexene-1-carboxylate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 78257, - "label": "EC-2.6.1.52", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 59828, - "label": "GDP/GTP pyrophosphokinase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 47548, - "label": "lrpp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 47574, - "label": "yhdWp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 78297, - "label": "EC-4.1.1.36", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 53723, - "label": "ybhP-clsB-ybhN TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 10716, - "label": "EC-2.7.4.13|EC-2.7.4.12", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 10718, - "label": "EC-2.7.7.64|EC-2.7.7.9", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8670, - "label": "N-acetyl-L-glutamate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 53728, - "label": "mhpABCDFE TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 53731, - "label": "acrAB TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 10729, - "label": "EC-1.1.5.4", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 10731, - "label": "EC-2.6.1.6|EC-2.6.1.42", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 10732, - "label": "EC-2.6.1.9", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 78319, - "label": "EC-5.1.1.7", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 10739, - "label": "RXN0-6470", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 61942, - "label": "nicotinate-nucleotide—dimethylbenzimidazole phosphoribosyltransferase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 55799, - "label": "melAB TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 53765, - "label": "ycgJ TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 61957, - "label": "DNA-binding transcriptional activator ZraR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 61960, - "label": "multidrug efflux pump AcrAB-TolC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 8716, - "label": "hydrogencarbonate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 8729, - "label": "spermidine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 8733, - "label": "aminopropylcadaverine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 55838, - "label": "curA TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 8743, - "label": "cadaverine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 8744, - "label": "dethiobiotin", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 10793, - "label": "RXN0-261", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 10795, - "label": "EC-2.6.1.16", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8747, - "label": "putrescine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 78397, - "label": "EC-3.1.3.18", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 33343, - "label": "mhpB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 10820, - "label": "RXN0-272", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 78411, - "label": "EC-3.6.1.15", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 10830, - "label": "RXN0-6362", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 53847, - "label": "yeaQ TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 47712, - "label": "sohBp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 57952, - "label": "DNA-binding transcriptional dual regulator ArcA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 10850, - "label": "RXN0-4101", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 60000, - "label": "regulator of RpoS", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 78436, - "label": "phenylalanine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 78441, - "label": "EC-2.1.2.2", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 10859, - "label": "EC-2.7.7.87", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 53876, - "label": "dctA TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 8821, - "label": "N2-succinyl-L-glutamate 5-semialdehyde", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 10877, - "label": "EC-2.2.1.1", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 10880, - "label": "EC-1.1.1.95", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 10881, - "label": "EC-2.5.1.48", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 47745, - "label": "rpmBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 60036, - "label": "3-carboxyethylcatechol 2,3-dioxygenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 8838, - "label": "Fe2+", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 78470, - "label": "malate:succinate antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 57996, - "label": "DNA-binding transcriptional dual regulator SoxS", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 6798, - "label": "D-glucosamine 6-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 78481, - "label": "EC-3.1.3.82", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 33426, - "label": "acrB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 62101, - "label": "NADPH-dependent FMN reductase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 33431, - "label": "yhhQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 45725, - "label": "tcyJp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 10912, - "label": "EC-4.1.2.55|EC-4.1.2.21", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 45729, - "label": "fesp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 8866, - "label": "Li+", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 47778, - "label": "ribAp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 10920, - "label": "EC-2.4.2.1", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 78507, - "label": "EC-4.2.1.24", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 10924, - "label": "EC-2.2.1.2", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 78510, - "label": "TRANS-RXN-412", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 10930, - "label": "EC-2.4.2.10", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 35506, - "label": "curA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 78517, - "label": "EC-2.7.2.3", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8888, - "label": "D-alanine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 78523, - "label": "EC-1.14.11.33", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8892, - "label": "D-methionine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 10946, - "label": "EC-2.6.1.82", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 10948, - "label": "EC-2.1.2.11", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 10955, - "label": "EC-5.3.2", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 10956, - "label": "EC-2.6.1.3", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 10968, - "label": "EC-5.1.3.2", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8921, - "label": "2-phospho-D-glycerate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 62174, - "label": "aromatic amino acid:H+ symporter AroP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 56033, - "label": "ribA TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 4836, - "label": "a 5,10-methylenetetrahydrofolate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 10988, - "label": "EC-2.3.1.40", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 4844, - "label": "a 1,2-diacyl-sn-glycerol 3-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 78576, - "label": "tryptophan:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 78584, - "label": "EC-1.3.5.2", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8953, - "label": "3-phospho-D-glycerate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 4857, - "label": "an L-1-phosphatidylethanolamine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 8962, - "label": "3-phospho-D-glyceroyl phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 78596, - "label": "L-proline:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 56071, - "label": "yhhQ TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 11022, - "label": "EC-5.3.1.9", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 35599, - "label": "ycgJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 78608, - "label": "L-tartrate:succinate antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8976, - "label": "agmatine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 78611, - "label": "EC-3.2.2.10", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 11037, - "label": "EC-4.1.3.3", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 78622, - "label": "arginine:agmatine antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 35618, - "label": "mutM", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 11049, - "label": "EC-4.1.2.51", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 58162, - "label": "D-serine/alanine/glycine/:H+symporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 33593, - "label": "gcvA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 62272, - "label": "guanylate kinase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 11072, - "label": "EC-2.6.1.42", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 11075, - "label": "RXN0-5240", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 11076, - "label": "EC-2.6.1.1|EC-2.6.1.57|EC-2.6.1.27", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 11078, - "label": "EC-4.2.1.11", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 78665, - "label": "EC-2.6.1.66", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 78679, - "label": "EC-2.5.1", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 58203, - "label": "multidrug efflux pump RND permease AcrB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 58207, - "label": "6,7-dimethyl-8-ribityllumazine synthase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 7013, - "label": "a (1→4)-α-D-glucan", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 9071, - "label": "α-ribazole 5'-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 33653, - "label": "acrA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 9077, - "label": "5-phospho-α-D-ribose 1-diphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 78712, - "label": "melibiose:Li+ symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 78717, - "label": "EC-5.3.1.28", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 45952, - "label": "casAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 54146, - "label": "lrp TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 78726, - "label": "decanoate export", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9097, - "label": "α-D-glucosamine 1-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 9100, - "label": "preQ0", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 5006, - "label": "a 2-acyl-1-lyso-phosphatidylethanolamine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 58256, - "label": "DNA-binding transcriptional dual regulator NtrC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 78739, - "label": "EC-3.2.2", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9109, - "label": "4-hydroxy-3-octaprenylbenzoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 35735, - "label": "cysB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 35736, - "label": "ybbC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 31654, - "label": "ttdR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 45992, - "label": "gcvBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 35757, - "label": "ycaK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 62385, - "label": "C4 dicarboxylate/orotate:H+ symporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 78771, - "label": "EC-2.4.2.10", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 56246, - "label": "gcvB TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 953, - "label": "a CDP-diacylglycerol", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 35780, - "label": "aroP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 9158, - "label": "(2Z,4E,7E)-2-hydroxy-6-oxonona-2,4,7-triene-1,9-dioate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 78801, - "label": "EC-4.2.3.3", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 62422, - "label": "PORPHOBILSYNTH-CPLX", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 58336, - "label": "GTP cyclohydrolase 2", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 62441, - "label": "4OHBENZOATE-OCTAPRENYLTRANSFER-MONOMER", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 9195, - "label": "β-nicotinate D-ribonucleotide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 58351, - "label": "DNA-binding transcriptional dual regulator Nac", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 78833, - "label": "EC-2.6.1.42", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 46066, - "label": "melAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 78835, - "label": "EC-3.1.3.89", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9210, - "label": "histidinol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 9214, - "label": "adenosine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 60425, - "label": "alkaline phosphatase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 78858, - "label": "EC-1.1.1.381", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9227, - "label": "methylglyoxal", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 60427, - "label": "melibiose:H+/Na+/Li+ symporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 78871, - "label": "EC-1.1.1.79", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9239, - "label": "2-oxopent-4-enoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 56349, - "label": "sohB TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 58400, - "label": "3-carboxyethylcatechol 2,3-dioxygenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 9250, - "label": "D-tartrate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 60464, - "label": "DNA-binding transcriptional repressor GlaR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 31796, - "label": "gmk", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 9268, - "label": "(3R)-3-hydroxy-2-oxo-4 phosphooxybutanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 78903, - "label": "EC-1.1.1.49", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9272, - "label": "N2-formyl-N1-(5-phospho-β-D-ribosyl)glycinamide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 56377, - "label": "crp TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 56378, - "label": "casABCDE12 TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 33855, - "label": "tcyJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 9279, - "label": "3-methyl-2-oxobutanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 78913, - "label": "EC-1.1.1", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9282, - "label": "(S)-2-acetolactate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 48191, - "label": "dctAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 54343, - "label": "yhdWXYZ TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 9296, - "label": "glyoxylate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 9298, - "label": "2-oxoglutarate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 78933, - "label": "EC-3.1.3.3", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9303, - "label": "2-dehydro-3-deoxy-D-gluconate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 78940, - "label": "L-tyrosine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 60509, - "label": "guanylate kinase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 33888, - "label": "fes", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 58466, - "label": "DNA-binding transcriptional dual regulator GcvA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 78951, - "label": "EC-2.6.1.17", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 60523, - "label": "sensory histidine kinase NtrB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 54379, - "label": "msyB TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 1133, - "label": "N-acetylneuraminate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 54399, - "label": "fes-ybdZ-entF-fepE TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 31873, - "label": "msyB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 9349, - "label": "L-tartrate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 78987, - "label": "EC-1.1.1.283", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 78997, - "label": "EC-3.1.3", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9366, - "label": "(R)-4'-phosphopantothenoyl-L-cysteine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 62619, - "label": "multidrug efflux pump membrane fusion lipoprotein AcrA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 35998, - "label": "lrp", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 60579, - "label": "methylglyoxal reductase YeaE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 33962, - "label": "yhdZ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 79021, - "label": "EC-3.6.1", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 79028, - "label": "β-alanine:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 62644, - "label": "ferric enterobactin esterase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 33980, - "label": "relA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 36029, - "label": "leuO", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 9405, - "label": "N-succinyl-L,L-2,6-diaminopimelate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 62656, - "label": "DNA-binding transcriptional dual regulator ArgR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 58563, - "label": "DNA-binding transcriptional dual regulator CRP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 36037, - "label": "tsaC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 31950, - "label": "hemB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 62675, - "label": "threonylcarbamoyl-AMP synthase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 58587, - "label": "DNA-binding transcriptional dual regulator ArgR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 79068, - "label": "succinate:tartrate antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 31970, - "label": "rpiB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 79075, - "label": "EC-4.1.3.1", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 79079, - "label": "EC-3.1.3.6", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9454, - "label": "S-adenosyl-L-methionine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 31982, - "label": "cobU", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 34032, - "label": "sohB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 36082, - "label": "glnL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 36084, - "label": "yodC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 31992, - "label": "cobT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 46329, - "label": "sohBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 7419, - "label": "a glycogen", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 79103, - "label": "EC-3.5.4.16", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 79111, - "label": "EC-4.4.1.5", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 46347, - "label": "crpp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 7447, - "label": "D-ribose 5-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 32027, - "label": "melB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 79143, - "label": "EC-2.7.6.5", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 79145, - "label": "EC-5.4.2.10", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 79151, - "label": "EC-5.1.3.2", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 79156, - "label": "EC-2.3.1.51", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 79157, - "label": "EC-5.4.2.12", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 32054, - "label": "phoA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 9544, - "label": "EC-2.7.99", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 79179, - "label": "EC-3.5.4.26", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 36179, - "label": "argR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 79191, - "label": "EC-2.4.2.19", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9566, - "label": "4'-phosphopantetheine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 36194, - "label": "yegR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 10044, - "label": "glutathionylspermidine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 79209, - "label": "EC-2.2.1.9", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9581, - "label": "L-histidinol phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 79225, - "label": "EC-2.8.3", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9593, - "label": "(2Z)-2-hydroxypenta-2,4-dienoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 79228, - "label": "NRIPHOS-RXN", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9606, - "label": "FMNH2", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 54668, - "label": "sohB TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 9614, - "label": "(8S)-8-amino-7-oxononanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 32144, - "label": "nac", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 60847, - "label": "ArgR-L-arginine DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 77234, - "label": "EC-2.7.1.145|EC-2.7.1.21", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9651, - "label": "propanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 77237, - "label": "EC-2.5.1.9", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 79285, - "label": "EC-3.1.3", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 77241, - "label": "EC-3.5.1.18", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 32187, - "label": "ssuE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 7614, - "label": "D-glucopyranose 6-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 77255, - "label": "EC-4.6.1.12", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9671, - "label": "decanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 79316, - "label": "EC-1.8.1.4", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 79318, - "label": "EC-2.8.1.8", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 60886, - "label": "GcvA-gly", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 77288, - "label": "EC-2.6.1.62", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9706, - "label": "4-(γ-L-glutamylamino)butanal", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 79346, - "label": "EC-2.3.1.40", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 77299, - "label": "EC-2.7.7.41", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 60916, - "label": "HcaR-HCA DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 77300, - "label": "EC-1.1.1.103", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 77308, - "label": "EC-1.1.1.3", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 7677, - "label": "glycolate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 60925, - "label": "Dan-L-tartrate DNA-binding transcriptional activator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 7682, - "label": "phosphoenolpyruvate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 77314, - "label": "EC-3.1.3.5", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 34310, - "label": "glaR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 79373, - "label": "EC-1.1.1.86", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 7700, - "label": "orotate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 7706, - "label": "S-adenosyl 3-(methylsulfanyl)propylamine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 48669, - "label": "mhpAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 60958, - "label": "Lrp-Leucine DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 79396, - "label": "EC-1.1.98.6", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 60964, - "label": "DksA-ppGpp", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 9774, - "label": "myo-inositol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 9775, - "label": "pyruvate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 9779, - "label": "porphobilinogen", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 77366, - "label": "EC-1.4.3", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9782, - "label": "orotidine 5'-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 9790, - "label": "L-allo-threonine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 9795, - "label": "glycine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 34372, - "label": "yeaE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 7751, - "label": "5-amino-6-(D-ribitylamino)uracil", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 34382, - "label": "fumD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 79441, - "label": "EC-3.1.3", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 77394, - "label": "EC-2.4.2.21", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9813, - "label": "2-dehydro-3-deoxy-D-galactonate 6-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 61015, - "label": "Fur-Fe2+ DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 9817, - "label": "aminoacetone", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 7770, - "label": "5-amino-6-(5-phospho-D-ribitylamino)uracil", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 79451, - "label": "EC-3.1.3.73", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 77404, - "label": "EC-2.7.1.178|EC-2.7.1.45", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 77401, - "label": "RXN-8654", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9827, - "label": "2-dehydro-3-deoxy-D-gluconate 6-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 79462, - "label": "NRIDEPHOS-RXN", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 79479, - "label": "EC-6.3.2.5", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 77442, - "label": "EC-2.4.1.21", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 59012, - "label": "DNA-binding transcriptional dual regulator Lrp", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 77447, - "label": "EC-6.3.2.3", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 32396, - "label": "ribE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 61072, - "label": "CRP-cAMP DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 7827, - "label": "α-ribazole", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 77460, - "label": "EC-2.5.1.39", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9876, - "label": "L-glyceraldehyde", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 7832, - "label": "6,7-dimethyl-8-(1-D-ribityl)lumazine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 7838, - "label": "7,8-dihydroneopterin 3'-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 79520, - "label": "RXN0-7084", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 7844, - "label": "7,8-dihydroneopterin 3'-triphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 79529, - "label": "EC-2.5.1.78", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 32426, - "label": "ribA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 9911, - "label": "N1-(5-phospho-β-D-ribosyl)glycinamide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 79543, - "label": "EC-3.6.1.26", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 57028, - "label": "yrdD-rimN-aroE-yrdB TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 7880, - "label": "cytosine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 34505, - "label": "soxS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 79571, - "label": "EC-3.6.1.67", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 32468, - "label": "rssB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 79574, - "label": "EC-3.5.1", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 55016, - "label": "sohB TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 77547, - "label": "EC-3.1.3.15", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 7925, - "label": "dTMP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 7926, - "label": "L-homoserine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 9985, - "label": "N2-succinylglutamate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 79621, - "label": "EC-2.4.2.9", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9990, - "label": "[(R)-lipoyl]adenylate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 32520, - "label": "chpS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 7946, - "label": "L-alanine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 77581, - "label": "EC-2.3.1.47", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3856, - "label": "a [lipoyl-carrier protein]-N6-[(R)-lipoyl]-L-lysine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 7953, - "label": "L-threonine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 3857, - "label": "a [lipoyl-carrier protein]-N6-[(R)-dihydrolipoyl]-L-lysine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 7955, - "label": "UTP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 7958, - "label": "CTP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 7960, - "label": "L-histidine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 7963, - "label": "L-homocysteine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 7966, - "label": "L-methionine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 77600, - "label": "EC-1.1.1", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 32550, - "label": "cas2", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 7976, - "label": "L,L-diaminopimelate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 7977, - "label": "CDP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 79667, - "label": "EC-2.5.1.16", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 79669, - "label": "EC-4.1.1.98", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 7989, - "label": "L-arginine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 77623, - "label": "EC-4.1.1.49", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 7993, - "label": "L-aspartate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 10042, - "label": "glutathione", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 79675, - "label": "EC-6.3.1.11", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 77628, - "label": "EC-4.1.1.17", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 7997, - "label": "L-tryptophan", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 57150, - "label": "yjfY TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 10046, - "label": "hydroxyacetone", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 46911, - "label": "acrAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 8001, - "label": "L-isoleucine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 79679, - "label": "EC-2.7.7.60", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8003, - "label": "L-proline", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 77636, - "label": "EC-4.2.99.20", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 61253, - "label": "GTP cyclohydrolase 2", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 34627, - "label": "zraR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 8007, - "label": "(L-threonylcarbamoyl)adenylate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 77633, - "label": "EC-6.3.4.21", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 32581, - "label": "clsB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 77645, - "label": "EC-3.1.3", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8021, - "label": "L-tyrosine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 8026, - "label": "L-serine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 10075, - "label": "ADP-α-D-glucose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 8030, - "label": "L-glutamate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 8034, - "label": "meso-diaminopimelate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 8038, - "label": "L-cysteine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 8043, - "label": "L-leucine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 8044, - "label": "dGTP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 61292, - "label": "DMBPPRIBOSYLTRANS-CPLX", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 77680, - "label": "EC-4.1.1.19", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 59254, - "label": "Phosphorylated DNA-binding transcriptional dual regulator ArcA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 77693, - "label": "EC-3.1.1.108", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 77694, - "label": "RXN-17757", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8064, - "label": "EC-2.6.1.62", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 3973, - "label": "EC-2.5.1.19", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 32646, - "label": "ivy", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 44933, - "label": "sohBp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 32650, - "label": "dctA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 61330, - "label": "DNA-binding transcriptional dual regulator CysB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 8099, - "label": "(R)-malate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 10153, - "label": "β-D-fructofuranose 6-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 79786, - "label": "EC-2.4.1.18", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8106, - "label": "(S)-malate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 79788, - "label": "EC-2.4.2.7", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 61360, - "label": "DNA-binding transcriptional dual regulator HcaR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 8113, - "label": "dGMP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 6067, - "label": "D-mannose", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 10165, - "label": "(R)-S-lactoylglutathione", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 8119, - "label": "2'-deoxyguanosine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 8121, - "label": "dATP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 4027, - "label": "an electron-transfer quinone", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 79808, - "label": "EC-2.7.1.1|EC-2.7.1.2", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 79810, - "label": "EC-2.3.1.47", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 6083, - "label": "D-glycero-D-manno-heptose 7-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 6087, - "label": "D-sedoheptulose 7-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 77770, - "label": "EC-3.1.3", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 79820, - "label": "EC-5.4.99.9", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8140, - "label": "L-aspartyl-4-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 10216, - "label": "UDP-α-D-glucose", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 55276, - "label": "rpmBG-mutM TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 79853, - "label": "EC-2.6.1.31", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8182, - "label": "EC-4.1.2.48|EC-4.1.2.49", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8184, - "label": "triphosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 77821, - "label": "EC-5.4.2.11", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 79871, - "label": "RXN0-7272", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - } - ], - "edges": [ - { - "id": "90730", - "label": "PRODUCES", - "from": 79872, - "to": 7682, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "71136", - "label": "ENCODES", - "from": 34821, - "to": 58563, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84083", - "label": "CONSUMED_BY", - "from": 10247, - "to": 79820, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "531", - "label": "INHIBITS", - "from": 8202, - "to": 8064, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3469", - "label": "CONSUMED_BY", - "from": 8202, - "to": 10920, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24718", - "label": "INHIBITS", - "from": 8202, - "to": 77288, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12925", - "label": "HAS_GENE", - "from": 55311, - "to": 34382, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86219", - "label": "PRODUCES", - "from": 77849, - "to": 8744, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90797", - "label": "PRODUCES", - "from": 79898, - "to": 10646, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "82724", - "label": "CONSUMED_BY", - "from": 10277, - "to": 79179, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27738", - "label": "CATALYZES", - "from": 61485, - "to": 78510, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "74252", - "label": "ENCODES", - "from": 34864, - "to": 62441, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86260", - "label": "PRODUCES", - "from": 77873, - "to": 7958, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90874", - "label": "PRODUCES", - "from": 79927, - "to": 9911, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86274", - "label": "PRODUCES", - "from": 77881, - "to": 6798, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90888", - "label": "PRODUCES", - "from": 79934, - "to": 9158, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "78883", - "label": "CONSUMED_BY", - "from": 10311, - "to": 77255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90907", - "label": "PRODUCES", - "from": 79943, - "to": 10075, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21835", - "label": "INHIBITS", - "from": 8266, - "to": 79927, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84400", - "label": "CONSUMED_BY", - "from": 10314, - "to": 79976, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18899", - "label": "ACTIVATES", - "from": 59472, - "to": 47574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86308", - "label": "PRODUCES", - "from": 77903, - "to": 8140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90931", - "label": "PRODUCES", - "from": 79953, - "to": 7997, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86328", - "label": "PRODUCES", - "from": 77913, - "to": 8030, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12238", - "label": "HAS_GENE", - "from": 55386, - "to": 33855, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90965", - "label": "PRODUCES", - "from": 79968, - "to": 8821, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90986", - "label": "PRODUCES", - "from": 79975, - "to": 8433, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90990", - "label": "PRODUCES", - "from": 79976, - "to": 10311, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18585", - "label": "ACTIVATES", - "from": 59500, - "to": 45952, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "25898", - "label": "CATALYZES", - "from": 61550, - "to": 77770, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "26065", - "label": "CATALYZES", - "from": 61550, - "to": 80090, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "26160", - "label": "CATALYZES", - "from": 61550, - "to": 77547, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "26199", - "label": "CATALYZES", - "from": 61550, - "to": 78997, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "26357", - "label": "CATALYZES", - "from": 61550, - "to": 77993, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "26500", - "label": "CATALYZES", - "from": 61550, - "to": 77314, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "26671", - "label": "CATALYZES", - "from": 61550, - "to": 79441, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "26867", - "label": "CATALYZES", - "from": 61550, - "to": 79079, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27040", - "label": "CATALYZES", - "from": 61550, - "to": 77645, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27118", - "label": "CATALYZES", - "from": 61550, - "to": 78397, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27231", - "label": "CATALYZES", - "from": 61550, - "to": 78835, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27383", - "label": "CATALYZES", - "from": 61550, - "to": 78933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27556", - "label": "CATALYZES", - "from": 61550, - "to": 79285, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84779", - "label": "CONSUMED_BY", - "from": 6255, - "to": 80160, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22928", - "label": "INHIBITS", - "from": 57472, - "to": 55386, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86399", - "label": "PRODUCES", - "from": 77955, - "to": 7977, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "91067", - "label": "PRODUCES", - "from": 80007, - "to": 8670, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "91070", - "label": "PRODUCES", - "from": 80008, - "to": 8184, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3467", - "label": "CONSUMED_BY", - "from": 2183, - "to": 10988, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "477", - "label": "CONSUMED_BY", - "from": 10387, - "to": 80084, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "91100", - "label": "PRODUCES", - "from": 80021, - "to": 9775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "91101", - "label": "PRODUCES", - "from": 80021, - "to": 7963, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18402", - "label": "ACTIVATES", - "from": 59551, - "to": 57028, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "80538", - "label": "CONSUMED_BY", - "from": 8354, - "to": 78061, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3604", - "label": "CONSUMED_BY", - "from": 8355, - "to": 10881, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21614", - "label": "INHIBITS", - "from": 8355, - "to": 79075, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "80663", - "label": "CONSUMED_BY", - "from": 8355, - "to": 78128, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "81321", - "label": "CONSUMED_BY", - "from": 8355, - "to": 78470, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "81591", - "label": "CONSUMED_BY", - "from": 8355, - "to": 78608, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "82499", - "label": "CONSUMED_BY", - "from": 8355, - "to": 79068, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "82821", - "label": "CONSUMED_BY", - "from": 8355, - "to": 79225, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "91131", - "label": "PRODUCES", - "from": 80036, - "to": 8266, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "76391", - "label": "COMPONENT_OF", - "from": 57511, - "to": 62422, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86474", - "label": "PRODUCES", - "from": 77993, - "to": 8271, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "91149", - "label": "PRODUCES", - "from": 80045, - "to": 10277, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "91160", - "label": "PRODUCES", - "from": 80050, - "to": 10042, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86495", - "label": "PRODUCES", - "from": 78003, - "to": 9985, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20183", - "label": "ACTIVATES", - "from": 61620, - "to": 48191, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75730", - "label": "COMPONENT_OF", - "from": 61620, - "to": 61072, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3584", - "label": "CONSUMED_BY", - "from": 8374, - "to": 10729, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21969", - "label": "INHIBITS", - "from": 8374, - "to": 79872, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "79635", - "label": "CONSUMED_BY", - "from": 8374, - "to": 77623, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84145", - "label": "CONSUMED_BY", - "from": 8374, - "to": 79853, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18234", - "label": "ACTIVATES", - "from": 10423, - "to": 78739, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19016", - "label": "ACTIVATES", - "from": 10423, - "to": 54379, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19153", - "label": "ACTIVATES", - "from": 10423, - "to": 53723, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19325", - "label": "ACTIVATES", - "from": 10423, - "to": 57150, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19356", - "label": "ACTIVATES", - "from": 10423, - "to": 47548, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19505", - "label": "ACTIVATES", - "from": 10423, - "to": 53847, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19541", - "label": "ACTIVATES", - "from": 10423, - "to": 55838, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20136", - "label": "ACTIVATES", - "from": 10423, - "to": 79621, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24386", - "label": "INHIBITS", - "from": 10423, - "to": 77628, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20781", - "label": "INHIBITS", - "from": 10423, - "to": 78105, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22184", - "label": "INHIBITS", - "from": 10423, - "to": 46347, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23287", - "label": "INHIBITS", - "from": 10423, - "to": 79788, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75658", - "label": "COMPONENT_OF", - "from": 10423, - "to": 60964, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "91182", - "label": "PRODUCES", - "from": 80057, - "to": 9593, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86516", - "label": "PRODUCES", - "from": 78013, - "to": 7706, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "55157", - "label": "ENCODES", - "from": 35009, - "to": 57472, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "79099", - "label": "CONSUMED_BY", - "from": 10440, - "to": 77366, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "26759", - "label": "CATALYZES", - "from": 61647, - "to": 79529, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "91240", - "label": "PRODUCES", - "from": 80081, - "to": 7925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86562", - "label": "PRODUCES", - "from": 78036, - "to": 8099, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "73529", - "label": "ENCODES", - "from": 32981, - "to": 61360, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "241", - "label": "PRODUCES", - "from": 80084, - "to": 7770, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "91260", - "label": "PRODUCES", - "from": 80090, - "to": 6067, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "91296", - "label": "PRODUCES", - "from": 80104, - "to": 7614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86620", - "label": "PRODUCES", - "from": 78061, - "to": 10632, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3579", - "label": "CONSUMED_BY", - "from": 8433, - "to": 8182, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "91327", - "label": "PRODUCES", - "from": 80115, - "to": 8354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86678", - "label": "PRODUCES", - "from": 78089, - "to": 8007, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "82675", - "label": "CONSUMED_BY", - "from": 2315, - "to": 79156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3939", - "label": "CONSUMED_BY", - "from": 59659, - "to": 9544, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86707", - "label": "PRODUCES", - "from": 78103, - "to": 8447, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86714", - "label": "PRODUCES", - "from": 78105, - "to": 8743, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86717", - "label": "PRODUCES", - "from": 78107, - "to": 8374, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "91427", - "label": "PRODUCES", - "from": 80160, - "to": 6213, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "91438", - "label": "PRODUCES", - "from": 80164, - "to": 10044, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86739", - "label": "PRODUCES", - "from": 78119, - "to": 7958, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "248", - "label": "PRODUCES", - "from": 80171, - "to": 9606, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75631", - "label": "COMPONENT_OF", - "from": 59691, - "to": 60925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86762", - "label": "PRODUCES", - "from": 78128, - "to": 7993, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "91477", - "label": "PRODUCES", - "from": 80180, - "to": 9282, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "79169", - "label": "CONSUMED_BY", - "from": 8512, - "to": 77401, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27526", - "label": "CATALYZES", - "from": 59722, - "to": 79871, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86822", - "label": "PRODUCES", - "from": 78156, - "to": 8892, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "80104", - "label": "CONSUMED_BY", - "from": 8530, - "to": 77849, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86858", - "label": "PRODUCES", - "from": 78175, - "to": 9774, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10366", - "label": "HAS_GENE", - "from": 55667, - "to": 32646, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "70833", - "label": "ENCODES", - "from": 33149, - "to": 58162, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2056", - "label": "INHIBITS", - "from": 10643, - "to": 10968, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21508", - "label": "INHIBITS", - "from": 10643, - "to": 79151, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "76240", - "label": "COMPONENT_OF", - "from": 57747, - "to": 62101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "80321", - "label": "CONSUMED_BY", - "from": 10646, - "to": 77955, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "81598", - "label": "CONSUMED_BY", - "from": 10646, - "to": 78611, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86987", - "label": "PRODUCES", - "from": 78238, - "to": 7960, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "79664", - "label": "CONSUMED_BY", - "from": 8614, - "to": 77636, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87039", - "label": "PRODUCES", - "from": 78257, - "to": 9268, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87040", - "label": "PRODUCES", - "from": 78257, - "to": 8030, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "26053", - "label": "CATALYZES", - "from": 59828, - "to": 79143, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "44875", - "label": "ELEMENT_OF", - "from": 47548, - "to": 54146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "45511", - "label": "ELEMENT_OF", - "from": 47574, - "to": 54343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87122", - "label": "PRODUCES", - "from": 78297, - "to": 9566, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10259", - "label": "HAS_GENE", - "from": 53723, - "to": 32581, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2934", - "label": "PRODUCES", - "from": 10716, - "to": 8113, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2923", - "label": "PRODUCES", - "from": 10718, - "to": 7955, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11422", - "label": "HAS_GENE", - "from": 53728, - "to": 33343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11555", - "label": "HAS_GENE", - "from": 53731, - "to": 33426, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11896", - "label": "HAS_GENE", - "from": 53731, - "to": 33653, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2955", - "label": "PRODUCES", - "from": 10729, - "to": 4027, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2874", - "label": "PRODUCES", - "from": 10731, - "to": 9298, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2875", - "label": "PRODUCES", - "from": 10731, - "to": 8043, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2937", - "label": "PRODUCES", - "from": 10732, - "to": 9581, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87173", - "label": "PRODUCES", - "from": 78319, - "to": 8034, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3335", - "label": "PRODUCES", - "from": 10739, - "to": 9795, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75855", - "label": "COMPONENT_OF", - "from": 61942, - "to": 61292, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9367", - "label": "HAS_GENE", - "from": 55799, - "to": 32027, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "14561", - "label": "HAS_GENE", - "from": 53765, - "to": 35599, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "77881", - "label": "MODIFIED_TO", - "from": 61957, - "to": 59551, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27260", - "label": "CATALYZES", - "from": 61960, - "to": 78726, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84788", - "label": "CONSUMED_BY", - "from": 8729, - "to": 80164, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "14421", - "label": "HAS_GENE", - "from": 55838, - "to": 35506, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "81732", - "label": "CONSUMED_BY", - "from": 8743, - "to": 78679, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3165", - "label": "PRODUCES", - "from": 10793, - "to": 8043, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3166", - "label": "PRODUCES", - "from": 10793, - "to": 59012, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2949", - "label": "PRODUCES", - "from": 10795, - "to": 10153, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24027", - "label": "INHIBITS", - "from": 8747, - "to": 77680, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "83762", - "label": "CONSUMED_BY", - "from": 8747, - "to": 79667, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87336", - "label": "PRODUCES", - "from": 78397, - "to": 7677, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72397", - "label": "ENCODES", - "from": 33343, - "to": 60036, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3176", - "label": "PRODUCES", - "from": 10820, - "to": 7989, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87373", - "label": "PRODUCES", - "from": 78411, - "to": 7977, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3320", - "label": "PRODUCES", - "from": 10830, - "to": 9349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "13810", - "label": "HAS_GENE", - "from": 53847, - "to": 35014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "51985", - "label": "ELEMENT_OF", - "from": 47712, - "to": 56349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "77784", - "label": "MODIFIED_TO", - "from": 57952, - "to": 59254, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3218", - "label": "PRODUCES", - "from": 10850, - "to": 8604, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "83444", - "label": "CONSUMED_BY", - "from": 60000, - "to": 79520, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87424", - "label": "PRODUCES", - "from": 78436, - "to": 8609, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87436", - "label": "PRODUCES", - "from": 78441, - "to": 9272, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3071", - "label": "PRODUCES", - "from": 10859, - "to": 7953, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3072", - "label": "PRODUCES", - "from": 10859, - "to": 8716, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10370", - "label": "HAS_GENE", - "from": 53876, - "to": 32650, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "80423", - "label": "CONSUMED_BY", - "from": 8821, - "to": 78003, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2811", - "label": "PRODUCES", - "from": 10877, - "to": 6087, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2985", - "label": "PRODUCES", - "from": 10880, - "to": 8953, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2974", - "label": "PRODUCES", - "from": 10881, - "to": 8038, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "48531", - "label": "ELEMENT_OF", - "from": 47745, - "to": 55276, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75348", - "label": "COMPONENT_OF", - "from": 60036, - "to": 58400, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75691", - "label": "COMPONENT_OF", - "from": 8838, - "to": 61015, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87499", - "label": "PRODUCES", - "from": 78470, - "to": 8106, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18296", - "label": "ACTIVATES", - "from": 57996, - "to": 46911, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18678", - "label": "ACTIVATES", - "from": 57996, - "to": 47778, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "82656", - "label": "CONSUMED_BY", - "from": 6798, - "to": 79145, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87524", - "label": "PRODUCES", - "from": 78481, - "to": 8538, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "70864", - "label": "ENCODES", - "from": 33426, - "to": 58203, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "26612", - "label": "CATALYZES", - "from": 62101, - "to": 80171, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "73611", - "label": "ENCODES", - "from": 33431, - "to": 61485, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "48908", - "label": "ELEMENT_OF", - "from": 45725, - "to": 55386, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2891", - "label": "PRODUCES", - "from": 10912, - "to": 9813, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "45718", - "label": "ELEMENT_OF", - "from": 45729, - "to": 54399, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22948", - "label": "INHIBITS", - "from": 8866, - "to": 78175, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "51009", - "label": "ELEMENT_OF", - "from": 47778, - "to": 56033, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2849", - "label": "PRODUCES", - "from": 10920, - "to": 9214, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87579", - "label": "PRODUCES", - "from": 78507, - "to": 9779, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3411", - "label": "PRODUCES", - "from": 10924, - "to": 6087, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87584", - "label": "PRODUCES", - "from": 78510, - "to": 9100, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2979", - "label": "PRODUCES", - "from": 10930, - "to": 9782, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87598", - "label": "PRODUCES", - "from": 78517, - "to": 8962, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87609", - "label": "PRODUCES", - "from": 78523, - "to": 8121, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87610", - "label": "PRODUCES", - "from": 78523, - "to": 8450, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87611", - "label": "PRODUCES", - "from": 78523, - "to": 8355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2820", - "label": "PRODUCES", - "from": 10946, - "to": 8747, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2825", - "label": "PRODUCES", - "from": 10948, - "to": 4836, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3145", - "label": "PRODUCES", - "from": 10955, - "to": 9239, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2883", - "label": "PRODUCES", - "from": 10956, - "to": 8038, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3416", - "label": "PRODUCES", - "from": 10968, - "to": 10216, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "80047", - "label": "CONSUMED_BY", - "from": 8921, - "to": 77821, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "82676", - "label": "CONSUMED_BY", - "from": 8921, - "to": 79157, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "26654", - "label": "CATALYZES", - "from": 62174, - "to": 78576, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "26824", - "label": "CATALYZES", - "from": 62174, - "to": 78940, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27015", - "label": "CATALYZES", - "from": 62174, - "to": 78436, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10018", - "label": "HAS_GENE", - "from": 56033, - "to": 32426, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84609", - "label": "CONSUMED_BY", - "from": 4836, - "to": 80081, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2847", - "label": "PRODUCES", - "from": 10988, - "to": 2315, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2848", - "label": "PRODUCES", - "from": 10988, - "to": 5006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87731", - "label": "PRODUCES", - "from": 78576, - "to": 7997, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87750", - "label": "PRODUCES", - "from": 78584, - "to": 7700, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "81407", - "label": "CONSUMED_BY", - "from": 8953, - "to": 78517, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84180", - "label": "CONSUMED_BY", - "from": 4857, - "to": 79871, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87777", - "label": "PRODUCES", - "from": 78596, - "to": 8003, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11563", - "label": "HAS_GENE", - "from": 56071, - "to": 33431, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2984", - "label": "PRODUCES", - "from": 11022, - "to": 7614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87805", - "label": "PRODUCES", - "from": 78608, - "to": 9349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87806", - "label": "PRODUCES", - "from": 78608, - "to": 8355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87813", - "label": "PRODUCES", - "from": 78611, - "to": 7880, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2841", - "label": "PRODUCES", - "from": 11037, - "to": 1133, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87844", - "label": "PRODUCES", - "from": 78622, - "to": 8976, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2896", - "label": "PRODUCES", - "from": 11049, - "to": 9303, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "25837", - "label": "CATALYZES", - "from": 58162, - "to": 79028, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "71062", - "label": "ENCODES", - "from": 33593, - "to": 58466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "798", - "label": "CATALYZES", - "from": 62272, - "to": 10716, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2873", - "label": "PRODUCES", - "from": 11072, - "to": 8001, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3253", - "label": "PRODUCES", - "from": 11075, - "to": 8888, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3047", - "label": "PRODUCES", - "from": 11076, - "to": 8609, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2822", - "label": "PRODUCES", - "from": 11078, - "to": 8921, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87930", - "label": "PRODUCES", - "from": 78665, - "to": 7946, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87931", - "label": "PRODUCES", - "from": 78665, - "to": 9279, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87967", - "label": "PRODUCES", - "from": 78679, - "to": 8733, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "76173", - "label": "COMPONENT_OF", - "from": 58203, - "to": 61960, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "76029", - "label": "COMPONENT_OF", - "from": 58207, - "to": 61647, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84018", - "label": "CONSUMED_BY", - "from": 7013, - "to": 79786, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "83293", - "label": "CONSUMED_BY", - "from": 9071, - "to": 79451, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "74369", - "label": "ENCODES", - "from": 33653, - "to": 62619, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "370", - "label": "CONSUMED_BY", - "from": 9077, - "to": 79191, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3608", - "label": "CONSUMED_BY", - "from": 9077, - "to": 10930, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "79658", - "label": "CONSUMED_BY", - "from": 9077, - "to": 77633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88044", - "label": "PRODUCES", - "from": 78712, - "to": 8866, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88045", - "label": "PRODUCES", - "from": 78712, - "to": 8276, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88054", - "label": "PRODUCES", - "from": 78717, - "to": 6083, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "52098", - "label": "ELEMENT_OF", - "from": 45952, - "to": 56378, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "15057", - "label": "HAS_GENE", - "from": 54146, - "to": 35998, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88070", - "label": "PRODUCES", - "from": 78726, - "to": 9671, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "83078", - "label": "CONSUMED_BY", - "from": 5006, - "to": 79346, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "82827", - "label": "CONSUMED_BY", - "from": 58256, - "to": 79228, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88100", - "label": "PRODUCES", - "from": 78739, - "to": 7447, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "83767", - "label": "CONSUMED_BY", - "from": 9109, - "to": 79669, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "73509", - "label": "ENCODES", - "from": 35735, - "to": 61330, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72074", - "label": "ENCODES", - "from": 31654, - "to": 59691, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "51656", - "label": "ELEMENT_OF", - "from": 45992, - "to": 56246, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27267", - "label": "CATALYZES", - "from": 62385, - "to": 78036, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88179", - "label": "PRODUCES", - "from": 78771, - "to": 7700, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "13803", - "label": "HAS_GENE", - "from": 56246, - "to": 35009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "83492", - "label": "CONSUMED_BY", - "from": 953, - "to": 79543, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "74072", - "label": "ENCODES", - "from": 35780, - "to": 62174, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84564", - "label": "CONSUMED_BY", - "from": 9158, - "to": 80057, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88242", - "label": "PRODUCES", - "from": 78801, - "to": 9227, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "26737", - "label": "CATALYZES", - "from": 62422, - "to": 78507, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75834", - "label": "COMPONENT_OF", - "from": 58336, - "to": 61253, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27330", - "label": "CATALYZES", - "from": 62441, - "to": 77460, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "79155", - "label": "CONSUMED_BY", - "from": 9195, - "to": 77394, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18307", - "label": "ACTIVATES", - "from": 58351, - "to": 31796, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19680", - "label": "ACTIVATES", - "from": 58351, - "to": 32981, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20015", - "label": "ACTIVATES", - "from": 58351, - "to": 56071, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20065", - "label": "ACTIVATES", - "from": 58351, - "to": 35757, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20430", - "label": "ACTIVATES", - "from": 58351, - "to": 55667, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20459", - "label": "ACTIVATES", - "from": 58351, - "to": 33149, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20491", - "label": "INHIBITS", - "from": 58351, - "to": 33084, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20814", - "label": "INHIBITS", - "from": 58351, - "to": 31982, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20947", - "label": "INHIBITS", - "from": 58351, - "to": 55838, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21102", - "label": "INHIBITS", - "from": 58351, - "to": 36194, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21640", - "label": "INHIBITS", - "from": 58351, - "to": 31992, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21841", - "label": "INHIBITS", - "from": 58351, - "to": 53765, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22025", - "label": "INHIBITS", - "from": 58351, - "to": 34864, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22379", - "label": "INHIBITS", - "from": 58351, - "to": 35998, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22622", - "label": "INHIBITS", - "from": 58351, - "to": 32520, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22894", - "label": "INHIBITS", - "from": 58351, - "to": 32187, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23239", - "label": "INHIBITS", - "from": 58351, - "to": 31950, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23608", - "label": "INHIBITS", - "from": 58351, - "to": 35736, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23889", - "label": "INHIBITS", - "from": 58351, - "to": 36029, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24126", - "label": "INHIBITS", - "from": 58351, - "to": 55311, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88323", - "label": "PRODUCES", - "from": 78833, - "to": 9279, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "50212", - "label": "ELEMENT_OF", - "from": 46066, - "to": 55799, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88326", - "label": "PRODUCES", - "from": 78835, - "to": 8119, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "80862", - "label": "CONSUMED_BY", - "from": 9210, - "to": 78238, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "528", - "label": "INHIBITS", - "from": 9214, - "to": 8064, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23175", - "label": "INHIBITS", - "from": 9214, - "to": 77288, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75986", - "label": "COMPONENT_OF", - "from": 60425, - "to": 61550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88368", - "label": "PRODUCES", - "from": 78858, - "to": 9817, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "280", - "label": "CONSUMED_BY", - "from": 9227, - "to": 77600, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "350", - "label": "CONSUMED_BY", - "from": 9227, - "to": 78987, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "358", - "label": "CONSUMED_BY", - "from": 9227, - "to": 79111, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "82199", - "label": "CONSUMED_BY", - "from": 9227, - "to": 78913, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "25110", - "label": "CATALYZES", - "from": 60427, - "to": 78712, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "97", - "label": "PRODUCES", - "from": 78871, - "to": 7677, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12491", - "label": "HAS_GENE", - "from": 56349, - "to": 34032, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27235", - "label": "CATALYZES", - "from": 58400, - "to": 79934, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20418", - "label": "ACTIVATES", - "from": 60464, - "to": 31970, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21224", - "label": "INHIBITS", - "from": 60464, - "to": 34627, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21303", - "label": "INHIBITS", - "from": 60464, - "to": 35599, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23081", - "label": "INHIBITS", - "from": 60464, - "to": 31654, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23171", - "label": "INHIBITS", - "from": 60464, - "to": 35234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23606", - "label": "INHIBITS", - "from": 60464, - "to": 57150, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23730", - "label": "INHIBITS", - "from": 60464, - "to": 35780, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23796", - "label": "INHIBITS", - "from": 60464, - "to": 33593, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24619", - "label": "INHIBITS", - "from": 60464, - "to": 34372, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24790", - "label": "INHIBITS", - "from": 60464, - "to": 32468, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72866", - "label": "ENCODES", - "from": 31796, - "to": 60509, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88461", - "label": "PRODUCES", - "from": 78903, - "to": 10291, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "13561", - "label": "HAS_GENE", - "from": 56377, - "to": 34821, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10209", - "label": "HAS_GENE", - "from": 56378, - "to": 32550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88492", - "label": "PRODUCES", - "from": 78913, - "to": 10046, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "389", - "label": "CONSUMED_BY", - "from": 9282, - "to": 79373, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "44081", - "label": "ELEMENT_OF", - "from": 48191, - "to": 53876, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12397", - "label": "HAS_GENE", - "from": 54343, - "to": 33962, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "344", - "label": "CONSUMED_BY", - "from": 9296, - "to": 78871, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22006", - "label": "INHIBITS", - "from": 9296, - "to": 80180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "79780", - "label": "CONSUMED_BY", - "from": 9296, - "to": 77694, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23807", - "label": "INHIBITS", - "from": 9298, - "to": 78951, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24025", - "label": "INHIBITS", - "from": 9298, - "to": 79872, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "80911", - "label": "CONSUMED_BY", - "from": 9298, - "to": 78257, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "81419", - "label": "CONSUMED_BY", - "from": 9298, - "to": 78523, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "82038", - "label": "CONSUMED_BY", - "from": 9298, - "to": 78833, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "82789", - "label": "CONSUMED_BY", - "from": 9298, - "to": 79209, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84384", - "label": "CONSUMED_BY", - "from": 9298, - "to": 79968, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84398", - "label": "CONSUMED_BY", - "from": 9298, - "to": 79975, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88533", - "label": "PRODUCES", - "from": 78933, - "to": 8026, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "79174", - "label": "CONSUMED_BY", - "from": 9303, - "to": 77404, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88546", - "label": "PRODUCES", - "from": 78940, - "to": 8021, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "76320", - "label": "COMPONENT_OF", - "from": 60509, - "to": 62272, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "74386", - "label": "ENCODES", - "from": 33888, - "to": 62644, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19219", - "label": "ACTIVATES", - "from": 58466, - "to": 45992, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75605", - "label": "COMPONENT_OF", - "from": 58466, - "to": 60886, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "101", - "label": "PRODUCES", - "from": 78951, - "to": 9405, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20317", - "label": "ACTIVATES", - "from": 60523, - "to": 79462, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9152", - "label": "HAS_GENE", - "from": 54379, - "to": 31873, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12297", - "label": "HAS_GENE", - "from": 54399, - "to": 33888, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "80623", - "label": "CONSUMED_BY", - "from": 9349, - "to": 78107, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "81590", - "label": "CONSUMED_BY", - "from": 9349, - "to": 78608, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "105", - "label": "PRODUCES", - "from": 78987, - "to": 8466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88668", - "label": "PRODUCES", - "from": 78997, - "to": 9876, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "80986", - "label": "CONSUMED_BY", - "from": 9366, - "to": 78297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "76172", - "label": "COMPONENT_OF", - "from": 62619, - "to": 61960, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "71531", - "label": "ENCODES", - "from": 35998, - "to": 59012, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "26014", - "label": "CATALYZES", - "from": 60579, - "to": 77600, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88724", - "label": "PRODUCES", - "from": 79021, - "to": 10339, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88738", - "label": "PRODUCES", - "from": 79028, - "to": 8266, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27337", - "label": "CATALYZES", - "from": 62644, - "to": 77693, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72190", - "label": "ENCODES", - "from": 33980, - "to": 59828, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "71929", - "label": "ENCODES", - "from": 36029, - "to": 59500, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "78854", - "label": "CONSUMED_BY", - "from": 9405, - "to": 77241, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75578", - "label": "COMPONENT_OF", - "from": 62656, - "to": 60847, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "76018", - "label": "COMPONENT_OF", - "from": 58563, - "to": 61620, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "74408", - "label": "ENCODES", - "from": 36037, - "to": 62675, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "70436", - "label": "ENCODES", - "from": 31950, - "to": 57511, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1372", - "label": "CATALYZES", - "from": 62675, - "to": 10859, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "76518", - "label": "COMPONENT_OF", - "from": 58587, - "to": 62656, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88821", - "label": "PRODUCES", - "from": 79068, - "to": 9250, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88833", - "label": "PRODUCES", - "from": 79075, - "to": 9296, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88844", - "label": "PRODUCES", - "from": 79079, - "to": 9214, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "80442", - "label": "CONSUMED_BY", - "from": 9454, - "to": 78013, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "83020", - "label": "CONSUMED_BY", - "from": 9454, - "to": 79318, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72880", - "label": "ENCODES", - "from": 36082, - "to": 60523, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "73917", - "label": "ENCODES", - "from": 31992, - "to": 61942, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "47779", - "label": "ELEMENT_OF", - "from": 46329, - "to": 55016, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88898", - "label": "PRODUCES", - "from": 79103, - "to": 7844, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "115", - "label": "PRODUCES", - "from": 79111, - "to": 10165, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "52097", - "label": "ELEMENT_OF", - "from": 46347, - "to": 56377, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3429", - "label": "CONSUMED_BY", - "from": 7447, - "to": 10877, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72784", - "label": "ENCODES", - "from": 32027, - "to": 60427, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88999", - "label": "PRODUCES", - "from": 79143, - "to": 10423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89003", - "label": "PRODUCES", - "from": 79145, - "to": 9097, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89015", - "label": "PRODUCES", - "from": 79151, - "to": 10247, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89025", - "label": "PRODUCES", - "from": 79156, - "to": 4844, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89027", - "label": "PRODUCES", - "from": 79157, - "to": 8953, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72782", - "label": "ENCODES", - "from": 32054, - "to": 60425, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3391", - "label": "PRODUCES", - "from": 9544, - "to": 57952, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89079", - "label": "PRODUCES", - "from": 79179, - "to": 10387, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "71154", - "label": "ENCODES", - "from": 36179, - "to": 58587, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "127", - "label": "PRODUCES", - "from": 79191, - "to": 9195, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89152", - "label": "PRODUCES", - "from": 79209, - "to": 8614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20683", - "label": "INHIBITS", - "from": 9581, - "to": 78481, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89192", - "label": "PRODUCES", - "from": 79225, - "to": 9651, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3769", - "label": "CONSUMED_BY", - "from": 9593, - "to": 10955, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89201", - "label": "PRODUCES", - "from": 79228, - "to": 59472, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "80617", - "label": "CONSUMED_BY", - "from": 9606, - "to": 78103, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12492", - "label": "HAS_GENE", - "from": 54668, - "to": 34032, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "533", - "label": "INHIBITS", - "from": 9614, - "to": 8064, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "78945", - "label": "CONSUMED_BY", - "from": 9614, - "to": 77288, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "70976", - "label": "ENCODES", - "from": 32144, - "to": 58351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3796", - "label": "CONSUMED_BY", - "from": 60847, - "to": 10820, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84858", - "label": "PRODUCES", - "from": 77234, - "to": 7925, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84863", - "label": "PRODUCES", - "from": 77237, - "to": 7751, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89346", - "label": "PRODUCES", - "from": 79285, - "to": 7953, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84871", - "label": "PRODUCES", - "from": 77241, - "to": 7976, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "70563", - "label": "ENCODES", - "from": 32187, - "to": 57747, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "82172", - "label": "CONSUMED_BY", - "from": 7614, - "to": 78903, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84908", - "label": "PRODUCES", - "from": 77255, - "to": 8569, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89420", - "label": "PRODUCES", - "from": 79316, - "to": 3856, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89425", - "label": "PRODUCES", - "from": 79318, - "to": 3857, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89427", - "label": "PRODUCES", - "from": 79318, - "to": 7966, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89430", - "label": "PRODUCES", - "from": 79318, - "to": 8838, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3894", - "label": "CONSUMED_BY", - "from": 60886, - "to": 10739, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84982", - "label": "PRODUCES", - "from": 77288, - "to": 8530, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89492", - "label": "PRODUCES", - "from": 79346, - "to": 4857, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85004", - "label": "PRODUCES", - "from": 77299, - "to": 953, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3822", - "label": "CONSUMED_BY", - "from": 60916, - "to": 10850, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85005", - "label": "PRODUCES", - "from": 77300, - "to": 9817, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11", - "label": "PRODUCES", - "from": 77308, - "to": 7926, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3886", - "label": "CONSUMED_BY", - "from": 60925, - "to": 10830, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "501", - "label": "ACTIVATES", - "from": 7682, - "to": 3973, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2325", - "label": "INHIBITS", - "from": 7682, - "to": 11022, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3440", - "label": "CONSUMED_BY", - "from": 7682, - "to": 11078, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20765", - "label": "INHIBITS", - "from": 7682, - "to": 78801, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "25000", - "label": "INHIBITS", - "from": 7682, - "to": 79808, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85038", - "label": "PRODUCES", - "from": 77314, - "to": 9214, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72821", - "label": "ENCODES", - "from": 34310, - "to": 60464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "147", - "label": "PRODUCES", - "from": 79373, - "to": 10584, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "81733", - "label": "CONSUMED_BY", - "from": 7706, - "to": 78679, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "43599", - "label": "ELEMENT_OF", - "from": 48669, - "to": 53728, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3790", - "label": "CONSUMED_BY", - "from": 60958, - "to": 10793, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89607", - "label": "PRODUCES", - "from": 79396, - "to": 8044, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22686", - "label": "INHIBITS", - "from": 60964, - "to": 47745, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1928", - "label": "INHIBITS", - "from": 9775, - "to": 10948, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3460", - "label": "CONSUMED_BY", - "from": 9775, - "to": 11037, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3511", - "label": "CONSUMED_BY", - "from": 9775, - "to": 10912, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3521", - "label": "CONSUMED_BY", - "from": 9775, - "to": 11049, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3846", - "label": "CONSUMED_BY", - "from": 9775, - "to": 11075, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19201", - "label": "ACTIVATES", - "from": 9775, - "to": 79943, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "81705", - "label": "CONSUMED_BY", - "from": 9775, - "to": 78665, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85156", - "label": "PRODUCES", - "from": 77366, - "to": 9706, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "81915", - "label": "CONSUMED_BY", - "from": 9782, - "to": 78771, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "82080", - "label": "CONSUMED_BY", - "from": 9790, - "to": 78858, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1504", - "label": "INHIBITS", - "from": 9795, - "to": 10880, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3580", - "label": "CONSUMED_BY", - "from": 9795, - "to": 8182, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "79261", - "label": "CONSUMED_BY", - "from": 9795, - "to": 77447, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72936", - "label": "ENCODES", - "from": 34372, - "to": 60579, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89710", - "label": "PRODUCES", - "from": 79441, - "to": 6255, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85226", - "label": "PRODUCES", - "from": 77394, - "to": 9071, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21451", - "label": "INHIBITS", - "from": 61015, - "to": 45729, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89732", - "label": "PRODUCES", - "from": 79451, - "to": 7827, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85246", - "label": "PRODUCES", - "from": 77404, - "to": 9827, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85239", - "label": "PRODUCES", - "from": 77401, - "to": 9990, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89758", - "label": "PRODUCES", - "from": 79462, - "to": 58256, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89801", - "label": "PRODUCES", - "from": 79479, - "to": 10646, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89802", - "label": "PRODUCES", - "from": 79479, - "to": 9366, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85338", - "label": "PRODUCES", - "from": 77442, - "to": 7013, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18467", - "label": "ACTIVATES", - "from": 59012, - "to": 31970, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18522", - "label": "ACTIVATES", - "from": 59012, - "to": 35140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18542", - "label": "ACTIVATES", - "from": 59012, - "to": 34505, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18657", - "label": "ACTIVATES", - "from": 59012, - "to": 36082, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19300", - "label": "ACTIVATES", - "from": 59012, - "to": 35095, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19550", - "label": "ACTIVATES", - "from": 59012, - "to": 32144, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19584", - "label": "ACTIVATES", - "from": 59012, - "to": 33980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19769", - "label": "ACTIVATES", - "from": 59012, - "to": 34864, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23298", - "label": "INHIBITS", - "from": 59012, - "to": 36029, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24921", - "label": "INHIBITS", - "from": 59012, - "to": 36179, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20290", - "label": "ACTIVATES", - "from": 59012, - "to": 32054, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21596", - "label": "INHIBITS", - "from": 59012, - "to": 36084, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23007", - "label": "INHIBITS", - "from": 59012, - "to": 32396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24004", - "label": "INHIBITS", - "from": 59012, - "to": 33010, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24310", - "label": "INHIBITS", - "from": 59012, - "to": 35735, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24731", - "label": "INHIBITS", - "from": 59012, - "to": 33149, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75653", - "label": "COMPONENT_OF", - "from": 59012, - "to": 60958, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85345", - "label": "PRODUCES", - "from": 77447, - "to": 10042, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "70867", - "label": "ENCODES", - "from": 32396, - "to": 58207, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18593", - "label": "ACTIVATES", - "from": 61072, - "to": 46066, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18683", - "label": "ACTIVATES", - "from": 61072, - "to": 48669, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21277", - "label": "INHIBITS", - "from": 61072, - "to": 44933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22037", - "label": "INHIBITS", - "from": 61072, - "to": 47712, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24141", - "label": "INHIBITS", - "from": 61072, - "to": 46329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85374", - "label": "PRODUCES", - "from": 77460, - "to": 9109, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "1790", - "label": "INHIBITS", - "from": 9876, - "to": 10924, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "78846", - "label": "CONSUMED_BY", - "from": 7832, - "to": 77237, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "82410", - "label": "CONSUMED_BY", - "from": 7838, - "to": 79021, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89904", - "label": "PRODUCES", - "from": 79520, - "to": 59659, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "83557", - "label": "CONSUMED_BY", - "from": 7844, - "to": 79571, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89926", - "label": "PRODUCES", - "from": 79529, - "to": 7832, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "70964", - "label": "ENCODES", - "from": 32426, - "to": 58336, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "81263", - "label": "CONSUMED_BY", - "from": 9911, - "to": 78441, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89960", - "label": "PRODUCES", - "from": 79543, - "to": 4844, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "15111", - "label": "HAS_GENE", - "from": 57028, - "to": 36037, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "70710", - "label": "ENCODES", - "from": 34505, - "to": 57996, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90026", - "label": "PRODUCES", - "from": 79571, - "to": 7838, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72361", - "label": "ENCODES", - "from": 32468, - "to": 60000, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90034", - "label": "PRODUCES", - "from": 79574, - "to": 8512, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12490", - "label": "HAS_GENE", - "from": 55016, - "to": 34032, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85583", - "label": "PRODUCES", - "from": 77547, - "to": 9210, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "188", - "label": "PRODUCES", - "from": 79621, - "to": 10643, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22442", - "label": "INHIBITS", - "from": 7946, - "to": 78596, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "79548", - "label": "CONSUMED_BY", - "from": 7946, - "to": 77581, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85671", - "label": "PRODUCES", - "from": 77581, - "to": 2183, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "83563", - "label": "CONSUMED_BY", - "from": 3856, - "to": 79574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19622", - "label": "ACTIVATES", - "from": 7953, - "to": 77308, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "78967", - "label": "CONSUMED_BY", - "from": 7953, - "to": 77300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "80588", - "label": "CONSUMED_BY", - "from": 7953, - "to": 78089, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "83015", - "label": "CONSUMED_BY", - "from": 3857, - "to": 79316, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21653", - "label": "INHIBITS", - "from": 7955, - "to": 79103, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24002", - "label": "INHIBITS", - "from": 7955, - "to": 79898, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "80153", - "label": "CONSUMED_BY", - "from": 7955, - "to": 77873, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "78964", - "label": "CONSUMED_BY", - "from": 7958, - "to": 77299, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "81210", - "label": "CONSUMED_BY", - "from": 7958, - "to": 78411, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "83791", - "label": "CONSUMED_BY", - "from": 7958, - "to": 79679, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20868", - "label": "INHIBITS", - "from": 7966, - "to": 78156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "34", - "label": "PRODUCES", - "from": 77600, - "to": 10046, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "81034", - "label": "CONSUMED_BY", - "from": 7976, - "to": 78319, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "80644", - "label": "CONSUMED_BY", - "from": 7977, - "to": 78119, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90260", - "label": "PRODUCES", - "from": 79667, - "to": 8729, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90265", - "label": "PRODUCES", - "from": 79669, - "to": 10254, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "81626", - "label": "CONSUMED_BY", - "from": 7989, - "to": 78622, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85772", - "label": "PRODUCES", - "from": 77623, - "to": 7682, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "80216", - "label": "CONSUMED_BY", - "from": 7993, - "to": 77903, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84517", - "label": "CONSUMED_BY", - "from": 7993, - "to": 80036, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84789", - "label": "CONSUMED_BY", - "from": 10042, - "to": 80164, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90279", - "label": "PRODUCES", - "from": 79675, - "to": 10440, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85784", - "label": "PRODUCES", - "from": 77628, - "to": 8747, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20619", - "label": "INHIBITS", - "from": 7997, - "to": 77913, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "13762", - "label": "HAS_GENE", - "from": 57150, - "to": 34974, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "43622", - "label": "ELEMENT_OF", - "from": 46911, - "to": 53731, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90289", - "label": "PRODUCES", - "from": 79679, - "to": 10314, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85804", - "label": "PRODUCES", - "from": 77636, - "to": 10354, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85805", - "label": "PRODUCES", - "from": 77636, - "to": 9775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "25963", - "label": "CATALYZES", - "from": 61253, - "to": 80045, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "73927", - "label": "ENCODES", - "from": 34627, - "to": 61957, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3693", - "label": "CONSUMED_BY", - "from": 8007, - "to": 10859, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85796", - "label": "PRODUCES", - "from": 77633, - "to": 9195, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72099", - "label": "ENCODES", - "from": 32581, - "to": 59722, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85825", - "label": "PRODUCES", - "from": 77645, - "to": 9214, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "874", - "label": "INHIBITS", - "from": 8021, - "to": 10731, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84355", - "label": "CONSUMED_BY", - "from": 8026, - "to": 79953, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84684", - "label": "CONSUMED_BY", - "from": 8026, - "to": 80115, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "79254", - "label": "CONSUMED_BY", - "from": 10075, - "to": 77442, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "347", - "label": "CONSUMED_BY", - "from": 8030, - "to": 78951, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3576", - "label": "CONSUMED_BY", - "from": 8030, - "to": 10795, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3439", - "label": "CONSUMED_BY", - "from": 8030, - "to": 10946, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3492", - "label": "CONSUMED_BY", - "from": 8030, - "to": 11072, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3503", - "label": "CONSUMED_BY", - "from": 8030, - "to": 10956, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3561", - "label": "CONSUMED_BY", - "from": 8030, - "to": 10732, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "25042", - "label": "INHIBITS", - "from": 8030, - "to": 77881, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "83780", - "label": "CONSUMED_BY", - "from": 8030, - "to": 79675, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84458", - "label": "CONSUMED_BY", - "from": 8030, - "to": 80007, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18584", - "label": "ACTIVATES", - "from": 8038, - "to": 80104, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23879", - "label": "INHIBITS", - "from": 8038, - "to": 79810, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24439", - "label": "INHIBITS", - "from": 8038, - "to": 80021, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "83355", - "label": "CONSUMED_BY", - "from": 8038, - "to": 79479, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "872", - "label": "INHIBITS", - "from": 8043, - "to": 10731, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2630", - "label": "INHIBITS", - "from": 8043, - "to": 11076, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21218", - "label": "INHIBITS", - "from": 8043, - "to": 80180, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21503", - "label": "INHIBITS", - "from": 8043, - "to": 77903, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75654", - "label": "COMPONENT_OF", - "from": 8043, - "to": 60958, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23846", - "label": "INHIBITS", - "from": 8044, - "to": 79103, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84461", - "label": "CONSUMED_BY", - "from": 8044, - "to": 80008, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27701", - "label": "CATALYZES", - "from": 61292, - "to": 77394, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85898", - "label": "PRODUCES", - "from": 77680, - "to": 8976, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24819", - "label": "INHIBITS", - "from": 59254, - "to": 48191, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85929", - "label": "PRODUCES", - "from": 77693, - "to": 10632, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85930", - "label": "PRODUCES", - "from": 77694, - "to": 7677, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2887", - "label": "PRODUCES", - "from": 8064, - "to": 9614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2888", - "label": "PRODUCES", - "from": 8064, - "to": 9454, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2815", - "label": "PRODUCES", - "from": 3973, - "to": 10373, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "46601", - "label": "ELEMENT_OF", - "from": 44933, - "to": 54668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "74215", - "label": "ENCODES", - "from": 32650, - "to": 62385, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20173", - "label": "ACTIVATES", - "from": 61330, - "to": 45725, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3958", - "label": "CONSUMED_BY", - "from": 10153, - "to": 10924, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90542", - "label": "PRODUCES", - "from": 79786, - "to": 7419, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90545", - "label": "PRODUCES", - "from": 79788, - "to": 9077, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90546", - "label": "PRODUCES", - "from": 79788, - "to": 8202, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75625", - "label": "COMPONENT_OF", - "from": 61360, - "to": 60916, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84547", - "label": "CONSUMED_BY", - "from": 10165, - "to": 80050, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19051", - "label": "ACTIVATES", - "from": 8121, - "to": 77234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24279", - "label": "INHIBITS", - "from": 8121, - "to": 79396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "81539", - "label": "CONSUMED_BY", - "from": 4027, - "to": 78584, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90586", - "label": "PRODUCES", - "from": 79808, - "to": 7614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90593", - "label": "PRODUCES", - "from": 79810, - "to": 9614, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "81807", - "label": "CONSUMED_BY", - "from": 6087, - "to": 78717, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86079", - "label": "PRODUCES", - "from": 77770, - "to": 6067, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90615", - "label": "PRODUCES", - "from": 79820, - "to": 10239, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3548", - "label": "CONSUMED_BY", - "from": 10216, - "to": 10718, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "14585", - "label": "HAS_GENE", - "from": 55276, - "to": 35618, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90686", - "label": "PRODUCES", - "from": 79853, - "to": 8271, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2951", - "label": "PRODUCES", - "from": 8182, - "to": 9790, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86169", - "label": "PRODUCES", - "from": 77821, - "to": 8953, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90726", - "label": "PRODUCES", - "from": 79871, - "to": 2415, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/marina_sankey_data/uncharacterized_iModulon_genes_only_vis_js.json b/appserver/neo4japp/services/shortest_path_data/marina_sankey_data/uncharacterized_iModulon_genes_only_vis_js.json deleted file mode 100644 index d039b59406..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/marina_sankey_data/uncharacterized_iModulon_genes_only_vis_js.json +++ /dev/null @@ -1,2576 +0,0 @@ -{ - "nodes": [ - { - "id": 34821, - "label": "crp", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 53765, - "label": "ycgJ TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 34310, - "label": "glaR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 32520, - "label": "chpS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 46347, - "label": "crpp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 55311, - "label": "fumD TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 35599, - "label": "ycgJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 35095, - "label": "ydhQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 56349, - "label": "sohB TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 55838, - "label": "curA TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 35618, - "label": "mutM", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 60964, - "label": "DksA-ppGpp", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 32550, - "label": "cas2", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 79143, - "label": "EC-2.7.6.5", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 60464, - "label": "DNA-binding transcriptional repressor GlaR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 56377, - "label": "crp TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 56378, - "label": "casABCDE12 TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 33593, - "label": "gcvA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 33084, - "label": "mscL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 57150, - "label": "yjfY TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 33855, - "label": "tcyJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 35140, - "label": "yacL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 54343, - "label": "yhdWXYZ TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 34382, - "label": "fumD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 59472, - "label": "NtrC-Phosphorylated DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 53847, - "label": "yeaQ TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 55386, - "label": "tcyJ TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 47712, - "label": "sohBp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 58466, - "label": "DNA-binding transcriptional dual regulator GcvA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 36194, - "label": "yegR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 79462, - "label": "NRIDEPHOS-RXN", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 60523, - "label": "sensory histidine kinase NtrB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 59500, - "label": "DNA-binding transcriptional dual regulator LeuO", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 54379, - "label": "msyB TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 55667, - "label": "ivy TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 79228, - "label": "NRIPHOS-RXN", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 57472, - "label": "small regulatory RNA GcvB", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 47745, - "label": "rpmBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 31873, - "label": "msyB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 45952, - "label": "casAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 59012, - "label": "DNA-binding transcriptional dual regulator Lrp", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 54146, - "label": "lrp TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 44933, - "label": "sohBp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 32646, - "label": "ivy", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 54668, - "label": "sohB TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 61072, - "label": "CRP-cAMP DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 32144, - "label": "nac", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 58256, - "label": "DNA-binding transcriptional dual regulator NtrC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 61330, - "label": "DNA-binding transcriptional dual regulator CysB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 35735, - "label": "cysB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 35736, - "label": "ybbC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 45725, - "label": "tcyJp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 35998, - "label": "lrp", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 34974, - "label": "yjfY", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 35234, - "label": "yjdP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 45992, - "label": "gcvBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 33962, - "label": "yhdZ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 35757, - "label": "ycaK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 35506, - "label": "curA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 61620, - "label": "DNA-binding transcriptional dual regulator CRP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 59828, - "label": "GDP/GTP pyrophosphokinase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 56246, - "label": "gcvB TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 10423, - "label": "ppGpp", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 33980, - "label": "relA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 36029, - "label": "leuO", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 47548, - "label": "lrpp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 35009, - "label": "gcvB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 58563, - "label": "DNA-binding transcriptional dual regulator CRP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 35014, - "label": "yeaQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 47574, - "label": "yhdWp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 31970, - "label": "rpiB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 55016, - "label": "sohB TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 55276, - "label": "rpmBG-mutM TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 31982, - "label": "cobU", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 58351, - "label": "DNA-binding transcriptional dual regulator Nac", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 34032, - "label": "sohB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 36082, - "label": "glnL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 33010, - "label": "yiiM", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 36084, - "label": "yodC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 46329, - "label": "sohBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - } - ], - "edges": [ - { - "id": "71136", - "label": "ENCODES", - "from": 34821, - "to": 58563, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "14561", - "label": "HAS_GENE", - "from": 53765, - "to": 35599, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72821", - "label": "ENCODES", - "from": 34310, - "to": 60464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "52097", - "label": "ELEMENT_OF", - "from": 46347, - "to": 56377, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12925", - "label": "HAS_GENE", - "from": 55311, - "to": 34382, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12491", - "label": "HAS_GENE", - "from": 56349, - "to": 34032, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "14421", - "label": "HAS_GENE", - "from": 55838, - "to": 35506, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22686", - "label": "INHIBITS", - "from": 60964, - "to": 47745, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88999", - "label": "PRODUCES", - "from": 79143, - "to": 10423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20418", - "label": "ACTIVATES", - "from": 60464, - "to": 31970, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21303", - "label": "INHIBITS", - "from": 60464, - "to": 35599, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23171", - "label": "INHIBITS", - "from": 60464, - "to": 35234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23606", - "label": "INHIBITS", - "from": 60464, - "to": 57150, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23796", - "label": "INHIBITS", - "from": 60464, - "to": 33593, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "13561", - "label": "HAS_GENE", - "from": 56377, - "to": 34821, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10209", - "label": "HAS_GENE", - "from": 56378, - "to": 32550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "71062", - "label": "ENCODES", - "from": 33593, - "to": 58466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "13762", - "label": "HAS_GENE", - "from": 57150, - "to": 34974, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12397", - "label": "HAS_GENE", - "from": 54343, - "to": 33962, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18899", - "label": "ACTIVATES", - "from": 59472, - "to": 47574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "13810", - "label": "HAS_GENE", - "from": 53847, - "to": 35014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12238", - "label": "HAS_GENE", - "from": 55386, - "to": 33855, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "51985", - "label": "ELEMENT_OF", - "from": 47712, - "to": 56349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19219", - "label": "ACTIVATES", - "from": 58466, - "to": 45992, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89758", - "label": "PRODUCES", - "from": 79462, - "to": 58256, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20317", - "label": "ACTIVATES", - "from": 60523, - "to": 79462, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18585", - "label": "ACTIVATES", - "from": 59500, - "to": 45952, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9152", - "label": "HAS_GENE", - "from": 54379, - "to": 31873, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10366", - "label": "HAS_GENE", - "from": 55667, - "to": 32646, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89201", - "label": "PRODUCES", - "from": 79228, - "to": 59472, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22928", - "label": "INHIBITS", - "from": 57472, - "to": 55386, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22980", - "label": "INHIBITS", - "from": 57472, - "to": 54146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "48531", - "label": "ELEMENT_OF", - "from": 47745, - "to": 55276, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "52098", - "label": "ELEMENT_OF", - "from": 45952, - "to": 56378, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18467", - "label": "ACTIVATES", - "from": 59012, - "to": 31970, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18522", - "label": "ACTIVATES", - "from": 59012, - "to": 35140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18657", - "label": "ACTIVATES", - "from": 59012, - "to": 36082, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19300", - "label": "ACTIVATES", - "from": 59012, - "to": 35095, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19550", - "label": "ACTIVATES", - "from": 59012, - "to": 32144, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19584", - "label": "ACTIVATES", - "from": 59012, - "to": 33980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23298", - "label": "INHIBITS", - "from": 59012, - "to": 36029, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21596", - "label": "INHIBITS", - "from": 59012, - "to": 36084, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24004", - "label": "INHIBITS", - "from": 59012, - "to": 33010, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24310", - "label": "INHIBITS", - "from": 59012, - "to": 35735, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "15057", - "label": "HAS_GENE", - "from": 54146, - "to": 35998, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "46601", - "label": "ELEMENT_OF", - "from": 44933, - "to": 54668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12492", - "label": "HAS_GENE", - "from": 54668, - "to": 34032, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21277", - "label": "INHIBITS", - "from": 61072, - "to": 44933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22037", - "label": "INHIBITS", - "from": 61072, - "to": 47712, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24141", - "label": "INHIBITS", - "from": 61072, - "to": 46329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "70976", - "label": "ENCODES", - "from": 32144, - "to": 58351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "82827", - "label": "CONSUMED_BY", - "from": 58256, - "to": 79228, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20173", - "label": "ACTIVATES", - "from": 61330, - "to": 45725, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "73509", - "label": "ENCODES", - "from": 35735, - "to": 61330, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "48908", - "label": "ELEMENT_OF", - "from": 45725, - "to": 55386, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "71531", - "label": "ENCODES", - "from": 35998, - "to": 59012, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "51656", - "label": "ELEMENT_OF", - "from": 45992, - "to": 56246, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75730", - "label": "COMPONENT_OF", - "from": 61620, - "to": 61072, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "26053", - "label": "CATALYZES", - "from": 59828, - "to": 79143, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "13803", - "label": "HAS_GENE", - "from": 56246, - "to": 35009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19016", - "label": "ACTIVATES", - "from": 10423, - "to": 54379, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19325", - "label": "ACTIVATES", - "from": 10423, - "to": 57150, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19356", - "label": "ACTIVATES", - "from": 10423, - "to": 47548, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19505", - "label": "ACTIVATES", - "from": 10423, - "to": 53847, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19541", - "label": "ACTIVATES", - "from": 10423, - "to": 55838, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22184", - "label": "INHIBITS", - "from": 10423, - "to": 46347, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75658", - "label": "COMPONENT_OF", - "from": 10423, - "to": 60964, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72190", - "label": "ENCODES", - "from": 33980, - "to": 59828, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "71929", - "label": "ENCODES", - "from": 36029, - "to": 59500, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "44875", - "label": "ELEMENT_OF", - "from": 47548, - "to": 54146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "55157", - "label": "ENCODES", - "from": 35009, - "to": 57472, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "76018", - "label": "COMPONENT_OF", - "from": 58563, - "to": 61620, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "45511", - "label": "ELEMENT_OF", - "from": 47574, - "to": 54343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12490", - "label": "HAS_GENE", - "from": 55016, - "to": 34032, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "14585", - "label": "HAS_GENE", - "from": 55276, - "to": 35618, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20065", - "label": "ACTIVATES", - "from": 58351, - "to": 35757, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20430", - "label": "ACTIVATES", - "from": 58351, - "to": 55667, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20491", - "label": "INHIBITS", - "from": 58351, - "to": 33084, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20814", - "label": "INHIBITS", - "from": 58351, - "to": 31982, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20947", - "label": "INHIBITS", - "from": 58351, - "to": 55838, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21102", - "label": "INHIBITS", - "from": 58351, - "to": 36194, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21841", - "label": "INHIBITS", - "from": 58351, - "to": 53765, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22379", - "label": "INHIBITS", - "from": 58351, - "to": 35998, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22622", - "label": "INHIBITS", - "from": 58351, - "to": 32520, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23608", - "label": "INHIBITS", - "from": 58351, - "to": 35736, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23889", - "label": "INHIBITS", - "from": 58351, - "to": 36029, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24126", - "label": "INHIBITS", - "from": 58351, - "to": 55311, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72880", - "label": "ENCODES", - "from": 36082, - "to": 60523, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "47779", - "label": "ELEMENT_OF", - "from": 46329, - "to": 55016, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/marina_sankey_data/uncharacterized_iModulon_genes_to_methionine_vis_js.json b/appserver/neo4japp/services/shortest_path_data/marina_sankey_data/uncharacterized_iModulon_genes_to_methionine_vis_js.json deleted file mode 100644 index 994b1ed067..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/marina_sankey_data/uncharacterized_iModulon_genes_to_methionine_vis_js.json +++ /dev/null @@ -1,3065 +0,0 @@ -{ - "nodes": [ - { - "id": 33024, - "label": "gstB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 78595, - "label": "EC-6.5.1.8", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 59396, - "label": "COBS-MONOMER", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 79365, - "label": "EC-3.4.16.4", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 79880, - "label": "EC-2.4.99.17", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 77321, - "label": "EC-4.6.1.22", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8466, - "label": "(S)-lactaldehyde", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 33535, - "label": "dacD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 7447, - "label": "D-ribose 5-phosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 79127, - "label": "EC-3.1.1.5", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 79897, - "label": "EC-1.1.1.40", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 7960, - "label": "L-histidine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 80156, - "label": "EC-4.1.3.42", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 79902, - "label": "EC-1.1.1.77", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 78879, - "label": "EC-4.1.2.53", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 61726, - "label": "COBU-CPLX", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 7966, - "label": "L-methionine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 61218, - "label": "cobinamide-P guanylyltransferase / cobinamide kinase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 35618, - "label": "mutM", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 78125, - "label": "RXN0-6549", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9775, - "label": "pyruvate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 79664, - "label": "EC-1.97.1.4", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9777, - "label": "acetate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 77618, - "label": "EC-1.1.1.83", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 77624, - "label": "EC-4.3.1.7", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 35069, - "label": "chpB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 8252, - "label": "sn-glycero-3-phosphoethanolamine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 10046, - "label": "hydroxyacetone", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 33855, - "label": "tcyJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 8006, - "label": "L-glutamine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 10058, - "label": "preQ1", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 60492, - "label": "allose-6-phosphate isomerase / ribose-5-phosphate isomerase B", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 78156, - "label": "EC-7.4.2.11", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 34382, - "label": "fumD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 78418, - "label": "EC-1.4.1.13", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 77394, - "label": "EC-2.4.2.21", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8019, - "label": "ethanolamine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 79699, - "label": "EC-1.8.4.4", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 59221, - "label": "fructokinase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 9817, - "label": "aminoacetone", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 11101, - "label": "EC-4.2.1.2", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 60510, - "label": "endoribonuclease toxin ChpB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 8030, - "label": "L-glutamate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 9829, - "label": "(R)-1-aminopropan-2-ol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 77413, - "label": "EC-2.7.7.62", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8038, - "label": "L-cysteine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 62315, - "label": "D-alanyl-D-alanine carboxypeptidase DacD", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 9071, - "label": "α-ribazole 5'-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 79988, - "label": "EC-2.7.1.4", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 32374, - "label": "mak", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 10620, - "label": "β-nicotinamide D-ribonucleotide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 9344, - "label": "(S)-propane-1,2-diol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 58506, - "label": "allose-6-phosphate isomerase / ribose-5-phosphate isomerase B", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 79499, - "label": "EC-3.5.1.25", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9100, - "label": "preQ0", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 78734, - "label": "EC-1.4.5", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 5006, - "label": "a 2-acyl-1-lyso-phosphatidylethanolamine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 79253, - "label": "EC-6.5.1.6|EC-6.5.1.2", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 1176, - "label": "a 5'-phospho-[DNA]", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 57500, - "label": "cystine ABC transporter periplasmic binding protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 62625, - "label": "DNA-formamidopyrimidine glycosylase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 8099, - "label": "(R)-malate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 8100, - "label": "GMP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 62631, - "label": "glutathione S-transferase GstB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 10153, - "label": "β-D-fructofuranose 6-phosphate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 8106, - "label": "(S)-malate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 78761, - "label": "EC-2.7.1.40", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 2222, - "label": "an [RNA]-3'-ribonucleoside-2',3'-cyclophosphate", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 77487, - "label": "EC-2.4.2.14", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9651, - "label": "propanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 58548, - "label": "fumarase D", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 8888, - "label": "D-alanine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 78777, - "label": "EC-2.4.2.29", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 78010, - "label": "acetate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 78011, - "label": "EC-1.7.1.13", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8892, - "label": "D-methionine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 10941, - "label": "EC-4.1.2.53", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 78781, - "label": "EC-3.5.1.42", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 79044, - "label": "EC-7.4.2.12", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 62404, - "label": "cystine ABC transporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 79822, - "label": "EC-4.3.1.17", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8183, - "label": "adenosylcobinamide-GDP", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 79573, - "label": "EC-1.1.1.75", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 10710, - "label": "RXN-8632", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 9176, - "label": "2-dehydro-3-deoxy-L-rhamnonate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 31970, - "label": "rpiB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 77539, - "label": "EC-3.1.4.46|EC-3.1.4.2", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 31999, - "label": "cobS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 8426, - "label": "bromide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 9195, - "label": "β-nicotinate D-ribonucleotide", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 31982, - "label": "cobU", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 78831, - "label": "EC-4.1.2.20", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8433, - "label": "acetaldehyde", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 10996, - "label": "EC-5.3.1.6", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 77301, - "label": "RXN-21279", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 7927, - "label": "L-cystine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 78589, - "label": "EC-2.7.8.26", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 5886, - "label": "a 7-aminomethyl-7-deazaguanosine34 in tRNA", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 77567, - "label": "EC-6.3.1.2", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - } - ], - "edges": [ - { - "id": "74377", - "label": "ENCODES", - "from": 33024, - "to": 62631, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87773", - "label": "PRODUCES", - "from": 78595, - "to": 8100, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "25840", - "label": "CATALYZES", - "from": 59396, - "to": 78589, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89534", - "label": "PRODUCES", - "from": 79365, - "to": 8888, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90748", - "label": "PRODUCES", - "from": 79880, - "to": 7966, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85051", - "label": "PRODUCES", - "from": 77321, - "to": 2222, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3876", - "label": "CONSUMED_BY", - "from": 8466, - "to": 10941, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "74168", - "label": "ENCODES", - "from": 33535, - "to": 62315, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18673", - "label": "ACTIVATES", - "from": 7447, - "to": 78761, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88959", - "label": "PRODUCES", - "from": 79127, - "to": 8252, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90795", - "label": "PRODUCES", - "from": 79897, - "to": 9775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24640", - "label": "INHIBITS", - "from": 7960, - "to": 77567, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "91419", - "label": "PRODUCES", - "from": 80156, - "to": 9775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90807", - "label": "PRODUCES", - "from": 79902, - "to": 8466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88414", - "label": "PRODUCES", - "from": 78879, - "to": 9775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "25490", - "label": "CATALYZES", - "from": 61726, - "to": 77413, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20868", - "label": "INHIBITS", - "from": 7966, - "to": 78156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "76065", - "label": "COMPONENT_OF", - "from": 61218, - "to": 61726, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "74373", - "label": "ENCODES", - "from": 35618, - "to": 62625, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86755", - "label": "PRODUCES", - "from": 78125, - "to": 8426, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18656", - "label": "ACTIVATES", - "from": 9775, - "to": 79664, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90252", - "label": "PRODUCES", - "from": 79664, - "to": 7966, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21161", - "label": "INHIBITS", - "from": 9777, - "to": 78831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85762", - "label": "PRODUCES", - "from": 77618, - "to": 9775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85775", - "label": "PRODUCES", - "from": 77624, - "to": 8433, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72867", - "label": "ENCODES", - "from": 35069, - "to": 60510, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "79459", - "label": "CONSUMED_BY", - "from": 8252, - "to": 77539, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3773", - "label": "CONSUMED_BY", - "from": 10046, - "to": 10710, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "70429", - "label": "ENCODES", - "from": 33855, - "to": 57500, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "321", - "label": "CONSUMED_BY", - "from": 8006, - "to": 78418, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "81926", - "label": "CONSUMED_BY", - "from": 10058, - "to": 78777, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75380", - "label": "COMPONENT_OF", - "from": 60492, - "to": 58506, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86822", - "label": "PRODUCES", - "from": 78156, - "to": 8892, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "71124", - "label": "ENCODES", - "from": 34382, - "to": 58548, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75", - "label": "PRODUCES", - "from": 78418, - "to": 8030, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85226", - "label": "PRODUCES", - "from": 77394, - "to": 9071, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21730", - "label": "INHIBITS", - "from": 8019, - "to": 79822, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90333", - "label": "PRODUCES", - "from": 79699, - "to": 8038, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "26728", - "label": "CATALYZES", - "from": 59221, - "to": 79988, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "418", - "label": "CONSUMED_BY", - "from": 9817, - "to": 79573, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2908", - "label": "PRODUCES", - "from": 11101, - "to": 8106, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27423", - "label": "CATALYZES", - "from": 60510, - "to": 77321, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18605", - "label": "ACTIVATES", - "from": 8030, - "to": 79897, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23284", - "label": "INHIBITS", - "from": 9829, - "to": 77624, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85266", - "label": "PRODUCES", - "from": 77413, - "to": 8183, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20935", - "label": "INHIBITS", - "from": 8038, - "to": 79822, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "25177", - "label": "CATALYZES", - "from": 62315, - "to": 79365, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "81549", - "label": "CONSUMED_BY", - "from": 9071, - "to": 78589, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "91023", - "label": "PRODUCES", - "from": 79988, - "to": 10153, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "71720", - "label": "ENCODES", - "from": 32374, - "to": 59221, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "81933", - "label": "CONSUMED_BY", - "from": 10620, - "to": 78781, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84242", - "label": "CONSUMED_BY", - "from": 9344, - "to": 79902, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2197", - "label": "CATALYZES", - "from": 58506, - "to": 10996, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89856", - "label": "PRODUCES", - "from": 79499, - "to": 9777, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "310", - "label": "CONSUMED_BY", - "from": 9100, - "to": 78011, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88091", - "label": "PRODUCES", - "from": 78734, - "to": 9775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "82619", - "label": "CONSUMED_BY", - "from": 5006, - "to": 79127, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89272", - "label": "PRODUCES", - "from": 79253, - "to": 10620, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "82885", - "label": "CONSUMED_BY", - "from": 1176, - "to": 79253, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "76383", - "label": "COMPONENT_OF", - "from": 57500, - "to": 62404, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "25628", - "label": "CATALYZES", - "from": 62625, - "to": 77301, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "79626", - "label": "CONSUMED_BY", - "from": 8099, - "to": 77618, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22804", - "label": "INHIBITS", - "from": 8100, - "to": 77487, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "25801", - "label": "CATALYZES", - "from": 62631, - "to": 78125, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22445", - "label": "INHIBITS", - "from": 10153, - "to": 79499, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84233", - "label": "CONSUMED_BY", - "from": 8106, - "to": 79897, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90", - "label": "PRODUCES", - "from": 78761, - "to": 9775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "81559", - "label": "CONSUMED_BY", - "from": 2222, - "to": 78595, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27", - "label": "PRODUCES", - "from": 77487, - "to": 8030, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23808", - "label": "INHIBITS", - "from": 9651, - "to": 78010, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2790", - "label": "CATALYZES", - "from": 58548, - "to": 11101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "81838", - "label": "CONSUMED_BY", - "from": 8888, - "to": 78734, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88187", - "label": "PRODUCES", - "from": 78777, - "to": 5886, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86509", - "label": "PRODUCES", - "from": 78010, - "to": 9777, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "65", - "label": "PRODUCES", - "from": 78011, - "to": 10058, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3300", - "label": "PRODUCES", - "from": 10941, - "to": 9176, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88197", - "label": "PRODUCES", - "from": 78781, - "to": 9195, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88774", - "label": "PRODUCES", - "from": 79044, - "to": 7927, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27591", - "label": "CATALYZES", - "from": 62404, - "to": 79044, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90617", - "label": "PRODUCES", - "from": 79822, - "to": 9775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "81548", - "label": "CONSUMED_BY", - "from": 8183, - "to": 78589, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "179", - "label": "PRODUCES", - "from": 79573, - "to": 9829, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3149", - "label": "PRODUCES", - "from": 10710, - "to": 9344, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "82123", - "label": "CONSUMED_BY", - "from": 9176, - "to": 78879, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72849", - "label": "ENCODES", - "from": 31970, - "to": 60492, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85565", - "label": "PRODUCES", - "from": 77539, - "to": 8019, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "71850", - "label": "ENCODES", - "from": 31999, - "to": 59396, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21673", - "label": "INHIBITS", - "from": 8426, - "to": 78831, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "79155", - "label": "CONSUMED_BY", - "from": 9195, - "to": 77394, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "73434", - "label": "ENCODES", - "from": 31982, - "to": 61218, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88317", - "label": "PRODUCES", - "from": 78831, - "to": 9775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22029", - "label": "INHIBITS", - "from": 8433, - "to": 80156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3044", - "label": "PRODUCES", - "from": 10996, - "to": 7447, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85008", - "label": "PRODUCES", - "from": 77301, - "to": 1176, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "83830", - "label": "CONSUMED_BY", - "from": 7927, - "to": 79699, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87761", - "label": "PRODUCES", - "from": 78589, - "to": 8100, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84199", - "label": "CONSUMED_BY", - "from": 5886, - "to": 79880, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85636", - "label": "PRODUCES", - "from": 77567, - "to": 8006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/marina_sankey_data/uncharacterized_iModulon_genes_yjdI_metabolites_vis_js.json b/appserver/neo4japp/services/shortest_path_data/marina_sankey_data/uncharacterized_iModulon_genes_yjdI_metabolites_vis_js.json deleted file mode 100644 index 90e53b7bc7..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/marina_sankey_data/uncharacterized_iModulon_genes_yjdI_metabolites_vis_js.json +++ /dev/null @@ -1,4827 +0,0 @@ -{ - "nodes": [ - { - "id": 34821, - "label": "crp", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 53765, - "label": "ycgJ TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 34310, - "label": "glaR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 60425, - "label": "alkaline phosphatase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 78858, - "label": "EC-1.1.1.381", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 55311, - "label": "fumD TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 56349, - "label": "sohB TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 79902, - "label": "EC-1.1.1.77", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 55838, - "label": "curA TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 60964, - "label": "DksA-ppGpp", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 32811, - "label": "dkgA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 61485, - "label": "queuosine precursor transporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 58414, - "label": "acetate kinase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 32816, - "label": "ackA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 60464, - "label": "DNA-binding transcriptional repressor GlaR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 35894, - "label": "hisD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 34361, - "label": "yjeH", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 56378, - "label": "casABCDE12 TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 56377, - "label": "crp TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 60989, - "label": "methylglyoxal reductase DkgA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 9790, - "label": "L-allo-threonine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 33855, - "label": "tcyJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 48191, - "label": "dctAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 9795, - "label": "glycine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 34372, - "label": "yeaE", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 54343, - "label": "yhdWXYZ TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 34382, - "label": "fumD", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 59472, - "label": "NtrC-Phosphorylated DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 53847, - "label": "yeaQ TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 56919, - "label": "hisLGDCBHAFI TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 9817, - "label": "aminoacetone", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 55386, - "label": "tcyJ TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 61531, - "label": "histidinal/histidinol dehydrogenase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 32351, - "label": "fucA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 57952, - "label": "DNA-binding transcriptional dual regulator ArcA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 47712, - "label": "sohBp1", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 58466, - "label": "DNA-binding transcriptional dual regulator GcvA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 60000, - "label": "regulator of RpoS", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 79462, - "label": "NRIDEPHOS-RXN", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 60523, - "label": "sensory histidine kinase NtrB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 59500, - "label": "DNA-binding transcriptional dual regulator LeuO", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 54379, - "label": "msyB TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 61550, - "label": "alkaline phosphatase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 53876, - "label": "dctA TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 63101, - "label": "HISTDEHYD-CPLX", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 57472, - "label": "small regulatory RNA GcvB", - "databaseLabel": "RNA", - "value": 1, - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": 47745, - "label": "rpmBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 31873, - "label": "msyB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 9344, - "label": "(S)-propane-1,2-diol", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 59012, - "label": "DNA-binding transcriptional dual regulator Lrp", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 61072, - "label": "CRP-cAMP DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 33431, - "label": "yhhQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 45725, - "label": "tcyJp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 35998, - "label": "lrp", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 34974, - "label": "yjfY", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 79520, - "label": "RXN0-7084", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 60579, - "label": "methylglyoxal reductase YeaE", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 78500, - "label": "L-methionine:proton antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 79527, - "label": "EC-3.1.1.32", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 80040, - "label": "HISTALDEHYD-RXN", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 33962, - "label": "yhdZ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 78510, - "label": "TRANS-RXN-412", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 57522, - "label": "L-fuculose-phosphate aldolase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 35506, - "label": "curA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 58548, - "label": "fumarase D", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 61620, - "label": "DNA-binding transcriptional dual regulator CRP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 10423, - "label": "ppGpp", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 60602, - "label": "L-methionine/branched chain amino acid exporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 33980, - "label": "relA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 8892, - "label": "D-methionine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 36029, - "label": "leuO", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 60609, - "label": "L-fuculose-phosphate aldolase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 35009, - "label": "gcvB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 58563, - "label": "DNA-binding transcriptional dual regulator CRP", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 35014, - "label": "yeaQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 58572, - "label": "outer membrane phospholipase A", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 53965, - "label": "ackA TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 32468, - "label": "rssB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 78036, - "label": "malate:proton symport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 31970, - "label": "rpiB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 55016, - "label": "sohB TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 31982, - "label": "cobU", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 34032, - "label": "sohB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 36082, - "label": "glnL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 33010, - "label": "yiiM", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 36084, - "label": "yodC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 46329, - "label": "sohBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 56071, - "label": "yhhQ TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 32520, - "label": "chpS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 59659, - "label": "sensor histidine kinase ArcB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 46347, - "label": "crpp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 35599, - "label": "ycgJ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 7953, - "label": "L-threonine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 8466, - "label": "(S)-lactaldehyde", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 35095, - "label": "ydhQ", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 7960, - "label": "L-histidine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 7966, - "label": "L-methionine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 77600, - "label": "EC-1.1.1", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 35618, - "label": "mutM", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 32550, - "label": "cas2", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 79143, - "label": "EC-2.7.6.5", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 32054, - "label": "phoA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 33593, - "label": "gcvA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 33084, - "label": "mscL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 57150, - "label": "yjfY TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 10046, - "label": "hydroxyacetone", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 35140, - "label": "yacL", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 9544, - "label": "EC-2.7.99", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 78156, - "label": "EC-7.4.2.11", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 32087, - "label": "pldA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 11101, - "label": "EC-4.2.1.2", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 36194, - "label": "yegR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 55667, - "label": "ivy TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 59254, - "label": "Phosphorylated DNA-binding transcriptional dual regulator ArcA", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 79228, - "label": "NRIPHOS-RXN", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 45952, - "label": "casAp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 54146, - "label": "lrp TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 44933, - "label": "sohBp2", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 32646, - "label": "ivy", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 78213, - "label": "EC-4.1.2.17", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 62858, - "label": "outer membrane phospholipase A", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 32650, - "label": "dctA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 9100, - "label": "preQ0", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 54668, - "label": "sohB TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 5006, - "label": "a 2-acyl-1-lyso-phosphatidylethanolamine", - "databaseLabel": "Class", - "value": 1, - "font": { - "color": "#f1587a" - }, - "color": { - "background": "#FFFFFF", - "border": "#f1587a", - "hover": { - "background": "#FFFFFF", - "border": "#f1587a" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#f1587a" - } - } - }, - { - "id": 32144, - "label": "nac", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 58256, - "label": "DNA-binding transcriptional dual regulator NtrC", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 61330, - "label": "DNA-binding transcriptional dual regulator CysB", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 35735, - "label": "cysB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 35736, - "label": "ybbC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 35234, - "label": "yjdP", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 8099, - "label": "(R)-malate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 45992, - "label": "gcvBp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 8106, - "label": "(S)-malate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 35757, - "label": "ycaK", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 62385, - "label": "C4 dicarboxylate/orotate:H+ symporter", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 9651, - "label": "propanoate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 59828, - "label": "GDP/GTP pyrophosphokinase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 79285, - "label": "EC-3.1.3", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 56246, - "label": "gcvB TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 47548, - "label": "lrpp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 60886, - "label": "GcvA-gly", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 47574, - "label": "yhdWp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 10710, - "label": "RXN-8632", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 10721, - "label": "EC-2.7.2.7|EC-2.7.2.1|EC-2.7.2.15|EC-2.7.2.14", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 55276, - "label": "rpmBG-mutM TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 58351, - "label": "DNA-binding transcriptional dual regulator Nac", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 10739, - "label": "RXN0-6470", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 77300, - "label": "EC-1.1.1.103", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8182, - "label": "EC-4.1.2.48|EC-4.1.2.49", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 46587, - "label": "hisLp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - } - ], - "edges": [ - { - "id": "71136", - "label": "ENCODES", - "from": 34821, - "to": 58563, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "14561", - "label": "HAS_GENE", - "from": 53765, - "to": 35599, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72821", - "label": "ENCODES", - "from": 34310, - "to": 60464, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75986", - "label": "COMPONENT_OF", - "from": 60425, - "to": 61550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88368", - "label": "PRODUCES", - "from": 78858, - "to": 9817, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12925", - "label": "HAS_GENE", - "from": 55311, - "to": 34382, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12491", - "label": "HAS_GENE", - "from": 56349, - "to": 34032, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90807", - "label": "PRODUCES", - "from": 79902, - "to": 8466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "14421", - "label": "HAS_GENE", - "from": 55838, - "to": 35506, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19466", - "label": "ACTIVATES", - "from": 60964, - "to": 46587, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22686", - "label": "INHIBITS", - "from": 60964, - "to": 47745, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "73281", - "label": "ENCODES", - "from": 32811, - "to": 60989, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27738", - "label": "CATALYZES", - "from": 61485, - "to": 78510, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "824", - "label": "CATALYZES", - "from": 58414, - "to": 10721, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "71023", - "label": "ENCODES", - "from": 32816, - "to": 58414, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20418", - "label": "ACTIVATES", - "from": 60464, - "to": 31970, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21303", - "label": "INHIBITS", - "from": 60464, - "to": 35599, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23171", - "label": "INHIBITS", - "from": 60464, - "to": 35234, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23606", - "label": "INHIBITS", - "from": 60464, - "to": 57150, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23796", - "label": "INHIBITS", - "from": 60464, - "to": 33593, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24619", - "label": "INHIBITS", - "from": 60464, - "to": 34372, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24790", - "label": "INHIBITS", - "from": 60464, - "to": 32468, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "73642", - "label": "ENCODES", - "from": 35894, - "to": 61531, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72954", - "label": "ENCODES", - "from": 34361, - "to": 60602, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10209", - "label": "HAS_GENE", - "from": 56378, - "to": 32550, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "13561", - "label": "HAS_GENE", - "from": 56377, - "to": 34821, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "26208", - "label": "CATALYZES", - "from": 60989, - "to": 77600, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "82080", - "label": "CONSUMED_BY", - "from": 9790, - "to": 78858, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "44081", - "label": "ELEMENT_OF", - "from": 48191, - "to": 53876, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3580", - "label": "CONSUMED_BY", - "from": 9795, - "to": 8182, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72936", - "label": "ENCODES", - "from": 34372, - "to": 60579, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12397", - "label": "HAS_GENE", - "from": 54343, - "to": 33962, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "71124", - "label": "ENCODES", - "from": 34382, - "to": 58548, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18899", - "label": "ACTIVATES", - "from": 59472, - "to": 47574, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "13810", - "label": "HAS_GENE", - "from": 53847, - "to": 35014, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "14919", - "label": "HAS_GENE", - "from": 56919, - "to": 35894, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12238", - "label": "HAS_GENE", - "from": 55386, - "to": 33855, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "76764", - "label": "COMPONENT_OF", - "from": 61531, - "to": 63101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72959", - "label": "ENCODES", - "from": 32351, - "to": 60609, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "77784", - "label": "MODIFIED_TO", - "from": 57952, - "to": 59254, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "51985", - "label": "ELEMENT_OF", - "from": 47712, - "to": 56349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19219", - "label": "ACTIVATES", - "from": 58466, - "to": 45992, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75605", - "label": "COMPONENT_OF", - "from": 58466, - "to": 60886, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "83444", - "label": "CONSUMED_BY", - "from": 60000, - "to": 79520, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89758", - "label": "PRODUCES", - "from": 79462, - "to": 58256, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20317", - "label": "ACTIVATES", - "from": 60523, - "to": 79462, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18585", - "label": "ACTIVATES", - "from": 59500, - "to": 45952, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9152", - "label": "HAS_GENE", - "from": 54379, - "to": 31873, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27556", - "label": "CATALYZES", - "from": 61550, - "to": 79285, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10370", - "label": "HAS_GENE", - "from": 53876, - "to": 32650, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "25942", - "label": "CATALYZES", - "from": 63101, - "to": 80040, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22928", - "label": "INHIBITS", - "from": 57472, - "to": 55386, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22980", - "label": "INHIBITS", - "from": 57472, - "to": 54146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "48531", - "label": "ELEMENT_OF", - "from": 47745, - "to": 55276, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "84242", - "label": "CONSUMED_BY", - "from": 9344, - "to": 79902, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18467", - "label": "ACTIVATES", - "from": 59012, - "to": 31970, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18522", - "label": "ACTIVATES", - "from": 59012, - "to": 35140, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18657", - "label": "ACTIVATES", - "from": 59012, - "to": 36082, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19300", - "label": "ACTIVATES", - "from": 59012, - "to": 35095, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19468", - "label": "ACTIVATES", - "from": 59012, - "to": 34361, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19550", - "label": "ACTIVATES", - "from": 59012, - "to": 32144, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19584", - "label": "ACTIVATES", - "from": 59012, - "to": 33980, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23298", - "label": "INHIBITS", - "from": 59012, - "to": 36029, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20290", - "label": "ACTIVATES", - "from": 59012, - "to": 32054, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21596", - "label": "INHIBITS", - "from": 59012, - "to": 36084, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21843", - "label": "INHIBITS", - "from": 59012, - "to": 34372, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24004", - "label": "INHIBITS", - "from": 59012, - "to": 33010, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24310", - "label": "INHIBITS", - "from": 59012, - "to": 35735, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21277", - "label": "INHIBITS", - "from": 61072, - "to": 44933, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22037", - "label": "INHIBITS", - "from": 61072, - "to": 47712, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24141", - "label": "INHIBITS", - "from": 61072, - "to": 46329, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "73611", - "label": "ENCODES", - "from": 33431, - "to": 61485, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "48908", - "label": "ELEMENT_OF", - "from": 45725, - "to": 55386, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "71531", - "label": "ENCODES", - "from": 35998, - "to": 59012, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89904", - "label": "PRODUCES", - "from": 79520, - "to": 59659, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "26014", - "label": "CATALYZES", - "from": 60579, - "to": 77600, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87561", - "label": "PRODUCES", - "from": 78500, - "to": 7966, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89919", - "label": "PRODUCES", - "from": 79527, - "to": 5006, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "91139", - "label": "PRODUCES", - "from": 80040, - "to": 7960, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87584", - "label": "PRODUCES", - "from": 78510, - "to": 9100, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27515", - "label": "CATALYZES", - "from": 57522, - "to": 78213, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2790", - "label": "CATALYZES", - "from": 58548, - "to": 11101, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20183", - "label": "ACTIVATES", - "from": 61620, - "to": 48191, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75730", - "label": "COMPONENT_OF", - "from": 61620, - "to": 61072, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19016", - "label": "ACTIVATES", - "from": 10423, - "to": 54379, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19325", - "label": "ACTIVATES", - "from": 10423, - "to": 57150, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19356", - "label": "ACTIVATES", - "from": 10423, - "to": 47548, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19505", - "label": "ACTIVATES", - "from": 10423, - "to": 53847, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19541", - "label": "ACTIVATES", - "from": 10423, - "to": 55838, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22184", - "label": "INHIBITS", - "from": 10423, - "to": 46347, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75658", - "label": "COMPONENT_OF", - "from": 10423, - "to": 60964, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27420", - "label": "CATALYZES", - "from": 60602, - "to": 78500, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72190", - "label": "ENCODES", - "from": 33980, - "to": 59828, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "71929", - "label": "ENCODES", - "from": 36029, - "to": 59500, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "74875", - "label": "COMPONENT_OF", - "from": 60609, - "to": 57522, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "55157", - "label": "ENCODES", - "from": 35009, - "to": 57472, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "76018", - "label": "COMPONENT_OF", - "from": 58563, - "to": 61620, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "26218", - "label": "CATALYZES", - "from": 58572, - "to": 79527, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10622", - "label": "HAS_GENE", - "from": 53965, - "to": 32816, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72361", - "label": "ENCODES", - "from": 32468, - "to": 60000, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86562", - "label": "PRODUCES", - "from": 78036, - "to": 8099, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12490", - "label": "HAS_GENE", - "from": 55016, - "to": 34032, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72880", - "label": "ENCODES", - "from": 36082, - "to": 60523, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "47779", - "label": "ELEMENT_OF", - "from": 46329, - "to": 55016, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11563", - "label": "HAS_GENE", - "from": 56071, - "to": 33431, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3939", - "label": "CONSUMED_BY", - "from": 59659, - "to": 9544, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "52097", - "label": "ELEMENT_OF", - "from": 46347, - "to": 56377, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "78967", - "label": "CONSUMED_BY", - "from": 7953, - "to": 77300, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20868", - "label": "INHIBITS", - "from": 7966, - "to": 78156, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "34", - "label": "PRODUCES", - "from": 77600, - "to": 10046, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88999", - "label": "PRODUCES", - "from": 79143, - "to": 10423, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72782", - "label": "ENCODES", - "from": 32054, - "to": 60425, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "71062", - "label": "ENCODES", - "from": 33593, - "to": 58466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "13762", - "label": "HAS_GENE", - "from": 57150, - "to": 34974, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3773", - "label": "CONSUMED_BY", - "from": 10046, - "to": 10710, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3391", - "label": "PRODUCES", - "from": 9544, - "to": 57952, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86822", - "label": "PRODUCES", - "from": 78156, - "to": 8892, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "74522", - "label": "ENCODES", - "from": 32087, - "to": 62858, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2908", - "label": "PRODUCES", - "from": 11101, - "to": 8106, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10366", - "label": "HAS_GENE", - "from": 55667, - "to": 32646, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24819", - "label": "INHIBITS", - "from": 59254, - "to": 48191, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89201", - "label": "PRODUCES", - "from": 79228, - "to": 59472, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "52098", - "label": "ELEMENT_OF", - "from": 45952, - "to": 56378, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "15057", - "label": "HAS_GENE", - "from": 54146, - "to": 35998, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "46601", - "label": "ELEMENT_OF", - "from": 44933, - "to": 54668, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "86938", - "label": "PRODUCES", - "from": 78213, - "to": 8466, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75406", - "label": "COMPONENT_OF", - "from": 62858, - "to": 58572, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "74215", - "label": "ENCODES", - "from": 32650, - "to": 62385, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12492", - "label": "HAS_GENE", - "from": 54668, - "to": 34032, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "70976", - "label": "ENCODES", - "from": 32144, - "to": 58351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "82827", - "label": "CONSUMED_BY", - "from": 58256, - "to": 79228, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20173", - "label": "ACTIVATES", - "from": 61330, - "to": 45725, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "73509", - "label": "ENCODES", - "from": 35735, - "to": 61330, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "51656", - "label": "ELEMENT_OF", - "from": 45992, - "to": 56246, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27267", - "label": "CATALYZES", - "from": 62385, - "to": 78036, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "26053", - "label": "CATALYZES", - "from": 59828, - "to": 79143, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "89346", - "label": "PRODUCES", - "from": 79285, - "to": 7953, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "13803", - "label": "HAS_GENE", - "from": 56246, - "to": 35009, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "44875", - "label": "ELEMENT_OF", - "from": 47548, - "to": 54146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3894", - "label": "CONSUMED_BY", - "from": 60886, - "to": 10739, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "45511", - "label": "ELEMENT_OF", - "from": 47574, - "to": 54343, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3149", - "label": "PRODUCES", - "from": 10710, - "to": 9344, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3001", - "label": "PRODUCES", - "from": 10721, - "to": 9651, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "14585", - "label": "HAS_GENE", - "from": 55276, - "to": 35618, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18603", - "label": "ACTIVATES", - "from": 58351, - "to": 53965, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20015", - "label": "ACTIVATES", - "from": 58351, - "to": 56071, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20065", - "label": "ACTIVATES", - "from": 58351, - "to": 35757, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20430", - "label": "ACTIVATES", - "from": 58351, - "to": 55667, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20491", - "label": "INHIBITS", - "from": 58351, - "to": 33084, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20576", - "label": "INHIBITS", - "from": 58351, - "to": 32811, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20814", - "label": "INHIBITS", - "from": 58351, - "to": 31982, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20947", - "label": "INHIBITS", - "from": 58351, - "to": 55838, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21102", - "label": "INHIBITS", - "from": 58351, - "to": 36194, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21841", - "label": "INHIBITS", - "from": 58351, - "to": 53765, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22379", - "label": "INHIBITS", - "from": 58351, - "to": 35998, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22622", - "label": "INHIBITS", - "from": 58351, - "to": 32520, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23608", - "label": "INHIBITS", - "from": 58351, - "to": 35736, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23799", - "label": "INHIBITS", - "from": 58351, - "to": 32087, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23889", - "label": "INHIBITS", - "from": 58351, - "to": 36029, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23954", - "label": "INHIBITS", - "from": 58351, - "to": 32351, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24126", - "label": "INHIBITS", - "from": 58351, - "to": 55311, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3335", - "label": "PRODUCES", - "from": 10739, - "to": 9795, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85005", - "label": "PRODUCES", - "from": 77300, - "to": 9817, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2951", - "label": "PRODUCES", - "from": 8182, - "to": 9790, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "53914", - "label": "ELEMENT_OF", - "from": 46587, - "to": 56919, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/marina_sankey_data/zink-imodulon-metals_vis_js.json b/appserver/neo4japp/services/shortest_path_data/marina_sankey_data/zink-imodulon-metals_vis_js.json deleted file mode 100644 index 0f7c88fa3f..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/marina_sankey_data/zink-imodulon-metals_vis_js.json +++ /dev/null @@ -1,1401 +0,0 @@ -{ - "nodes": [ - { - "id": 59393, - "label": "DNA-binding transcriptional activator ZntR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 58371, - "label": "Zn2+ ABC transporter membrane subunit", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 59012, - "label": "DNA-binding transcriptional dual regulator Lrp", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 10757, - "label": "RXN0-291", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 34824, - "label": "ndh", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 35465, - "label": "zntA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 10762, - "label": "RXN0-5347", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 35850, - "label": "cueO", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 58764, - "label": "multicopper oxidase CueO", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 60308, - "label": "Zn2+/Cd2+/Pb2+ exporting P-type ATPase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 8853, - "label": "Cu2+", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 59797, - "label": "NADH:quinone oxidoreductase II", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 79897, - "label": "EC-1.1.1.40", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8859, - "label": "L-arginino-succinate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 35998, - "label": "lrp", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 8355, - "label": "succinate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 33189, - "label": "znuB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 56615, - "label": "ndh TU", - "databaseLabel": "TranscriptionUnit", - "value": 1, - "font": { - "color": "#cccdfb" - }, - "color": { - "background": "#FFFFFF", - "border": "#cccdfb", - "hover": { - "background": "#FFFFFF", - "border": "#cccdfb" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#cccdfb" - } - } - }, - { - "id": 8872, - "label": "Cu+", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 9775, - "label": "pyruvate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 60847, - "label": "ArgR-L-arginine DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 78260, - "label": "EC-7.2.2.20", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 7989, - "label": "L-arginine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 78900, - "label": "fumarate:succinate antiport", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 59832, - "label": "Cu+ exporting P-type ATPase", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 8379, - "label": "fumarate", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 61373, - "label": "ABC-63-CPLX", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 77376, - "label": "EC-1.14.11.17", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 78784, - "label": "EC-7.2.2.8", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 60868, - "label": "ZntR-Zn2+ transcriptional activator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 31942, - "label": "znuC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 79695, - "label": "EC-1.16.3", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 60880, - "label": "PdhR-pyruvate", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 31825, - "label": "copA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 62808, - "label": "Zn2+ ABC transporter periplasmic binding protein", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 46297, - "label": "ndhp", - "databaseLabel": "Promoter", - "value": 1, - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": 10715, - "label": "EC-4.3.2.1", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 33889, - "label": "znuA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 78947, - "label": "EC-1.16.1", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 8297, - "label": "Zn2+", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 77548, - "label": "EC-4.3.2.1", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 60398, - "label": "DNA-binding transcriptional dual regulator PdhR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 60526, - "label": "Zn2+ ABC transporter ATP binding subunit", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 34808, - "label": "zntR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 78968, - "label": "EC-7.2.2.12", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - } - ], - "edges": [ - { - "id": "75592", - "label": "COMPONENT_OF", - "from": 59393, - "to": 60868, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75894", - "label": "COMPONENT_OF", - "from": 58371, - "to": 61373, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "19711", - "label": "ACTIVATES", - "from": 59012, - "to": 34808, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3196", - "label": "PRODUCES", - "from": 10757, - "to": 60398, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72159", - "label": "ENCODES", - "from": 34824, - "to": 59797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72668", - "label": "ENCODES", - "from": 35465, - "to": 60308, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3279", - "label": "PRODUCES", - "from": 10762, - "to": 8297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "71288", - "label": "ENCODES", - "from": 35850, - "to": 58764, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27393", - "label": "CATALYZES", - "from": 58764, - "to": 79695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27078", - "label": "CATALYZES", - "from": 60308, - "to": 78968, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21427", - "label": "INHIBITS", - "from": 8853, - "to": 77376, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27346", - "label": "CATALYZES", - "from": 59797, - "to": 78947, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90795", - "label": "PRODUCES", - "from": 79897, - "to": 9775, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "79477", - "label": "CONSUMED_BY", - "from": 8859, - "to": 77548, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "71531", - "label": "ENCODES", - "from": 35998, - "to": 59012, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "82166", - "label": "CONSUMED_BY", - "from": 8355, - "to": 78900, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "70991", - "label": "ENCODES", - "from": 33189, - "to": 58371, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "13566", - "label": "HAS_GENE", - "from": 56615, - "to": 34824, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "83821", - "label": "CONSUMED_BY", - "from": 8872, - "to": 79695, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75602", - "label": "COMPONENT_OF", - "from": 9775, - "to": 60880, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20613", - "label": "INHIBITS", - "from": 60847, - "to": 35998, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "87046", - "label": "PRODUCES", - "from": 78260, - "to": 8297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75579", - "label": "COMPONENT_OF", - "from": 7989, - "to": 60847, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88454", - "label": "PRODUCES", - "from": 78900, - "to": 8379, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "26863", - "label": "CATALYZES", - "from": 59832, - "to": 78784, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3485", - "label": "CONSUMED_BY", - "from": 8379, - "to": 10715, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27094", - "label": "CATALYZES", - "from": 61373, - "to": 78260, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85183", - "label": "PRODUCES", - "from": 77376, - "to": 8355, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88202", - "label": "PRODUCES", - "from": 78784, - "to": 8872, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3863", - "label": "CONSUMED_BY", - "from": 60868, - "to": 10762, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72883", - "label": "ENCODES", - "from": 31942, - "to": 60526, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "90324", - "label": "PRODUCES", - "from": 79695, - "to": 8853, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3807", - "label": "CONSUMED_BY", - "from": 60880, - "to": 10757, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72194", - "label": "ENCODES", - "from": 31825, - "to": 59832, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75895", - "label": "COMPONENT_OF", - "from": 62808, - "to": 61373, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "52884", - "label": "ELEMENT_OF", - "from": 46297, - "to": 56615, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "2865", - "label": "PRODUCES", - "from": 10715, - "to": 8859, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "74491", - "label": "ENCODES", - "from": 33889, - "to": 62808, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88557", - "label": "PRODUCES", - "from": 78947, - "to": 8872, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24860", - "label": "INHIBITS", - "from": 8297, - "to": 79897, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85585", - "label": "PRODUCES", - "from": 77548, - "to": 7989, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22897", - "label": "INHIBITS", - "from": 60398, - "to": 46297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75893", - "label": "COMPONENT_OF", - "from": 60526, - "to": 61373, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "71848", - "label": "ENCODES", - "from": 34808, - "to": 59393, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88603", - "label": "PRODUCES", - "from": 78968, - "to": 8297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/marina_sankey_data/zink-imodulon-test2_vis_js.json b/appserver/neo4japp/services/shortest_path_data/marina_sankey_data/zink-imodulon-test2_vis_js.json deleted file mode 100644 index cadc87aeb9..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/marina_sankey_data/zink-imodulon-test2_vis_js.json +++ /dev/null @@ -1,1783 +0,0 @@ -{ - "nodes": [ - { - "id": 59393, - "label": "DNA-binding transcriptional activator ZntR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 59012, - "label": "DNA-binding transcriptional dual regulator Lrp", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 34824, - "label": "ndh", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 35465, - "label": "zntA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 62602, - "label": "ZntR-Zn2+ DNA-binding transcriptional activator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 10762, - "label": "RXN0-5347", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 57996, - "label": "DNA-binding transcriptional dual regulator SoxS", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 54284, - "label": "znuA TU", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 35850, - "label": "cueO", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 58002, - "label": "DNA-binding transcriptional dual regulator CueR", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 59797, - "label": "NADH:quinone oxidoreductase II", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 32663, - "label": "pliG", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 32412, - "label": "ykgM", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 35998, - "label": "lrp", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 48542, - "label": "copAp", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 33189, - "label": "znuB", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 56615, - "label": "ndh TU", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 8872, - "label": "Cu+", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 60970, - "label": "Zur-Zn2+ DNA-binding transcriptional repressor", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 10797, - "label": "RXN0-5354", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 60847, - "label": "ArgR-L-arginine DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 48052, - "label": "zntAp", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 7989, - "label": "L-arginine", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 45623, - "label": "cueOp", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 53688, - "label": "copA TU", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 47033, - "label": "znuAp", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 54584, - "label": "ykgMO TU", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 34491, - "label": "fur", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 48699, - "label": "fldAp", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 46656, - "label": "znuCp", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 53570, - "label": "zntA TU", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 60868, - "label": "ZntR-Zn2+ transcriptional activator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 57796, - "label": "DNA-binding transcriptional repressor Zur", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 31942, - "label": "znuC", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 34505, - "label": "soxS", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 10825, - "label": "RXN0-5384", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 61048, - "label": "CueR-Cu+", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 54349, - "label": "zinT TU", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 47953, - "label": "ykgMp", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 56146, - "label": "pliG TU", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 31825, - "label": "copA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 55894, - "label": "fldA-uof-fur TU", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 60631, - "label": "DNA-binding transcriptional dual regulator Fur", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 46168, - "label": "zinTp", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 61015, - "label": "Fur-Fe2+ DNA-binding transcriptional dual regulator", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 46297, - "label": "ndhp", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 33889, - "label": "znuA", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 78947, - "label": "EC-1.16.1", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 34788, - "label": "zur", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 54373, - "label": "cueO TU", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 8297, - "label": "Zn2+", - "databaseLabel": "Compound", - "value": 1, - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": 54635, - "label": "znuCB TU", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 77548, - "label": "EC-4.3.2.1", - "databaseLabel": "Reaction", - "value": 1, - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": 62454, - "label": "DNA-binding transcriptional repressor Zur", - "databaseLabel": "Protein", - "value": 1, - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": 34808, - "label": "zntR", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 32633, - "label": "ykgO", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": 32382, - "label": "zinT", - "databaseLabel": "Gene", - "value": 1, - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - } - ], - "edges": [ - { - "id": "75592", - "label": "COMPONENT_OF", - "from": 59393, - "to": 60868, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "18542", - "label": "ACTIVATES", - "from": 59012, - "to": 34505, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72159", - "label": "ENCODES", - "from": 34824, - "to": 59797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20278", - "label": "ACTIVATES", - "from": 62602, - "to": 48052, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3279", - "label": "PRODUCES", - "from": 10762, - "to": 8297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20422", - "label": "ACTIVATES", - "from": 57996, - "to": 48699, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "12298", - "label": "HAS_GENE", - "from": 54284, - "to": 33889, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20187", - "label": "ACTIVATES", - "from": 58002, - "to": 45623, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20234", - "label": "ACTIVATES", - "from": 58002, - "to": 48542, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "27346", - "label": "CATALYZES", - "from": 59797, - "to": 78947, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "71531", - "label": "ENCODES", - "from": 35998, - "to": 59012, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "43482", - "label": "ELEMENT_OF", - "from": 48542, - "to": 53688, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "13566", - "label": "HAS_GENE", - "from": 56615, - "to": 34824, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75715", - "label": "COMPONENT_OF", - "from": 8872, - "to": 61048, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3864", - "label": "CONSUMED_BY", - "from": 60970, - "to": 10797, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20620", - "label": "INHIBITS", - "from": 60970, - "to": 47953, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "21452", - "label": "INHIBITS", - "from": 60970, - "to": 46168, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23719", - "label": "INHIBITS", - "from": 60970, - "to": 47033, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24071", - "label": "INHIBITS", - "from": 60970, - "to": 56146, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "24244", - "label": "INHIBITS", - "from": 60970, - "to": 46656, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3281", - "label": "PRODUCES", - "from": 10797, - "to": 8297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "20613", - "label": "INHIBITS", - "from": 60847, - "to": 35998, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "43095", - "label": "ELEMENT_OF", - "from": 48052, - "to": 53570, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75579", - "label": "COMPONENT_OF", - "from": 7989, - "to": 60847, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "45624", - "label": "ELEMENT_OF", - "from": 45623, - "to": 54373, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9083", - "label": "HAS_GENE", - "from": 53688, - "to": 31825, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "45309", - "label": "ELEMENT_OF", - "from": 47033, - "to": 54284, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10003", - "label": "HAS_GENE", - "from": 54584, - "to": 32412, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10348", - "label": "HAS_GENE", - "from": 54584, - "to": 32633, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "72979", - "label": "ENCODES", - "from": 34491, - "to": 60631, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "50501", - "label": "ELEMENT_OF", - "from": 48699, - "to": 55894, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "46499", - "label": "ELEMENT_OF", - "from": 46656, - "to": 54635, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "14354", - "label": "HAS_GENE", - "from": 53570, - "to": 35465, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3863", - "label": "CONSUMED_BY", - "from": 60868, - "to": 10762, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "76481", - "label": "COMPONENT_OF", - "from": 60868, - "to": 62602, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75661", - "label": "COMPONENT_OF", - "from": 57796, - "to": 60970, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "70710", - "label": "ENCODES", - "from": 34505, - "to": 57996, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3290", - "label": "PRODUCES", - "from": 10825, - "to": 58002, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "3869", - "label": "CONSUMED_BY", - "from": 61048, - "to": 10825, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9958", - "label": "HAS_GENE", - "from": 54349, - "to": 32382, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "46300", - "label": "ELEMENT_OF", - "from": 47953, - "to": 54584, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "10389", - "label": "HAS_GENE", - "from": 56146, - "to": 32663, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "13111", - "label": "HAS_GENE", - "from": 55894, - "to": 34491, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75692", - "label": "COMPONENT_OF", - "from": 60631, - "to": 61015, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "45540", - "label": "ELEMENT_OF", - "from": 46168, - "to": 54349, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "22018", - "label": "INHIBITS", - "from": 61015, - "to": 46297, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "52884", - "label": "ELEMENT_OF", - "from": 46297, - "to": 56615, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "88557", - "label": "PRODUCES", - "from": 78947, - "to": 8872, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "74261", - "label": "ENCODES", - "from": 34788, - "to": 62454, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "14868", - "label": "HAS_GENE", - "from": 54373, - "to": 35850, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "23069", - "label": "INHIBITS", - "from": 8297, - "to": 77548, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75593", - "label": "COMPONENT_OF", - "from": 8297, - "to": 60868, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75662", - "label": "COMPONENT_OF", - "from": 8297, - "to": 60970, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "9248", - "label": "HAS_GENE", - "from": 54635, - "to": 31942, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "11201", - "label": "HAS_GENE", - "from": 54635, - "to": 33189, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "85585", - "label": "PRODUCES", - "from": 77548, - "to": 7989, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "75079", - "label": "COMPONENT_OF", - "from": 62454, - "to": 57796, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - }, - { - "id": "71848", - "label": "ENCODES", - "from": 34808, - "to": 59393, - "color": { - "color": "#3797DB" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/serine-to-malZp.json b/appserver/neo4japp/services/shortest_path_data/serine-to-malZp.json deleted file mode 100644 index 4bdeb54f4b..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/serine-to-malZp.json +++ /dev/null @@ -1,5026 +0,0 @@ -{ - "nodes": [ - { - "id": "35", - "label": "THF-GLU-N", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "61", - "label": "D-glucopyranose-6-phosphate", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "74", - "label": "RIBOSE-5P", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "76", - "label": "1-4-alpha-D-Glucan", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "84", - "label": "Ubiquinols", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "86", - "label": "Ubiquinones", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "90", - "label": "D-GLUCOSAMINE-6-P", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "235", - "label": "PYRUVFORMLY-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "330", - "label": "RXN66-526", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "336", - "label": "RXN0-7352", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "384", - "label": "GLYCOGENSYN-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "387", - "label": "3-CH3-2-OXOBUTANOATE-OH-CH3-XFER-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "388", - "label": "GLUTATHIONE-SYN-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "423", - "label": "MALTODEXGLUCOSID-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "456", - "label": "RXN0-313", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "471", - "label": "RXN-17745", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "574", - "label": "PANTOTHENATE-KIN-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "652", - "label": "RXN0-6256", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "828", - "label": "GLYOHMETRANS-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "839", - "label": "RXN-21080", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "995", - "label": "L-GLN-FRUCT-6-P-AMINOTRANS-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1150", - "label": "RXN-11496", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1163", - "label": "GLUTCYSLIG-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1232", - "label": "GART-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1245", - "label": "M004", - "databaseLabel": "Gene", - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": "1262", - "label": "EG10562", - "databaseLabel": "Gene", - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": "1379", - "label": "EG10528", - "databaseLabel": "Gene", - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": "1402", - "label": "RXN0-1382", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1405", - "label": "RXN0-1741", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1426", - "label": "PEPDEPHOS-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1431", - "label": "RXN0-7347", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1463", - "label": "6PFRUCTPHOS-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1493", - "label": "RXN0-6373", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1494", - "label": "TRANS-RXN-76", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1519", - "label": "2PGADEHYDRAT-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1616", - "label": "RXN0-5268", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1673", - "label": "RXN0-5260", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1680", - "label": "ASPDECARBOX-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1698", - "label": "TRANS-RXN-157", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1834", - "label": "PD00353", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "1942", - "label": "GLUTCYSLIG-MONOMER", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "1945", - "label": "PKI-MONOMER", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "2003", - "label": "2.7.3.9-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2125", - "label": "AMYLOMALT-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2204", - "label": "TRANS-RXN-62B", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2297", - "label": "RXN0-7169", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2313", - "label": "Hpr-pi-phospho-L-histidines", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "2399", - "label": "P-PANTOCYSLIG-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2437", - "label": "PYRUVDEH-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2554", - "label": "RXN0-6372", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2604", - "label": "PEPSYNTH-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2633", - "label": "RIBULP3EPIM-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2655", - "label": "2TRANSKETO-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2674", - "label": "RXN0-6566", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2704", - "label": "RXN0-7166", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2709", - "label": "PEPCARBOX-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2747", - "label": "TRYPTOPHAN-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2750", - "label": "GLUCOKIN-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2757", - "label": "GLUC1PADENYLTRANS-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2771", - "label": "GLYRIBONUCSYN-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2806", - "label": "PANTOATE-BETA-ALANINE-LIG-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2809", - "label": "BETAGALACTOSID-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2827", - "label": "PHOSPHOGLUCMUT-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2834", - "label": "DNA-DIRECTED-RNA-POLYMERASE-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2858", - "label": "3.1.27.5-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2961", - "label": "REG0-13204", - "databaseLabel": "Regulation", - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": "3057", - "label": "GLY", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "3159", - "label": "PYRUVATE", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "3205", - "label": "TRP", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "3214", - "label": "CMP", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "3261", - "label": "ACETYL-COA", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "3284", - "label": "PANTOTHENATE", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "3299", - "label": "CYCA-MONOMER", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "3301", - "label": "ALKAPHOSPHA-CPLX", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "3339", - "label": "PHOSPHO-ENOL-PYRUVATE", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "3343", - "label": "DIHYDROXYACETONE", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "3461", - "label": "MONOMER0-158", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "3752", - "label": "ENOLASE-CPLX", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "3786", - "label": "PKI-COMPLEX", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "3824", - "label": "EG12504", - "databaseLabel": "Gene", - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": "3874", - "label": "ADP-D-GLUCOSE", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "3875", - "label": "EG10804", - "databaseLabel": "Gene", - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": "4138", - "label": "CPLX0-1142", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "4290", - "label": "ASPDECARBOX-MONOMER", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "4349", - "label": "REG0-8196", - "databaseLabel": "Regulation", - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": "4375", - "label": "REG0-7973", - "databaseLabel": "Regulation", - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": "4492", - "label": "REG0-11446", - "databaseLabel": "Regulation", - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": "4630", - "label": "REG0-10661", - "databaseLabel": "Regulation", - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": "4634", - "label": "REG0-8342", - "databaseLabel": "Regulation", - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": "4639", - "label": "REG0-7277", - "databaseLabel": "Regulation", - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": "4757", - "label": "B-ALANINE", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "4762", - "label": "MALTOTRIOSE", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "4792", - "label": "FRUCTOSE-6P", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "4814", - "label": "XYLULOSE-5-PHOSPHATE", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "4819", - "label": "GAP", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "4827", - "label": "2-MERCAPTOETHANOL", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "4911", - "label": "APORNAP-CPLX", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "4922", - "label": "EG10528-MONOMER", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "4956", - "label": "FRUCTOSE-16-DIPHOSPHATE", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "4995", - "label": "ALKAPHOSPHA-MONOMER", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "5080", - "label": "CPLX0-7655", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "5183", - "label": "4-P-PANTOTHENATE", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "5184", - "label": "CPLX0-2901", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "5189", - "label": "5-PHOSPHO-RIBOSYL-GLYCINEAMIDE", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "5191", - "label": "GMP", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "5323", - "label": "G7237-MONOMER", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "5331", - "label": "RPOB-MONOMER", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "5350", - "label": "PTSH-PHOSPHORYLATED", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "5955", - "label": "GLUTATHIONE", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "6117", - "label": "L-GAMMA-GLUTAMYLCYSTEINE", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "6146", - "label": "EG10084", - "databaseLabel": "Gene", - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": "6180", - "label": "REG0-8401", - "databaseLabel": "Regulation", - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": "6808", - "label": "FORMATE", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "6825", - "label": "GLC-D-LACTONE", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "6911", - "label": "MONOMER0-1842", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "6948", - "label": "TRANS-ENZRXN-56B", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "6976", - "label": "GLUCOKIN-ENZRXN", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "7028", - "label": "PHOSPHOGLUCMUT-ENZRXN", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "7260", - "label": "REG0-11973", - "databaseLabel": "Regulation", - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": "7739", - "label": "EG10547", - "databaseLabel": "Gene", - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": "7829", - "label": "GCVB-RNA", - "databaseLabel": "RNA", - "font": { - "color": "#5c98d1" - }, - "color": { - "background": "#FFFFFF", - "border": "#5c98d1", - "hover": { - "background": "#FFFFFF", - "border": "#5c98d1" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5c98d1" - } - } - }, - { - "id": "8041", - "label": "ENZRXN0-6216", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "8049", - "label": "GLUC1PADENYLTRANS-ENZRXN", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "8150", - "label": "BETAGALACTOSID-ENZRXN", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "8160", - "label": "ENZRXN0-6416", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "8380", - "label": "RXN-21817", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "8685", - "label": "REG0-12560", - "databaseLabel": "Regulation", - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": "8687", - "label": "GLYRIBONUCSYN-ENZRXN", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "8940", - "label": "TRANS-ENZRXN-62B", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "9160", - "label": "ENZRXN0-8089", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "9259", - "label": "3-METHYL-2-OXOBUT-OHCH3XFER-ENZRXN", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "9277", - "label": "GLUTCYSLIG-ENZRXN", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "9436", - "label": "ENZRXN0-4281", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "9608", - "label": "REG0-6159", - "databaseLabel": "Regulation", - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": "9709", - "label": "2PGADEHYDRAT-ENZRXN", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "10029", - "label": "REG0-8914", - "databaseLabel": "Regulation", - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": "10484", - "label": "EG10418", - "databaseLabel": "Gene", - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": "10515", - "label": "REG0-15526", - "databaseLabel": "Regulation", - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": "10670", - "label": "EG11747", - "databaseLabel": "Gene", - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": "11105", - "label": "RIBULP3EPIM-ENZRXN", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "11153", - "label": "PEPDEPHOSII-ENZRXN", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "11194", - "label": "REG0-7410", - "databaseLabel": "Regulation", - "font": { - "color": "#bf5858" - }, - "color": { - "background": "#FFFFFF", - "border": "#bf5858", - "hover": { - "background": "#FFFFFF", - "border": "#bf5858" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bf5858" - } - } - }, - { - "id": "11219", - "label": "PEPDEPHOSI-ENZRXN", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "11292", - "label": "ENZRXN0-1702", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "12100", - "label": "ENZRXN0-6501", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "12138", - "label": "PEPCARBOX-ENZRXN", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "14469", - "label": "PM0-5642", - "databaseLabel": "Promoter", - "font": { - "color": "#5bc9ca" - }, - "color": { - "background": "#FFFFFF", - "border": "#5bc9ca", - "hover": { - "background": "#FFFFFF", - "border": "#5bc9ca" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#5bc9ca" - } - } - }, - { - "id": "14540", - "label": "EG10727", - "databaseLabel": "Gene", - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": "14566", - "label": "EG10258", - "databaseLabel": "Gene", - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": "14647", - "label": "Glucopyranose", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "14693", - "label": "MALTOSE", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "14731", - "label": "RNA-Holder", - "databaseLabel": "Unknown", - "font": { - "color": "#000000" - }, - "color": { - "background": "#FFFFFF", - "border": "#000000", - "hover": { - "background": "#FFFFFF", - "border": "#000000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#000000" - } - } - }, - { - "id": "14836", - "label": "RXN-17330", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "14924", - "label": "5Prime-OH-Terminated-RNAs", - "databaseLabel": "Unknown", - "font": { - "color": "#000000" - }, - "color": { - "background": "#FFFFFF", - "border": "#000000", - "hover": { - "background": "#FFFFFF", - "border": "#000000" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#000000" - } - } - }, - { - "id": "14938", - "label": "G7237", - "databaseLabel": "Gene", - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": "14939", - "label": "EG10894", - "databaseLabel": "Gene", - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": "15013", - "label": "Hpr-Histidine", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "15025", - "label": "G0-8867", - "databaseLabel": "Gene", - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": "15097", - "label": "AROP-MONOMER", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "15114", - "label": "ENOLASE-MONOMER", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "15122", - "label": "RIBULP3EPIM-MONOMER", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "15166", - "label": "GLUCOSAMINE", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "15187", - "label": "PD00237", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - } - ], - "edges": [ - { - "id": "528", - "label": "ENCODES", - "from": "6146", - "to": "15097", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "560", - "label": "ENCODES", - "from": "1245", - "to": "15122", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "576", - "label": "ENCODES", - "from": "14566", - "to": "15114", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "675", - "label": "ENCODES", - "from": "1262", - "to": "15187", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1098", - "label": "REGULATES", - "from": "9608", - "to": "14469", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1101", - "label": "REGULATES", - "from": "3461", - "to": "9608", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1288", - "label": "CATALYZES", - "from": "8687", - "to": "2771", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1293", - "label": "PRODUCES", - "from": "995", - "to": "90", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1295", - "label": "CONSUMED_BY", - "from": "4792", - "to": "995", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1466", - "label": "PRODUCES", - "from": "2771", - "to": "5189", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1498", - "label": "PRODUCES", - "from": "2757", - "to": "3874", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1581", - "label": "PRODUCES", - "from": "2834", - "to": "14731", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1657", - "label": "PRODUCES", - "from": "2827", - "to": "61", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1715", - "label": "PRODUCES", - "from": "2806", - "to": "3284", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1718", - "label": "CONSUMED_BY", - "from": "4757", - "to": "2806", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1736", - "label": "PRODUCES", - "from": "2809", - "to": "14647", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1869", - "label": "PRODUCES", - "from": "2858", - "to": "14924", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1873", - "label": "CONSUMED_BY", - "from": "14731", - "to": "2858", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1940", - "label": "ENCODES", - "from": "7739", - "to": "1834", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "2156", - "label": "ENCODES", - "from": "3875", - "to": "1945", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "2157", - "label": "ENCODES", - "from": "10484", - "to": "1942", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "2226", - "label": "CONSUMED_BY", - "from": "3159", - "to": "1150", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "2231", - "label": "PRODUCES", - "from": "1150", - "to": "84", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "2425", - "label": "REGULATES", - "from": "4639", - "to": "12138", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "2428", - "label": "REGULATES", - "from": "3214", - "to": "4639", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "2436", - "label": "REGULATES", - "from": "4634", - "to": "9259", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "2438", - "label": "REGULATES", - "from": "3284", - "to": "4634", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "2467", - "label": "REGULATES", - "from": "4630", - "to": "6976", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "2468", - "label": "REGULATES", - "from": "3339", - "to": "4630", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "2504", - "label": "COMPONENT_OF", - "from": "4995", - "to": "3301", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "2505", - "label": "ENCODES", - "from": "3824", - "to": "3299", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "2930", - "label": "COMPONENT_OF", - "from": "15187", - "to": "3461", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "2936", - "label": "COMPONENT_OF", - "from": "4762", - "to": "3461", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "3017", - "label": "REGULATES", - "from": "2961", - "to": "10670", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "3018", - "label": "REGULATES", - "from": "7829", - "to": "2961", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "3023", - "label": "CATALYZES", - "from": "3299", - "to": "8940", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "3024", - "label": "CATALYZES", - "from": "8940", - "to": "2204", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "3070", - "label": "REGULATES", - "from": "74", - "to": "7260", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "3072", - "label": "REGULATES", - "from": "7260", - "to": "11153", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "3290", - "label": "PRODUCES", - "from": "1163", - "to": "6117", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "3329", - "label": "PRODUCES", - "from": "1232", - "to": "35", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "3330", - "label": "CONSUMED_BY", - "from": "5189", - "to": "1232", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "3589", - "label": "COMPONENT_OF", - "from": "15114", - "to": "3752", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "3663", - "label": "COMPONENT_OF", - "from": "1945", - "to": "3786", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "3784", - "label": "CATALYZES", - "from": "3301", - "to": "9160", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "3785", - "label": "CATALYZES", - "from": "9160", - "to": "14836", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "3842", - "label": "CONSUMED_BY", - "from": "14693", - "to": "1431", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "3844", - "label": "PRODUCES", - "from": "1431", - "to": "4762", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "3870", - "label": "CONSUMED_BY", - "from": "3159", - "to": "1426", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "3874", - "label": "PRODUCES", - "from": "1426", - "to": "3339", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "4144", - "label": "REGULATES", - "from": "4956", - "to": "10029", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "4146", - "label": "REGULATES", - "from": "10029", - "to": "8049", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "4158", - "label": "PRODUCES", - "from": "1402", - "to": "6808", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "4175", - "label": "PRODUCES", - "from": "1405", - "to": "14693", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "4319", - "label": "CONSUMED_BY", - "from": "4792", - "to": "1463", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "4321", - "label": "PRODUCES", - "from": "1463", - "to": "4956", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "4436", - "label": "CATALYZES", - "from": "9277", - "to": "1163", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "4438", - "label": "CATALYZES", - "from": "1942", - "to": "9277", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "4467", - "label": "CATALYZES", - "from": "9259", - "to": "387", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "4693", - "label": "PRODUCES", - "from": "1519", - "to": "3339", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "4810", - "label": "COMPONENT_OF", - "from": "5323", - "to": "4138", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "4959", - "label": "PRODUCES", - "from": "1494", - "to": "3205", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "5027", - "label": "CONSUMED_BY", - "from": "86", - "to": "1493", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "5028", - "label": "PRODUCES", - "from": "1493", - "to": "6825", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "5100", - "label": "ENCODES", - "from": "10670", - "to": "4290", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "5101", - "label": "MODIFIED_TO", - "from": "4290", - "to": "6911", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "5329", - "label": "CATALYZES", - "from": "9436", - "to": "1680", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "5332", - "label": "CATALYZES", - "from": "5184", - "to": "9436", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "5689", - "label": "PRODUCES", - "from": "1616", - "to": "86", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "5690", - "label": "CONSUMED_BY", - "from": "84", - "to": "1616", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "5855", - "label": "PRODUCES", - "from": "1680", - "to": "4757", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "5948", - "label": "ENCODES", - "from": "1379", - "to": "4922", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "5971", - "label": "COMPONENT_OF", - "from": "5331", - "to": "4911", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "6040", - "label": "ENCODES", - "from": "14540", - "to": "4995", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "6070", - "label": "PRODUCES", - "from": "1673", - "to": "84", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "6227", - "label": "CATALYZES", - "from": "3752", - "to": "9709", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "6235", - "label": "CATALYZES", - "from": "9709", - "to": "1519", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "6314", - "label": "COMPONENT_OF", - "from": "4922", - "to": "5080", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "6495", - "label": "PRODUCES", - "from": "1698", - "to": "61", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "6497", - "label": "CONSUMED_BY", - "from": "5350", - "to": "1698", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "7020", - "label": "COMPONENT_OF", - "from": "6911", - "to": "5184", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "7371", - "label": "REGULATES", - "from": "3261", - "to": "11194", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "7372", - "label": "REGULATES", - "from": "11194", - "to": "7028", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "7454", - "label": "CONSUMED_BY", - "from": "15013", - "to": "2003", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "7455", - "label": "CONSUMED_BY", - "from": "3339", - "to": "2003", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "7461", - "label": "PRODUCES", - "from": "2003", - "to": "2313", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "7620", - "label": "ENCODES", - "from": "14938", - "to": "5323", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "7901", - "label": "PRODUCES", - "from": "2125", - "to": "4762", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "7903", - "label": "CONSUMED_BY", - "from": "14647", - "to": "2125", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "8037", - "label": "CATALYZES", - "from": "11105", - "to": "2633", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "8041", - "label": "CATALYZES", - "from": "15122", - "to": "11105", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "8096", - "label": "CATALYZES", - "from": "15097", - "to": "6948", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "8098", - "label": "CATALYZES", - "from": "6948", - "to": "1494", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "8133", - "label": "CATALYZES", - "from": "11153", - "to": "1426", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "8204", - "label": "PRODUCES", - "from": "2204", - "to": "3057", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "8257", - "label": "CATALYZES", - "from": "6976", - "to": "2750", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "8312", - "label": "ENCODES", - "from": "14939", - "to": "5331", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "8754", - "label": "CATALYZES", - "from": "7028", - "to": "2827", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "8865", - "label": "REGULATES", - "from": "6180", - "to": "6976", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "8866", - "label": "REGULATES", - "from": "15166", - "to": "6180", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "9038", - "label": "PRODUCES", - "from": "2297", - "to": "15013", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "9039", - "label": "CONSUMED_BY", - "from": "3343", - "to": "2297", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "9330", - "label": "PRODUCES", - "from": "14836", - "to": "14647", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "9350", - "label": "ENCODES", - "from": "15025", - "to": "7829", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "9643", - "label": "REGULATES", - "from": "4349", - "to": "8150", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "9644", - "label": "REGULATES", - "from": "4827", - "to": "4349", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "9679", - "label": "CONSUMED_BY", - "from": "6808", - "to": "235", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "9686", - "label": "PRODUCES", - "from": "235", - "to": "3159", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "9755", - "label": "CONSUMED_BY", - "from": "5183", - "to": "2399", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "9760", - "label": "PRODUCES", - "from": "2399", - "to": "3214", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "9805", - "label": "REGULATES", - "from": "4375", - "to": "8687", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "9806", - "label": "REGULATES", - "from": "4757", - "to": "4375", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "9927", - "label": "CATALYZES", - "from": "3786", - "to": "11219", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "9932", - "label": "CATALYZES", - "from": "11219", - "to": "1426", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "9962", - "label": "CATALYZES", - "from": "11292", - "to": "1402", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "9963", - "label": "CATALYZES", - "from": "4138", - "to": "11292", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "10225", - "label": "CONSUMED_BY", - "from": "3159", - "to": "2437", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "10227", - "label": "PRODUCES", - "from": "2437", - "to": "3261", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "10747", - "label": "PRODUCES", - "from": "330", - "to": "14647", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "10751", - "label": "CONSUMED_BY", - "from": "61", - "to": "330", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "10772", - "label": "CONSUMED_BY", - "from": "5191", - "to": "336", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "10781", - "label": "PRODUCES", - "from": "336", - "to": "74", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "10819", - "label": "CATALYZES", - "from": "12100", - "to": "1405", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "10824", - "label": "CATALYZES", - "from": "5080", - "to": "12100", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "10867", - "label": "CATALYZES", - "from": "12138", - "to": "2709", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "10964", - "label": "CONSUMED_BY", - "from": "76", - "to": "423", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "10973", - "label": "PRODUCES", - "from": "423", - "to": "14647", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "11236", - "label": "PRODUCES", - "from": "384", - "to": "76", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "11238", - "label": "CONSUMED_BY", - "from": "3874", - "to": "384", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "11255", - "label": "PRODUCES", - "from": "387", - "to": "35", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "11259", - "label": "CONSUMED_BY", - "from": "6117", - "to": "388", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "11261", - "label": "CONSUMED_BY", - "from": "3057", - "to": "388", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "11265", - "label": "PRODUCES", - "from": "388", - "to": "5955", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "11613", - "label": "PRODUCES", - "from": "471", - "to": "15166", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "11615", - "label": "CONSUMED_BY", - "from": "90", - "to": "471", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "11674", - "label": "PRODUCES", - "from": "456", - "to": "3343", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "11675", - "label": "CONSUMED_BY", - "from": "4792", - "to": "456", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "12003", - "label": "REGULATES", - "from": "3159", - "to": "8685", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "12004", - "label": "REGULATES", - "from": "8685", - "to": "8049", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "12303", - "label": "CONSUMED_BY", - "from": "6825", - "to": "2554", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "12313", - "label": "PRODUCES", - "from": "2554", - "to": "14647", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "12639", - "label": "REGULATES", - "from": "4492", - "to": "8160", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "12640", - "label": "REGULATES", - "from": "4819", - "to": "4492", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "12648", - "label": "PRODUCES", - "from": "8380", - "to": "86", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "12709", - "label": "CONSUMED_BY", - "from": "84", - "to": "8380", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "12826", - "label": "CONSUMED_BY", - "from": "3284", - "to": "574", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "12827", - "label": "PRODUCES", - "from": "574", - "to": "5183", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "13325", - "label": "PRODUCES", - "from": "652", - "to": "4827", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "13327", - "label": "CONSUMED_BY", - "from": "5955", - "to": "652", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "13368", - "label": "CATALYZES", - "from": "8049", - "to": "2757", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "13404", - "label": "CATALYZES", - "from": "4911", - "to": "8041", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "13406", - "label": "CATALYZES", - "from": "8041", - "to": "2834", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "13644", - "label": "REGULATES", - "from": "1834", - "to": "10515", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "13645", - "label": "REGULATES", - "from": "10515", - "to": "14540", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "14110", - "label": "PRODUCES", - "from": "839", - "to": "2313", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "14112", - "label": "CONSUMED_BY", - "from": "15013", - "to": "839", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "14113", - "label": "CONSUMED_BY", - "from": "3339", - "to": "839", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "14607", - "label": "CONSUMED_BY", - "from": "35", - "to": "828", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "14609", - "label": "PRODUCES", - "from": "828", - "to": "3057", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "14794", - "label": "CONSUMED_BY", - "from": "2313", - "to": "1698", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "14956", - "label": "CATALYZES", - "from": "8160", - "to": "1673", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "14973", - "label": "CATALYZES", - "from": "8150", - "to": "2809", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "15015", - "label": "PRODUCES", - "from": "2633", - "to": "4814", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "15138", - "label": "CONSUMED_BY", - "from": "3159", - "to": "2604", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "15147", - "label": "PRODUCES", - "from": "2604", - "to": "3339", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "15733", - "label": "CONSUMED_BY", - "from": "14924", - "to": "2674", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "15740", - "label": "PRODUCES", - "from": "2674", - "to": "5191", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "15848", - "label": "PRODUCES", - "from": "2655", - "to": "4819", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "15850", - "label": "PRODUCES", - "from": "2655", - "to": "4792", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "15851", - "label": "CONSUMED_BY", - "from": "4814", - "to": "2655", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "15877", - "label": "PRODUCES", - "from": "2750", - "to": "61", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "16169", - "label": "CONSUMED_BY", - "from": "3205", - "to": "2747", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "16172", - "label": "PRODUCES", - "from": "2747", - "to": "3159", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "16349", - "label": "PRODUCES", - "from": "2709", - "to": "3339", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "16815", - "label": "CONSUMED_BY", - "from": "3339", - "to": "2704", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "16820", - "label": "PRODUCES", - "from": "2704", - "to": "5350", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/shortest_path_data/serine.json b/appserver/neo4japp/services/shortest_path_data/serine.json deleted file mode 100644 index f064fb6f78..0000000000 --- a/appserver/neo4japp/services/shortest_path_data/serine.json +++ /dev/null @@ -1,3796 +0,0 @@ -{ - "nodes": [ - { - "id": "1092", - "label": "gshA", - "databaseLabel": "Gene", - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": "1102", - "label": "fused aspartate kinase/homoserine dehydrogenase 1", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "1108", - "label": "formyl-CoA transferase", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "1111", - "label": "eno", - "databaseLabel": "Gene", - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": "1157", - "label": "lamB", - "databaseLabel": "Gene", - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": "1175", - "label": "EC-2.8.3.16", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1178", - "label": "RXN0-1741", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1184", - "label": "EC-1.1.5.3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1186", - "label": "aspartate:succinate antiport", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1194", - "label": "EC-2.3.3.16|EC-2.3.3.1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1198", - "label": "EC-2.7.1.40", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1227", - "label": "EC-1.3.5.4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1240", - "label": "EC-1.1.5.2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1241", - "label": "tryptophan:proton symport", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1254", - "label": "EC-4.2.1.11", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1256", - "label": "enolase-cplx", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "1262", - "label": "D-glucopyranose", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "1303", - "label": "ubiquinol", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "1304", - "label": "ribulose-phosphate 3-epimerase", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "1305", - "label": "menaquinol", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "1308", - "label": "pyruvate kinase I", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "1309", - "label": "ubiquinone", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "1389", - "label": "pyruvate kinase", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "1391", - "label": "D-cysteine", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "1396", - "label": "cycA", - "databaseLabel": "Gene", - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": "1397", - "label": "D-alanine:proton symport", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1398", - "label": "maltose", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "1401", - "label": "D-alanine", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "1415", - "label": "EC-2.7.1.199", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1437", - "label": "formyl-CoA transferase", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "1443", - "label": "D-alanine:proton symporter", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "1493", - "label": "pykF", - "databaseLabel": "Gene", - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": "1512", - "label": "thrA", - "databaseLabel": "Gene", - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": "1542", - "label": "glutamate—cysteine ligase", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "1543", - "label": "pyruvate kinase I", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "1572", - "label": "formyl-CoA transferase", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "1606", - "label": "citrate:succinate antiport", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1607", - "label": "L-tyrosine:proton symport", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1631", - "label": "glutathione", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "1652", - "label": "L-alanine:proton symport", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1675", - "label": "succinate", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "1678", - "label": "oxaloacetate", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "1680", - "label": "fumarate", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "1746", - "label": "glycine:proton symport", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1784", - "label": "L-aspartate 4-semialdehyde", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "1894", - "label": "γ-L-glutamyl-L-cysteine", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "1941", - "label": "sn-glycerol 3-phosphate", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "1953", - "label": "aroP", - "databaseLabel": "Gene", - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": "1956", - "label": "EC-1.8.4.4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "1998", - "label": "EC-1.2.1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2003", - "label": "RXN-21817", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2022", - "label": "Transport of maltose", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "2039", - "label": "EC-4.1.3.6", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2075", - "label": "RXN0-5257", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2126", - "label": "EC-2.3.1.54", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2155", - "label": "EC-2.6.1.31", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2165", - "label": "EC-5.1.3.1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2167", - "label": "EC-4.2.1.2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2181", - "label": "EC-2.6.1.1|EC-2.6.1.57|EC-2.6.1.5|EC-2.6.1.27", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2193", - "label": "EC-2.2.1.1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2227", - "label": "EC-2.6.1.1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2228", - "label": "EC-2.6.1.2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2231", - "label": "MALTODEG-RXN", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2237", - "label": "L-alanine:proton symporter", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "2252", - "label": "EC-2.7.3.9", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2323", - "label": "EC-4.1.99.1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2342", - "label": "EC-6.3.2.3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2354", - "label": "EC-1.1.1.3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2373", - "label": "EC-1.14.11", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2390", - "label": "EC-2.7.2.4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2392", - "label": "frc", - "databaseLabel": "Gene", - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - }, - { - "id": "2416", - "label": "EC-4.1.2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2461", - "label": "glycine:proton symporter", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "2464", - "label": "EC-2.7.1.121", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2516", - "label": "EC-2.3.3.9", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2562", - "label": "EC-4.3.3.7", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2631", - "label": "homoserine dehydrogenase", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "2668", - "label": "L-tyrosine:H+ symporter", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "2676", - "label": "[HPr]-L-histidine", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "2707", - "label": "glutamate—cysteine ligase", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "2750", - "label": "glycine", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "2752", - "label": "β-D-fructofuranose 6-phosphate", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "2765", - "label": "D-xylulose 5-phosphate", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "2788", - "label": "formate", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "2822", - "label": "L-aspartate", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "2849", - "label": "2-oxoglutarate", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "2856", - "label": "pyruvate", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "2858", - "label": "aromatic amino acid:H+ symporter AroP", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "2867", - "label": "maltose outer membrane channel / phage lambda receptor protein", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "2868", - "label": "L-alanine", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "2872", - "label": "L-cysteine", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "2877", - "label": "L-glutamate", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "2884", - "label": "L-aspartyl-4-phosphate", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "2885", - "label": "L-tyrosine", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "2887", - "label": "L-tryptophan", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "2893", - "label": "enolase", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "2898", - "label": "enolase", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "2914", - "label": "ribulp3epim-monomer", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "2943", - "label": "RXN-21080", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "2945", - "label": "acetyl-CoA", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "2970", - "label": "L-tryptophan:H+ symporter", - "databaseLabel": "EnzReaction", - "font": { - "color": "#b32b7f" - }, - "color": { - "background": "#FFFFFF", - "border": "#b32b7f", - "hover": { - "background": "#FFFFFF", - "border": "#b32b7f" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#b32b7f" - } - } - }, - { - "id": "2999", - "label": "EC-2.6.1.52", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3011", - "label": "D-serine/alanine/glycine/:H+symporter", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "3048", - "label": "EC-1.8.4.4", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3055", - "label": "glycerone phosphate", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "3102", - "label": "phosphoenolpyruvate", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "3107", - "label": "dihydroxyacetone", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "3161", - "label": "citrate", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "3168", - "label": "(2S", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "3171", - "label": "maltose outer membrane channel / phage lambda receptor protein", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "3178", - "label": "EC-2.6.1.16", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3270", - "label": "EC-4.4.1.15", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3285", - "label": "EC-1.4.5", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3288", - "label": "EC-1.17.5.3", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3325", - "label": "(S)-malate", - "databaseLabel": "Compound", - "font": { - "color": "#4caf50" - }, - "color": { - "background": "#FFFFFF", - "border": "#4caf50", - "hover": { - "background": "#FFFFFF", - "border": "#4caf50" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#4caf50" - } - } - }, - { - "id": "3328", - "label": "EC-2.5.1.48", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3335", - "label": "EC-1.2.5.1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3347", - "label": "EC-6.3.2.2", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3387", - "label": "EC-1.3.5.1", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3388", - "label": "fused aspartate kinase/homoserine dehydrogenase 1", - "databaseLabel": "Protein", - "font": { - "color": "#bcbd22" - }, - "color": { - "background": "#FFFFFF", - "border": "#bcbd22", - "hover": { - "background": "#FFFFFF", - "border": "#bcbd22" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#bcbd22" - } - } - }, - { - "id": "3404", - "label": "L-aspartate:fumarate antiport", - "databaseLabel": "Reaction", - "font": { - "color": "#ebb434" - }, - "color": { - "background": "#FFFFFF", - "border": "#ebb434", - "hover": { - "background": "#FFFFFF", - "border": "#ebb434" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#ebb434" - } - } - }, - { - "id": "3421", - "label": "rpe", - "databaseLabel": "Gene", - "font": { - "color": "#673ab7" - }, - "color": { - "background": "#FFFFFF", - "border": "#673ab7", - "hover": { - "background": "#FFFFFF", - "border": "#673ab7" - }, - "highlight": { - "background": "#FFFFFF", - "border": "#673ab7" - } - } - } - ], - "edges": [ - { - "id": "85", - "label": "PRODUCES", - "from": "2390", - "to": "2884", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "91", - "label": "CONSUMED_BY", - "from": "2822", - "to": "2390", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "92", - "label": "CONSUMED_BY", - "from": "3161", - "to": "2039", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "101", - "label": "PRODUCES", - "from": "2039", - "to": "1678", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "144", - "label": "PRODUCES", - "from": "1652", - "to": "2868", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "157", - "label": "CATALYZES", - "from": "2022", - "to": "1178", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "160", - "label": "CATALYZES", - "from": "3171", - "to": "2022", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "263", - "label": "CONSUMED_BY", - "from": "1680", - "to": "3404", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "272", - "label": "PRODUCES", - "from": "3404", - "to": "2822", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "274", - "label": "ENCODES", - "from": "2392", - "to": "1108", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "288", - "label": "ENCODES", - "from": "1512", - "to": "1102", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "349", - "label": "PRODUCES", - "from": "1956", - "to": "1391", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "353", - "label": "CONSUMED_BY", - "from": "1631", - "to": "1956", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "391", - "label": "COMPONENT_OF", - "from": "2893", - "to": "1256", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "457", - "label": "CONSUMED_BY", - "from": "2676", - "to": "2943", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "459", - "label": "CONSUMED_BY", - "from": "3102", - "to": "2943", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "465", - "label": "PRODUCES", - "from": "2943", - "to": "2856", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "471", - "label": "COMPONENT_OF", - "from": "1543", - "to": "1308", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "494", - "label": "CONSUMED_BY", - "from": "2788", - "to": "3288", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "496", - "label": "PRODUCES", - "from": "3288", - "to": "1305", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "515", - "label": "PRODUCES", - "from": "2354", - "to": "1784", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "529", - "label": "PRODUCES", - "from": "3285", - "to": "2856", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "531", - "label": "CONSUMED_BY", - "from": "1401", - "to": "3285", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "565", - "label": "ENCODES", - "from": "1157", - "to": "2867", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "575", - "label": "CONSUMED_BY", - "from": "1894", - "to": "2342", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "576", - "label": "CONSUMED_BY", - "from": "2750", - "to": "2342", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "579", - "label": "CONSUMED_BY", - "from": "1391", - "to": "3270", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "580", - "label": "PRODUCES", - "from": "2342", - "to": "1631", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "584", - "label": "PRODUCES", - "from": "3270", - "to": "2856", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "585", - "label": "PRODUCES", - "from": "2464", - "to": "3055", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "586", - "label": "CONSUMED_BY", - "from": "3102", - "to": "2464", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "587", - "label": "CONSUMED_BY", - "from": "3107", - "to": "2464", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "590", - "label": "PRODUCES", - "from": "2464", - "to": "2856", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "621", - "label": "PRODUCES", - "from": "1397", - "to": "1401", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "650", - "label": "ENCODES", - "from": "1493", - "to": "1543", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "652", - "label": "ENCODES", - "from": "1092", - "to": "1542", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "713", - "label": "CONSUMED_BY", - "from": "2856", - "to": "3335", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "718", - "label": "PRODUCES", - "from": "3335", - "to": "1303", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "765", - "label": "CONSUMED_BY", - "from": "2945", - "to": "1194", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "769", - "label": "PRODUCES", - "from": "1194", - "to": "3161", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "778", - "label": "CONSUMED_BY", - "from": "2872", - "to": "3328", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "783", - "label": "PRODUCES", - "from": "1198", - "to": "3102", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "784", - "label": "PRODUCES", - "from": "3328", - "to": "1675", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "798", - "label": "PRODUCES", - "from": "2416", - "to": "3107", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "799", - "label": "PRODUCES", - "from": "1186", - "to": "2822", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "800", - "label": "CONSUMED_BY", - "from": "2752", - "to": "2416", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "801", - "label": "CONSUMED_BY", - "from": "1675", - "to": "1186", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "847", - "label": "CONSUMED_BY", - "from": "1631", - "to": "3048", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "854", - "label": "PRODUCES", - "from": "3048", - "to": "2872", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "855", - "label": "CONSUMED_BY", - "from": "2877", - "to": "2999", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "877", - "label": "PRODUCES", - "from": "1184", - "to": "1305", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "878", - "label": "CONSUMED_BY", - "from": "1941", - "to": "1184", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "888", - "label": "CATALYZES", - "from": "1256", - "to": "2898", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "893", - "label": "CATALYZES", - "from": "2898", - "to": "1254", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "916", - "label": "ENCODES", - "from": "1953", - "to": "2858", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "948", - "label": "CATALYZES", - "from": "1304", - "to": "2165", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "951", - "label": "CATALYZES", - "from": "2914", - "to": "1304", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "953", - "label": "ENCODES", - "from": "3421", - "to": "2914", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "967", - "label": "COMPONENT_OF", - "from": "2867", - "to": "3171", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "972", - "label": "ENCODES", - "from": "1111", - "to": "2893", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1015", - "label": "PRODUCES", - "from": "2167", - "to": "1680", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1016", - "label": "CONSUMED_BY", - "from": "3325", - "to": "2167", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1019", - "label": "CATALYZES", - "from": "2858", - "to": "2970", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1021", - "label": "CATALYZES", - "from": "2970", - "to": "1241", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1024", - "label": "CONSUMED_BY", - "from": "2885", - "to": "2181", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1029", - "label": "PRODUCES", - "from": "2181", - "to": "2877", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1069", - "label": "CONSUMED_BY", - "from": "2788", - "to": "2126", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1076", - "label": "PRODUCES", - "from": "2126", - "to": "2856", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1095", - "label": "CONSUMED_BY", - "from": "1262", - "to": "1415", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1110", - "label": "PRODUCES", - "from": "1746", - "to": "2750", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1143", - "label": "CONSUMED_BY", - "from": "2945", - "to": "2516", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1145", - "label": "PRODUCES", - "from": "2516", - "to": "3325", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1217", - "label": "ENCODES", - "from": "1396", - "to": "3011", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1218", - "label": "PRODUCES", - "from": "2165", - "to": "2765", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1249", - "label": "CONSUMED_BY", - "from": "1678", - "to": "2155", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1254", - "label": "PRODUCES", - "from": "2155", - "to": "2822", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1260", - "label": "PRODUCES", - "from": "1175", - "to": "2788", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1279", - "label": "PRODUCES", - "from": "1178", - "to": "1398", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1352", - "label": "CONSUMED_BY", - "from": "3055", - "to": "2075", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1358", - "label": "PRODUCES", - "from": "2075", - "to": "1941", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1376", - "label": "CONSUMED_BY", - "from": "1305", - "to": "1227", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1379", - "label": "PRODUCES", - "from": "1227", - "to": "1675", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1512", - "label": "PRODUCES", - "from": "2003", - "to": "1309", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1548", - "label": "CATALYZES", - "from": "2858", - "to": "2668", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1549", - "label": "CATALYZES", - "from": "2668", - "to": "1607", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1551", - "label": "CONSUMED_BY", - "from": "1303", - "to": "2003", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1565", - "label": "CATALYZES", - "from": "1308", - "to": "1389", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1569", - "label": "CATALYZES", - "from": "1389", - "to": "1198", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1574", - "label": "CATALYZES", - "from": "2707", - "to": "3347", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1575", - "label": "CATALYZES", - "from": "1542", - "to": "2707", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1585", - "label": "PRODUCES", - "from": "2228", - "to": "2877", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1586", - "label": "CONSUMED_BY", - "from": "2868", - "to": "2228", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1588", - "label": "CATALYZES", - "from": "1443", - "to": "1397", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1591", - "label": "CATALYZES", - "from": "3011", - "to": "1443", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1594", - "label": "CONSUMED_BY", - "from": "1398", - "to": "2231", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1601", - "label": "PRODUCES", - "from": "2231", - "to": "1262", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1605", - "label": "CATALYZES", - "from": "1437", - "to": "1175", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1608", - "label": "CATALYZES", - "from": "1572", - "to": "1437", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1616", - "label": "CATALYZES", - "from": "3011", - "to": "2237", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1619", - "label": "CATALYZES", - "from": "2237", - "to": "1652", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1722", - "label": "PRODUCES", - "from": "2193", - "to": "2752", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1724", - "label": "CONSUMED_BY", - "from": "2765", - "to": "2193", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1733", - "label": "CONSUMED_BY", - "from": "1309", - "to": "3387", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1737", - "label": "PRODUCES", - "from": "3387", - "to": "1680", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1776", - "label": "PRODUCES", - "from": "2562", - "to": "3168", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1777", - "label": "CONSUMED_BY", - "from": "1784", - "to": "2562", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1778", - "label": "CONSUMED_BY", - "from": "2856", - "to": "2562", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1802", - "label": "PRODUCES", - "from": "1254", - "to": "3102", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1845", - "label": "COMPONENT_OF", - "from": "1108", - "to": "1572", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1848", - "label": "CONSUMED_BY", - "from": "2887", - "to": "2323", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1849", - "label": "PRODUCES", - "from": "2323", - "to": "2856", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1897", - "label": "CATALYZES", - "from": "3011", - "to": "2461", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1898", - "label": "CATALYZES", - "from": "2461", - "to": "1746", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1925", - "label": "PRODUCES", - "from": "2999", - "to": "2849", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1934", - "label": "PRODUCES", - "from": "2227", - "to": "1678", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1935", - "label": "CONSUMED_BY", - "from": "2849", - "to": "2227", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1942", - "label": "PRODUCES", - "from": "1241", - "to": "2887", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1969", - "label": "COMPONENT_OF", - "from": "1102", - "to": "3388", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1983", - "label": "CONSUMED_BY", - "from": "3161", - "to": "1606", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1985", - "label": "PRODUCES", - "from": "1606", - "to": "1675", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1987", - "label": "PRODUCES", - "from": "1240", - "to": "1303", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1988", - "label": "CONSUMED_BY", - "from": "1262", - "to": "1240", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "1993", - "label": "PRODUCES", - "from": "1607", - "to": "2885", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "2022", - "label": "PRODUCES", - "from": "3178", - "to": "2877", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "2026", - "label": "CONSUMED_BY", - "from": "2752", - "to": "3178", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "2055", - "label": "CONSUMED_BY", - "from": "2856", - "to": "1998", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "2058", - "label": "PRODUCES", - "from": "1998", - "to": "2945", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "2179", - "label": "CONSUMED_BY", - "from": "3102", - "to": "2252", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "2186", - "label": "PRODUCES", - "from": "2252", - "to": "2856", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "2251", - "label": "PRODUCES", - "from": "1415", - "to": "2676", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "2312", - "label": "CONSUMED_BY", - "from": "2849", - "to": "2373", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "2314", - "label": "PRODUCES", - "from": "2373", - "to": "1675", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "2346", - "label": "PRODUCES", - "from": "3347", - "to": "1894", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "2592", - "label": "CATALYZES", - "from": "3388", - "to": "2631", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - }, - { - "id": "2593", - "label": "CATALYZES", - "from": "2631", - "to": "2354", - "color": { - "color": "#0c8caa" - }, - "arrows": "to" - } - ] -} diff --git a/appserver/neo4japp/services/visualizer.py b/appserver/neo4japp/services/visualizer.py index 406733997c..34fb68bcea 100644 --- a/appserver/neo4japp/services/visualizer.py +++ b/appserver/neo4japp/services/visualizer.py @@ -1,10 +1,12 @@ -from typing import List - +from arango.client import ArangoClient from flask.globals import current_app -from neo4j import Record as Neo4jRecord, Transaction as Neo4jTx +from typing import Dict, List +from uuid import uuid4 from neo4japp.constants import ( LogEventType, + DISPLAY_NAME_MAP, + DOMAIN_URLS_MAP, TYPE_CHEMICAL, TYPE_DISEASE, TYPE_GENE, @@ -16,695 +18,728 @@ Direction, DuplicateEdgeConnectionData, EdgeConnectionData, + GetBulkReferenceTableDataResult, GetClusterSnippetsResult, GetEdgeSnippetsResult, GetNodePairSnippetsResult, GetReferenceTableDataResult, GetSnippetsFromEdgeResult, - ReferenceTablePair, ReferenceTableRow, Snippet, GetAssociatedTypesResult, ) -from neo4japp.exceptions import ServerWarning from neo4japp.models import GraphNode -from neo4japp.models.entity_resources import DomainURLsMap -from neo4japp.services import KgService -from neo4japp.utils import snake_to_camel_dict, EventLog -from neo4japp.utils.globals import warn +from neo4japp.services.arangodb import execute_arango_query, get_db from neo4japp.utils.labels import get_first_known_label_from_list - - -class VisualizerService(KgService): - def __init__(self, graph, session): - super().__init__(graph=graph, session=session) - - def _get_uri_of_node_data(self, id: int, label: str, entity_id: str): - """Given node meta data returns the appropriate - URL formatted with the node entity identifier. - """ - url_map = { - domain: base_url - for domain, base_url in self.session.query( - DomainURLsMap.domain, - DomainURLsMap.base_URL, - ) - } - - # Can't get the URI of the node if there is no 'eid' property, so return None - if entity_id is None: - current_app.logger.warning( - f'Node with EID {entity_id} does not have a URI.', - extra=EventLog(event_type=LogEventType.KNOWLEDGE_GRAPH.value).to_dict(), - ) - return None - - url = None - try: - if label == TYPE_CHEMICAL: - db_prefix, uid = entity_id.split(':') - if db_prefix == 'CHEBI': - url = url_map['chebi'].format(uid) - else: - url = url_map['MESH'].format(uid) - elif label == TYPE_DISEASE: - db_prefix, uid = entity_id.split(':') - if db_prefix == 'MESH': - url = url_map['MESH'].format(uid) - else: - url = url_map['omim'].format(uid) - elif label == TYPE_GENE: - url = url_map['NCBI_Gene'].format(entity_id) - elif label == TYPE_LITERATURE_CHEMICAL: - db_prefix, uid = entity_id.split(':') - if db_prefix == 'CHEBI': - url = url_map['chebi'].format(uid) - else: - url = url_map['MESH'].format(uid) - elif label == TYPE_LITERATURE_DISEASE: - db_prefix, uid = entity_id.split(':') - if db_prefix == 'MESH': - url = url_map['MESH'].format(uid) - else: - url = url_map['omim'].format(uid) - elif label == TYPE_LITERATURE_GENE: - url = url_map['NCBI_Gene'].format(entity_id) - except KeyError as e: - message = ( - f'url_map did not contain the expected key value for node with:\n' - f'\tID: {id}\n' - f'\tLabel: {label}\n' - f'\tURI: {entity_id}\n' - 'There may be something wrong in the database.' - ) - current_app.logger.warning( - message, - extra=EventLog(event_type=LogEventType.KNOWLEDGE_GRAPH.value).to_dict(), - ) - warn(ServerWarning(message=message), cause=e) - finally: - return url - - def expand_graph(self, node_id: str, filter_labels: List[str]): - result = self.graph.read_transaction( - self.get_expand_query, node_id, filter_labels +from neo4japp.utils.logger import EventLog +from neo4japp.utils.string import snake_to_camel_dict + + +def _get_uri_of_node_data(id: str, label: str, entity_id: str): + """Given node meta data returns the appropriate + URL formatted with the node entity identifier. + """ + # Can't get the URI of the node if there is no 'eid' property, so return None + if entity_id is None: + current_app.logger.warning( + f'Node with EID {entity_id} does not have a URI.', + extra=EventLog(event_type=LogEventType.KNOWLEDGE_GRAPH.value).to_dict(), ) - - node_data = [] - edge_data = [] - if len(result) > 0: - node_data = result[0]['nodes'] - edge_data = result[0]['relationships'] - - nodes = [] - for data in node_data: - try: - label = get_first_known_label_from_list(data['labels']) - except ValueError: - label = 'Unknown' - nodes.append( - { - 'id': data['id'], - 'label': label, - 'domainLabels': [], - 'data': { - 'name': data['name'], - 'id': data['entity_id'], - }, - 'subLabels': data['labels'], - 'displayName': data['name'], - 'entityUrl': self._get_uri_of_node_data( - data['id'], label, data['entity_id'] - ), - } + return None + + url = None + try: + if label == TYPE_CHEMICAL: + db_prefix, uid = entity_id.split(':') + if db_prefix == 'CHEBI': + url = DOMAIN_URLS_MAP['chebi'].format(uid) + else: + url = DOMAIN_URLS_MAP['MESH'].format(uid) + elif label == TYPE_DISEASE: + db_prefix, uid = entity_id.split(':') + if db_prefix == 'MESH': + url = DOMAIN_URLS_MAP['MESH'].format(uid) + else: + url = DOMAIN_URLS_MAP['omim'].format(uid) + elif label == TYPE_GENE: + url = DOMAIN_URLS_MAP['NCBI_Gene'].format(entity_id) + elif label == TYPE_LITERATURE_CHEMICAL: + db_prefix, uid = entity_id.split(':') + if db_prefix == 'CHEBI': + url = DOMAIN_URLS_MAP['chebi'].format(uid) + else: + url = DOMAIN_URLS_MAP['MESH'].format(uid) + elif label == TYPE_LITERATURE_DISEASE: + db_prefix, uid = entity_id.split(':') + if db_prefix == 'MESH': + url = DOMAIN_URLS_MAP['MESH'].format(uid) + else: + url = DOMAIN_URLS_MAP['omim'].format(uid) + elif label == TYPE_LITERATURE_GENE: + url = DOMAIN_URLS_MAP['NCBI_Gene'].format(entity_id) + except KeyError: + current_app.logger.warning( + f'url_map did not contain the expected key value for node with:\n' + + f'\tID: {id}\n' + + f'\tLabel: {label}\n' + + f'\tURI: {entity_id}\n' + + 'There may be something wrong in the database.', + extra=EventLog(event_type=LogEventType.KNOWLEDGE_GRAPH.value).to_dict(), + ) + finally: + return url + + +def get_document_for_visualizer(arango_client: ArangoClient, doc_id: str): + doc = execute_arango_query( + get_db(arango_client), query='RETURN DOCUMENT(@id)', id=doc_id + )[0] + label = get_first_known_label_from_list(doc['labels']) + return GraphNode( + id=doc['_id'], + label=label, + sub_labels=doc['labels'], + domain_labels=[], + display_name=doc.get(DISPLAY_NAME_MAP[label], 'Unknown'), + data=snake_to_camel_dict(doc, {}), + url=_get_uri_of_node_data(doc['_id'], label, doc['eid']), + ).to_dict() + + +def expand_node_as_clusters( + arango_client: ArangoClient, node_id: str, filter_labels: List[str] +): + expansion_results = execute_arango_query( + get_db(arango_client), + query=get_expand_query(), + node_id=node_id, + labels=filter_labels, + ) + + associations = dict() + for row in expansion_results: + description = row['description'] + direction = row['direction'] + pairs = row['pairs'] + association_key = f'{description}${direction}' + + duplicate_node_edge_pairs = [] + for pair in pairs: + node = pair['node'] + edge = pair['edge'] + node_label = get_first_known_label_from_list(node['labels']) + node_as_duplicate = { + **node, + 'id': f'duplicateNode:{uuid4()}', + 'duplicate_of': node['id'], + 'label': node_label, + 'entity_url': _get_uri_of_node_data( + node['id'], node_label, node['data']['id'] + ), + } + + edge_as_duplicate = { + **edge, + 'to_label': get_first_known_label_from_list(edge['to_labels']), + 'from_label': get_first_known_label_from_list(edge['from_labels']), + 'id': f'duplicateNode:{uuid4()}', + 'duplicate_of': edge['id'], + 'from': node_id if edge['from'] == node_id else node_as_duplicate['id'], + 'to': node_id if edge['to'] == node_id else node_as_duplicate['id'], + 'original_from': edge['from'], + 'original_to': edge['to'], + } + + duplicate_node_edge_pairs.append( + {'node': node_as_duplicate, 'edge': edge_as_duplicate} ) - - edges = [] - for data in edge_data: - try: - from_label = get_first_known_label_from_list(data['from_labels']) - except ValueError: - from_label = 'Unknown' - - try: - to_label = get_first_known_label_from_list(data['to_labels']) - except ValueError: - to_label = 'Unknown' - - edges.append( - { - 'id': data['id'], - 'label': data['label'], - 'data': { - 'description': data['relationship'].get('description'), - 'association_id': data['relationship'].get('association_id'), - 'type': data['relationship'].get('type'), - }, - 'to': data['relationship'].end_node.id, - 'from': data['relationship'].start_node.id, - 'toLabel': to_label, - 'fromLabel': from_label, - } + associations[association_key] = duplicate_node_edge_pairs + + reference_tables = [] + for association, node_edge_pairs in associations.items(): + description, direction = association.split('$') + reference_tables.append( + get_reference_table_data( + arango_client, node_edge_pairs, description, direction ) - - return {'nodes': nodes, 'edges': edges} - - def get_snippets_from_edges( - self, - from_ids: List[int], - to_ids: List[int], - description: str, - page: int, - limit: int, - ): - return self.graph.read_transaction( - self.get_snippets_from_edges_query, - from_ids, - to_ids, - description, - (page - 1) * limit, - limit, ) - - def get_snippets_from_node_pair( - self, node_1_id: int, node_2_id: int, page: int, limit: int - ): - return self.graph.read_transaction( - self.get_snippets_from_node_pair_query, - node_1_id, - node_2_id, - (page - 1) * limit, - limit, + return GetBulkReferenceTableDataResult(reference_tables=reference_tables) + + +def get_associated_type_snippet_count( + arango_client: ArangoClient, + source_node: int, + associated_nodes: List[int], +): + results = execute_arango_query( + db=get_db(arango_client), + query=get_associated_type_snippet_count_query(), + source_node=source_node, + associated_nodes=associated_nodes, + ) + return GetAssociatedTypesResult(associated_data=results) + + +def get_snippets_for_node_pair( + arango_client: ArangoClient, + node_1_id: int, + node_2_id: int, + page: int, + limit: int, +): + data = get_snippets_from_node_pair(arango_client, node_1_id, node_2_id, page, limit) + total_results = get_snippet_count_from_node_pair( + arango_client, node_1_id, node_2_id + ) + + results = [ + GetSnippetsFromEdgeResult( + from_node_id=row['from_id'], + to_node_id=row['to_id'], + association=row['description'], + snippets=[ + Snippet( + reference=GraphNode( + reference['snippet']['id'], + 'Snippet', + [], + snake_to_camel_dict(reference['snippet']['data'], {}), + [], + None, + None, + ), + publication=GraphNode( + reference['publication']['id'], + 'Publication', + [], + snake_to_camel_dict(reference['publication']['data'], {}), + [], + None, + None, + ), + ) + for reference in row['references'] + ], ) - - def get_snippet_count_from_node_pair( - self, - node_1_id: int, - node_2_id: int, - ): - return self.graph.read_transaction( - self.get_snippet_count_from_node_pair_query, node_1_id, node_2_id - )['snippet_count'] - - def get_reference_table_data(self, node_edge_pairs: List[ReferenceTablePair]): - # For duplicate edges, We need to remember which true node ID pairs map to which - # duplicate node ID pairs, otherwise when we send the data back to the frontend - # we won't know which duplicate nodes we should match the snippet data with - ids_to_pairs = { - (pair.edge.original_from, pair.edge.original_to): pair - for pair in node_edge_pairs - } - - # One of these lists will have all duplicates (depends on the direction - # of the cluster edge). We remove the duplicates so we don't get weird query results. - from_ids = list({pair.edge.original_from for pair in node_edge_pairs}) - to_ids = list({pair.edge.original_to for pair in node_edge_pairs}) - description = node_edge_pairs[ - 0 - ].edge.label # Every edge should have the same label + for row in data + ] + + return GetNodePairSnippetsResult( + snippet_data=results, + total_results=total_results, + query_data={'node_1_id': node_1_id, 'node_2_id': node_2_id}, + ) + + +def get_snippets_from_node_pair( + arango_client: ArangoClient, node_1_id: int, node_2_id: int, page: int, limit: int +): + return execute_arango_query( + get_db(arango_client), + query=get_snippets_from_node_pair_query(), + node_1_id=node_1_id, + node_2_id=node_2_id, + skip=(page - 1) * limit, + limit=limit, + ) + + +def get_snippet_count_from_node_pair( + arango_client: ArangoClient, + node_1_id: int, + node_2_id: int, +): + return execute_arango_query( + db=get_db(arango_client), + query=get_snippet_count_from_node_pair_query(), + node_1_id=node_1_id, + node_2_id=node_2_id, + )[0] + + +def get_snippets_from_edges( + arango_client: ArangoClient, + from_ids: List[str], + to_ids: List[str], + description: str, + page: int, + limit: int, +): + return execute_arango_query( + get_db(arango_client), + query=get_snippets_from_edges_query(), + from_ids=from_ids, + to_ids=to_ids, + description=description, + skip=(page - 1) * limit, + limit=limit, + ) + + +def get_reference_table_data( + arango_client: ArangoClient, + node_edge_pairs: List[Dict], + description: str = None, + direction: str = None, +): + # For duplicate edges, We need to remember which true node ID pairs map to which + # duplicate node ID pairs, otherwise when we send the data back to the frontend + # we won't know which duplicate nodes we should match the snippet data with + ids_to_pairs = { + (pair['edge']['original_from'], pair['edge']['original_to']): pair + for pair in node_edge_pairs + } + + # One of these lists will have all duplicates (depends on the direction + # of the cluster edge). We remove the duplicates so we don't get weird query results. + from_ids = list({pair['edge']['original_from'] for pair in node_edge_pairs}) + to_ids = list({pair['edge']['original_to'] for pair in node_edge_pairs}) + if description is None: + description = node_edge_pairs[0]['edge'][ + 'label' + ] # Every edge should have the same label + if direction is None: direction = Direction.FROM.value if len(from_ids) == 1 else Direction.TO.value - counts = self.graph.read_transaction( - self.get_snippet_count_from_edges_query, from_ids, to_ids, description - ) - - reference_table_rows: List[ReferenceTableRow] = [] - for row in counts: - pair = ids_to_pairs[(row['from_id'], row['to_id'])] - reference_table_rows.append( - ReferenceTableRow( - node_id=pair.node.id, - node_display_name=pair.node.display_name, - node_label=pair.node.label, - snippet_count=row['count'], - ) + counts = execute_arango_query( + get_db(arango_client), + query=get_snippet_count_from_edges_query(), + from_ids=from_ids, + to_ids=to_ids, + description=description, + ) + + reference_table_rows: List[ReferenceTableRow] = [] + for row in counts: + pair = ids_to_pairs[(row['from_id'], row['to_id'])] + reference_table_rows.append( + ReferenceTableRow( + node_id=pair['node']['id'], + node_display_name=pair['node']['display_name'], + node_label=pair['node']['label'], + snippet_count=row['count'], ) - - return GetReferenceTableDataResult( - reference_table_rows=reference_table_rows, direction=direction ) - def get_snippets_for_edge( - self, - edge: EdgeConnectionData, - page: int, - limit: int, - ) -> GetEdgeSnippetsResult: - from_ids = [edge.from_] - to_ids = [edge.to] - description = edge.label # Every edge should have the same label - - data = self.get_snippets_from_edges(from_ids, to_ids, description, page, limit) - count_results = self.graph.read_transaction( - self.get_snippet_count_from_edges_query, from_ids, to_ids, description - ) - total_results = sum(row['count'] for row in count_results) - - # `data` is either length 0 or 1 - snippets = [] - for row in data: - for reference in row['references']: - snippets.append( - Snippet( - reference=GraphNode( - reference['snippet']['id'], - 'Snippet', - [], - snake_to_camel_dict(reference['snippet']['data'], {}), - [], - None, - None, - ), - publication=GraphNode( - reference['publication']['id'], - 'Publication', - [], - snake_to_camel_dict(reference['publication']['data'], {}), - [], - None, - None, - ), - ) + return GetReferenceTableDataResult( + reference_table_rows=reference_table_rows, + duplicate_node_edge_pairs=node_edge_pairs, + direction=direction, + description=description, + ) + + +def get_snippets_for_edge( + arango_client: ArangoClient, + edge: EdgeConnectionData, + page: int, + limit: int, +) -> GetEdgeSnippetsResult: + from_ids = [edge.from_] + to_ids = [edge.to] + description = edge.label # Every edge should have the same label + + data = get_snippets_from_edges( + arango_client, from_ids, to_ids, description, page, limit + ) + count_results = execute_arango_query( + get_db(arango_client), + query=get_snippet_count_from_edges_query(), + from_ids=from_ids, + to_ids=to_ids, + description=description, + ) + total_results = sum(row['count'] for row in count_results) + + # `data` is either length 0 or 1 + snippets = [] + for row in data: + for reference in row['references']: + snippets.append( + Snippet( + reference=GraphNode( + reference['snippet']['id'], + 'Snippet', + [], + snake_to_camel_dict(reference['snippet']['data'], {}), + [], + None, + None, + ), + publication=GraphNode( + reference['publication']['id'], + 'Publication', + [], + snake_to_camel_dict(reference['publication']['data'], {}), + [], + None, + None, + ), ) - - result = GetSnippetsFromEdgeResult( - from_node_id=edge.from_, - to_node_id=edge.to, - association=edge.label, - snippets=snippets, - ) - - return GetEdgeSnippetsResult( - snippet_data=result, - total_results=total_results, - query_data=edge, - ) - - @staticmethod - def _compose_snippet_from_reference(reference) -> Snippet: - return Snippet( - reference=GraphNode( - reference['snippet']['id'], - 'Snippet', - [], - snake_to_camel_dict(reference['snippet']['data'], {}), - [], - None, - None, - ), - publication=GraphNode( - reference['publication']['id'], - 'Publication', - [], - snake_to_camel_dict(reference['publication']['data'], {}), - [], - None, - None, - ), - ) - - def get_snippets_for_cluster( - self, - edges: List[DuplicateEdgeConnectionData], - page: int, - limit: int, - ) -> GetClusterSnippetsResult: - # For duplicate edges, We need to remember which true node ID pairs map to which - # duplicate node ID pairs, otherwise when we send the data back to the frontend - # we won't know which duplicate nodes we should match the snippet data with - id_pairs = { - (edge.original_from, edge.original_to): {'from': edge.from_, 'to': edge.to} - for edge in edges - } - - # One of these lists will have all duplicates (depends on the direction - # of the cluster edge). We remove the duplicates so we don't get weird query results. - from_ids = list({edge.original_from for edge in edges}) - to_ids = list({edge.original_to for edge in edges}) - description = edges[0].label # Every edge should have the same label - - data = self.get_snippets_from_edges(from_ids, to_ids, description, page, limit) - count_results = self.graph.read_transaction( - self.get_snippet_count_from_edges_query, from_ids, to_ids, description - ) - total_results = sum(row['count'] for row in count_results) - - results = [ - GetSnippetsFromEdgeResult( - from_node_id=id_pairs[(row['from_id'], row['to_id'])]['from'], - to_node_id=id_pairs[(row['from_id'], row['to_id'])]['to'], - association=row['description'], - snippets=[ - self._compose_snippet_from_reference(reference) - for reference in row['references'] - ], ) - for row in data - ] - - return GetClusterSnippetsResult( - snippet_data=results, - total_results=total_results, - query_data=edges, - ) - def get_associated_type_snippet_count( - self, - source_node: int, - associated_nodes: List[int], - ): - results = self.graph.read_transaction( - self.get_associated_type_snippet_count_query, source_node, associated_nodes + result = GetSnippetsFromEdgeResult( + from_node_id=edge.from_, + to_node_id=edge.to, + association=edge.label, + snippets=snippets, + ) + + return GetEdgeSnippetsResult( + snippet_data=result, + total_results=total_results, + query_data=edge, + ) + + +def get_snippets_for_cluster( + arango_client: ArangoClient, + edges: List[DuplicateEdgeConnectionData], + page: int, + limit: int, +) -> GetClusterSnippetsResult: + # For duplicate edges, We need to remember which true node ID pairs map to which + # duplicate node ID pairs, otherwise when we send the data back to the frontend + # we won't know which duplicate nodes we should match the snippet data with + id_pairs = { + (edge.original_from, edge.original_to): {'from': edge.from_, 'to': edge.to} + for edge in edges + } + + # One of these lists will have all duplicates (depends on the direction + # of the cluster edge). We remove the duplicates so we don't get weird query results. + from_ids = list({edge.original_from for edge in edges}) + to_ids = list({edge.original_to for edge in edges}) + description = edges[0].label # Every edge should have the same label + + data = get_snippets_from_edges( + arango_client, from_ids, to_ids, description, page, limit + ) + count_results = execute_arango_query( + get_db(arango_client), + query=get_snippet_count_from_edges_query(), + from_ids=from_ids, + to_ids=to_ids, + description=description, + ) + total_results = sum(row['count'] for row in count_results) + + results = [ + GetSnippetsFromEdgeResult( + from_node_id=id_pairs[(row['from_id'], row['to_id'])]['from'], + to_node_id=id_pairs[(row['from_id'], row['to_id'])]['to'], + association=row['description'], + snippets=[ + Snippet( + reference=GraphNode( + reference['snippet']['id'], + 'Snippet', + [], + snake_to_camel_dict(reference['snippet']['data'], {}), + [], + None, + None, + ), + publication=GraphNode( + reference['publication']['id'], + 'Publication', + [], + snake_to_camel_dict(reference['publication']['data'], {}), + [], + None, + None, + ), + ) + for reference in row['references'] + ], ) - - return GetAssociatedTypesResult(associated_data=results) - - def get_snippets_for_node_pair( - self, - node_1_id: int, - node_2_id: int, - page: int, - limit: int, - ): - data = self.get_snippets_from_node_pair(node_1_id, node_2_id, page, limit) - total_results = self.get_snippet_count_from_node_pair(node_1_id, node_2_id) - - results = [ - GetSnippetsFromEdgeResult( - from_node_id=row['from_id'], - to_node_id=row['to_id'], - association=row['description'], - snippets=[ - self._compose_snippet_from_reference(reference) - for reference in row['references'] - ], + for row in data + ] + + return GetClusterSnippetsResult( + snippet_data=results, + total_results=total_results, + query_data=edges, + ) + + +def get_expand_query() -> str: + return """ + FOR n IN literature + FILTER n._id == @node_id + FOR m, e IN ANY n associated + FILTER LENGTH(INTERSECTION(@labels, m.labels)) > 0 + COLLECT description = e.description, outgoing = e._from == n._id INTO pairs = { + "node": { + "id": m._id, + "display_name": m.name, + "data": { + "name": m.name, + "id": m.eid, + }, + "labels": m.labels, + "domain_labels": [], + }, + "edge": { + "id": e._id, + "from": e._from, + "to": e._to, + "from_labels": DOCUMENT(e._from).labels, + "to_labels": DOCUMENT(e._to).labels, + "data": { + "description": e.description, + "association_id": e.association_id, + "type": e.type, + }, + "label": "associated" + } + } + RETURN { + "description": description, + "direction": outgoing ? "Outgoing" : "Incoming", + "pairs": pairs + } + """ + + +def get_associated_type_snippet_count_query() -> str: + return """ + FOR associated_node IN @associated_nodes + LET association_paths = ( + FOR assoc_edge IN associated + FILTER + (assoc_edge._from == @source_node AND assoc_edge._to == associated_node) OR + (assoc_edge._from == associated_node AND assoc_edge._to == @source_node) + RETURN DISTINCT { + "association": assoc_edge.association_id, + "from_id": assoc_edge._from, + "to_id": assoc_edge._to + } ) - for row in data - ] - - return GetNodePairSnippetsResult( - snippet_data=results, - total_results=total_results, - query_data={'node_1_id': node_1_id, 'node_2_id': node_2_id}, - ) - - def get_expand_query( - self, tx: Neo4jTx, node_id: str, labels: List[str] - ) -> List[Neo4jRecord]: - return list( - tx.run( - """ - MATCH (n) - WHERE ID(n)=$node_id - MATCH (n)-[l:ASSOCIATED]-(m) - WHERE any(x IN $labels WHERE x IN labels(m)) - RETURN - apoc.convert.toSet([{ - id: ID(n), - labels: labels(n), - entity_id: n.eid, - name: n.name - }] + collect({ - id: ID(m), - labels: labels(m), - entity_id: m.eid, - name: m.name - })) AS nodes, - apoc.convert.toSet(collect({ - // We have to return the entire relationship as well, so we can get the - // start and end nodes. - relationship: l, - id: id(l), - label: type(l), - from_labels: labels(n), - to_labels: labels(m) - })) AS relationships - """, - node_id=node_id, - labels=labels, + LET snippet_count = COUNT( + FOR obj IN association_paths + FOR snippet, e IN INBOUND obj.association indicates + RETURN DISTINCT [ + obj.from_id, + obj.to_id, + obj.association, + snippet.eid + ] ) - ) - - def get_associated_type_snippet_count_query( - self, tx, source_node: int, associated_nodes: List[int] - ): - return list( - tx.run( - """ - UNWIND $associated_nodes as associated_node - MATCH (f)-[r:ASSOCIATED]-(t) - WHERE - ID(f)=$source_node AND - ID(t)=associated_node - WITH - ID(startNode(r)) as from_id, - ID(endNode(r)) as to_id, - t.name as name, - ID(t) as node_id - MATCH (f)-[:HAS_ASSOCIATION]->(a:Association)-[:HAS_ASSOCIATION]->(t) - WHERE ID(f)=from_id AND ID(t)=to_id - WITH from_id, to_id, a AS association, name, node_id - MATCH (association)<-[r:INDICATES]-(s:Snippet) - RETURN - name, - node_id, - count(DISTINCT { - from_id: from_id, - to_id: to_id, - description: association.description, - snippet_id: s.eid - }) AS snippet_count - ORDER BY snippet_count DESC, node_id - """, - source_node=source_node, - associated_nodes=associated_nodes, - ).data() - ) - - def get_snippets_from_edges_query( - self, - tx: Neo4jTx, - from_ids: List[int], - to_ids: List[int], - description: str, - skip: int, - limit: int, - ) -> List[Neo4jRecord]: - return list( - tx.run( - """ - MATCH (f)-[:HAS_ASSOCIATION]->(a:Association)-[:HAS_ASSOCIATION]->(t) - WHERE - ID(f) IN $from_ids AND - ID(t) IN $to_ids AND - a.description=$description - WITH - a AS association, - ID(f) AS from_id, - ID(t) AS to_id, - a.description AS description - MATCH (association)<-[r:INDICATES]-(s:Snippet)-[:IN_PUB]-(p:Publication) - WITH - s, - p, - head(collect(r)) as sample_path, - coalesce(association.entry1_type, 'Unknown') as entry1_type, - coalesce(association.entry2_type, 'Unknown') as entry2_type, - from_id, - to_id, - description - WITH - collect({snippet: s, publication: p, path: sample_path}) as references, - count({snippet: s, publication: p, path: sample_path}) as snippet_count, - entry1_type, - entry2_type, - from_id, - to_id, - description - UNWIND references as reference - WITH - entry1_type, - entry2_type, - { - snippet: { - id: reference.snippet.eid, - data: { - entry1_text: reference.path.entry1_text, - entry2_text: reference.path.entry2_text, - entry1_type: entry1_type, - entry2_type: entry2_type, - sentence: reference.snippet.sentence + SORT snippet_count DESC, associated_node ASC + RETURN { + "node_id": associated_node, + "name": DOCUMENT(associated_node).name, + "snippet_count": snippet_count + } + """ + + +def get_snippets_from_node_pair_query() -> str: + return """ + LET paginated_results = ( + FOR assoc_edge IN associated + FILTER + (assoc_edge._from == @node_1_id AND assoc_edge._to == @node_2_id) OR + (assoc_edge._from == @node_2_id AND assoc_edge._to == @node_1_id) + LET from_id = assoc_edge._from + LET to_id = assoc_edge._to + LET association = DOCUMENT(assoc_edge.association_id) + LET references = ( + FOR snippet, indicates_rel IN INBOUND association indicates + // If there are multiple "indicates" between the association + // and snippet, just get one of them to avoid extra rows + OPTIONS {order: "bfs", uniqueVertices: "global"} + FOR publication IN OUTBOUND snippet in_pub + SORT publication.pub_year DESC + RETURN DISTINCT { + "snippet": snippet, + "publication": publication, + "indicates_rel": indicates_rel, } - }, - publication: { - id: reference.publication.pmid, - data: { - journal: reference.publication.journal, - title: reference.publication.title, - pmid: reference.publication.pmid, - pub_year: reference.publication.pub_year + ) + LET snippet_count = LENGTH(references) + SORT snippet_count DESC, [from_id, to_id] ASC + FOR reference IN references + LIMIT @skip, @limit + RETURN DISTINCT { + "snippet_count": snippet_count, + "from_id": from_id, + "to_id": to_id, + "description": association.description, + "reference": { + "snippet": { + "id": reference.snippet.eid, + "data": { + "entry1_text": reference.indicates_rel.entry1_text, + "entry2_text": reference.indicates_rel.entry2_text, + "entry1_type": association.entry1_type, + "entry2_type": association.entry2_type, + "sentence": reference.snippet.sentence + } + }, + "publication": { + "id": reference.publication.pmid, + "data": { + "journal": reference.publication.journal, + "title": reference.publication.title, + "pmid": reference.publication.pmid, + "pub_year": reference.publication.pub_year + } } } - } AS reference, - snippet_count, - from_id, - to_id, - description - ORDER BY - snippet_count DESC, - [from_id, to_id], - coalesce(reference.publication.data.pub_year, -1) DESC - SKIP $skip LIMIT $limit - RETURN collect(DISTINCT reference) AS references, from_id, to_id, description - """, - from_ids=from_ids, - to_ids=to_ids, - description=description, - skip=skip, - limit=limit, - ) + } ) - - def get_snippets_from_node_pair_query( - self, tx: Neo4jTx, node_1_id: int, node_2_id: int, skip: int, limit: int - ) -> List[Neo4jRecord]: - return list( - tx.run( - """ - MATCH (f)-[r:ASSOCIATED]-(t) - WHERE - ID(f)=$node_1_id AND - ID(t)=$node_2_id - WITH ID(startNode(r)) as from_id, ID(endNode(r)) as to_id - MATCH (f)-[:HAS_ASSOCIATION]->(a:Association)-[:HAS_ASSOCIATION]->(t) - WHERE - ID(f)=from_id AND - ID(t)=to_id - WITH - a AS association, - from_id, - to_id, - a.description AS description - MATCH (association)<-[r:INDICATES]-(s:Snippet)-[:IN_PUB]-(p:Publication) - WITH - s, - p, - head(collect(r)) as sample_path, - coalesce(association.entry1_type, 'Unknown') as entry1_type, - coalesce(association.entry2_type, 'Unknown') as entry2_type, - from_id, - to_id, - description - WITH - collect({snippet: s, publication: p, path: sample_path}) as references, - count({snippet: s, publication: p, path: sample_path}) as snippet_count, - entry1_type, - entry2_type, - from_id, - to_id, - description - UNWIND references as reference - WITH - entry1_type, - entry2_type, - { - snippet: { - id: reference.snippet.eid, - data: { - entry1_text: reference.path.entry1_text, - entry2_text: reference.path.entry2_text, - entry1_type: entry1_type, - entry2_type: entry2_type, - sentence: reference.snippet.sentence - } - }, - publication: { - id: reference.publication.pmid, - data: { - journal: reference.publication.journal, - title: reference.publication.title, - pmid: reference.publication.pmid, - pub_year: reference.publication.pub_year - } - } - } AS reference, - snippet_count, - from_id, - to_id, - description - ORDER BY - snippet_count DESC, - [from_id, to_id], - coalesce(reference.publication.data.pub_year, -1) DESC - SKIP $skip LIMIT $limit - RETURN collect(DISTINCT reference) AS references, from_id, to_id, description - """, - node_1_id=node_1_id, - node_2_id=node_2_id, - skip=skip, - limit=limit, - ) + FOR result IN paginated_results + COLLECT + snippet_count = result.snippet_count, + from_id = result.from_id, + to_id = result.to_id, + description = result.description + INTO groups + SORT snippet_count DESC, [from_id, to_id] ASC + RETURN { + "snippet_count": snippet_count, + "from_id": from_id, + "to_id": to_id, + "description": description, + "references": ( + FOR obj IN groups + RETURN obj.result.reference + ) + } + """ + + +def get_snippet_count_from_node_pair_query() -> str: + return """ + LET association_paths = ( + FOR assoc_edge IN associated + FILTER + (assoc_edge._from == @node_1_id AND assoc_edge._to == @node_2_id) OR + (assoc_edge._from == @node_2_id AND assoc_edge._to == @node_1_id) + RETURN DISTINCT { + "association": DOCUMENT(assoc_edge.association_id), + "from_id": assoc_edge._from, + "to_id": assoc_edge._to + } ) - - def get_snippet_count_from_node_pair_query( - self, tx: Neo4jTx, node_1_id: int, node_2_id: int - ) -> Neo4jRecord: - return tx.run( - """ - MATCH (f)-[r:ASSOCIATED]-(t) - WHERE - ID(f)=$node_1_id AND - ID(t)=$node_2_id - WITH ID(startNode(r)) as from_id, ID(endNode(r)) as to_id - MATCH (f)-[:HAS_ASSOCIATION]-(a:Association)-[:HAS_ASSOCIATION]-(t) - WHERE ID(f)=from_id AND ID(t)=to_id - WITH from_id, to_id, a AS association - MATCH (association)<-[r:INDICATES]-(s:Snippet)-[:IN_PUB]-(p:Publication) - RETURN - count(DISTINCT { - from_id: from_id, - to_id: to_id, - description: association.description, - snippet_id: s.eid - }) AS snippet_count - """, - node_1_id=node_1_id, - node_2_id=node_2_id, - ).single() - - def get_snippet_count_from_edges_query( - self, tx: Neo4jTx, from_ids: List[int], to_ids: List[int], description: str - ) -> List[Neo4jRecord]: - return list( - tx.run( - """ - MATCH (f)-[:HAS_ASSOCIATION]->(a:Association)-[:HAS_ASSOCIATION]->(t) - WHERE - ID(f) IN $from_ids AND - ID(t) IN $to_ids AND - a.description=$description - WITH - a AS association, - ID(f) AS from_id, - ID(t) AS to_id, - labels(f) AS from_labels, - labels(t) AS to_labels - OPTIONAL MATCH (association)<-[r:INDICATES]-(s:Snippet)-[:IN_PUB]-(p:Publication) - WITH - count(DISTINCT { - description: association.description, - snippet_id: s.eid - }) AS snippet_count, - max(p.pub_year) AS max_pub_year, - from_id, - to_id, - from_labels, - to_labels - ORDER BY snippet_count DESC, [from_id, to_id], coalesce(max_pub_year, -1) DESC - RETURN from_id, to_id, from_labels, to_labels, snippet_count AS count - """, - from_ids=from_ids, - to_ids=to_ids, - description=description, - ) + LET snippet_count = COUNT( + FOR obj IN association_paths + FOR snippet, e IN INBOUND obj.association indicates + RETURN DISTINCT [ + obj.from_id, + obj.to_id, + obj.association.description, + snippet.eid + ] + ) + RETURN snippet_count + """ + + +def get_snippets_from_edges_query() -> str: + return """ + LET paginated_results = ( + FOR source_node IN @from_ids + FOR dest_node IN @to_ids + FOR assoc_edge IN associated + FILTER assoc_edge._to == dest_node + FILTER assoc_edge._from == source_node + FILTER assoc_edge.description == @description + LET from_id = assoc_edge._from + LET to_id = assoc_edge._to + LET association = DOCUMENT(assoc_edge.association_id) + LET references = ( + FOR snippet, indicates_rel IN INBOUND association indicates + // If there are multiple "indicates" between the association + // and snippet, just get one of them to avoid extra rows + OPTIONS {order: "bfs", uniqueVertices: "global"} + FOR publication IN OUTBOUND snippet in_pub + SORT publication.pub_year DESC + RETURN DISTINCT { + "snippet": snippet, + "publication": publication, + "indicates_rel": indicates_rel, + } + ) + LET snippet_count = LENGTH(references) + SORT snippet_count DESC, [from_id, to_id] ASC + FOR reference IN references + LIMIT @skip, @limit + RETURN DISTINCT { + "snippet_count": snippet_count, + "from_id": from_id, + "to_id": to_id, + "description": association.description, + "reference": { + "snippet": { + "id": reference.snippet.eid, + "data": { + "entry1_text": reference.indicates_rel.entry1_text, + "entry2_text": reference.indicates_rel.entry2_text, + "entry1_type": association.entry1_type, + "entry2_type": association.entry2_type, + "sentence": reference.snippet.sentence + } + }, + "publication": { + "id": reference.publication.pmid, + "data": { + "journal": reference.publication.journal, + "title": reference.publication.title, + "pmid": reference.publication.pmid, + "pub_year": reference.publication.pub_year + } + } + } + } ) + FOR result IN paginated_results + COLLECT + snippet_count = result.snippet_count, + from_id = result.from_id, + to_id = result.to_id, + description = result.description + INTO groups + SORT snippet_count DESC, [from_id, to_id] ASC + RETURN { + "snippet_count": snippet_count, + "from_id": from_id, + "to_id": to_id, + "description": description, + "references": ( + FOR obj IN groups + RETURN obj.result.reference + ) + } + """ + + +def get_snippet_count_from_edges_query() -> str: + return """ + FOR source_node IN @from_ids + FOR dest_node IN @to_ids + LET associations = ( + FOR doc IN associated + FILTER doc._from == source_node + FILTER doc._to == dest_node + FILTER doc.description == @description + RETURN DOCUMENT(doc.association_id) + ) + FILTER LENGTH(associations) > 0 + LET snippets_result = ( + FOR association IN associations + FOR snippet, e IN INBOUND association indicates + RETURN DISTINCT [association.description, snippet._id] + ) + LET snippet_count = LENGTH(snippets_result) + SORT snippet_count DESC, [source_node, dest_node] ASC + RETURN { + "from_id": source_node, + "to_id": dest_node, + "count": snippet_count, + "from_labels": DOCUMENT(source_node).labels, + "to_labels": DOCUMENT(dest_node).labels + } + """ diff --git a/appserver/neo4japp/util.py b/appserver/neo4japp/util.py deleted file mode 100644 index 3444a7a2f8..0000000000 --- a/appserver/neo4japp/util.py +++ /dev/null @@ -1,368 +0,0 @@ -import json - -import attr -import hashlib -import itertools -import flask - -from decimal import Decimal, InvalidOperation -from enum import EnumMeta, Enum -from json import JSONDecodeError -from string import punctuation, whitespace -from typing import Any, Optional, Type, Iterator, Dict - -# Do not import from app - - -def normalize_str(s) -> str: - normalized = s.lower() - normalized = normalized.translate(str.maketrans('', '', punctuation)) - return normalized.translate(str.maketrans('', '', whitespace)) - - -def standardize_str(s) -> str: - standardized = s.translate(str.maketrans('', '', punctuation)) - return " ".join(standardized.split()) - - -def encode_to_str(obj): - """Converts different types into a string representation.""" - if isinstance(obj, str): - return obj - elif isinstance(obj, Enum): - return obj.name - elif isinstance(obj, int) or isinstance(obj, Decimal): - return str(obj) - else: - raise TypeError(f'No conversion definition for {obj}') - - -def _snake_to_camel_update(k, v): - return {snake_to_camel(encode_to_str(k)): v} - - -def snake_to_camel_dict(d, new_dict: dict) -> dict: - """Converts a snake_case dict to camelCase while taking into - consideration a nested list or dict as a value. - """ - if type(d) is not dict: - return d - for k, v in d.items(): - if callable(getattr(v, 'to_dict', None)): - new_dict.update(_snake_to_camel_update(k, v.to_dict())) - elif type(v) is list: - new_dict.update( - _snake_to_camel_update(k, [snake_to_camel_dict(i, {}) for i in v]) - ) - elif type(v) is dict: - new_dict.update(_snake_to_camel_update(k, snake_to_camel_dict(v, {}))) - else: - new_dict.update(_snake_to_camel_update(k, v)) - return new_dict - - -def snake_to_camel(v): - if v is None: - return None - if callable(getattr(v, 'to_dict', None)): - return v.to_dict() - elif type(v) is list: - return [snake_to_camel(item) for item in v] - elif type(v) is dict: - return {snake_to_camel(k): snake_to_camel(v) for k, v in v.items()} - elif type(v) is str: - parts = v.split('_') - return parts[0] + ''.join(x.capitalize() or '_' for x in parts[1:]) - else: - return v - - -def camel_to_snake(s): - """Converts camelCase to snake_case. - - The SO (stackoverflow) answer has a simple function: - - import re - def convert(name): - s1 = re.sub('(.)([A-Z][a-z]+)', r'\1_\2', name) - return re.sub('([a-z0-9])([A-Z])', r'\1_\2', s1).lower() - - But its performance can be improved by about 33% with this - function, a simple hand translation of the regex matching - algorithm. Measured with timeit, speed improves from 122 ms to 78 - ms after 10K invocation - - """ - if not s: - return s - if len(s) == 1: - return s.lower() - - buf = [s[0].lower()] - prev_is_uppercase = s[0].isupper() - - # scan from the second char, with one lookahead - normal, lookahead = itertools.tee(s[1:]) - next(lookahead) - - for c, ahead in itertools.zip_longest(normal, lookahead): - # only add an underscore in front of an uppercase if it is not - # preceded by an uppercase and is followed by a lowercase - if c.isupper(): - if not prev_is_uppercase or (ahead and ahead.islower()): - buf.append('_') - prev_is_uppercase = True - else: - prev_is_uppercase = False - buf.append(c.lower()) - - return ''.join(buf) - - -def camel_to_snake_dict(d, new_dict: dict) -> dict: - """Converts a camelCase dict to snake case while taking into - consideration a nested list or dict as a value. - """ - if type(d) is not dict: - return d - for k, v in d.items(): - if type(v) is list: - new_dict.update( - {camel_to_snake(k): [camel_to_snake_dict(i, {}) for i in v]} - ) - elif type(v) is dict: - new_dict.update({camel_to_snake(k): camel_to_snake_dict(v, {})}) - elif type(v) is str: - # check if a number then convert to Decimal - # otherwise check if a string representation of dictionary - try: - v = Decimal(v) - # convert back because this is just to avoid - # flask.json.loads() from converting to a float - v = str(v) - new_dict.update({camel_to_snake(k): v}) - continue - except InvalidOperation: - pass - try: - v = flask.json.loads(v) - if type(v) is not list: - new_dict.update({camel_to_snake(k): camel_to_snake_dict(v, {})}) - else: - obj_list = [camel_to_snake_dict(obj, {}) for obj in v] - new_dict.update({camel_to_snake(k): obj_list}) - - except JSONDecodeError: - # not a string representation of JSON or number type - new_dict.update({camel_to_snake(k): v}) - else: - # for booleans, etc - new_dict.update({camel_to_snake(k): v}) - return new_dict - - -class DictMixin: - def build_from_dict_formatter(self, d: dict): - """Returns a formatted version of the input dictionary. Default - function definition simply returns the input without formatting. - - Intended to be used by any attr.s classes that have attribute - names we want to format when we get them from the client, e.g. - 'from' to 'from_'. Used in build_from_dict. - """ - return d - - @classmethod - def build_from_dict(cls, json_dict): - """Returns an instance of the class based on a - snake_case dictionary. Takes into consideration - values of key in dictionary that are also instances of - attrs classes. Handle deep nesting by recursing - back into cls.build_from_dict() using the subclass typing. - - Argument: - json_dict is a snake_case dictionary used to instantiate - """ - cls_attrs = attr.fields(cls) - attributes = {} - - json_dict = cls.build_from_dict_formatter(cls, json_dict) - - for a in cls_attrs: - if a.name in json_dict: - # this is to check if a mypy typing - if hasattr(a.type, '__args__') and a.type.__args__: - # check for Unions[, None], etc - # and get the first type - attr_type = a.type.__args__[0] - else: - # for built in types or mypy typing - # that doesn't have __args__ - attr_type = a.type - - # if the value of key is also an attrs class - # create an instance of it - value = json_dict.get(a.name) - if value and issubclass(attr_type, CamelDictMixin): - # assumption is if attr_type is a subclass - # then value must be type dict - if isinstance(value, list): - cls_list = [] - for v in value: - cls_list.append(attr_type.build_from_dict(v)) - attributes[a.name] = cls_list - else: - attributes[a.name] = attr_type.build_from_dict(value) - elif value and isinstance(attr_type, EnumMeta): - try: - attributes[a.name] = attr_type[str.upper(value)] - except TypeError: - # probably already an enum - attributes[a.name] = value - else: - attributes[a.name] = value - try: - return cls(**attributes) - except TypeError as err: - error = err.args[0].replace('__init__()', 'Server request') - raise Exception(error) - - def to_dict_formatter(self, d: dict): - """Returns a formatted version of the input dictionary. Default - function definition simply returns the input without formatting. - - Intended to be used by any attr.s classes that have attribute - names we want to format before sending to the client, e.g. - 'from_' to 'from'. Used in to_dict. - """ - return d - - def to_dict(self): - """Convert an attr.s class into a dict with camel case key values for - JSON serialization. - - Converts Decimal to str and Enum to the Enum name. - - Recurse is set to true in `attr.asdict` to recurse into classes - that are also attrs classes. - """ - - return self.to_dict_formatter(attr.asdict(self)) - - -class CamelDictMixin(DictMixin): - def to_dict(self): - """Convert an attr.s class into a dict with camel case key values for - JSON serialization. - - Converts Decimal to str and Enum to the Enum name. - - Recurse is set to true in `attr.asdict` to recurse into classes - that are also attrs classes. - """ - - return snake_to_camel_dict(self.to_dict_formatter(attr.asdict(self)), {}) - - -class CasePreservedDict(DictMixin): - items: Dict = {} - - def __init__(self, items=None): - self.items = items or {} - - def __setitem__(self, k, v) -> None: - self.items.__setitem__(k, v) - - def __delitem__(self, v) -> None: - self.items.__delitem__(v) - - def __getitem__(self, k): - return self.items.__getitem__(k) - - def __len__(self) -> int: - return self.items.__len__() - - def __iter__(self) -> Iterator: - return self.items.__iter__() - - def to_dict(self): - """Convert an attr.s class into a dict with camel case key values for - JSON serialization. - - Converts Decimal to str and Enum to the Enum name. - - Recurse is set to true in `attr.asdict` to recurse into classes - that are also attrs classes. - """ - - return self.items - - -@attr.s(frozen=True) -class FileTransfer: - model_file: Any = attr.ib() # actually Response type - status_code: int = attr.ib(validator=attr.validators.instance_of(int)) - - -def compute_hash(data: dict, **kwargs) -> str: - """Returns the hash value of args""" - h = hashlib.new(kwargs.get('alg') or 'sha256') - to_json = flask.json.dumps(data, sort_keys=True) - h.update(bytearray(to_json, 'utf-8')) - hexdigest = h.hexdigest() - - if 'limit' in kwargs: - return hexdigest[: kwargs['limit']] - return hexdigest - - -class AttrDict(dict): - """Wrap a python dictionary into an object""" - - def __init__(self, *args, **kwargs): - super(AttrDict, self).__init__(*args, **kwargs) - self.__dict__ = self - - def to_dict(self, exclude=[], snake_to_camel_transform=False): - new_dict = {} - - if len(exclude): - new_dict = { - key: self.__dict__[key] for key in self.__dict__ if key not in exclude - } - else: - new_dict = self.__dict__ - - if snake_to_camel_transform: - return snake_to_camel_dict(new_dict, {}) - else: - return new_dict - - -def filter_dict_by_value(condition, d: dict): - return {k: v for k, v in d.items() if condition(v)} - - -def compact(d): - if isinstance(d, dict): - return filter_dict_by_value(lambda v: v, d) - raise NotImplementedError - - -def equal_number_of_words(term_a: str, term_b: str) -> bool: - return len(term_a.split(' ')) == len(term_b.split(' ')) - - -class Enumd(Enum): - @classmethod - def get(cls, key, default=None): - # Non-throwing value accessor modeled to behave like dict.get() - try: - return cls(key) - except ValueError: - return default - - -def stream_to_json_lines(stream): - for chunk in stream: - yield json.dumps(chunk) + '\n' diff --git a/appserver/neo4japp/utils/flask.py b/appserver/neo4japp/utils/flask.py index e37003437a..645ff7df9f 100644 --- a/appserver/neo4japp/utils/flask.py +++ b/appserver/neo4japp/utils/flask.py @@ -4,7 +4,7 @@ import attr from flask import g, jsonify, request -from neo4japp.utils import CamelDictMixin, camel_to_snake_dict +from neo4japp.utils.string import camel_to_snake_dict, CamelDictMixin def scope_flask_app_ctx(name): diff --git a/appserver/neo4japp/utils/jsonify.py b/appserver/neo4japp/utils/jsonify.py index 70a6843237..5e290aa599 100644 --- a/appserver/neo4japp/utils/jsonify.py +++ b/appserver/neo4japp/utils/jsonify.py @@ -4,7 +4,7 @@ from flask import jsonify, request from neo4japp.schemas.common import SuccessResponse -from neo4japp.utils import CamelDictMixin, camel_to_snake_dict +from neo4japp.utils.string import camel_to_snake_dict, CamelDictMixin def jsonify_with_class( diff --git a/appserver/neo4japp/utils/labels.py b/appserver/neo4japp/utils/labels.py index 6c9a49d52d..134b993fa8 100644 --- a/appserver/neo4japp/utils/labels.py +++ b/appserver/neo4japp/utils/labels.py @@ -1,15 +1,14 @@ from typing import List from flask import current_app -from neo4j.graph import Node as N4jDriverNode -from neo4japp.constants import LogEventType, DISPLAY_NAME_MAP, DOMAIN_LABELS +from neo4japp.constants import LogEventType, DATA_SOURCES, DISPLAY_NAME_MAP from neo4japp.exceptions import ServerWarning from neo4japp.utils import EventLog from neo4japp.utils.globals import warn -def get_first_known_label_from_node(node: N4jDriverNode): +def get_first_known_label_from_node(node): try: return get_first_known_label_from_list(node.labels) except ValueError as e: @@ -31,23 +30,5 @@ def get_first_known_label_from_list(labels: List[str]): raise ValueError('Detected node label of an unknown type!') -def get_known_domain_labels_from_node(node: N4jDriverNode): - return get_known_domain_labels_from_list(node.labels) - - -def get_known_domain_labels_from_list(labels: List[str]): - domain_labels = [] - - for label in labels: - if label in DOMAIN_LABELS: - domain_labels.append(label) - - return domain_labels - - -__all__ = [ - 'get_first_known_label_from_node', - 'get_first_known_label_from_list', - 'get_known_domain_labels_from_node', - 'get_known_domain_labels_from_list', -] +def get_known_domain_labels_from_data_source(data_source: str): + return [DATA_SOURCES[data_source]] if data_source in DATA_SOURCES else [] diff --git a/appserver/neo4japp/utils/string.py b/appserver/neo4japp/utils/string.py index ff082375e1..090238b1a3 100644 --- a/appserver/neo4japp/utils/string.py +++ b/appserver/neo4japp/utils/string.py @@ -171,10 +171,13 @@ def convert(name): return ''.join(buf) -def camel_to_snake_dict(d, new_dict: dict) -> dict: +def camel_to_snake_dict(d, new_dict: dict = None) -> dict: """Converts a camelCase dict to snake case while taking into consideration a nested list or dict as a value. """ + if new_dict is None: + new_dict = dict() + if type(d) is not dict: return d for k, v in d.items(): @@ -354,6 +357,11 @@ def equal_number_of_words(term_a: str, term_b: str) -> bool: return len(term_a.split(' ')) == len(term_b.split(' ')) +def stream_to_json_lines(stream): + for chunk in stream: + yield json.dumps(chunk) + '\n' + + __all__ = [ 'is_nice_word_boundary_char', 'is_nice_char', @@ -375,4 +383,5 @@ def equal_number_of_words(term_a: str, term_b: str) -> bool: 'CamelDictMixin', 'CasePreservedDict', 'equal_number_of_words', + 'stream_to_json_lines', ] diff --git a/appserver/tests/api/account_test.py b/appserver/tests/api/account_test.py index 4edf6a4a21..910a8b3975 100644 --- a/appserver/tests/api/account_test.py +++ b/appserver/tests/api/account_test.py @@ -1,8 +1,9 @@ import json -from http import HTTPStatus -from types import SimpleNamespace - import pytest +import re +import responses + +from types import SimpleNamespace from neo4japp.models import AppUser from tests.helpers.api import generate_jwt_headers @@ -56,10 +57,22 @@ def lmdb_open(*args, **kwargs): monkeypatch.setattr('lmdb.open', lmdb_open) -def test_admin_can_create_user(client, fix_admin_user): +@pytest.mark.skip('Skipping until pdfparser can be properly mocked') +def test_admin_can_create_user( + client, fix_admin_user, test_arango_db, mocked_responses, mocked_lmdb_open +): login_resp = client.login_as_user(fix_admin_user.email, 'password') headers = generate_jwt_headers(login_resp['accessToken']['token']) + # # Mocked responses from pdfparser + mocked_responses.add( + responses.POST, + re.compile('.+/token/rect/.+'), + status=201, + content_type='application/json', + json={'pages': []}, + ) + response = client.post( '/accounts/', headers=headers, @@ -77,7 +90,7 @@ def test_admin_can_create_user(client, fix_admin_user): content_type='application/json', ) - assert response.status_code == HTTPStatus.OK + assert response.status_code == 200 def test_nonadmin_cannot_create_user(client, test_user): @@ -100,7 +113,7 @@ def test_nonadmin_cannot_create_user(client, test_user): content_type='application/json', ) - assert response.status_code == HTTPStatus.FORBIDDEN + assert response.status_code == 403 def test_admin_can_get_all_users(client, mock_users, fix_admin_user): @@ -111,7 +124,7 @@ def test_admin_can_get_all_users(client, mock_users, fix_admin_user): '/accounts/', headers=headers, content_type='application/json' ) - assert response.status_code == HTTPStatus.OK + assert response.status_code == 200 result = response.get_json() # Add 2 to include the current user AND the assumed to be present lifelike superuser assert int(result['total']) == len(mock_users) + 2 @@ -125,7 +138,7 @@ def test_admin_can_get_any_user(client, mock_users, fix_admin_user): response = client.get( f'/accounts/{user.hash_id}', headers=headers, content_type='application/json' ) - assert response.status_code == HTTPStatus.OK + assert response.status_code == 200 result = response.get_json() assert int(result['total']) == 1 @@ -138,7 +151,7 @@ def test_nonadmin_can_only_get_self(client, mock_users, test_user): '/accounts/', headers=headers, content_type='application/json' ) - assert response.status_code == HTTPStatus.OK + assert response.status_code == 200 result = response.get_json() assert int(result['total']) == 1 assert result['results'][0]['email'] == test_user.email @@ -149,7 +162,7 @@ def test_nonadmin_can_only_get_self(client, mock_users, test_user): content_type='application/json', ) - assert response.status_code == HTTPStatus.OK + assert response.status_code == 200 result = response.get_json() assert int(result['total']) == 1 assert result['results'][0]['email'] == test_user.email @@ -160,7 +173,7 @@ def test_nonadmin_can_only_get_self(client, mock_users, test_user): content_type='application/json', ) - assert response.status_code == HTTPStatus.FORBIDDEN + assert response.status_code == 403 @pytest.mark.parametrize( @@ -184,7 +197,7 @@ def test_can_update_only_allowed_attributes( content_type='application/json', ) - assert response.status_code == HTTPStatus.NO_CONTENT + assert response.status_code == 204 response = client.get( f'/accounts/{test_user.hash_id}', @@ -210,7 +223,7 @@ def test_can_update_password(client, test_user): content_type='application/json', ) - assert response.status_code == HTTPStatus.NO_CONTENT + assert response.status_code == 204 login_resp = client.login_as_user(test_user.email, 'new_password') headers = generate_jwt_headers(login_resp['accessToken']['token']) assert headers @@ -224,7 +237,7 @@ def test_can_filter_users(client, mock_users, auth_token_header, username): headers=auth_token_header, content_type='application/json', ) - assert response.status_code == HTTPStatus.OK + assert response.status_code == 200 response = response.get_json() users = response['result'] assert len(users) == 1 diff --git a/appserver/tests/api/annotations_test.py b/appserver/tests/api/annotations_test.py index 3ab14ca11b..8ea94123ff 100644 --- a/appserver/tests/api/annotations_test.py +++ b/appserver/tests/api/annotations_test.py @@ -1,8 +1,6 @@ -from http import HTTPStatus - -from arango.database import StandardDatabase import json -import pytest + +from http import HTTPStatus from neo4japp.models import Files, AppUser @@ -15,14 +13,10 @@ def test_user_can_get_gene_annotations_from_pdf( client, test_user_with_pdf: Files, fix_admin_user: AppUser, - test_arango_db: StandardDatabase, + test_arango_db, mock_get_combined_annotations_result, mock_get_organisms_from_gene_ids_result, ): - # Create the necessary collections in arango before calling the API. These are empty of course. - test_arango_db.create_collection('ncbi') - test_arango_db.create_collection('has_taxonomy', edge=True) - login_resp = client.login_as_user(fix_admin_user.email, 'password') headers = generate_headers(login_resp['accessToken']['token']) file_id = test_user_with_pdf.hash_id @@ -43,6 +37,7 @@ def test_user_can_get_all_annotations_from_pdf( client, test_user_with_pdf: Files, fix_admin_user: AppUser, + test_arango_db, mock_get_combined_annotations_result, ): login_resp = client.login_as_user(fix_admin_user.email, 'password') @@ -67,6 +62,7 @@ def test_user_can_get_global_inclusions( client, fix_project, fix_admin_user, + test_arango_db, mock_global_compound_inclusion, ): login_resp = client.login_as_user(fix_admin_user.email, 'password') @@ -86,6 +82,7 @@ def test_user_can_get_global_exclusions( client, fix_project, fix_admin_user, + test_arango_db, mock_global_gene_exclusion, ): login_resp = client.login_as_user(fix_admin_user.email, 'password') @@ -101,11 +98,11 @@ def test_user_can_get_global_exclusions( assert response.get_data() is not None -@pytest.mark.skip('Skipping for now to get code merged') def test_user_can_get_global_list( client, fix_project, fix_admin_user, + test_arango_db, mock_global_list, ): login_resp = client.login_as_user(fix_admin_user.email, 'password') @@ -114,23 +111,18 @@ def test_user_can_get_global_list( response = client.get( f'/annotations/global-list', headers=headers, - content_type='application/json', + content_type='multipart/form-data', + data={ + 'globalAnnotationType': 'exclusion', + }, ) assert response.status_code == HTTPStatus.OK data = json.loads(response.get_data().decode('utf-8')) - assert data['total'] == 2 - assert len(data['results']) == 2 - - if data['results'][0]['type'] == 'inclusion': - inclusion = data['results'][0] - exclusion = data['results'][1] - else: - inclusion = data['results'][1] - exclusion = data['results'][0] - - assert inclusion['text'] == 'compound-(12345)' - assert inclusion['entityType'] == 'Compound' + assert data['total'] == 1 + assert len(data['results']) == 1 + + exclusion = data['results'][0] assert exclusion['text'] == 'fake-gene' assert exclusion['entityType'] == 'Gene' diff --git a/appserver/tests/api/neo4j_test.py b/appserver/tests/api/arango_test.py similarity index 59% rename from appserver/tests/api/neo4j_test.py rename to appserver/tests/api/arango_test.py index 5104370370..c030aa6d73 100644 --- a/appserver/tests/api/neo4j_test.py +++ b/appserver/tests/api/arango_test.py @@ -1,70 +1,35 @@ -from http import HTTPStatus - -import pytest import json - -@pytest.mark.skip( - reason='Does not work unless we upgrade the Neo4j docker image to 4.0+ because of apoc function' -) -def test_expand(client, gas_gangrene): - response = client.post( - '/visualizer/expand', - data=json.dumps( - { - 'node_id': 1, - 'filter_labels': ['Chemical', 'Disease', 'Gene'], - } - ), - content_type='application/json', - ) - - assert response.status_code == HTTPStatus.OK +from http import HTTPStatus def generate_headers(jwt_token): return {'Authorization': f'Bearer {jwt_token}'} -def test_get_reference_table_data( - client, - test_user, - gas_gangrene_treatment_cluster_node_edge_pairs, -): +def test_get_reference_table_data(client, test_user, test_arango_db): login_resp = client.login_as_user(test_user.email, 'password') headers = generate_headers(login_resp['accessToken']['token']) response = client.post( - '/visualizer/get-reference-table-data', + '/visualizer/get-reference-table', data=json.dumps( { - 'node_edge_pairs': [ + 'nodeEdgePairs': [ { 'node': { 'id': f'duplicateNode:1', 'label': 'Chemical', - 'data': {}, - 'sub_labels': [], - 'display_name': 'penicillins', - 'primary_label': 'Chemical', - 'color': {}, - 'expanded': False, - 'duplicate_of': 1, + 'displayName': 'penicillins', }, 'edge': { - 'id': 'duplicateEdge:1', 'label': 'ASSOCIATED', - 'data': {}, - 'to': 'duplicateNode:1', - 'from_': 'duplicateNode:2', - 'to_label': 'Disease', - 'from_label': 'Chemical', - 'arrows': 'to', - 'duplicate_of': 1, - 'original_from': 2, - 'original_to': 1, + 'originalFrom': '2', + 'originalTo': '1', }, }, ], + 'description': 'treatment/therapy', + 'direction': 'Outgoing', } ), headers=headers, @@ -74,10 +39,7 @@ def test_get_reference_table_data( assert response.status_code == HTTPStatus.OK -def test_get_snippets_for_edge( - client, - test_user, -): +def test_get_snippets_for_edge(client, test_user, test_arango_db): login_resp = client.login_as_user(test_user.email, 'password') headers = generate_headers(login_resp['accessToken']['token']) response = client.post( @@ -102,10 +64,7 @@ def test_get_snippets_for_edge( assert response.status_code == HTTPStatus.OK -def test_get_snippets_for_cluster( - client, - test_user, -): +def test_get_snippets_for_cluster(client, test_user, test_arango_db): login_resp = client.login_as_user(test_user.email, 'password') headers = generate_headers(login_resp['accessToken']['token']) response = client.post( diff --git a/appserver/tests/api/entity_resources_test.py b/appserver/tests/api/entity_resources_test.py index 25b45cfead..777778979b 100644 --- a/appserver/tests/api/entity_resources_test.py +++ b/appserver/tests/api/entity_resources_test.py @@ -48,7 +48,7 @@ def test_user_can_get_uri(client, test_user, uri_fixture): } # noqa -def test_user_can_get_many_uris(client, test_user, uri_fixture): +def test_user_can_get_many_uris(client, test_user): login_resp = client.login_as_user(test_user.email, 'password') headers = generate_headers(login_resp['accessToken']['token']) headers['content_type'] = 'application/json' diff --git a/appserver/tests/api/filesystem/object_test.py b/appserver/tests/api/filesystem/object_test.py index d5e15a08bb..91493987eb 100644 --- a/appserver/tests/api/filesystem/object_test.py +++ b/appserver/tests/api/filesystem/object_test.py @@ -1,16 +1,17 @@ import hashlib -from http import HTTPStatus -from io import BytesIO import json import pytest +import zipfile + +from http import HTTPStatus +from io import BytesIO from sqlalchemy.orm import make_transient from typing import Any, Dict from urllib.parse import quote -import zipfile from neo4japp.models import AppUser, Files, Projects from neo4japp.models.files import FileContent, StarredFile -from neo4japp.utils import snake_to_camel +from neo4japp.utils.string import snake_to_camel from tests.api.filesystem.conftest import ( ParameterizedFile as TestFile, diff --git a/appserver/tests/conftest.py b/appserver/tests/conftest.py index 0ddea1db10..f18effc6ed 100644 --- a/appserver/tests/conftest.py +++ b/appserver/tests/conftest.py @@ -1,41 +1,21 @@ -import pytest -import os - from arango import ArangoClient from arango.database import StandardDatabase +from arango.graph import Graph from flask import request as flask_request, g from flask.app import Flask -from neo4j import GraphDatabase, Session, Transaction, basic_auth -import responses -from neo4j.graph import Node, Relationship from pathlib import Path -from typing import Optional +import pytest +import os +import responses -import neo4japp.utils.transaction_id from neo4japp.blueprints.auth import auth -from neo4japp.constants import DISPLAY_NAME_MAP -from neo4japp.database import db, reset_dao, create_arango_client -from neo4japp.data_transfer_objects.visualization import ( - DuplicateEdgeConnectionData, - DuplicateVisEdge, - DuplicateVisNode, - EdgeConnectionData, - ReferenceTablePair, - VisEdge, - VisNode, -) +from neo4japp.database import create_arango_client, db, reset_dao from neo4japp.factory import create_app -from neo4japp.models.neo4j import GraphNode, GraphRelationship -from neo4japp.services import ( - AccountService, - AuthService, - KgService, - VisualizerService, -) +from neo4japp.services import AccountService, AuthService from neo4japp.services.arangodb import create_db, get_db from neo4japp.services.elastic import ElasticService -from neo4japp.utils import snake_to_camel_dict -from neo4japp.utils.labels import get_first_known_label_from_node + +from .constants import DOCUMENT_COLLECTIONS, EDGE_COLLECTIONS, GRAPHS def setup_before_request_callbacks(app: Flask): @@ -107,41 +87,7 @@ def teardown(): return session -@pytest.fixture(scope='function') -def graph(request, app) -> Session: - """Returns a graph connection to the Neo4J database. - IMPORTANT: Tests may not behave as expected if the - Neo4J database is not cleared before running tests! - """ - host = os.getenv('NEO4J_HOST', '0.0.0.0') - scheme = os.getenv('NEO4J_SCHEME', 'bolt') - port = os.getenv('NEO4J_PORT', '7687') - url = f'{scheme}://{host}:{port}' - username, password = os.getenv('NEO4J_AUTH', 'neo4j/password').split('/') - driver = GraphDatabase.driver(url, auth=basic_auth(username, password)) - - graph = driver.session() - - # Ensure a clean graph state before every test - graph.write_transaction(lambda tx: tx.run('MATCH(n) DETACH DELETE n')) - - def teardown(): - graph.close() - - request.addfinalizer(teardown) - return graph - - -@pytest.fixture(scope='function') -def graph_driver(request, app): - host = os.getenv('NEO4J_HOST', '0.0.0.0') - scheme = os.getenv('NEO4J_SCHEME', 'bolt') - port = os.getenv('NEO4J_PORT', '7687') - url = f'{scheme}://{host}:{port}' - username, password = os.getenv('NEO4J_AUTH', 'neo4j/password').split('/') - return GraphDatabase.driver(url, auth=basic_auth(username, password)) - - +# Arango fixtures @pytest.fixture(scope="function") def arango_client(app): arango_client = create_arango_client(hosts=app.config.get('ARANGO_HOST')) @@ -161,17 +107,45 @@ def system_db(app, arango_client: ArangoClient): ) +def _create_empty_document_collections(arango_db: StandardDatabase): + for collection in DOCUMENT_COLLECTIONS: + arango_db.create_collection(collection) + + +def _create_empty_edge_collections(arango_db: StandardDatabase): + for collection in EDGE_COLLECTIONS: + arango_db.create_collection(collection, edge=True) + + +def _create_empty_graphs(arango_db: StandardDatabase): + edge_definitions = [ + { + 'edge_collection': edge_collection, + 'from_vertex_collections': DOCUMENT_COLLECTIONS, + 'to_vertex_collections': DOCUMENT_COLLECTIONS, + } + for edge_collection in EDGE_COLLECTIONS + ] + for graph in GRAPHS: + arango_db.create_graph(graph, edge_definitions) + + @pytest.fixture(scope="function") def test_arango_db(app, arango_client: ArangoClient, system_db: StandardDatabase): - create_db(system_db, app.config.get('ARANGO_DB_NAME')) - test_db_name = app.config.get('ARANGO_DB_NAME') + create_db(system_db, test_db_name) + test_db = get_db( arango_client=arango_client, name=test_db_name, username=app.config.get('ARANGO_USERNAME'), password=app.config.get('ARANGO_PASSWORD'), ) + + _create_empty_document_collections(test_db) + _create_empty_edge_collections(test_db) + _create_empty_graphs(test_db) + yield test_db # Drop the test database after every test to make it clean before the next one @@ -179,1200 +153,54 @@ def test_arango_db(app, arango_client: ArangoClient, system_db: StandardDatabase @pytest.fixture(scope='function') -def account_service(app, session): - return AccountService(session) - - -@pytest.fixture(scope='function') -def auth_service(app, session): - return AuthService(session) - - -@pytest.fixture(scope='function') -def account_user(app, session): - return AccountService(session) - - -@pytest.fixture(scope='function') -def kg_service(graph, session): - return KgService(graph=graph, session=session) - - -@pytest.fixture(scope='function') -def visualizer_service(app, graph, session): - return VisualizerService(graph=graph, session=session) - - -@pytest.fixture(scope='function') -def elastic_service(app, session): - elastic_service = ElasticService() - - # Ensures that anytime the elastic service is requested for a test, that the environment is - # clean - elastic_service.recreate_indices_and_pipelines() - - return elastic_service - - -# Begin Graph Data Fixtures # - -# Begin Graph Data Helpers # - - -def create_chemical_node(tx: Transaction, chem_name: str, chem_id: str) -> Node: - """Creates a chemical node and adds it to the graph.""" - query = """ - CREATE (c:Chemical {name: $chem_name, eid: $chem_id}) RETURN c - """ - return tx.run(query, chem_name=chem_name, chem_id=chem_id).single()['c'] - - -def create_disease_node(tx: Transaction, disease_name: str, disease_id: str) -> Node: - """Creates a disease node and adds it to the graph.""" - query = """ - CREATE (d:Disease {name: $disease_name, eid: $disease_id}) RETURN d - """ - return tx.run(query, disease_name=disease_name, disease_id=disease_id).single()['d'] - - -def create_gene_node( - tx: Transaction, - gene_name: str, - gene_id: str, -) -> Node: - """Creates a gene node and adds it to the graph.""" - query = """ - CREATE (g:Gene {name: $gene_name, eid: $gene_id}) RETURN g - """ - return tx.run(query, gene_name=gene_name, gene_id=gene_id).single()['g'] - - -def create_taxonomy_node( - tx: Transaction, - name: str, - rank: str, - tax_id: str, -) -> Node: - """Creates a taxonomy node and adds it to the graph.""" - query = """ - CREATE (t:Taxonomy {tax_id: $tax_id, name: $name, rank: $rank}) RETURN t - """ - return tx.run(query, name=name, rank=rank, tax_id=tax_id).single()['t'] - - -def create_association_node( - tx: Transaction, assoc_type: str, description: str, assoc_id: int -) -> Node: - """Creates an association node and adds it to the graph.""" - query = """ - CREATE (a:Association {assoc_type: $assoc_type, description: $description, eid: $assoc_id}) - RETURN a - """ - return tx.run( - query, assoc_type=assoc_type, description=description, assoc_id=assoc_id - ).single()['a'] - - -def create_snippet_node(tx: Transaction, snippet_id: int, sentence: str) -> Node: - """Creates a snippet node and adds it to the graph.""" - query = """ - CREATE (s:Snippet { - eid: $snippet_id, - sentence: $sentence - }) RETURN s - """ - return tx.run(query, snippet_id=snippet_id, sentence=sentence).single()['s'] - - -def create_publication_node( - tx: Transaction, - pub_id: int, - pub_year: Optional[int] = None, -) -> Node: - """Creates a publication node and adds it to the graph.""" - query = """ - CREATE (p:Publication {pmid: $pub_id, pub_year: $pub_year}) RETURN p - """ - return tx.run(query, pub_id=pub_id, pub_year=pub_year).single()['p'] - - -def create_associated_relationship( - tx: Transaction, - source_id: int, - target_id: int, - assoc_type: str, - description: str, -) -> Relationship: - """ - Creates an association relationship between two nodes (these should already be in the - graph!) and adds it to the graph. - """ - query = """ - MATCH (source) WHERE ID(source)=$source_id - MATCH (target) WHERE ID(target)=$target_id - CREATE - (source)-[r:ASSOCIATED {assoc_type: $assoc_type, description: $description}]->(target) - RETURN r, source, target - """ - result = tx.run( - query, - source_id=source_id, - target_id=target_id, - assoc_type=assoc_type, - description=description, - ) - single = result.single() - return single['r'] - - -def create_has_association_relationship( - tx: Transaction, source_id: int, target_id: int -) -> Relationship: - """ - Creates a has_association relationship between two nodes (these should already be in the - graph!) and adds it to the graph. - """ - query = """ - MATCH (source) WHERE ID(source)=$source_id - MATCH (target) WHERE ID(target)=$target_id - CREATE (source)-[r:HAS_ASSOCIATION]->(target) - RETURN r, source, target - """ - return tx.run(query, source_id=source_id, target_id=target_id).single()['r'] - - -def create_predicts_relationship( - tx: Transaction, - source_id: int, - target_id: int, - entry1_text: str, - entry2_text: str, - raw_score: Optional[float] = None, - normalized_score: Optional[float] = None, -) -> Relationship: - """ - Creates a predicts relationship between two nodes (these should already be in the - graph!) and adds it to the graph. - """ - query = """ - MATCH (source) WHERE ID(source)=$source_id - MATCH (target) WHERE ID(target)=$target_id - CREATE (source)-[r:INDICATES { - entry1_text: $entry1_text, - entry2_text: $entry2_text, - raw_score: $raw_score, - normalized_score: $normalized_score - }]->(target) - RETURN r, source, target - """ - return tx.run( - query, - entry1_text=entry1_text, - entry2_text=entry2_text, - source_id=source_id, - target_id=target_id, - raw_score=raw_score, - normalized_score=normalized_score, - ).single()['r'] - - -def create_in_pub_relationship( - tx: Transaction, source_id: int, target_id: int -) -> Relationship: - """ - Creates an in_pub relationship between two nodes (these should already be in the - graph!) and adds it to the graph. - """ - query = """ - MATCH (source) WHERE ID(source)=$source_id - MATCH (target) WHERE ID(target)=$target_id - CREATE (source)-[r:IN_PUB]->(target) - RETURN r, source, target - """ - return tx.run(query, source_id=source_id, target_id=target_id).single()['r'] - - -def create_has_taxonomy_relationship( - tx: Transaction, source_id: int, target_id: int -) -> Relationship: - """ - Creates a has_taxonomy relationship between two nodes (these should already be in the - graph!) and adds it to the graph. - """ - query = """ - MATCH (source) WHERE ID(source)=$source_id - MATCH (target) WHERE ID(target)=$target_id - CREATE (source)-[r:HAS_TAXONOMY]->(target) - RETURN r, source, target - """ - return tx.run(query, source_id=source_id, target_id=target_id).single()['r'] - - -# End Graph Data Helpers # - - -# Begin Entity Node Fixtures # -@pytest.fixture(scope='function') -def gas_gangrene(graph: Session) -> Node: - with graph.begin_transaction() as tx: - gas_gangrene = create_disease_node(tx, 'gas gangrene', 'MESH:D005738') - return gas_gangrene - - -@pytest.fixture(scope='function') -def penicillins(graph: Session) -> Node: - with graph.begin_transaction() as tx: - penicillins = create_chemical_node(tx, 'Penicillins', 'MESH:D010406') - return penicillins +def test_arango_all_graph(test_arango_db: StandardDatabase): + return test_arango_db.graph('all') @pytest.fixture(scope='function') -def oxygen(graph: Session) -> Node: - with graph.begin_transaction() as tx: - oxygen = create_chemical_node(tx, 'Oxygen', 'MESH:D010100') - return oxygen +def associated_edge_collection(test_arango_all_graph: Graph): + return test_arango_all_graph.edge_collection('associated') @pytest.fixture(scope='function') -def pomc(graph: Session) -> Node: - with graph.begin_transaction() as tx: - pomc = create_gene_node(tx, 'POMC', '5443') - return pomc +def has_association_edge_collection(test_arango_all_graph: Graph): + return test_arango_all_graph.edge_collection('has_association') -# End Entity Nodes Fixtures # - -# Begin Entity -> Entity Relationship Fixtures # - - -@pytest.fixture(scope='function') -def pomc_to_gas_gangrene_pathogenesis_edge( - graph: Session, - gas_gangrene: Node, - pomc: Node, -) -> Relationship: - with graph.begin_transaction() as tx: - pomc_to_gas_gangrene_pathogenesis_edge = create_associated_relationship( - tx=tx, - source_id=pomc.id, - target_id=gas_gangrene.id, - assoc_type='J', - description='role in disease pathogenesis', - ) - return pomc_to_gas_gangrene_pathogenesis_edge - - -@pytest.fixture(scope='function') -def penicillins_to_gas_gangrene_alleviates_edge( - graph: Session, - gas_gangrene: Node, - penicillins: Node, -) -> Relationship: - with graph.begin_transaction() as tx: - penicillins_to_gas_gangrene_alleviates_edge = create_associated_relationship( - tx=tx, - source_id=penicillins.id, - target_id=gas_gangrene.id, - assoc_type='Pa', - description='alleviates, reduces', - ) - return penicillins_to_gas_gangrene_alleviates_edge - - -@pytest.fixture(scope='function') -def oxygen_to_gas_gangrene_treatment_edge( - graph: Session, - gas_gangrene: Node, - oxygen: Node, -) -> Relationship: - with graph.begin_transaction() as tx: - oxygen_to_gas_gangrene_treatment_edge = create_associated_relationship( - tx=tx, - source_id=oxygen.id, - target_id=gas_gangrene.id, - assoc_type='Pa', - description='treatment/therapy (including investigatory)', - ) - return oxygen_to_gas_gangrene_treatment_edge - - -@pytest.fixture(scope='function') -def penicillins_to_gas_gangrene_treatment_edge( - graph: Session, - gas_gangrene: Node, - penicillins: Node, -) -> Relationship: - with graph.begin_transaction() as tx: - penicillins_to_gas_gangrene_treatment_edge = create_associated_relationship( - tx=tx, - source_id=penicillins.id, - target_id=gas_gangrene.id, - assoc_type='Pa', - description='treatment/therapy (including investigatory)', - ) - return penicillins_to_gas_gangrene_treatment_edge - - -# End Entity -> Entity Relationship Fixtures # - - -# Start Misc. Fixtures # @pytest.fixture(scope='function') -def gas_gangrene_with_associations_and_references( - graph: Session, - gas_gangrene: Node, - oxygen: Node, - penicillins: Node, - pomc: Node, - oxygen_to_gas_gangrene_treatment_edge: Relationship, - pomc_to_gas_gangrene_pathogenesis_edge: Relationship, - penicillins_to_gas_gangrene_alleviates_edge: Relationship, - penicillins_to_gas_gangrene_treatment_edge: Relationship, -): - with graph.begin_transaction() as tx: - # Association Nodes - oxygen_to_gas_gangrene_association_node = create_association_node( - tx=tx, - assoc_type='J', - description='treatment/therapy (including investigatory)', - assoc_id=1089126, - ) - pomc_to_gas_gangrene_association_node = create_association_node( - tx=tx, - assoc_type='J', - description='role in disease pathogenesis', - assoc_id=1387448, - ) - penicillins_to_gas_gangrene_association_node1 = create_association_node( - tx=tx, - assoc_type='Pa', - description='alleviates, reduces', - assoc_id=2771500, - ) - penicillins_to_gas_gangrene_association_node2 = create_association_node( - tx=tx, - assoc_type='J', - description='treatment/therapy (including investigatory)', - assoc_id=2771501, - ) - - # Snippet Nodes - oxygen_to_gas_gangrene_snippet_node1 = create_snippet_node( - tx=tx, - snippet_id=7430189, - sentence='In this study , we aimed to investigate the effect of HBO2...', - ) - oxygen_to_gas_gangrene_snippet_node2 = create_snippet_node( - tx=tx, - snippet_id=1890743, - sentence='Hyperbaric oxygen therapy has an adjunctive role...', - ) - penicillins_to_gas_gangrene_snippet_node1 = create_snippet_node( - tx=tx, - snippet_id=9810347, - sentence='In a mouse model of gas_gangrene caused by...', - ) - penicillins_to_gas_gangrene_snippet_node2 = create_snippet_node( - tx=tx, - snippet_id=9810346, - sentence='Toxin suppression and rapid bacterial killing may...', - ) - penicillins_to_gas_gangrene_snippet_node3 = create_snippet_node( - tx=tx, - snippet_id=9810348, - sentence='...penicillin was found to reduce the affect of...', - ) - penicillins_to_gas_gangrene_snippet_node4 = create_snippet_node( - tx=tx, - snippet_id=9810349, - sentence='...suppresses toxins and rapidly kills bacteria...', - ) - - # Publication Nodes - oxygen_to_gas_gangrene_publication_node = create_publication_node( - tx=tx, - pub_id=3, - pub_year=2019, - ) - penicillins_to_gas_gangrene_publication_node1 = create_publication_node( - tx=tx, pub_id=1, pub_year=2014 - ) - penicillins_to_gas_gangrene_publication_node2 = create_publication_node( - tx=tx, - pub_id=2, - ) - - # Entity -> Association Relationships - entity_to_association_rels = [ - [oxygen, oxygen_to_gas_gangrene_association_node], - [pomc, pomc_to_gas_gangrene_association_node], - [penicillins, penicillins_to_gas_gangrene_association_node1], - [penicillins, penicillins_to_gas_gangrene_association_node2], - ] - for rel in entity_to_association_rels: - create_has_association_relationship( - tx=tx, source_id=rel[0].id, target_id=rel[1].id - ) - - # Association -> Entity Relationships - association_to_entity_rels = [ - [oxygen_to_gas_gangrene_association_node, gas_gangrene], - [pomc_to_gas_gangrene_association_node, gas_gangrene], - [penicillins_to_gas_gangrene_association_node1, gas_gangrene], - [penicillins_to_gas_gangrene_association_node2, gas_gangrene], - ] - for rel in association_to_entity_rels: - create_has_association_relationship( - tx=tx, - source_id=rel[0].id, - target_id=rel[1].id, - ) - - # Snippet -> Association Relationships - snippet_to_association_rels = [ - [ - oxygen_to_gas_gangrene_snippet_node1, - oxygen_to_gas_gangrene_association_node, - None, - None, - 'oxygen', - 'gas gangrene', - ], # noqa - [ - oxygen_to_gas_gangrene_snippet_node2, - oxygen_to_gas_gangrene_association_node, - None, - None, - 'oxygen', - 'gas gangrene', - ], # noqa - [ - penicillins_to_gas_gangrene_snippet_node1, - penicillins_to_gas_gangrene_association_node1, - 2, - 0.385, - 'penicillin', - 'gas gangrene', - ], - # noqa - [ - penicillins_to_gas_gangrene_snippet_node3, - penicillins_to_gas_gangrene_association_node1, - 5, - 0.693, - 'penicillin', - 'gas gangrene', - ], - # noqa - [ - penicillins_to_gas_gangrene_snippet_node2, - penicillins_to_gas_gangrene_association_node2, - 1, - 0.222, - 'penicillin', - 'gas gangrene', - ], - # noqa - [ - penicillins_to_gas_gangrene_snippet_node4, - penicillins_to_gas_gangrene_association_node2, - 3, - 0.456, - 'penicillin', - 'gas gangrene', - ], - # noqa - ] - for rel in snippet_to_association_rels: - create_predicts_relationship( - tx=tx, - source_id=rel[0].id, - target_id=rel[1].id, - raw_score=rel[2], - normalized_score=rel[3], - entry1_text=rel[4], - entry2_text=rel[5], - ) - - # Snippet -> Publication Relationships - snippet_to_pub_rels = [ - [ - oxygen_to_gas_gangrene_snippet_node1, - oxygen_to_gas_gangrene_publication_node, - ], - [ - oxygen_to_gas_gangrene_snippet_node2, - oxygen_to_gas_gangrene_publication_node, - ], - [ - penicillins_to_gas_gangrene_snippet_node1, - penicillins_to_gas_gangrene_publication_node1, - ], # noqa - [ - penicillins_to_gas_gangrene_snippet_node3, - penicillins_to_gas_gangrene_publication_node2, - ], # noqa - [ - penicillins_to_gas_gangrene_snippet_node2, - penicillins_to_gas_gangrene_publication_node2, - ], # noqa - [ - penicillins_to_gas_gangrene_snippet_node4, - penicillins_to_gas_gangrene_publication_node2, - ], # noqa - ] - for rel in snippet_to_pub_rels: - create_in_pub_relationship(tx=tx, source_id=rel[0].id, target_id=rel[1].id) - return gas_gangrene +def indicates_edge_collection(test_arango_all_graph: Graph): + return test_arango_all_graph.edge_collection('indicates') @pytest.fixture(scope='function') -def example4_pdf_gene_and_organism_network( - graph: Session, -): - with graph.begin_transaction() as tx: - cysB = create_gene_node( - tx=tx, - gene_name='cysB', - gene_id='945771', - ) - - mcrB = create_gene_node( - tx=tx, - gene_name='mcrB', - gene_id='949122', - ) - - oxyR_e_coli = create_gene_node( - tx=tx, - gene_name='oxyR', - gene_id='948462', - ) - - oxyR_salmonella = create_gene_node( - tx=tx, - gene_name='cysB', - gene_id='1255651', - ) - - e_coli = create_taxonomy_node( - tx=tx, name='Escherichia coli', rank='species', tax_id='562' - ) - - salmonella = create_taxonomy_node( - tx=tx, name='Salmonella enterica', rank='species', tax_id='28901' - ) - - gene_to_organism_rels = [ - [cysB, e_coli], - [mcrB, e_coli], - [oxyR_e_coli, e_coli], - [oxyR_salmonella, salmonella], - ] - for rel in gene_to_organism_rels: - create_has_taxonomy_relationship( - tx=tx, source_id=rel[0].id, target_id=rel[1].id - ) - return graph - - -# End Graph Data Fixtures # - -# Start DTO Fixtures # +def in_pub_edge_collection(test_arango_all_graph: Graph): + return test_arango_all_graph.edge_collection('in_pub') @pytest.fixture(scope='function') -def gas_gangrene_vis_node(gas_gangrene: Node): - """Creates a VisNode from gas gangrene""" - labels = list(gas_gangrene.labels) - node_as_graph_node = GraphNode( - id=gas_gangrene.id, - label=labels[0], - sub_labels=labels, - domain_labels=[], - display_name=gas_gangrene.get( - DISPLAY_NAME_MAP[get_first_known_label_from_node(gas_gangrene)] - ), # noqa - data=snake_to_camel_dict(dict(gas_gangrene), {}), - url=None, - ) - - gas_gangrene_vis_node = VisNode( - id=node_as_graph_node.id, - label=node_as_graph_node.label, - data=node_as_graph_node.data, - sub_labels=node_as_graph_node.sub_labels, - display_name=node_as_graph_node.display_name, - primary_label=node_as_graph_node.sub_labels[0], - color={}, - expanded=False, - ) - - return gas_gangrene_vis_node - - -@pytest.fixture(scope='function') -def gas_gangrene_duplicate_vis_node(gas_gangrene: Node): - """Creates a DuplicateVisNode from gas gangrene""" - labels = list(gas_gangrene.labels) - node_as_graph_node = GraphNode( - id=gas_gangrene.id, - label=labels[0], - sub_labels=labels, - domain_labels=[], - display_name=gas_gangrene.get( - DISPLAY_NAME_MAP[get_first_known_label_from_node(gas_gangrene)] - ), # noqa - data=snake_to_camel_dict(dict(gas_gangrene), {}), - url=None, - ) - - gas_gangrene_duplicate_vis_node = DuplicateVisNode( - id=f'duplicateNode:{node_as_graph_node.id}', - label=node_as_graph_node.label, - data=node_as_graph_node.data, - sub_labels=node_as_graph_node.sub_labels, - display_name=node_as_graph_node.display_name, - primary_label=node_as_graph_node.sub_labels[0], - color={}, - expanded=False, - duplicate_of=node_as_graph_node.id, - ) - - return gas_gangrene_duplicate_vis_node - - -@pytest.fixture(scope='function') -def oxygen_duplicate_vis_node(oxygen: Node): - """Creates a DuplicateVisNode from oxygen""" - labels = list(oxygen.labels) - node_as_graph_node = GraphNode( - id=oxygen.id, - label=labels[0], - sub_labels=labels, - domain_labels=[], - display_name=oxygen.get( - DISPLAY_NAME_MAP[get_first_known_label_from_node(oxygen)] - ), # noqa - data=snake_to_camel_dict(dict(oxygen), {}), - url=None, - ) - - oxygen_duplicate_vis_node = DuplicateVisNode( - id=f'duplicateNode:{node_as_graph_node.id}', - label=node_as_graph_node.label, - data=node_as_graph_node.data, - sub_labels=node_as_graph_node.sub_labels, - display_name=node_as_graph_node.display_name, - primary_label=node_as_graph_node.sub_labels[0], - color={}, - expanded=False, - duplicate_of=node_as_graph_node.id, - ) - - return oxygen_duplicate_vis_node - - -@pytest.fixture(scope='function') -def penicillins_vis_node(penicillins: Node): - """Creates a VisNode from penicillins""" - labels = list(penicillins.labels) - node_as_graph_node = GraphNode( - id=penicillins.id, - label=labels[0], - sub_labels=labels, - domain_labels=[], - display_name=penicillins.get( - DISPLAY_NAME_MAP[get_first_known_label_from_node(penicillins)] - ), # noqa - data=snake_to_camel_dict(dict(penicillins), {}), - url=None, - ) - - penicillins_vis_node = VisNode( - id=node_as_graph_node.id, - label=node_as_graph_node.label, - data=node_as_graph_node.data, - sub_labels=node_as_graph_node.sub_labels, - display_name=node_as_graph_node.display_name, - primary_label=node_as_graph_node.sub_labels[0], - color={}, - expanded=False, - ) - - return penicillins_vis_node - - -@pytest.fixture(scope='function') -def penicillins_duplicate_vis_node(penicillins: Node): - """Creates a DuplicateVisNode from penicillins""" - labels = list(penicillins.labels) - node_as_graph_node = GraphNode( - id=penicillins.id, - label=labels[0], - sub_labels=labels, - domain_labels=[], - display_name=penicillins.get( - DISPLAY_NAME_MAP[get_first_known_label_from_node(penicillins)] - ), # noqa - data=snake_to_camel_dict(dict(penicillins), {}), - url=None, - ) - - penicillins_duplicate_vis_node = DuplicateVisNode( - id=f'duplicateNode:{node_as_graph_node.id}', - label=node_as_graph_node.label, - data=node_as_graph_node.data, - sub_labels=node_as_graph_node.sub_labels, - display_name=node_as_graph_node.display_name, - primary_label=node_as_graph_node.sub_labels[0], - color={}, - expanded=False, - duplicate_of=node_as_graph_node.id, - ) - - return penicillins_duplicate_vis_node - - -@pytest.fixture(scope='function') -def pomc_vis_node(pomc: Node): - """Creates a VisNode from pomc""" - labels = list(pomc.labels) - node_as_graph_node = GraphNode( - id=pomc.id, - label=labels[0], - sub_labels=labels, - domain_labels=[], - display_name=pomc.get( - DISPLAY_NAME_MAP[get_first_known_label_from_node(pomc)] - ), # noqa - data=snake_to_camel_dict(dict(pomc), {}), - url=None, - ) - - pomc_vis_node = VisNode( - id=node_as_graph_node.id, - label=node_as_graph_node.label, - data=node_as_graph_node.data, - sub_labels=node_as_graph_node.sub_labels, - display_name=node_as_graph_node.display_name, - primary_label=node_as_graph_node.sub_labels[0], - color={}, - expanded=False, - ) - - return pomc_vis_node - - -@pytest.fixture(scope='function') -def pomc_duplicate_vis_node(pomc: Node): - """Creates a DuplicateVisNode from pomc""" - labels = list(pomc.labels) - node_as_graph_node = GraphNode( - id=pomc.id, - label=labels[0], - sub_labels=labels, - domain_labels=[], - display_name=pomc.get( - DISPLAY_NAME_MAP[get_first_known_label_from_node(pomc)] - ), # noqa - data=snake_to_camel_dict(dict(pomc), {}), - url=None, - ) - - pomc_duplicate_vis_node = DuplicateVisNode( - id=f'duplicateNode:{node_as_graph_node.id}', - label=node_as_graph_node.label, - data=node_as_graph_node.data, - sub_labels=node_as_graph_node.sub_labels, - display_name=node_as_graph_node.display_name, - primary_label=node_as_graph_node.sub_labels[0], - color={}, - expanded=False, - duplicate_of=node_as_graph_node.id, - ) - - return pomc_duplicate_vis_node - - -@pytest.fixture(scope='function') -def oxygen_to_gas_gangrene_treatment_as_duplicate_vis_edge( - oxygen_to_gas_gangrene_treatment_edge: Relationship, -): - """Creates a DuplicateVisEdge from the oxygen to gas_gangrene - alleviates/reduces relationship.""" - - edge_as_graph_relationship = GraphRelationship( - id=oxygen_to_gas_gangrene_treatment_edge.id, - label=type(oxygen_to_gas_gangrene_treatment_edge).__name__, - data=dict(oxygen_to_gas_gangrene_treatment_edge), - to=oxygen_to_gas_gangrene_treatment_edge.end_node.id, - _from=oxygen_to_gas_gangrene_treatment_edge.start_node.id, - to_label=list(oxygen_to_gas_gangrene_treatment_edge.end_node.labels)[0], - from_label=list(oxygen_to_gas_gangrene_treatment_edge.start_node.labels)[0], - ) - - oxygen_to_gas_gangrene_treatment_as_duplicate_vis_edge = DuplicateVisEdge( - id=edge_as_graph_relationship.id, - label=edge_as_graph_relationship.data['description'], - data=edge_as_graph_relationship.data, - to=f'duplicateNode:{edge_as_graph_relationship.to}', # type:ignore - from_=f'duplicateNode:{edge_as_graph_relationship._from}', # type:ignore - to_label='Disease', - from_label='Chemical', - arrows='to', - duplicate_of=edge_as_graph_relationship.id, - original_from=edge_as_graph_relationship._from, - original_to=edge_as_graph_relationship.to, - ) - - return oxygen_to_gas_gangrene_treatment_as_duplicate_vis_edge - - -@pytest.fixture(scope='function') -def pomc_to_gas_gangrene_pathogenesis_as_vis_edge( - pomc_to_gas_gangrene_pathogenesis_edge: Relationship, -): - """Creates a VisEdge from the pomc to gas gangrene - role in disease pathogenesis relationship.""" - edge_as_graph_relationship = GraphRelationship( - id=pomc_to_gas_gangrene_pathogenesis_edge.id, - label=type(pomc_to_gas_gangrene_pathogenesis_edge).__name__, - data=dict(pomc_to_gas_gangrene_pathogenesis_edge), - to=pomc_to_gas_gangrene_pathogenesis_edge.end_node.id, - _from=pomc_to_gas_gangrene_pathogenesis_edge.start_node.id, - to_label=list(pomc_to_gas_gangrene_pathogenesis_edge.end_node.labels)[0], - from_label=list(pomc_to_gas_gangrene_pathogenesis_edge.start_node.labels)[0], - ) - - pomc_to_gas_gangrene_pathogenesis_as_vis_edge = VisEdge( - id=edge_as_graph_relationship.id, - label=edge_as_graph_relationship.data['description'], - data=edge_as_graph_relationship.data, - to=edge_as_graph_relationship.to, - from_=edge_as_graph_relationship._from, - to_label='Disease', - from_label='Gene', - arrows='to', - ) - - return pomc_to_gas_gangrene_pathogenesis_as_vis_edge - - -@pytest.fixture(scope='function') -def pomc_to_gas_gangrene_pathogenesis_as_duplicate_vis_edge( - pomc_to_gas_gangrene_pathogenesis_edge: Relationship, -): - """Creates a DuplicateVisEdge from the pomc to gas_gangrene - role in disease pathogenesis relationship.""" - edge_as_graph_relationship = GraphRelationship( - id=pomc_to_gas_gangrene_pathogenesis_edge.id, - label=type(pomc_to_gas_gangrene_pathogenesis_edge).__name__, - data=dict(pomc_to_gas_gangrene_pathogenesis_edge), - to=pomc_to_gas_gangrene_pathogenesis_edge.end_node.id, - _from=pomc_to_gas_gangrene_pathogenesis_edge.start_node.id, - to_label=list(pomc_to_gas_gangrene_pathogenesis_edge.end_node.labels)[0], - from_label=list(pomc_to_gas_gangrene_pathogenesis_edge.start_node.labels)[0], - ) - - pomc_to_gas_gangrene_pathogenesis_as_duplicate_vis_edge = DuplicateVisEdge( - id=edge_as_graph_relationship.id, - label=edge_as_graph_relationship.data['description'], - data=edge_as_graph_relationship.data, - to=f'duplicateNode:{edge_as_graph_relationship.to}', # type:ignore - from_=f'duplicateNode:{edge_as_graph_relationship._from}', # type:ignore - to_label='Disease', - from_label='Gene', - arrows='to', - duplicate_of=edge_as_graph_relationship.id, - original_from=edge_as_graph_relationship._from, - original_to=edge_as_graph_relationship.to, - ) - - return pomc_to_gas_gangrene_pathogenesis_as_duplicate_vis_edge - - -@pytest.fixture(scope='function') -def penicillins_to_gas_gangrene_alleviates_as_vis_edge( - penicillins_to_gas_gangrene_alleviates_edge: Relationship, -): - """Creates a VisEdge from the penicillins to gas gangrene - alleviates/reduces relationship.""" - edge_as_graph_relationship = GraphRelationship( - id=penicillins_to_gas_gangrene_alleviates_edge.id, - label=type(penicillins_to_gas_gangrene_alleviates_edge).__name__, - data=dict(penicillins_to_gas_gangrene_alleviates_edge), - to=penicillins_to_gas_gangrene_alleviates_edge.end_node.id, - _from=penicillins_to_gas_gangrene_alleviates_edge.start_node.id, - to_label=list(penicillins_to_gas_gangrene_alleviates_edge.end_node.labels)[0], - from_label=list(penicillins_to_gas_gangrene_alleviates_edge.start_node.labels)[ - 0 - ], - ) - - penicillins_to_gas_gangrene_alleviates_as_vis_edge = VisEdge( - id=edge_as_graph_relationship.id, - label=edge_as_graph_relationship.data['description'], - data=edge_as_graph_relationship.data, - to=edge_as_graph_relationship.to, - from_=edge_as_graph_relationship._from, - to_label='Disease', - from_label='Chemical', - arrows='to', - ) - - return penicillins_to_gas_gangrene_alleviates_as_vis_edge - - -@pytest.fixture(scope='function') -def penicillins_to_gas_gangrene_alleviates_as_duplicate_vis_edge( - penicillins_to_gas_gangrene_alleviates_edge: Relationship, -): - """Creates a DuplicateVisEdge from the penicillins to gas_gangrene - alleviates/reduces relationship.""" - edge_as_graph_relationship = GraphRelationship( - id=penicillins_to_gas_gangrene_alleviates_edge.id, - label=type(penicillins_to_gas_gangrene_alleviates_edge).__name__, - data=dict(penicillins_to_gas_gangrene_alleviates_edge), - to=penicillins_to_gas_gangrene_alleviates_edge.end_node.id, - _from=penicillins_to_gas_gangrene_alleviates_edge.start_node.id, - to_label=list(penicillins_to_gas_gangrene_alleviates_edge.end_node.labels)[0], - from_label=list(penicillins_to_gas_gangrene_alleviates_edge.start_node.labels)[ - 0 - ], - ) - - penicillins_to_gas_gangrene_alleviates_as_duplicate_vis_edge = DuplicateVisEdge( - id=edge_as_graph_relationship.id, - label=edge_as_graph_relationship.data['description'], - data=edge_as_graph_relationship.data, - to=f'duplicateNode:{edge_as_graph_relationship.to}', # type:ignore - from_=f'duplicateNode:{edge_as_graph_relationship._from}', # type:ignore - to_label='Disease', - from_label='Chemical', - arrows='to', - duplicate_of=edge_as_graph_relationship.id, - original_from=edge_as_graph_relationship._from, - original_to=edge_as_graph_relationship.to, - ) - - return penicillins_to_gas_gangrene_alleviates_as_duplicate_vis_edge - - -@pytest.fixture(scope='function') -def penicillins_to_gas_gangrene_treatment_as_vis_edge( - penicillins_to_gas_gangrene_treatment_edge: Relationship, -): - """Creates a VisEdge from the penicillins to gas_gangrene - treatment/therapy relationship.""" - edge_as_graph_relationship = GraphRelationship( - id=penicillins_to_gas_gangrene_treatment_edge.id, - label=type(penicillins_to_gas_gangrene_treatment_edge).__name__, - data=dict(penicillins_to_gas_gangrene_treatment_edge), - to=penicillins_to_gas_gangrene_treatment_edge.end_node.id, - _from=penicillins_to_gas_gangrene_treatment_edge.start_node.id, - to_label=list(penicillins_to_gas_gangrene_treatment_edge.end_node.labels)[0], - from_label=list(penicillins_to_gas_gangrene_treatment_edge.start_node.labels)[ - 0 - ], - ) - - penicillins_to_gas_gangrene_treatment_as_vis_edge = VisEdge( - id=edge_as_graph_relationship.id, - label=edge_as_graph_relationship.data['description'], - data=edge_as_graph_relationship.data, - to=edge_as_graph_relationship.to, - from_=edge_as_graph_relationship._from, - to_label='Disease', - from_label='Chemical', - arrows='to', - ) - - return penicillins_to_gas_gangrene_treatment_as_vis_edge - - -@pytest.fixture(scope='function') -def penicillins_to_gas_gangrene_treatment_as_duplicate_vis_edge( - penicillins_to_gas_gangrene_treatment_edge: Relationship, -): - """Creates a DuplicateVisEdge from the penicillins to gas_gangrene - treatment/therapy relationship.""" - edge_as_graph_relationship = GraphRelationship( - id=penicillins_to_gas_gangrene_treatment_edge.id, - label=type(penicillins_to_gas_gangrene_treatment_edge).__name__, - data=dict(penicillins_to_gas_gangrene_treatment_edge), - to=penicillins_to_gas_gangrene_treatment_edge.end_node.id, - _from=penicillins_to_gas_gangrene_treatment_edge.start_node.id, - to_label=list(penicillins_to_gas_gangrene_treatment_edge.end_node.labels)[0], - from_label=list(penicillins_to_gas_gangrene_treatment_edge.start_node.labels)[ - 0 - ], - ) - - penicillins_to_gas_gangrene_treatment_as_duplicate_vis_edge = DuplicateVisEdge( - id=f'duplicateEdge:{edge_as_graph_relationship.id}', - label=edge_as_graph_relationship.data['description'], - data=edge_as_graph_relationship.data, - to=f'duplicateNode:{edge_as_graph_relationship.to}', # type:ignore - from_=f'duplicateNode:{edge_as_graph_relationship._from}', # type:ignore - to_label='Disease', - from_label='Chemical', - arrows='to', - duplicate_of=edge_as_graph_relationship.id, - original_from=edge_as_graph_relationship._from, - original_to=edge_as_graph_relationship.to, - ) - - return penicillins_to_gas_gangrene_treatment_as_duplicate_vis_edge - - -@pytest.fixture(scope='function') -def gas_gangrene_treatment_cluster_node_edge_pairs( - oxygen_duplicate_vis_node, - oxygen_to_gas_gangrene_treatment_as_duplicate_vis_edge, - penicillins_duplicate_vis_node, - penicillins_to_gas_gangrene_treatment_as_duplicate_vis_edge, -): - """Creates a list of DuplicateNodeEdgePairs. Used for testing the - reference table endpoints and services.""" - return [ - ReferenceTablePair( - node=ReferenceTablePair.NodeData( - id=oxygen_duplicate_vis_node.id, - display_name=oxygen_duplicate_vis_node.display_name, - label=oxygen_duplicate_vis_node.primary_label, - ), - edge=ReferenceTablePair.EdgeData( - original_from=oxygen_to_gas_gangrene_treatment_as_duplicate_vis_edge.original_from, - # noqa - original_to=oxygen_to_gas_gangrene_treatment_as_duplicate_vis_edge.original_to, - label=oxygen_to_gas_gangrene_treatment_as_duplicate_vis_edge.label, - ), - ), - ReferenceTablePair( - node=ReferenceTablePair.NodeData( - id=penicillins_duplicate_vis_node.id, - display_name=penicillins_duplicate_vis_node.display_name, - label=penicillins_duplicate_vis_node.primary_label, - ), - edge=ReferenceTablePair.EdgeData( - original_from=penicillins_to_gas_gangrene_treatment_as_duplicate_vis_edge.original_from, - original_to=penicillins_to_gas_gangrene_treatment_as_duplicate_vis_edge.original_to, - label=penicillins_to_gas_gangrene_treatment_as_duplicate_vis_edge.label, - ), - ), - ] - - -@pytest.fixture(scope='function') -def gas_gangrene_treatement_edge_data( - penicillins_to_gas_gangrene_treatment_edge: Relationship, -): - edge_as_graph_relationship = GraphRelationship( - id=penicillins_to_gas_gangrene_treatment_edge.id, - label=type(penicillins_to_gas_gangrene_treatment_edge).__name__, - data=dict(penicillins_to_gas_gangrene_treatment_edge), - to=penicillins_to_gas_gangrene_treatment_edge.end_node.id, - _from=penicillins_to_gas_gangrene_treatment_edge.start_node.id, - to_label=list(penicillins_to_gas_gangrene_treatment_edge.end_node.labels)[0], - from_label=list(penicillins_to_gas_gangrene_treatment_edge.start_node.labels)[ - 0 - ], - ) - - return EdgeConnectionData( - label=edge_as_graph_relationship.data['description'], - to=edge_as_graph_relationship.to, - from_=edge_as_graph_relationship._from, - to_label='Disease', - from_label='Chemical', - ) +def account_service(app, session): + return AccountService(session) @pytest.fixture(scope='function') -def gas_gangrene_alleviates_edge_data( - penicillins_to_gas_gangrene_alleviates_edge: Relationship, -): - edge_as_graph_relationship = GraphRelationship( - id=penicillins_to_gas_gangrene_alleviates_edge.id, - label=type(penicillins_to_gas_gangrene_alleviates_edge).__name__, - data=dict(penicillins_to_gas_gangrene_alleviates_edge), - to=penicillins_to_gas_gangrene_alleviates_edge.end_node.id, - _from=penicillins_to_gas_gangrene_alleviates_edge.start_node.id, - to_label=list(penicillins_to_gas_gangrene_alleviates_edge.end_node.labels)[0], - from_label=list(penicillins_to_gas_gangrene_alleviates_edge.start_node.labels)[ - 0 - ], - ) - - return EdgeConnectionData( - label=edge_as_graph_relationship.data['description'], - to=edge_as_graph_relationship.to, - from_=edge_as_graph_relationship._from, - to_label='Disease', - from_label='Chemical', - ) +def auth_service(app, session): + return AuthService(session) @pytest.fixture(scope='function') -def gas_gangrene_treatement_duplicate_edge_data( - penicillins_to_gas_gangrene_treatment_edge: Relationship, -): - edge_as_graph_relationship = GraphRelationship( - id=penicillins_to_gas_gangrene_treatment_edge.id, - label=type(penicillins_to_gas_gangrene_treatment_edge).__name__, - data=dict(penicillins_to_gas_gangrene_treatment_edge), - to=penicillins_to_gas_gangrene_treatment_edge.end_node.id, - _from=penicillins_to_gas_gangrene_treatment_edge.start_node.id, - to_label=list(penicillins_to_gas_gangrene_treatment_edge.end_node.labels)[0], - from_label=list(penicillins_to_gas_gangrene_treatment_edge.start_node.labels)[ - 0 - ], - ) - - return [ - DuplicateEdgeConnectionData( - label=edge_as_graph_relationship.data['description'], - to=f'duplicateNode:{edge_as_graph_relationship.to}', # type:ignore - from_=f'duplicateNode:{edge_as_graph_relationship._from}', # type:ignore - to_label='Disease', - from_label='Chemical', - original_from=edge_as_graph_relationship._from, - original_to=edge_as_graph_relationship.to, - ) - ] +def account_user(app, session): + return AccountService(session) @pytest.fixture(scope='function') -def gas_gangrene_alleviates_duplicate_edge_data( - penicillins_to_gas_gangrene_alleviates_edge: Relationship, -): - edge_as_graph_relationship = GraphRelationship( - id=penicillins_to_gas_gangrene_alleviates_edge.id, - label=type(penicillins_to_gas_gangrene_alleviates_edge).__name__, - data=dict(penicillins_to_gas_gangrene_alleviates_edge), - to=penicillins_to_gas_gangrene_alleviates_edge.end_node.id, - _from=penicillins_to_gas_gangrene_alleviates_edge.start_node.id, - to_label=list(penicillins_to_gas_gangrene_alleviates_edge.end_node.labels)[0], - from_label=list(penicillins_to_gas_gangrene_alleviates_edge.start_node.labels)[ - 0 - ], - ) - - return [ - DuplicateEdgeConnectionData( - label=edge_as_graph_relationship.data['description'], - to=f'duplicateNode:{edge_as_graph_relationship.to}', # type:ignore - from_=f'duplicateNode:{edge_as_graph_relationship._from}', # type:ignore - to_label='Disease', - from_label='Chemical', - original_from=edge_as_graph_relationship._from, - original_to=edge_as_graph_relationship.to, - ) - ] +def elastic_service(app, session): + elastic_service = ElasticService() + # Ensures that anytime the elastic service is requested for a test, that the environment is + # clean + elastic_service.recreate_indices_and_pipelines() -# End DTO Fixtures # + return elastic_service @pytest.fixture(scope='session') diff --git a/appserver/tests/constants.py b/appserver/tests/constants.py new file mode 100644 index 0000000000..7989cfa82c --- /dev/null +++ b/appserver/tests/constants.py @@ -0,0 +1,72 @@ +# Arango vars + +DOCUMENT_COLLECTIONS = [ + 'biocyc', + 'chebi', + 'enzyme', + 'go', + 'kegg', + 'lifelike', + 'liquibasechangelog', + 'literature', + 'mesh', + 'ncbi', + 'other', + 'pubmed', + 'regulondb', + 'string', + 'synonym', + 'taxonomy', + 'uniprot', +] + +EDGE_COLLECTIONS = [ + 'associated', + 'binds', + 'catalyzes', + 'chebi_link', + 'component_of', + 'consumed_by', + 'element_of', + 'encodes', + 'ends_during', + 'enzyme_link', + 'go_link', + 'happens_during', + 'has_association', + 'has_author', + 'has_functional_parent', + 'has_gene', + 'has_ko', + 'has_ortholog', + 'has_parent', + 'has_parent_hydride', + 'has_part', + 'has_pathway', + 'has_role', + 'has_synonym', + 'has_taxonomy', + 'has_treenumber', + 'has_type', + 'in_changelog', + 'in_pathway', + 'in_pub', + 'indicates', + 'is', + 'is_a', + 'is_conjugate_acid_of', + 'is_conjugate_base_of', + 'is_enantiomer_of', + 'is_substituent_group_from', + 'is_tautomer_of', + 'mapped_to', + 'mapped_to_descriptor', + 'modified_to', + 'negatively_regulates', + 'produces', + 'regulates', + 'replaced_by', + 'type_of', +] + +GRAPHS = ['all'] diff --git a/appserver/tests/database/services/annotations/annotations_test.py b/appserver/tests/database/services/annotations/annotations_test.py index c09d0993a8..1b0145b4d2 100644 --- a/appserver/tests/database/services/annotations/annotations_test.py +++ b/appserver/tests/database/services/annotations/annotations_test.py @@ -8,8 +8,11 @@ GlobalInclusions, ) from neo4japp.services.annotations.utils.parsing import process_parsed_content +from neo4japp.services.annotations.annotation_graph_service import get_entity_inclusions +from neo4japp.services.annotations.constants import EntityType -from .util import * + +from .util import annotate_pdf_for_testing, create_mock_annotations # reference to this directory @@ -56,7 +59,7 @@ ], ) def test_fix_conflicting_annotations_same_types( - get_annotation_service, index, annotations + get_annotation_service, test_arango_db, index, annotations ): annotation_service = get_annotation_service fixed = annotation_service.fix_conflicting_annotations( @@ -153,7 +156,7 @@ def test_fix_conflicting_annotations_same_types( ], ) def test_fix_conflicting_annotations_different_types( - get_annotation_service, index, annotations + get_annotation_service, test_arango_db, index, annotations ): annotation_service = get_annotation_service fixed = annotation_service.fix_conflicting_annotations( @@ -210,6 +213,7 @@ def test_gene_organism_escherichia_coli_pdf( mock_graph_test_gene_organism_escherichia_coli_pdf, get_lmdb_service, get_annotation_service, + test_arango_db, ): pdf = path.join(directory, 'pdf_samples/annotations_test/ecoli_gene_test.json') @@ -249,6 +253,7 @@ def test_protein_organism_escherichia_coli_pdf( mock_graph_test_protein_organism_escherichia_coli_pdf, get_lmdb_service, get_annotation_service, + test_arango_db, ): pdf = path.join(directory, 'pdf_samples/annotations_test/ecoli_protein_test.json') @@ -273,7 +278,8 @@ def test_local_inclusion_affect_gene_organism_matching( mock_graph_test_local_inclusion_affect_gene_organism_matching, get_lmdb_service, get_annotation_service, - get_graph_service, + arango_client, + test_arango_db, ): pdf = path.join( directory, @@ -316,7 +322,7 @@ def test_local_inclusion_affect_gene_organism_matching( annotation_service=get_annotation_service, lmdb_service=get_lmdb_service, parsed=parsed, - inclusions=get_graph_service.get_entity_inclusions(inclusions), + inclusions=get_entity_inclusions(arango_client, inclusions), custom_annotations=inclusions, ) @@ -329,6 +335,7 @@ def test_local_exclusion_affect_gene_organism_matching( get_lmdb_service, get_annotation_service, get_db_service, + test_arango_db, ): pdf = path.join( directory, @@ -371,6 +378,7 @@ def test_assume_human_gene_after_finding_virus( mock_graph_test_assume_human_gene_after_finding_virus, get_lmdb_service, get_annotation_service, + test_arango_db, ): pdf = path.join( directory, @@ -400,7 +408,10 @@ def test_assume_human_gene_after_finding_virus( def test_can_find_food_entities( - lmdb_setup_test_can_find_food_entities, get_lmdb_service, get_annotation_service + lmdb_setup_test_can_find_food_entities, + get_lmdb_service, + get_annotation_service, + test_arango_db, ): pdf = path.join( directory, 'pdf_samples/annotations_test/test_can_find_food_entities.json' @@ -426,7 +437,10 @@ def test_can_find_food_entities( def test_can_find_anatomy_entities( - lmdb_setup_test_can_find_anatomy_entities, get_lmdb_service, get_annotation_service + lmdb_setup_test_can_find_anatomy_entities, + get_lmdb_service, + get_annotation_service, + test_arango_db, ): pdf = path.join( directory, 'pdf_samples/annotations_test/test_can_find_anatomy_entities.json' @@ -463,6 +477,7 @@ def test_genes_vs_proteins( mock_graph_test_genes_vs_proteins, get_lmdb_service, get_annotation_service, + test_arango_db, index, fpath, ): @@ -527,7 +542,7 @@ def test_genes_vs_proteins( ], ) def test_fix_false_positive_gene_annotations( - get_annotation_service, index, annotations + get_annotation_service, test_arango_db, index, annotations ): annotation_service = get_annotation_service fixed = annotation_service._get_fixed_false_positive_unified_annotations( @@ -572,7 +587,7 @@ def test_fix_false_positive_gene_annotations( ], ) def test_fix_false_positive_protein_annotations( - get_annotation_service, index, annotations + get_annotation_service, test_arango_db, index, annotations ): annotation_service = get_annotation_service fixed = annotation_service._get_fixed_false_positive_unified_annotations( @@ -596,6 +611,7 @@ def test_gene_id_changes_to_result_from_kg_if_matched_with_organism( mock_graph_test_gene_id_changes_to_result_from_kg_if_matched_with_organism, get_lmdb_service, get_annotation_service, + test_arango_db, ): pdf = path.join( directory, @@ -621,6 +637,7 @@ def test_human_is_prioritized_if_equal_distance_in_gene_organism_matching( mock_graph_test_human_is_prioritized_if_equal_distance_in_gene_organism_matching, get_lmdb_service, get_annotation_service, + test_arango_db, ): pdf = path.join( directory, @@ -646,6 +663,7 @@ def test_global_excluded_chemical_annotations( get_db_service, get_lmdb_service, get_annotation_service, + test_arango_db, ): pdf = path.join( directory, @@ -679,6 +697,7 @@ def test_global_excluded_compound_annotations( get_db_service, get_lmdb_service, get_annotation_service, + test_arango_db, ): pdf = path.join( directory, @@ -712,6 +731,7 @@ def test_global_excluded_disease_annotations( get_db_service, get_lmdb_service, get_annotation_service, + test_arango_db, ): pdf = path.join( directory, @@ -746,6 +766,7 @@ def test_global_excluded_gene_annotations( get_db_service, get_lmdb_service, get_annotation_service, + test_arango_db, ): pdf = path.join( directory, @@ -779,6 +800,7 @@ def test_global_excluded_phenotype_annotations( get_db_service, get_lmdb_service, get_annotation_service, + test_arango_db, ): pdf = path.join( directory, @@ -812,6 +834,7 @@ def test_global_excluded_protein_annotations( get_db_service, get_lmdb_service, get_annotation_service, + test_arango_db, ): pdf = path.join( directory, @@ -845,6 +868,7 @@ def test_global_excluded_species_annotations( get_db_service, get_lmdb_service, get_annotation_service, + test_arango_db, ): pdf = path.join( directory, @@ -878,6 +902,7 @@ def test_global_exclusions_does_not_interfere_with_other_entities( get_db_service, get_lmdb_service, get_annotation_service, + test_arango_db, ): pdf = path.join( directory, @@ -908,7 +933,10 @@ def test_global_exclusions_does_not_interfere_with_other_entities( def test_global_chemical_inclusion_annotation( - mock_global_chemical_inclusion_annotation, get_lmdb_service, get_annotation_service + mock_global_chemical_inclusion_annotation, + get_lmdb_service, + get_annotation_service, + test_arango_db, ): pdf = path.join( directory, @@ -934,7 +962,10 @@ def test_global_chemical_inclusion_annotation( def test_global_compound_inclusion_annotation( - mock_global_compound_inclusion_annotation, get_lmdb_service, get_annotation_service + mock_global_compound_inclusion_annotation, + get_lmdb_service, + get_annotation_service, + test_arango_db, ): pdf = path.join( directory, @@ -965,6 +996,7 @@ def test_global_gene_inclusion_annotation( mock_global_gene_inclusion_annotation, get_lmdb_service, get_annotation_service, + test_arango_db, ): pdf = path.join( directory, @@ -990,7 +1022,10 @@ def test_global_gene_inclusion_annotation( def test_global_disease_inclusion_annotation( - mock_global_disease_inclusion_annotation, get_lmdb_service, get_annotation_service + mock_global_disease_inclusion_annotation, + get_lmdb_service, + get_annotation_service, + test_arango_db, ): pdf = path.join( directory, @@ -1016,7 +1051,10 @@ def test_global_disease_inclusion_annotation( def test_global_phenomena_inclusion_annotation( - mock_global_phenomena_inclusion_annotation, get_lmdb_service, get_annotation_service + mock_global_phenomena_inclusion_annotation, + get_lmdb_service, + get_annotation_service, + test_arango_db, ): pdf = path.join( directory, @@ -1042,7 +1080,10 @@ def test_global_phenomena_inclusion_annotation( def test_global_phenotype_inclusion_annotation( - mock_global_phenotype_inclusion_annotation, get_lmdb_service, get_annotation_service + mock_global_phenotype_inclusion_annotation, + get_lmdb_service, + get_annotation_service, + test_arango_db, ): pdf = path.join( directory, @@ -1068,7 +1109,10 @@ def test_global_phenotype_inclusion_annotation( def test_global_protein_inclusion_annotation( - mock_global_protein_inclusion_annotation, get_lmdb_service, get_annotation_service + mock_global_protein_inclusion_annotation, + get_lmdb_service, + get_annotation_service, + test_arango_db, ): pdf = path.join( directory, @@ -1094,7 +1138,10 @@ def test_global_protein_inclusion_annotation( def test_global_species_inclusion_annotation( - mock_global_species_inclusion_annotation, get_lmdb_service, get_annotation_service + mock_global_species_inclusion_annotation, + get_lmdb_service, + get_annotation_service, + test_arango_db, ): pdf = path.join( directory, @@ -1124,6 +1171,7 @@ def test_no_annotation_for_abbreviation( mock_graph_test_no_annotation_for_abbreviation, get_lmdb_service, get_annotation_service, + test_arango_db, ): pdf = path.join( directory, @@ -1156,6 +1204,7 @@ def test_delta_gene_deletion_detected( mock_graph_test_gene_organism_escherichia_coli_pdf, get_lmdb_service, get_annotation_service, + test_arango_db, ): pdf = path.join( directory, 'pdf_samples/annotations_test/test_delta_gene_deletion_detected.json' @@ -1228,6 +1277,7 @@ def test_global_inclusion_normalized_already_in_lmdb( mock_global_inclusion_normalized_already_in_lmdb, get_lmdb_service, get_annotation_service, + test_arango_db, ): pdf = path.join( directory, @@ -1255,6 +1305,7 @@ def test_gene_matched_to_organism_before_if_closest_is_too_far( mock_graph_test_new_gene_organism_matching_algorithm, get_lmdb_service, get_annotation_service, + test_arango_db, ): pdf = path.join( directory, @@ -1284,6 +1335,7 @@ def test_gene_matched_to_most_freq_organism_if_closest_is_too_far_and_no_before_ mock_graph_test_new_gene_organism_matching_algorithm, get_lmdb_service, get_annotation_service, + test_arango_db, ): pdf = path.join( directory, @@ -1312,6 +1364,7 @@ def test_prioritize_primary_name_that_equals_synonym( lmdb_setup_test_prioritize_primary_name_that_equals_synonym, get_lmdb_service, get_annotation_service, + test_arango_db, ): pdf = path.join( directory, diff --git a/appserver/tests/database/services/annotations/conftest.py b/appserver/tests/database/services/annotations/conftest.py index 2c3908a7bd..8b3b140b5d 100644 --- a/appserver/tests/database/services/annotations/conftest.py +++ b/appserver/tests/database/services/annotations/conftest.py @@ -7,7 +7,6 @@ from neo4japp.services.annotations import ( AnnotationService, AnnotationDBService, - AnnotationGraphService, LMDBService, ManualAnnotationService, Tokenizer, @@ -38,7 +37,7 @@ create_ner_type_protein, create_ner_type_species, ) -from neo4japp.utils import normalize_str +from neo4japp.utils.string import normalize_str # reference to this directory @@ -71,26 +70,21 @@ def create_entity_lmdb(path_to_folder: str, db_name: str, entity_objs=[]): ) -@pytest.fixture(scope='function') -def get_graph_service(graph_driver): - return AnnotationGraphService(graph_driver) - - @pytest.fixture(scope='function') def get_db_service(session): return AnnotationDBService() @pytest.fixture(scope='function') -def get_annotation_service(get_db_service, get_graph_service, request): +def get_annotation_service(get_db_service, arango_client, request): request.addfinalizer(teardown) - return AnnotationService(db=get_db_service, graph=get_graph_service) + return AnnotationService(db=get_db_service, arango_client=arango_client) @pytest.fixture(scope='function') -def get_manual_annotation_service(get_graph_service): - return ManualAnnotationService(graph=get_graph_service, tokenizer=Tokenizer()) +def get_manual_annotation_service(arango_client): + return ManualAnnotationService(arango_client=arango_client, tokenizer=Tokenizer()) @pytest.fixture(scope='function') @@ -845,8 +839,7 @@ def get_match_result(*args, **kwargs): ) monkeypatch.setattr( - AnnotationGraphService, - 'get_genes_to_organisms', + 'neo4japp.services.annotations.annotation_service.get_genes_to_organisms', get_match_result, ) @@ -864,8 +857,7 @@ def get_match_result(*args, **kwargs): ) monkeypatch.setattr( - AnnotationGraphService, - 'get_genes_to_organisms', + 'neo4japp.services.annotations.annotation_service.get_genes_to_organisms', get_match_result, ) @@ -882,8 +874,7 @@ def get_match_result(*args, **kwargs): ) monkeypatch.setattr( - AnnotationGraphService, - 'get_genes_to_organisms', + 'neo4japp.services.annotations.annotation_service.get_genes_to_organisms', get_match_result, ) @@ -901,8 +892,7 @@ def get_match_result(*args, **kwargs): ) monkeypatch.setattr( - AnnotationGraphService, - 'get_genes_to_organisms', + 'neo4japp.services.annotations.annotation_service.get_genes_to_organisms', get_match_result, ) @@ -917,8 +907,7 @@ def get_match_result(*args, **kwargs): ) monkeypatch.setattr( - AnnotationGraphService, - 'get_genes_to_organisms', + 'neo4japp.services.annotations.annotation_service.get_genes_to_organisms', get_match_result, ) @@ -936,8 +925,7 @@ def get_match_result(*args, **kwargs): ) monkeypatch.setattr( - AnnotationGraphService, - 'get_genes_to_organisms', + 'neo4japp.services.annotations.annotation_service.get_genes_to_organisms', get_match_result, ) @@ -954,8 +942,7 @@ def get_match_result(*args, **kwargs): ) monkeypatch.setattr( - AnnotationGraphService, - 'get_genes_to_organisms', + 'neo4japp.services.annotations.annotation_service.get_genes_to_organisms', get_match_result, ) @@ -988,8 +975,7 @@ def get_match_result(*args, **kwargs): ) monkeypatch.setattr( - AnnotationGraphService, - 'get_genes_to_organisms', + 'neo4japp.services.annotations.annotation_service.get_genes_to_organisms', get_match_result, ) @@ -1007,8 +993,7 @@ def get_match_result(*args, **kwargs): ) monkeypatch.setattr( - AnnotationGraphService, - 'get_genes_to_organisms', + 'neo4japp.services.annotations.annotation_service.get_genes_to_organisms', get_match_result, ) @@ -1026,8 +1011,7 @@ def get_match_result(*args, **kwargs): ) monkeypatch.setattr( - AnnotationGraphService, - 'get_proteins_to_organisms', + 'neo4japp.services.annotations.annotation_service.get_proteins_to_organisms', get_match_result, ) @@ -1060,8 +1044,7 @@ def get_match_result(*args, **kwargs): ) monkeypatch.setattr( - AnnotationGraphService, - 'get_genes_to_organisms', + 'neo4japp.services.annotations.annotation_service.get_genes_to_organisms', get_match_result, ) diff --git a/appserver/tests/database/services/annotations/manual_annotations/manual_annotations_test.py b/appserver/tests/database/services/annotations/manual_annotations/manual_annotations_test.py index ab456724e3..d37d0f161d 100644 --- a/appserver/tests/database/services/annotations/manual_annotations/manual_annotations_test.py +++ b/appserver/tests/database/services/annotations/manual_annotations/manual_annotations_test.py @@ -13,6 +13,7 @@ def test_add_custom_annotation_inclusion_annotate_all( get_manual_annotation_service, mock_add_custom_annotation_inclusion, + test_arango_db, file_in_project, project_owner, ): @@ -42,6 +43,7 @@ def test_add_custom_annotation_inclusion_annotate_all( def test_add_custom_annotation_inclusion_multi_word( get_manual_annotation_service, mock_add_custom_annotation_inclusion, + test_arango_db, file_in_project, project_owner, ): @@ -72,6 +74,7 @@ def test_add_custom_annotation_inclusion_multi_word( def test_add_custom_annotation_inclusion( get_manual_annotation_service, mock_add_custom_annotation_inclusion, + test_arango_db, file_in_project, project_owner, ): @@ -101,6 +104,7 @@ def test_add_custom_annotation_inclusion( def test_add_custom_annotation_inclusion_multi_word_gene_limit( get_manual_annotation_service, mock_add_custom_annotation_inclusion, + test_arango_db, file_in_project, project_owner, ): @@ -130,6 +134,7 @@ def test_add_custom_annotation_inclusion_multi_word_gene_limit( def test_add_custom_annotation_inclusion_multi_word_food_limit( get_manual_annotation_service, mock_add_custom_annotation_inclusion, + test_arango_db, file_in_project, project_owner, ): diff --git a/appserver/tests/database/services/annotations/util.py b/appserver/tests/database/services/annotations/util.py index abef94760e..197b86eb00 100644 --- a/appserver/tests/database/services/annotations/util.py +++ b/appserver/tests/database/services/annotations/util.py @@ -1,4 +1,4 @@ -from typing import List, Tuple +from typing import Tuple from neo4japp.services.annotations import ( EntityRecognitionService, diff --git a/appserver/tests/database/services/redis_queue/test_redis_queue_service.py b/appserver/tests/database/services/redis_queue/test_redis_queue_service.py index c9efc6ef38..3b8adea7a8 100644 --- a/appserver/tests/database/services/redis_queue/test_redis_queue_service.py +++ b/appserver/tests/database/services/redis_queue/test_redis_queue_service.py @@ -9,6 +9,10 @@ from neo4japp.jobs import bad_job, bad_then_good_job +# Note that some of these tests assume the 'worker' container is running, or at least that there is +# a rq worker running somewhere in the Lifelike docker environment. + + def test_can_create_rq_service(rq_service: RedisQueueService): assert rq_service is not None diff --git a/appserver/tests/database/services/visualizer/conftest.py b/appserver/tests/database/services/visualizer/conftest.py new file mode 100644 index 0000000000..05b7bc3a76 --- /dev/null +++ b/appserver/tests/database/services/visualizer/conftest.py @@ -0,0 +1,661 @@ +from arango.database import StandardDatabase +from arango.collection import EdgeCollection +import pytest + +from neo4japp.constants import DISPLAY_NAME_MAP +from neo4japp.data_transfer_objects.visualization import ( + DuplicateEdgeConnectionData, + DuplicateVisEdge, + DuplicateVisNode, + EdgeConnectionData, + ReferenceTablePair, +) +from neo4japp.models.neo4j import GraphNode, GraphRelationship +from neo4japp.services.arangodb import add_document_to_collection +from neo4japp.utils.string import snake_to_camel_dict +from neo4japp.utils.labels import get_first_known_label_from_list + + +def _create_document(arango_db: StandardDatabase, colxn_name: str, **kwargs) -> dict: + return add_document_to_collection(db=arango_db, colxn_name=colxn_name, doc=kwargs) + + +def _create_relationship_document(edge_collection: EdgeCollection, **kwargs): + return edge_collection.insert(kwargs, return_new=True)['new'] + + +@pytest.fixture(scope='function') +def gas_gangrene(test_arango_db): + gas_gangrene = _create_document( + test_arango_db, + 'mesh', + name='gas gangrene', + eid='MESH:D005738', + labels=['Disease'], + ) + return gas_gangrene + + +@pytest.fixture(scope='function') +def penicillins(test_arango_db): + penicillins = _create_document( + test_arango_db, + 'mesh', + name='Penicillins', + eid='MESH:D010406', + labels=['Chemical'], + ) + return penicillins + + +@pytest.fixture(scope='function') +def oxygen(test_arango_db): + oxygen = _create_document( + test_arango_db, 'mesh', name='Oxygen', eid='MESH:D010100', labels=['Chemical'] + ) + return oxygen + + +@pytest.fixture(scope='function') +def pomc(test_arango_db): + pomc = _create_document( + test_arango_db, 'ncbi', name='POMC', eid='5443', labels=['Gene'] + ) + return pomc + + +@pytest.fixture(scope='function') +def oxygen_to_gas_gangrene_association(test_arango_db): + return _create_document( + test_arango_db, + 'literature', + assoc_type='J', + description='treatment/therapy (including investigatory)', + eid=1089126, + ) + + +@pytest.fixture(scope='function') +def pomc_to_gas_gangrene_association(test_arango_db): + return _create_document( + test_arango_db, + 'literature', + assoc_type='J', + description='role in disease pathogenesis', + eid=1387448, + ) + + +@pytest.fixture(scope='function') +def penicillins_to_gas_gangrene_association_1(test_arango_db): + return _create_document( + test_arango_db, + 'literature', + assoc_type='Pa', + description='alleviates, reduces', + eid=2771500, + ) + + +@pytest.fixture(scope='function') +def penicillins_to_gas_gangrene_association_2(test_arango_db): + return _create_document( + test_arango_db, + 'literature', + assoc_type='J', + description='treatment/therapy (including investigatory)', + eid=2771501, + ) + + +@pytest.fixture(scope='function') +def pomc_to_gas_gangrene_pathogenesis_edge( + associated_edge_collection: EdgeCollection, + gas_gangrene: dict, + pomc: dict, + pomc_to_gas_gangrene_association: dict, +): + return _create_relationship_document( + associated_edge_collection, + _from=pomc['_id'], + _to=gas_gangrene['_id'], + assoc_type='J', + description='role in disease pathogenesis', + association_id=pomc_to_gas_gangrene_association['_id'], + ) + + +@pytest.fixture(scope='function') +def penicillins_to_gas_gangrene_alleviates_edge( + associated_edge_collection: EdgeCollection, + gas_gangrene: dict, + penicillins: dict, + penicillins_to_gas_gangrene_association_1: dict, +): + return _create_relationship_document( + associated_edge_collection, + _from=penicillins['_id'], + _to=gas_gangrene['_id'], + assoc_type='Pa', + description='alleviates, reduces', + association_id=penicillins_to_gas_gangrene_association_1['_id'], + ) + + +@pytest.fixture(scope='function') +def oxygen_to_gas_gangrene_treatment_edge( + associated_edge_collection: EdgeCollection, + gas_gangrene: dict, + oxygen: dict, + oxygen_to_gas_gangrene_association: dict, +): + return _create_relationship_document( + associated_edge_collection, + _from=oxygen['_id'], + _to=gas_gangrene['_id'], + assoc_type='Pa', + description='treatment/therapy (including investigatory)', + association_id=oxygen_to_gas_gangrene_association['_id'], + ) + + +@pytest.fixture(scope='function') +def penicillins_to_gas_gangrene_treatment_edge( + associated_edge_collection: EdgeCollection, + gas_gangrene: dict, + penicillins: dict, + penicillins_to_gas_gangrene_association_2: dict, +): + return _create_relationship_document( + associated_edge_collection, + _from=penicillins['_id'], + _to=gas_gangrene['_id'], + assoc_type='Pa', + description='treatment/therapy (including investigatory)', + association_id=penicillins_to_gas_gangrene_association_2['_id'], + ) + + +@pytest.fixture(scope='function') +def gas_gangrene_with_associations_and_references( + test_arango_db, + has_association_edge_collection, + indicates_edge_collection, + in_pub_edge_collection, + gas_gangrene, + oxygen, + penicillins, + pomc, + oxygen_to_gas_gangrene_association, + pomc_to_gas_gangrene_association, + penicillins_to_gas_gangrene_association_1, + penicillins_to_gas_gangrene_association_2, + oxygen_to_gas_gangrene_treatment_edge, + pomc_to_gas_gangrene_pathogenesis_edge, + penicillins_to_gas_gangrene_alleviates_edge, + penicillins_to_gas_gangrene_treatment_edge, +): + # Snippet Nodes + oxygen_to_gas_gangrene_snippet_node1 = _create_document( + test_arango_db, + 'literature', + snippet_id=7430189, + sentence='In this study , we aimed to investigate the effect of HBO2...', + ) + oxygen_to_gas_gangrene_snippet_node2 = _create_document( + test_arango_db, + 'literature', + snippet_id=1890743, + sentence='Hyperbaric oxygen therapy has an adjunctive role...', + ) + penicillins_to_gas_gangrene_snippet_node1 = _create_document( + test_arango_db, + 'literature', + snippet_id=9810347, + sentence='In a mouse model of gas_gangrene caused by...', + ) + penicillins_to_gas_gangrene_snippet_node2 = _create_document( + test_arango_db, + 'literature', + snippet_id=9810346, + sentence='Toxin suppression and rapid bacterial killing may...', + ) + penicillins_to_gas_gangrene_snippet_node3 = _create_document( + test_arango_db, + 'literature', + snippet_id=9810348, + sentence='...penicillin was found to reduce the affect of...', + ) + penicillins_to_gas_gangrene_snippet_node4 = _create_document( + test_arango_db, + 'literature', + snippet_id=9810349, + sentence='...suppresses toxins and rapidly kills bacteria...', + ) + + # Publication Nodes + oxygen_to_gas_gangrene_publication_node = _create_document( + test_arango_db, + 'literature', + pub_id=3, + pub_year=2019, + ) + penicillins_to_gas_gangrene_publication_node1 = _create_document( + test_arango_db, 'literature', pub_id=1, pub_year=2014 + ) + penicillins_to_gas_gangrene_publication_node2 = _create_document( + test_arango_db, + 'literature', + pub_id=2, + ) + + # Entity -> Association Relationships + entity_to_association_rels = [ + [oxygen, oxygen_to_gas_gangrene_association], + [pomc, pomc_to_gas_gangrene_association], + [penicillins, penicillins_to_gas_gangrene_association_1], + [penicillins, penicillins_to_gas_gangrene_association_2], + ] + for rel in entity_to_association_rels: + _create_relationship_document( + has_association_edge_collection, _from=rel[0]['_id'], _to=rel[1]['_id'] + ) + + # Association -> Entity Relationships + association_to_entity_rels = [ + [oxygen_to_gas_gangrene_association, gas_gangrene], + [pomc_to_gas_gangrene_association, gas_gangrene], + [penicillins_to_gas_gangrene_association_1, gas_gangrene], + [penicillins_to_gas_gangrene_association_2, gas_gangrene], + ] + for rel in association_to_entity_rels: + _create_relationship_document( + has_association_edge_collection, + _from=rel[0]['_id'], + _to=rel[1]['_id'], + ) + + # Snippet -> Association Relationships + snippet_to_association_rels = [ + [ + oxygen_to_gas_gangrene_snippet_node1, + oxygen_to_gas_gangrene_association, + None, + None, + 'oxygen', + 'gas gangrene', + ], # noqa + [ + oxygen_to_gas_gangrene_snippet_node2, + oxygen_to_gas_gangrene_association, + None, + None, + 'oxygen', + 'gas gangrene', + ], # noqa + [ + penicillins_to_gas_gangrene_snippet_node1, + penicillins_to_gas_gangrene_association_1, + 2, + 0.385, + 'penicillin', + 'gas gangrene', + ], # noqa + [ + penicillins_to_gas_gangrene_snippet_node3, + penicillins_to_gas_gangrene_association_1, + 5, + 0.693, + 'penicillin', + 'gas gangrene', + ], # noqa + [ + penicillins_to_gas_gangrene_snippet_node2, + penicillins_to_gas_gangrene_association_2, + 1, + 0.222, + 'penicillin', + 'gas gangrene', + ], # noqa + [ + penicillins_to_gas_gangrene_snippet_node4, + penicillins_to_gas_gangrene_association_2, + 3, + 0.456, + 'penicillin', + 'gas gangrene', + ], # noqa + ] + for rel in snippet_to_association_rels: + _create_relationship_document( + indicates_edge_collection, + _from=rel[0]['_id'], + _to=rel[1]['_id'], + raw_score=rel[2], + normalized_score=rel[3], + entry1_text=rel[4], + entry2_text=rel[5], + ) + + # Snippet -> Publication Relationships + snippet_to_pub_rels = [ + [oxygen_to_gas_gangrene_snippet_node1, oxygen_to_gas_gangrene_publication_node], + [oxygen_to_gas_gangrene_snippet_node2, oxygen_to_gas_gangrene_publication_node], + [ + penicillins_to_gas_gangrene_snippet_node1, + penicillins_to_gas_gangrene_publication_node1, + ], # noqa + [ + penicillins_to_gas_gangrene_snippet_node3, + penicillins_to_gas_gangrene_publication_node2, + ], # noqa + [ + penicillins_to_gas_gangrene_snippet_node2, + penicillins_to_gas_gangrene_publication_node2, + ], # noqa + [ + penicillins_to_gas_gangrene_snippet_node4, + penicillins_to_gas_gangrene_publication_node2, + ], # noqa + ] + for rel in snippet_to_pub_rels: + _create_relationship_document( + in_pub_edge_collection, _from=rel[0]['_id'], _to=rel[1]['_id'] + ) + return gas_gangrene + + +@pytest.fixture(scope='function') +def oxygen_duplicate_vis_node(oxygen): + """Creates a DuplicateVisNode from oxygen""" + labels = list(oxygen['labels']) + node_as_graph_node = GraphNode( + id=oxygen['_id'], + label=labels[0], + sub_labels=labels, + domain_labels=[], + display_name=oxygen.get( + DISPLAY_NAME_MAP[get_first_known_label_from_list(oxygen['labels'])] + ), # noqa + data=snake_to_camel_dict(dict(oxygen), {}), + url=None, + ) + + oxygen_duplicate_vis_node = DuplicateVisNode( + id=f'duplicateNode:{node_as_graph_node.id}', + label=node_as_graph_node.label, + data=node_as_graph_node.data, + sub_labels=node_as_graph_node.sub_labels, + display_name=node_as_graph_node.display_name, + primary_label=node_as_graph_node.sub_labels[0], + color={}, + expanded=False, + duplicate_of=node_as_graph_node.id, + ) + + return oxygen_duplicate_vis_node + + +@pytest.fixture(scope='function') +def penicillins_duplicate_vis_node(penicillins): + """Creates a DuplicateVisNode from penicillins""" + labels = list(penicillins['labels']) + node_as_graph_node = GraphNode( + id=penicillins['_id'], + label=labels[0], + sub_labels=labels, + domain_labels=[], + display_name=penicillins.get( + DISPLAY_NAME_MAP[get_first_known_label_from_list(penicillins['labels'])] + ), # noqa + data=snake_to_camel_dict(dict(penicillins), {}), + url=None, + ) + + penicillins_duplicate_vis_node = DuplicateVisNode( + id=f'duplicateNode:{node_as_graph_node.id}', + label=node_as_graph_node.label, + data=node_as_graph_node.data, + sub_labels=node_as_graph_node.sub_labels, + display_name=node_as_graph_node.display_name, + primary_label=node_as_graph_node.sub_labels[0], + color={}, + expanded=False, + duplicate_of=node_as_graph_node.id, + ) + + return penicillins_duplicate_vis_node + + +@pytest.fixture(scope='function') +def oxygen_to_gas_gangrene_treatment_as_duplicate_vis_edge( + oxygen, + gas_gangrene, + oxygen_to_gas_gangrene_treatment_edge, +): + """Creates a DuplicateVisEdge from the oxygen to gas_gangrene + alleviates/reduces relationship.""" + + edge_as_graph_relationship = GraphRelationship( + id=oxygen_to_gas_gangrene_treatment_edge['_id'], + label='associated', + data=dict( + assoc_type=oxygen_to_gas_gangrene_treatment_edge['assoc_type'], + description=oxygen_to_gas_gangrene_treatment_edge['description'], + ), + to=oxygen_to_gas_gangrene_treatment_edge['_to'], + _from=oxygen_to_gas_gangrene_treatment_edge['_from'], + to_label=gas_gangrene['labels'][0], + from_label=oxygen['labels'][0], + ) + + oxygen_to_gas_gangrene_treatment_as_duplicate_vis_edge = DuplicateVisEdge( + id=edge_as_graph_relationship.id, + label=edge_as_graph_relationship.data['description'], + data=edge_as_graph_relationship.data, + to=f'duplicateNode:{edge_as_graph_relationship.to}', # type:ignore + from_=f'duplicateNode:{edge_as_graph_relationship._from}', # type:ignore + to_label='Disease', + from_label='Chemical', + arrows='to', + duplicate_of=edge_as_graph_relationship.id, + original_from=edge_as_graph_relationship._from, + original_to=edge_as_graph_relationship.to, + ) + + return oxygen_to_gas_gangrene_treatment_as_duplicate_vis_edge + + +@pytest.fixture(scope='function') +def penicillins_to_gas_gangrene_treatment_as_duplicate_vis_edge( + penicillins, + gas_gangrene, + penicillins_to_gas_gangrene_treatment_edge, +): + """Creates a DuplicateVisEdge from the penicillins to gas_gangrene + treatment/therapy relationship.""" + edge_as_graph_relationship = GraphRelationship( + id=penicillins_to_gas_gangrene_treatment_edge['_id'], + label='associated', + data=dict( + assoc_type=penicillins_to_gas_gangrene_treatment_edge['assoc_type'], + description=penicillins_to_gas_gangrene_treatment_edge['description'], + ), + to=penicillins_to_gas_gangrene_treatment_edge['_to'], + _from=penicillins_to_gas_gangrene_treatment_edge['_from'], + to_label=gas_gangrene['labels'][0], + from_label=penicillins['labels'][0], + ) + + penicillins_to_gas_gangrene_treatment_as_duplicate_vis_edge = DuplicateVisEdge( + id=f'duplicateEdge:{edge_as_graph_relationship.id}', + label=edge_as_graph_relationship.data['description'], + data=edge_as_graph_relationship.data, + to=f'duplicateNode:{edge_as_graph_relationship.to}', # type:ignore + from_=f'duplicateNode:{edge_as_graph_relationship._from}', # type:ignore + to_label='Disease', + from_label='Chemical', + arrows='to', + duplicate_of=edge_as_graph_relationship.id, + original_from=edge_as_graph_relationship._from, + original_to=edge_as_graph_relationship.to, + ) + + return penicillins_to_gas_gangrene_treatment_as_duplicate_vis_edge + + +@pytest.fixture(scope='function') +def gas_gangrene_treatment_cluster_node_edge_pairs( + oxygen_duplicate_vis_node, + oxygen_to_gas_gangrene_treatment_as_duplicate_vis_edge, + penicillins_duplicate_vis_node, + penicillins_to_gas_gangrene_treatment_as_duplicate_vis_edge, +): + """Creates a list of DuplicateNodeEdgePairs. Used for testing the + reference table endpoints and services.""" + return [ + ReferenceTablePair( + node=ReferenceTablePair.NodeData( + id=oxygen_duplicate_vis_node.id, + display_name=oxygen_duplicate_vis_node.display_name, + label=oxygen_duplicate_vis_node.primary_label, + ), + edge=ReferenceTablePair.EdgeData( + original_from=oxygen_to_gas_gangrene_treatment_as_duplicate_vis_edge.original_from, # noqa + original_to=oxygen_to_gas_gangrene_treatment_as_duplicate_vis_edge.original_to, + label=oxygen_to_gas_gangrene_treatment_as_duplicate_vis_edge.label, + ), + ), + ReferenceTablePair( + node=ReferenceTablePair.NodeData( + id=penicillins_duplicate_vis_node.id, + display_name=penicillins_duplicate_vis_node.display_name, + label=penicillins_duplicate_vis_node.primary_label, + ), + edge=ReferenceTablePair.EdgeData( + original_from=penicillins_to_gas_gangrene_treatment_as_duplicate_vis_edge.original_from, # noqa + original_to=penicillins_to_gas_gangrene_treatment_as_duplicate_vis_edge.original_to, + label=penicillins_to_gas_gangrene_treatment_as_duplicate_vis_edge.label, + ), + ), + ] + + +@pytest.fixture(scope='function') +def gas_gangrene_treatement_edge_data( + penicillins, + gas_gangrene, + penicillins_to_gas_gangrene_treatment_edge, +): + edge_as_graph_relationship = GraphRelationship( + id=penicillins_to_gas_gangrene_treatment_edge['_id'], + label='associated', + data=dict( + assoc_type=penicillins_to_gas_gangrene_treatment_edge['assoc_type'], + description=penicillins_to_gas_gangrene_treatment_edge['description'], + ), + to=penicillins_to_gas_gangrene_treatment_edge['_to'], + _from=penicillins_to_gas_gangrene_treatment_edge['_from'], + to_label=gas_gangrene['labels'][0], + from_label=penicillins['labels'][0], + ) + + return EdgeConnectionData( + label=edge_as_graph_relationship.data['description'], + to=edge_as_graph_relationship.to, + from_=edge_as_graph_relationship._from, + to_label='Disease', + from_label='Chemical', + ) + + +@pytest.fixture(scope='function') +def gas_gangrene_alleviates_edge_data( + penicillins, + gas_gangrene, + penicillins_to_gas_gangrene_alleviates_edge, +): + edge_as_graph_relationship = GraphRelationship( + id=penicillins_to_gas_gangrene_alleviates_edge['_id'], + label='associated', + data=dict( + assoc_type=penicillins_to_gas_gangrene_alleviates_edge['assoc_type'], + description=penicillins_to_gas_gangrene_alleviates_edge['description'], + ), + to=penicillins_to_gas_gangrene_alleviates_edge['_to'], + _from=penicillins_to_gas_gangrene_alleviates_edge['_from'], + to_label=gas_gangrene['labels'][0], + from_label=penicillins['labels'][0], + ) + + return EdgeConnectionData( + label=edge_as_graph_relationship.data['description'], + to=edge_as_graph_relationship.to, + from_=edge_as_graph_relationship._from, + to_label='Disease', + from_label='Chemical', + ) + + +@pytest.fixture(scope='function') +def gas_gangrene_treatement_duplicate_edge_data( + penicillins, + gas_gangrene, + penicillins_to_gas_gangrene_treatment_edge, +): + edge_as_graph_relationship = GraphRelationship( + id=penicillins_to_gas_gangrene_treatment_edge['_id'], + label='associated', + data=dict( + assoc_type=penicillins_to_gas_gangrene_treatment_edge['assoc_type'], + description=penicillins_to_gas_gangrene_treatment_edge['description'], + ), + to=penicillins_to_gas_gangrene_treatment_edge['_to'], + _from=penicillins_to_gas_gangrene_treatment_edge['_from'], + to_label=gas_gangrene['labels'][0], + from_label=penicillins['labels'][0], + ) + + return [ + DuplicateEdgeConnectionData( + label=edge_as_graph_relationship.data['description'], + to=f'duplicateNode:{edge_as_graph_relationship.to}', # type:ignore + from_=f'duplicateNode:{edge_as_graph_relationship._from}', # type:ignore + to_label='Disease', + from_label='Chemical', + original_from=edge_as_graph_relationship._from, + original_to=edge_as_graph_relationship.to, + ) + ] + + +@pytest.fixture(scope='function') +def gas_gangrene_alleviates_duplicate_edge_data( + penicillins, + gas_gangrene, + penicillins_to_gas_gangrene_alleviates_edge, +): + edge_as_graph_relationship = GraphRelationship( + id=penicillins_to_gas_gangrene_alleviates_edge['_id'], + label='associated', + data=dict( + assoc_type=penicillins_to_gas_gangrene_alleviates_edge['assoc_type'], + description=penicillins_to_gas_gangrene_alleviates_edge['description'], + ), + to=penicillins_to_gas_gangrene_alleviates_edge['_to'], + _from=penicillins_to_gas_gangrene_alleviates_edge['_from'], + to_label=gas_gangrene['labels'][0], + from_label=penicillins['labels'][0], + ) + + return [ + DuplicateEdgeConnectionData( + label=edge_as_graph_relationship.data['description'], + to=f'duplicateNode:{edge_as_graph_relationship.to}', # type:ignore + from_=f'duplicateNode:{edge_as_graph_relationship._from}', # type:ignore + to_label='Disease', + from_label='Chemical', + original_from=edge_as_graph_relationship._from, + original_to=edge_as_graph_relationship.to, + ) + ] diff --git a/appserver/tests/database/services/neo4j_test.py b/appserver/tests/database/services/visualizer/visualizer.py similarity index 81% rename from appserver/tests/database/services/neo4j_test.py rename to appserver/tests/database/services/visualizer/visualizer.py index ef9a5a94f5..7614bc2e1e 100644 --- a/appserver/tests/database/services/neo4j_test.py +++ b/appserver/tests/database/services/visualizer/visualizer.py @@ -1,31 +1,25 @@ -import pytest - - -@pytest.mark.skip( - reason='Does not work unless we upgrade the Neo4j docker image to 4.0+ because of apoc function' +from neo4japp.data_transfer_objects.visualization import Direction +from neo4japp.services.visualizer import ( + get_reference_table_data, + get_snippets_for_cluster, + get_snippets_for_edge, ) -def test_expand_node_gets_no_results_for_node_with_no_relationships( - visualizer_service, gas_gangrene -): - expand_query_result = visualizer_service.expand_graph( - node_id=gas_gangrene.identity, - filter_labels=['Chemical', 'Disease', 'Gene'], - ) - - assert expand_query_result.get('nodes', None) is not None - assert expand_query_result.get('nodes', None) is not None - - assert expand_query_result['nodes'] == [] - assert expand_query_result['edges'] == [] +from neo4japp.utils.string import camel_to_snake_dict def test_get_reference_table_data( - visualizer_service, + arango_client, gas_gangrene_treatment_cluster_node_edge_pairs, gas_gangrene_with_associations_and_references, ): - get_reference_table_data_result = visualizer_service.get_reference_table_data( - gas_gangrene_treatment_cluster_node_edge_pairs, + get_reference_table_data_result = get_reference_table_data( + arango_client=arango_client, + node_edge_pairs=[ + camel_to_snake_dict(pair.to_dict()) + for pair in gas_gangrene_treatment_cluster_node_edge_pairs + ], + description='treatment/therapy (including investigatory)', + direction=Direction.TO.value, ) assert get_reference_table_data_result.reference_table_rows is not None @@ -40,11 +34,12 @@ def test_get_reference_table_data( def test_get_snippets_for_edge( - visualizer_service, + arango_client, gas_gangrene_treatement_edge_data, gas_gangrene_with_associations_and_references, ): - get_edge_data_result = visualizer_service.get_snippets_for_edge( + get_edge_data_result = get_snippets_for_edge( + arango_client=arango_client, edge=gas_gangrene_treatement_edge_data, page=1, limit=25, @@ -80,11 +75,12 @@ def test_get_snippets_for_edge( def test_get_snippets_for_edge_low_limit( - visualizer_service, + arango_client, gas_gangrene_treatement_edge_data, gas_gangrene_with_associations_and_references, ): - get_edge_data_result = visualizer_service.get_snippets_for_edge( + get_edge_data_result = get_snippets_for_edge( + arango_client=arango_client, edge=gas_gangrene_treatement_edge_data, page=1, limit=1, @@ -105,11 +101,12 @@ def test_get_snippets_for_edge_low_limit( def test_get_snippets_for_edge_orders_by_pub_year( - visualizer_service, + arango_client, gas_gangrene_alleviates_edge_data, gas_gangrene_with_associations_and_references, ): - get_edge_data_result = visualizer_service.get_snippets_for_edge( + get_edge_data_result = get_snippets_for_edge( + arango_client=arango_client, edge=gas_gangrene_alleviates_edge_data, page=1, limit=25, @@ -129,11 +126,12 @@ def test_get_snippets_for_edge_orders_by_pub_year( def test_get_snippets_for_cluster( - visualizer_service, + arango_client, gas_gangrene_treatement_duplicate_edge_data, gas_gangrene_with_associations_and_references, ): - get_cluster_data_result = visualizer_service.get_snippets_for_cluster( + get_cluster_data_result = get_snippets_for_cluster( + arango_client=arango_client, edges=gas_gangrene_treatement_duplicate_edge_data, page=1, limit=25, @@ -173,11 +171,12 @@ def test_get_snippets_for_cluster( def test_get_snippets_for_cluster_low_limit( - visualizer_service, + arango_client, gas_gangrene_treatement_duplicate_edge_data, gas_gangrene_with_associations_and_references, ): - get_cluster_data_result = visualizer_service.get_snippets_for_cluster( + get_cluster_data_result = get_snippets_for_cluster( + arango_client=arango_client, edges=gas_gangrene_treatement_duplicate_edge_data, page=1, limit=1, @@ -202,11 +201,12 @@ def test_get_snippets_for_cluster_low_limit( def test_get_snippets_for_cluster_orders_by_pub_year( - visualizer_service, + arango_client, gas_gangrene_alleviates_duplicate_edge_data, gas_gangrene_with_associations_and_references, ): - get_cluster_data_result = visualizer_service.get_snippets_for_cluster( + get_cluster_data_result = get_snippets_for_cluster( + arango_client=arango_client, edges=gas_gangrene_alleviates_duplicate_edge_data, page=1, limit=25, diff --git a/appserver/tests/unit/util_test.py b/appserver/tests/unit/util_test.py index 8bda83adf8..7b4f063de6 100644 --- a/appserver/tests/unit/util_test.py +++ b/appserver/tests/unit/util_test.py @@ -3,7 +3,7 @@ from decimal import Decimal from enum import Enum -from neo4japp.utils import ( +from neo4japp.utils.string import ( camel_to_snake, camel_to_snake_dict, encode_to_str, diff --git a/cache-invalidator/Dockerfile b/cache-invalidator/Dockerfile index b94d985e1b..7a94eac270 100644 --- a/cache-invalidator/Dockerfile +++ b/cache-invalidator/Dockerfile @@ -1,23 +1,27 @@ FROM python:3.10-slim as base LABEL app=kg-prototypes +# Install dependencies +RUN apt-get update && apt-get install -y curl && apt-get clean +RUN pip install pipenv + ENV APP_USER lifelike ENV APP_HOME /home/$APP_USER ENV UID 1000 ENV GID 1000 +# User and group creation RUN groupadd -g $GID $APP_USER && \ useradd -u $UID -g $GID -G sudo --create-home --home-dir $APP_HOME --shell /bin/bash $APP_USER WORKDIR $APP_HOME -RUN pip install pipenv - +# Copy Pipfiles and install dependencies FIRST to better apply Docker layer cache COPY --chown=1000:1000 Pipfile . COPY --chown=1000:1000 Pipfile.lock . - RUN pipenv install --deploy --dev --system +# ...then copy everything else COPY --chown=1000:1000 . . # Don't lose stdin, stdout and stderr output due to buffering @@ -26,4 +30,4 @@ ENV PYTHONPATH $APP_HOME USER $APP_USER -CMD ["python", "main.py"] +CMD [ "bin/startup.sh" ] diff --git a/cache-invalidator/Pipfile b/cache-invalidator/Pipfile index ce2e9ae240..36401abcda 100644 --- a/cache-invalidator/Pipfile +++ b/cache-invalidator/Pipfile @@ -9,7 +9,7 @@ pycodestyle = "==2.7.0" [packages] redis = "==3.5.2" -neo4j = "==4.2.1" +python-arango = "==7.5.2" [requires] python_version = "3.11" diff --git a/cache-invalidator/Pipfile.lock b/cache-invalidator/Pipfile.lock index 195581e77b..e95b37a95e 100644 --- a/cache-invalidator/Pipfile.lock +++ b/cache-invalidator/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "a4531eea4788fac2ba636e22b252325438d5839787c999c478f13574694e6d09" + "sha256": "994e50c08cfebfc1cb190a9e6a6cc425ee8f061add7ca2e837f54c6e0e47dd9d" }, "pipfile-spec": 6, "requires": { @@ -16,6 +16,30 @@ ] }, "default": { + "certifi": { + "hashes": [ + "sha256:35824b4c3a97115964b408844d64aa14db1cc518f6562e8d7261699d1350a9e3", + "sha256:4ad3232f5e926d6718ec31cfc1fcadfde020920e278684144551c91769c7bc18" + ], + "markers": "python_version >= '3.6'", + "version": "==2022.12.7" + }, + "charset-normalizer": { + "hashes": [ + "sha256:5a3d016c7c547f69d6f81fb0db9449ce888b418b5b9952cc5e6e66843e9dd845", + "sha256:83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f" + ], + "markers": "python_version >= '3.6'", + "version": "==2.1.1" + }, + "idna": { + "hashes": [ + "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4", + "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2" + ], + "markers": "python_version >= '3.5'", + "version": "==3.4" + }, "neo4j": { "hashes": [ "sha256:b6c49fbd60426e268ed4afbd414766444fe70aee1ac0376a0c871d75526b8251" @@ -23,6 +47,22 @@ "index": "pypi", "version": "==4.2.1" }, + "pyjwt": { + "hashes": [ + "sha256:69285c7e31fc44f68a1feb309e948e0df53259d579295e6cfe2b1792329f05fd", + "sha256:d83c3d892a77bbb74d3e1a2cfa90afaadb60945205d1095d9221f04466f64c14" + ], + "markers": "python_version >= '3.7'", + "version": "==2.6.0" + }, + "python-arango": { + "hashes": [ + "sha256:4554b7349348a05000128e42c77c4fe6a11461669463f3cd4fbf7a0ec0bc36d9", + "sha256:bb7cdd55776f5cf613e4bb9f0f0aba70b60408b964ec7c13b37f69b215acbbe8" + ], + "index": "pypi", + "version": "==7.5.2" + }, "pytz": { "hashes": [ "sha256:1e760e2fe6a8163bc0b3d9a19c4f84342afa0a2affebfaa84b01b978a02ecaa7", @@ -37,6 +77,38 @@ ], "index": "pypi", "version": "==3.5.2" + }, + "requests": { + "hashes": [ + "sha256:7c5599b102feddaa661c826c56ab4fee28bfd17f5abca1ebbe3e7f19d7c97983", + "sha256:8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349" + ], + "markers": "python_version >= '3.7' and python_version < '4'", + "version": "==2.28.1" + }, + "requests-toolbelt": { + "hashes": [ + "sha256:18565aa58116d9951ac39baa288d3adb5b3ff975c4f25eee78555d89e8f247f7", + "sha256:62e09f7ff5ccbda92772a29f394a49c3ad6cb181d568b1337626b2abb628a63d" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==0.10.1" + }, + "setuptools": { + "hashes": [ + "sha256:57f6f22bde4e042978bcd50176fdb381d7c21a9efa4041202288d3737a0c6a54", + "sha256:a7620757bf984b58deaf32fc8a4577a9bbc0850cf92c20e1ce41c38c19e5fb75" + ], + "markers": "python_version >= '3.7'", + "version": "==65.6.3" + }, + "urllib3": { + "hashes": [ + "sha256:47cc05d99aaa09c9e72ed5809b60e7ba354e64b59c9c173ac3018642d8bb41fc", + "sha256:c083dd0dce68dbfbe1129d5271cb90f9447dea7d52097c6e0126120c521ddea8" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5'", + "version": "==1.26.13" } }, "develop": { diff --git a/cache-invalidator/bin/startup.sh b/cache-invalidator/bin/startup.sh new file mode 100755 index 0000000000..fdddf3f42c --- /dev/null +++ b/cache-invalidator/bin/startup.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +set -o errexit # exit on command failure; use || true to allow for exception +set -o nounset # exit when script tries to use undeclared variables + +echo "### Starting up cache-invalidator ###" +__dir__="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +# wait for arango +timeout 300 ${__dir__}/wait-for-arango.sh + +echo "### All DBs ready, starting statistics calculation ###" + +python ${__dir__}/../main.py diff --git a/cache-invalidator/bin/wait-for-arango.sh b/cache-invalidator/bin/wait-for-arango.sh new file mode 100755 index 0000000000..431c951cfe --- /dev/null +++ b/cache-invalidator/bin/wait-for-arango.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +echo "Waiting for Arango" + +ARANGO_STATUS="000" + +until [ "$ARANGO_STATUS" = "200" ] +do + ARANGO_STATUS=`curl -s -o /dev/null -I -w "%{http_code}" --basic --user "${ARANGO_USERNAME}:${ARANGO_PASSWORD}" -X GET ${ARANGO_HOST}/_api/endpoint` + echo "Status of Arango: $ARANGO_STATUS" + sleep 2 +done + +echo "Arango started" diff --git a/cache-invalidator/main.py b/cache-invalidator/main.py index 5b9e17e911..f3f8c5a239 100644 --- a/cache-invalidator/main.py +++ b/cache-invalidator/main.py @@ -1,23 +1,14 @@ +from arango import ArangoClient +from arango.database import StandardDatabase +from arango.http import DefaultHTTPClient +from collections import defaultdict import json import logging import os import redis import time +from typing import Any, List, Optional -from collections import defaultdict -from neo4j import GraphDatabase, basic_auth - - -logger = logging.getLogger(__name__) -log_level = os.environ.get("LOG_LEVEL") -if log_level: - log_level = getattr(logging, log_level.upper()) -else: - log_level = logging.WARNING - -logger.setLevel(log_level) -print(f"Set log level to {log_level}") -logging.debug("Debug Logs") SUCCESSFUL_SLEEP_TIME = 3600 * 24 # refresh cached data this often ERROR_INITIAL_SLEEP_TIME = 60 # if error occurs, try again sooner @@ -25,133 +16,334 @@ ERROR_MAX_SLEEP_TIME = 3600 * 6 # but not longer than this CACHE_EXPIRATION_TIME = 3600 * 24 * 14 # expire cached data -REDIS_HOST = os.environ.get("REDIS_HOST") -REDIS_PORT = os.environ.get("REDIS_PORT") -REDIS_PASSWORD = os.environ.get("REDIS_PASSWORD") -REDIS_SSL = os.environ.get("REDIS_SSL", "false").lower() -connection_prefix = "rediss" if REDIS_SSL == "true" else "redis" -connection_url = f"{connection_prefix}://:{REDIS_PASSWORD}@{REDIS_HOST}:{REDIS_PORT}/0" +DEFAULT_LOG_LEVEL = logging.DEBUG + +logging.basicConfig() +logger = logging.getLogger('KG-Statistics') +try: + log_level = getattr(logging, os.environ.get('LOG_LEVEL').upper()) +except: + log_level = DEFAULT_LOG_LEVEL +logger.setLevel(log_level) +logger.info(f'Set log level to {log_level}') + + +def _get_redis_connection_url(): + host = os.environ.get('REDIS_HOST') + port = os.environ.get('REDIS_PORT') + password = os.environ.get('REDIS_PASSWORD') + ssl = os.environ.get('REDIS_SSL', 'false').lower() + connection_prefix = 'rediss' if ssl == 'true' else 'redis' + return f'{connection_prefix}://:{password}@{host}:{port}/0' + + +def _cache_data(key, value): + # Establish Redis Connection + redis_server = redis.Redis( + connection_pool=redis.BlockingConnectionPool.from_url( + _get_redis_connection_url() + ) + ) + try: + redis_server.set(key, json.dumps(value)) + redis_server.expire(key, CACHE_EXPIRATION_TIME) + except: + redis_server.connection_pool.disconnect() + raise + else: + redis_server.connection_pool.disconnect() + + +def _create_arango_client(hosts=None) -> ArangoClient: + # Need a custom HTTP client for Arango because the default timeout is only 60s + class CustomHTTPClient(DefaultHTTPClient): + REQUEST_TIMEOUT = 1000 + + hosts = hosts or os.getenv('ARANGO_HOST') + return ArangoClient( + hosts=hosts, + # Without this setting any requests to Arango will fail because we don't have a valid cert + verify_override=False, + http_client=CustomHTTPClient(), + ) + + +def _get_db( + arango_client: ArangoClient, + name: Optional[str] = None, + username: Optional[str] = None, + password: Optional[str] = None, +): + return arango_client.db( + name=name or os.getenv('ARANGO_DB_NAME'), + username=username or os.getenv('ARANGO_USERNAME'), + password=password or os.getenv('ARANGO_PASSWORD'), + ) + + +def _execute_arango_query( + db: StandardDatabase, query: str, batch_size=None, **bind_vars +) -> List[Any]: + cursor = db.aql.execute( + query, ttl=600, max_runtime=600, batch_size=batch_size, bind_vars=bind_vars + ) + return cursor -# Establish Redis Connection -redis_server = redis.Redis( - connection_pool=redis.BlockingConnectionPool.from_url(connection_url) -) -# Establish Neo4j Connection -host = os.getenv("NEO4J_HOST", "0.0.0.0") -scheme = os.getenv("NEO4J_SCHEME", "bolt") -port = os.getenv("NEO4J_PORT", "7687") -url = f"{scheme}://{host}:{port}" -username, password = os.getenv("NEO4J_AUTH", "neo4j/password").split("/") -neo4j_driver = GraphDatabase.driver(url, auth=basic_auth(username, password)) +def _entity_count_in_domain_query(domain: str) -> str: + return f''' + FOR doc IN {domain} + FOR label IN doc.labels + COLLECT entity = label WITH COUNT INTO length + RETURN {{ + 'entity' : entity, + 'count' : length + }} + ''' + + +def _entity_count_in_ncbi_query() -> str: + return ''' + FOR doc IN ncbi + FOR label IN doc.labels + COLLECT entity = label WITH COUNT INTO length + RETURN { + 'entity' : entity, + 'count' : length + } + ''' + + +def _taxonomy_count_query() -> str: + return ''' + RETURN LENGTH( + FOR doc IN taxonomy + FILTER doc.data_source == 'NCBI Taxonomy' + RETURN doc + ) + ''' + + +def _entity_count_in_biocyc_query() -> str: + return ''' + FOR doc IN biocyc + LET filtered_labels = REMOVE_VALUES(doc.labels, @biocyc_sub_domains) + FOR label IN filtered_labels + COLLECT entity = label WITH COUNT INTO length + RETURN { + 'entity' : entity, + 'count' : length + } + ''' + + +def _entity_count_in_biocyc_subdomain_query() -> str: + return ''' + FOR domain IN @biocyc_sub_domains + LET entity_counts_for_domain = ( + FOR doc IN biocyc + FILTER domain IN doc.labels + LET filtered_labels = REMOVE_VALUES(doc.labels, @biocyc_sub_domains) + FOR label IN filtered_labels + COLLECT entity = label WITH COUNT INTO length + RETURN { + 'entity' : entity, + 'count' : length + } + ) + RETURN { + 'domain': domain, + 'entities': entity_counts_for_domain + } + ''' + + +def _cache_kg_statistics(): + logger.info('Getting Kg Statistics') + arango_client = _create_arango_client() + statistics = defaultdict(lambda: defaultdict()) + try: + arango_db = _get_db(arango_client) + logger.info('Kg Statistics Query start...') + other_domains = { + 'literature': 'Literature', + 'go': 'GO', + 'pubmed': 'PubMed', + 'mesh': 'MESH', + 'uniprot': 'UniProt', + 'chebi': 'CHEBI', + 'enzyme': 'Enzyme', + 'regulondb': 'RegulonDB', + 'string': 'String', + 'kegg': 'KEGG', + 'lifelike': 'Lifelike', + } + + biocyc_sub_domains = [ + 'db_HumanCyc', + 'db_PseudomonasCyc', + 'db_YeastCyc', + 'db_BsubCyc', + 'db_EcoCyc', + ] + + logger.info('Getting stats for all domains aside from BioCyc and NCBI...') + for collection_name, display_name in other_domains.items(): + stats = _execute_arango_query( + arango_db, _entity_count_in_domain_query(collection_name) + ) + statistics[display_name] = defaultdict(lambda: defaultdict()) + for result in stats: + statistics[display_name][result.get('entity')] = result.get('count') + + logger.info('Getting stats for NCBI...') + statistics['NCBI'] = defaultdict(lambda: defaultdict()) + ncbi_stats = _execute_arango_query(arango_db, _entity_count_in_ncbi_query()) + for row in ncbi_stats: + statistics['NCBI'][row.get('entity')] = row.get('count') + + taxonomy_count = _execute_arango_query(arango_db, _taxonomy_count_query()) + for count in taxonomy_count: + # This should loop only once, the _execute_arango_query always returns a generator, + # but in this case it returns only one value + statistics['NCBI']['Taxonomy'] = count + + logger.info('Getting stats for all of BioCyc...') + statistics['BioCyc'] = defaultdict(lambda: defaultdict()) + biocyc_stats = _execute_arango_query( + arango_db, + _entity_count_in_biocyc_query(), + biocyc_sub_domains=biocyc_sub_domains, + ) + for entity_row in biocyc_stats: + statistics['BioCyc'][entity_row.get('entity')] = entity_row.get('count') + + logger.info('Getting stats for all BioCyc subdomains...') + entities_count_in_biocyc_subdomains = _execute_arango_query( + arango_db, + _entity_count_in_biocyc_subdomain_query(), + biocyc_sub_domains=biocyc_sub_domains, + ) + for domain_row in entities_count_in_biocyc_subdomains: + domain = domain_row.get('domain').split('_')[1] + statistics[domain] = defaultdict(lambda: defaultdict()) + for entity_row in domain_row.get('entities'): + statistics[domain][entity_row.get('entity')] = entity_row.get('count') + except: + arango_client.close() + raise + else: + arango_client.close() + logger.info('Kg Statistics Query finished with data:') + logger.info(json.dumps(statistics, indent=4)) + _cache_data('kg_statistics', statistics) + + +def _get_organism_genes_go_terms_query() -> str: + return ''' + LET go_links_grouped_by_organism = ( + FOR link IN go_link + FILTER link.tax_id != null + COLLECT organism = link.tax_id INTO links + RETURN { + 'organism': organism, + 'links': links + } + ) + FOR row IN go_links_grouped_by_organism + LET organism_name = FIRST( + FOR doc IN taxonomy + FILTER doc.eid == row.organism + RETURN doc.name + ) + LET gene_names_grouped_by_go_term = ( + FOR go_link IN row.links + COLLECT go = go_link.link._to INTO groups + LET go_doc = DOCUMENT(go) + RETURN { + 'goId': go_doc.eid, + 'goTerm': go_doc.name, + 'goLabel': go_doc.labels, + 'geneNames': DOCUMENT(groups[*].go_link.link._from)[*].name + } + ) + RETURN { + 'organism': { + 'id': row.organism, + 'name': organism_name + }, + 'go_terms': gene_names_grouped_by_go_term + } + ''' + + +def _precalculate_go(): + logger.info('Precalculating GO...') + arango_client = _create_arango_client() + + try: + arango_db = _get_db(arango_client) + results = _execute_arango_query( + arango_db, + query=_get_organism_genes_go_terms_query(), + # Normally would make a global for this but it's very unlikely we'll ever re-use this + # value. + batch_size=5, + ) + + for row in results: + organism = row['organism'] + go_terms = row['go_terms'] + logger.info(f'Caching GO for {organism["name"]} ({organism["id"]})') + _cache_data(f'GO_for_{organism["id"]}', go_terms) + except: + arango_client.close() + raise + arango_client.close() def main(): next_error_sleep_time = ERROR_INITIAL_SLEEP_TIME + kg_statistics_successful = False + precalculate_go_successful = False + time_slept_since_reset = 0 while True: + if time_slept_since_reset >= SUCCESSFUL_SLEEP_TIME: + kg_statistics_successful = False + precalculate_go_successful = False try: - statistics = get_kg_statistics() - cache_data("kg_statistics", statistics) - next_error_sleep_time = ERROR_INITIAL_SLEEP_TIME - logger.debug(f"Going to sleep for {SUCCESSFUL_SLEEP_TIME} seconds...") + if not kg_statistics_successful: + _cache_kg_statistics() + kg_statistics_successful = True except Exception as err: - logger.debug( - f"Error occured, will try again in {next_error_sleep_time} seconds: {err}" - ) - time.sleep(next_error_sleep_time) - next_error_sleep_time = min( - ERROR_MAX_SLEEP_TIME, - next_error_sleep_time * ERROR_SLEEP_TIME_MULTIPLIER, - ) + logger.error(err) + kg_statistics_successful = False finally: try: - precalculateGO() - next_error_sleep_time = ERROR_INITIAL_SLEEP_TIME - logger.debug(f"Going to sleep for {SUCCESSFUL_SLEEP_TIME} seconds...") + if not precalculate_go_successful: + _precalculate_go() + precalculate_go_successful = True except Exception as err: - logger.debug( - f"Error occured, will try again in {next_error_sleep_time} seconds: {err}" - ) - time.sleep(next_error_sleep_time) - next_error_sleep_time = min( - ERROR_MAX_SLEEP_TIME, - next_error_sleep_time * ERROR_SLEEP_TIME_MULTIPLIER, - ) + logger.error(err) + precalculate_go_successful = False else: - time.sleep(SUCCESSFUL_SLEEP_TIME) - - -def get_kg_statistics(): - logger.debug("Getting Kg Statistics") - graph = neo4j_driver.session() - logger.debug("Kg Statistics Query start...") - results = graph.read_transaction(lambda tx: tx.run("call db.labels()").data()) - logger.debug("Kg Statistics Query finished") - domain_labels = [] - entity_labels = [] - for row in results: - label = row["label"] - if label.startswith("db_"): - domain_labels.append(label) - elif label != "Synonym": - entity_labels.append(label) - statistics = defaultdict(lambda: defaultdict()) - for domain in domain_labels: - for entity in entity_labels: - query = f"MATCH (:`{domain}`:`{entity}`) RETURN count(*) as count" - logger.debug(f"NEO4J QUERY: {query}") - result = graph.read_transaction(lambda tx: tx.run(query).data()) - count = result[0]["count"] - if count != 0: - statistics[domain.replace("db_", "", 1)][entity] = count - graph.close() - return statistics - - -def precalculateGO(): - logger.debug("Precalculating GO...") - graph = neo4j_driver.session() - - def fetch_organism_go_query(tx, organism): - logger.debug(f"Precomputing GO for {organism['name']} ({organism['id']})") - return tx.run( - """ - MATCH (g:Gene)-[:GO_LINK {tax_id:$id}]-(go:db_GO) - WITH go, collect(distinct g) as genes - RETURN go.eid as goId, - go.name as goTerm, - [lbl in labels(go) where lbl <> 'db_GO'] as goLabel, - [g in genes |g.name] as geneNames - """, - id=organism["id"], - ).data() - - organisms = graph.read_transaction( - lambda tx: tx.run( - """ - MATCH (t:Taxonomy)-[:HAS_TAXONOMY]-(:Gene)-[:GO_LINK]-(go:db_GO) - with t, count(go) as c - where c > 0 - RETURN t.eid as id, t.name as name - """ - ).data() - ) - - for organism in organisms: - logging.debug(f"Catching data for organism: {organism}") - cache_data( - f"GO_for_{organism['id']}", - graph.read_transaction(fetch_organism_go_query, organism), - ) - graph.close() - - -def cache_data(key, value): - try: - redis_server.set(key, json.dumps(value)) - redis_server.expire(key, CACHE_EXPIRATION_TIME) - finally: - redis_server.connection_pool.disconnect() + if kg_statistics_successful and precalculate_go_successful: + next_error_sleep_time = ERROR_INITIAL_SLEEP_TIME + logger.info( + f'Going to sleep for {SUCCESSFUL_SLEEP_TIME} seconds...' + ) + time.sleep(SUCCESSFUL_SLEEP_TIME) + time_slept_since_reset += SUCCESSFUL_SLEEP_TIME + else: + logger.info( + f'Error occured, will try again in {next_error_sleep_time} seconds' + ) + time.sleep(next_error_sleep_time) + time_slept_since_reset += next_error_sleep_time + next_error_sleep_time = min( + ERROR_MAX_SLEEP_TIME, + next_error_sleep_time * ERROR_SLEEP_TIME_MULTIPLIER, + ) if __name__ == "__main__": diff --git a/client/nginx.conf b/client/nginx.conf index c873e07084..1a9f6579db 100644 --- a/client/nginx.conf +++ b/client/nginx.conf @@ -66,7 +66,7 @@ server { add_header X-Cache-Status "Non-cachable"; } - location ~ ^/api/(visualizer|search/viz-search)(.*)$ { + location ~ ^/api/(visualizer|search/visualizer)(.*)$ { access_log /dev/stdout upstream_logging; proxy_pass ${APPSERVER_UPSTREAM}/$1$2$is_args$args; diff --git a/client/src/app/app-routing.module.ts b/client/src/app/app-routing.module.ts index 19d7c14876..3e43ffe2af 100644 --- a/client/src/app/app-routing.module.ts +++ b/client/src/app/app-routing.module.ts @@ -24,7 +24,6 @@ import { CommunityBrowserComponent } from 'app/file-browser/components/community import { BrowserComponent } from 'app/file-browser/components/browser/browser.component'; import { ContentSearchComponent } from 'app/search/components/content-search.component'; import { ObjectNavigatorComponent } from 'app/file-navigator/components/object-navigator.component'; -import { ShortestPathComponent } from 'app/shortest-path/containers/shortest-path.component'; import { EnrichmentTableViewerComponent } from 'app/enrichment/components/table/enrichment-table-viewer.component'; import { EnrichmentVisualisationViewerComponent } from 'app/enrichment/components/visualisation/enrichment-visualisation-viewer.component'; import { BiocViewComponent } from 'app/bioc-viewer/components/bioc-view.component'; @@ -112,11 +111,6 @@ const routes: Routes = [ fontAwesomeIcon: 'search', }, }, - { - path: 'pathway-browser-prototype', - canActivate: [LifelikeAuthGuard], - component: ShortestPathComponent, - }, { path: 'projects/:project_name/enrichment-table/:file_id', canActivate: [], diff --git a/client/src/app/app.module.ts b/client/src/app/app.module.ts index c4611be1ca..7c932c3527 100644 --- a/client/src/app/app.module.ts +++ b/client/src/app/app.module.ts @@ -22,7 +22,6 @@ import { UnloadConfirmationGuard } from 'app/shared/guards/UnloadConfirmation.gu import { DashboardComponent } from 'app/dashboard.component'; import { AppVersionDialogComponent } from 'app/app-version-dialog.component'; import { FileNavigatorModule } from 'app/file-navigator/file-navigator.module'; -import { ShortestPathModule } from 'app/shortest-path/shortest-path.module'; import { PdfViewerLibModule } from 'app/pdf-viewer/pdf-viewer-lib.module'; import { GlobalErrorHandler } from 'app/global-error-handler'; import { EnrichmentTablesModule } from 'app/enrichment/enrichment-tables.module'; @@ -65,7 +64,6 @@ import { SankeyViewerLibModule } from 'app/sankey/sankey.module'; FileNavigatorModule, BiocViewerLibModule, EnrichmentVisualisationsModule, - ShortestPathModule, EnrichmentTablesModule, PoliciesModule, ReportsModule, diff --git a/client/src/app/enrichment/components/visualisation/group/clustergram/clustergram.component.html b/client/src/app/enrichment/components/visualisation/group/clustergram/clustergram.component.html index 6ed183d1ea..29bb70aa20 100644 --- a/client/src/app/enrichment/components/visualisation/group/clustergram/clustergram.component.html +++ b/client/src/app/enrichment/components/visualisation/group/clustergram/clustergram.component.html @@ -33,7 +33,9 @@ [ngClass]="{ match: value }" [style.backgroundColor]="value && geneColor" > - {{ entry.value.others || '' }} + + {{ entry.value.others || '' }} + others diff --git a/client/src/app/enrichment/models/enrichment-document.ts b/client/src/app/enrichment/models/enrichment-document.ts index 83621050fe..1eb1ce2734 100644 --- a/client/src/app/enrichment/models/enrichment-document.ts +++ b/client/src/app/enrichment/models/enrichment-document.ts @@ -269,64 +269,68 @@ export class EnrichmentDocument extends BaseEnrichmentDocument { ): Observable { return this.worksheetViewerService.matchNCBINodes(importGenes, taxID).pipe( mergeMap((ncbiNodesData: NCBIWrapper[]) => { - const neo4jIds = ncbiNodesData.map((wrapper) => wrapper.geneNeo4jId); - return this.worksheetViewerService.getNCBIEnrichmentDomains(neo4jIds, taxID, domains).pipe( + const arangoIds = ncbiNodesData.map((wrapper) => wrapper.geneArangoId); + return this.worksheetViewerService.getNCBIEnrichmentDomains(arangoIds, taxID, domains).pipe( map((domainResults: EnrichmentWrapper): EnrichmentResult => { // a gene can point to 2 different synonyms // and a synonym can point to 2 different genes - const neo4jIdSynonymMap: Map> = new Map(); - const neo4jIdNodeMap: Map> = new Map(); - const neo4jIdLinkMap: Map> = new Map(); - const geneSynonymNeo4jIdMap: Map> = new Map(); + const arangoIdSynonymMap: Map> = new Map(); + const arangoIdNodeMap: Map> = new Map(); + const arangoIdLinkMap: Map> = new Map(); + const geneSynonymArangoIdMap: Map> = new Map(); const geneMap: Set = new Set(); const genesList: EnrichedGene[] = []; const synonymsSet: Set = new Set(); // list of tuples - const synonymNeo4jIds: [number, number][] = []; + const synonymArangoIds: [string, string][] = []; ncbiNodesData.forEach((wrapper) => { - geneSynonymNeo4jIdMap.has(wrapper.synonymNeo4jId) - ? geneSynonymNeo4jIdMap - .get(wrapper.synonymNeo4jId) - .set(wrapper.geneNeo4jId, wrapper.geneNeo4jId) - : geneSynonymNeo4jIdMap.set( - wrapper.synonymNeo4jId, - new Map().set(wrapper.geneNeo4jId, wrapper.geneNeo4jId) + geneSynonymArangoIdMap.has(wrapper.synonymArangoId) + ? geneSynonymArangoIdMap + .get(wrapper.synonymArangoId) + .set(wrapper.geneArangoId, wrapper.geneArangoId) + : geneSynonymArangoIdMap.set( + wrapper.synonymArangoId, + new Map().set(wrapper.geneArangoId, wrapper.geneArangoId) ); - neo4jIdSynonymMap.has(wrapper.synonymNeo4jId) - ? neo4jIdSynonymMap - .get(wrapper.synonymNeo4jId) - .set(wrapper.geneNeo4jId, wrapper.synonym) - : neo4jIdSynonymMap.set( - wrapper.synonymNeo4jId, - new Map().set(wrapper.geneNeo4jId, wrapper.synonym) + arangoIdSynonymMap.has(wrapper.synonymArangoId) + ? arangoIdSynonymMap + .get(wrapper.synonymArangoId) + .set(wrapper.geneArangoId, wrapper.synonym) + : arangoIdSynonymMap.set( + wrapper.synonymArangoId, + new Map().set(wrapper.geneArangoId, wrapper.synonym) ); - neo4jIdNodeMap.has(wrapper.synonymNeo4jId) - ? neo4jIdNodeMap.get(wrapper.synonymNeo4jId).set(wrapper.geneNeo4jId, wrapper.gene) - : neo4jIdNodeMap.set( - wrapper.synonymNeo4jId, - new Map().set(wrapper.geneNeo4jId, wrapper.gene) + arangoIdNodeMap.has(wrapper.synonymArangoId) + ? arangoIdNodeMap + .get(wrapper.synonymArangoId) + .set(wrapper.geneArangoId, wrapper.gene) + : arangoIdNodeMap.set( + wrapper.synonymArangoId, + new Map().set(wrapper.geneArangoId, wrapper.gene) ); - neo4jIdLinkMap.has(wrapper.synonymNeo4jId) - ? neo4jIdLinkMap.get(wrapper.synonymNeo4jId).set(wrapper.geneNeo4jId, wrapper.link) - : neo4jIdLinkMap.set( - wrapper.synonymNeo4jId, - new Map().set(wrapper.geneNeo4jId, wrapper.link) + arangoIdLinkMap.has(wrapper.synonymArangoId) + ? arangoIdLinkMap + .get(wrapper.synonymArangoId) + .set(wrapper.geneArangoId, wrapper.link) + : arangoIdLinkMap.set( + wrapper.synonymArangoId, + new Map().set(wrapper.geneArangoId, wrapper.link) ); synonymsSet.add(wrapper.synonym); - synonymNeo4jIds.push([wrapper.synonymNeo4jId, wrapper.geneNeo4jId]); + synonymArangoIds.push([wrapper.synonymArangoId, wrapper.geneArangoId]); }); - for (const [synId, geneId] of synonymNeo4jIds) { - const synonym = neo4jIdSynonymMap.get(synId).get(geneId); - const node = neo4jIdNodeMap.get(synId).get(geneId); - const link = neo4jIdLinkMap.get(synId).get(geneId); + for (const [synId, geneId] of synonymArangoIds) { + const synonym = arangoIdSynonymMap.get(synId).get(geneId); + const node = arangoIdNodeMap.get(synId).get(geneId); + const link = arangoIdLinkMap.get(synId).get(geneId); const domainWrapper = - domainResults[geneSynonymNeo4jIdMap.get(synId).get(geneId)] || null; + domainResults[geneSynonymArangoIdMap.get(synId).get(geneId)] || null; if (domainWrapper !== null) { geneMap.add(synonym); diff --git a/client/src/app/enrichment/services/enrichment-table.service.ts b/client/src/app/enrichment/services/enrichment-table.service.ts index aac55db1f1..d7f472ce38 100644 --- a/client/src/app/enrichment/services/enrichment-table.service.ts +++ b/client/src/app/enrichment/services/enrichment-table.service.ts @@ -32,18 +32,18 @@ export class EnrichmentTableService { /** * Match enrichment domains to given node ids. - * @param nodeIds list of node ids to match to enrichment domains + * @param docIds list of document ids to match to enrichment domains * @param taxID tax id of organism */ getNCBIEnrichmentDomains( - nodeIds, + docIds: string[], taxID: string, domains: string[] ): Observable { return this.http .post<{ result: EnrichmentWrapper }>( - `/api/knowledge-graph/get-ncbi-nodes/enrichment-domains`, - { nodeIds, taxID, domains } + `/api/enrichment-table/get-ncbi-nodes/enrichment-domains`, + { docIds, taxID, domains } ) .pipe(map((resp) => resp.result)); } @@ -89,8 +89,8 @@ export interface NCBINode { } export interface NCBIWrapper { - geneNeo4jId: number; - synonymNeo4jId: number; + geneArangoId: string; + synonymArangoId: string; gene: NCBINode; link: string; synonym: string; @@ -154,7 +154,7 @@ export interface DomainWrapper { string: StringWrapper | null; uniprot: UniprotWrapper | null; kegg: KeggWrapper | null; - node_id: number; + doc_id: number; } export interface EnrichmentWrapper { diff --git a/client/src/app/interfaces/neo4j.interface.ts b/client/src/app/interfaces/neo4j.interface.ts index a1e74a742e..ef6c0e5085 100644 --- a/client/src/app/interfaces/neo4j.interface.ts +++ b/client/src/app/interfaces/neo4j.interface.ts @@ -1,3 +1,4 @@ +import { IdType } from 'vis-network'; import { ColorObject } from 'vis-network/dist/types/network/gephiParser'; export interface NodeLegend { @@ -10,7 +11,7 @@ export interface NodeLegend { export type DefaultNodeData = Record & { eid: any }; /** Node representation from the backend */ export interface GraphNode { - id: number; + id: IdType; label: string; data: Data; subLabels: Array; @@ -21,11 +22,11 @@ export interface GraphNode { /** Edge represenattion from the backend */ export interface GraphRelationship> { - id: number; + id: IdType; label: string; data: Data; - to: number; - from: number; + to: IdType; + from: IdType; toLabel: string; fromLabel: string; } @@ -39,8 +40,8 @@ export interface VisNode extends GraphNode { } export interface DuplicateVisNode extends VisNode { - id: any; - duplicateOf: number; + id: IdType; + duplicateOf: IdType; } /** VisJS Edge Representations for Client */ @@ -52,10 +53,10 @@ export interface VisEdge> extends GraphRelationship> extends VisEdge { - id: any; - duplicateOf: number | null; - originalFrom: number | null; - originalTo: number | null; + id: IdType; + duplicateOf: IdType | null; + originalFrom: IdType | null; + originalTo: IdType | null; } export interface Neo4jResults> { @@ -101,7 +102,7 @@ export interface FTSResult> { } export interface SearchRecord { - nodeId: number; + nodeId: IdType; label: string; subLabels: Array; data: string; diff --git a/client/src/app/interfaces/visualization.interface.ts b/client/src/app/interfaces/visualization.interface.ts index ea4ca20961..0acec7ceba 100644 --- a/client/src/app/interfaces/visualization.interface.ts +++ b/client/src/app/interfaces/visualization.interface.ts @@ -22,7 +22,7 @@ export enum AssociatedType { } export interface AssociatedTypeEntry { - id: number; + id: IdType; name: string; count: number; percentage: number; @@ -30,13 +30,13 @@ export interface AssociatedTypeEntry { export interface NodeAssociatedType { name: string; - nodeId: number; + nodeId: IdType; snippetCount: number; } export interface ClusterData { referenceTableRows: ReferenceTableRow[]; - relationship: string; + relationship: IdType; direction: Direction; } @@ -46,29 +46,29 @@ export enum Direction { } export interface DuplicateEdgeConnectionData { - from: number; - to: number; - originalFrom: number; - originalTo: number; + from: IdType; + to: IdType; + originalFrom: IdType; + originalTo: IdType; fromLabel: string; toLabel: string; label: string; } export interface NodePair { - // Note that it's inaccurate to use "from" and "to" terminology here, since the nodes *may* have bidirectional relationships. - node1Id: number; - node2Id: number; + // Note that it's inaccurate to use 'from' and 'to' terminology here, since the nodes *may* have bidirectional relationships. + node1Id: IdType; + node2Id: IdType; } -export interface DuplicateNodeEdgePair { - node: DuplicateVisNode; - edge: DuplicateVisEdge; +export interface DuplicateNodeEdgePair { + node: DuplicateVisNode; + edge: DuplicateVisEdge; } export interface EdgeConnectionData { - from: number; - to: number; + from: IdType; + to: IdType; fromLabel: string; toLabel: string; label: string; @@ -89,25 +89,25 @@ export interface Reference entry2Text: string; entry1Type: string; entry2Type: string; - id: string; + id: IdType; sentence: string; }> {} export interface ReferenceTablePair { node: { - id: string; + id: IdType; displayName: string; label: string; }; edge: { - originalFrom: number; - originalTo: number; + originalFrom: IdType; + originalTo: IdType; label: string; }; } export interface ReferenceTableRow { - nodeId: string; + nodeId: IdType; nodeDisplayName: string; nodeLabel: string; snippetCount: number; @@ -173,7 +173,7 @@ export interface SidenavSnippetData { // Begin Request Interfaces export interface ExpandNodeRequest { - nodeId: number; + nodeId: IdType; filterLabels: string[]; } @@ -203,23 +203,23 @@ export interface NewNodePairSnippetsPageRequest { export interface ReferenceTableDataRequest { nodeEdgePairs: ReferenceTablePair[]; + direction?: Direction; + description?: string; +} + +export interface BulkReferenceTableDataRequest { + associations: ReferenceTableDataRequest[]; } export interface AssociatedTypeSnippetCountRequest { - source_node: number; - associated_nodes: number[]; + source_node: IdType; + associated_nodes: IdType[]; } // End Request Interfaces // Begin Response Interfaces -export interface ExpandNodeResult { - expandedNode: number; - nodes: VisNode[]; - edges: VisEdge[]; -} - export interface GetEdgeSnippetsResult { queryData: EdgeConnectionData; snippetData: GetSnippetsResult; @@ -240,13 +240,19 @@ export interface GetNodePairSnippetsResult { export interface GetReferenceTableDataResult { referenceTableRows: ReferenceTableRow[]; + duplicateNodeEdgePairs: DuplicateNodeEdgePair[]; direction: Direction; + description: string; +} + +export interface GetBulkReferenceTableDataResult { + referenceTables: GetReferenceTableDataResult[]; } export interface GetSnippetsResult { snippets: AssociationSnippet[]; - fromNodeId: number; - toNodeId: number; + fromNodeId: IdType; + toNodeId: IdType; association: string; } diff --git a/client/src/app/search/components/search-record-node.component.html b/client/src/app/search/components/search-record-node.component.html index f33c2bfea4..330a837bcc 100644 --- a/client/src/app/search/components/search-record-node.component.html +++ b/client/src/app/search/components/search-record-node.component.html @@ -4,7 +4,7 @@
{{ node.node.displayName }} @@ -34,7 +34,7 @@
{{ domain }} - {{ domain.split('_')[1] }} + {{ domain }}
diff --git a/client/src/app/search/components/search-record-node.component.ts b/client/src/app/search/components/search-record-node.component.ts index caa57ce1ab..9681c30f28 100644 --- a/client/src/app/search/components/search-record-node.component.ts +++ b/client/src/app/search/components/search-record-node.component.ts @@ -1,5 +1,7 @@ import { Component, Input } from '@angular/core'; +import { isEmpty } from 'lodash-es'; + import { UniversalGraphNode } from 'app/drawing-tool/services/interfaces'; import { FTSQueryRecord } from 'app/interfaces'; import { DBHostname } from 'app/shared/constants'; @@ -28,8 +30,10 @@ export class SearchRecordNodeComponent { @Input() set node(value: FTSQueryRecord) { this.currentNode = value; - this.normalizedNodeLabel = value.node.label.toLowerCase(); - this.nodeURL = stringToHex(value.node.id.toString()); + if (!isEmpty(value.node)) { + this.normalizedNodeLabel = value.node.label.toLowerCase(); + this.nodeURL = stringToHex(value.node.id.toString()); + } } get node(): FTSQueryRecord { diff --git a/client/src/app/search/components/search-record-relationships.component.html b/client/src/app/search/components/search-record-relationships.component.html index 68c6171007..b5bb971af6 100644 --- a/client/src/app/search/components/search-record-relationships.component.html +++ b/client/src/app/search/components/search-record-relationships.component.html @@ -4,7 +4,7 @@
Snippet: {{ node.node.displayName }} diff --git a/client/src/app/search/services/graph-search.service.ts b/client/src/app/search/services/graph-search.service.ts index c10fc6bc7c..e9164d42e3 100644 --- a/client/src/app/search/services/graph-search.service.ts +++ b/client/src/app/search/services/graph-search.service.ts @@ -20,7 +20,7 @@ export class GraphSearchService { entities: string[] ) { return this.http - .post<{ result: FTSResult }>(`${this.searchApi}/viz-search`, { + .post<{ result: FTSResult }>(`${this.searchApi}/visualizer`, { query, organism, page, diff --git a/client/src/app/search/utils/records.ts b/client/src/app/search/utils/records.ts index 28bfd9846e..de69b35d28 100644 --- a/client/src/app/search/utils/records.ts +++ b/client/src/app/search/utils/records.ts @@ -10,7 +10,7 @@ const DOMAINS_URL = { }; export function getLink(data: FTSQueryRecord) { - const domain = data.node.domainLabels[0].split('_')[1]; + const domain = data.node.domainLabels[0]; const type = data.node.label; if (domain === 'NCBI' && type === 'Gene') { return DOMAINS_URL[domain + '_' + type] + data.node.data.eid; diff --git a/client/src/app/shortest-path/components/route-builder.component.html b/client/src/app/shortest-path/components/route-builder.component.html deleted file mode 100644 index 468542279e..0000000000 --- a/client/src/app/shortest-path/components/route-builder.component.html +++ /dev/null @@ -1,56 +0,0 @@ -
- -
-
-
- -
-
- -
-
-
-
-
- - -
-

- Could not load pre-defined shortest path queries! -

-
-
- - -
-
-
-
diff --git a/client/src/app/shortest-path/components/route-builder.component.scss b/client/src/app/shortest-path/components/route-builder.component.scss deleted file mode 100644 index 37dbb3a837..0000000000 --- a/client/src/app/shortest-path/components/route-builder.component.scss +++ /dev/null @@ -1,27 +0,0 @@ -.graph-type-btn-container { - height: 40px; - width: 40px; -} - -.route-builder-container-open { - position: absolute; - width: 400px; - right: 0; - z-index: 2; - transition: right 0.25s; -} - -.route-builder-container-closed { - position: absolute; - width: 400px; - right: -400px; - z-index: 2; - transition: right 0.25s; -} - -.toggle-route-builder-button { - height: 60px; - top: 28px; - right: 100%; - position: absolute; -} diff --git a/client/src/app/shortest-path/components/route-builder.component.spec.ts b/client/src/app/shortest-path/components/route-builder.component.spec.ts deleted file mode 100644 index a4affa36a5..0000000000 --- a/client/src/app/shortest-path/components/route-builder.component.spec.ts +++ /dev/null @@ -1,30 +0,0 @@ -import { ComponentFixture, TestBed } from '@angular/core/testing'; - -import { configureTestSuite } from 'ng-bullet'; - -import { RootStoreModule } from 'app/root-store'; -import { SharedModule } from 'app/shared/shared.module'; - -import { RouteBuilderComponent } from './route-builder.component'; - -describe('RouteBuilderComponent', () => { - let component: RouteBuilderComponent; - let fixture: ComponentFixture; - - configureTestSuite(() => { - TestBed.configureTestingModule({ - imports: [RootStoreModule, SharedModule], - declarations: [RouteBuilderComponent], - }); - }); - - beforeEach(() => { - fixture = TestBed.createComponent(RouteBuilderComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/client/src/app/shortest-path/components/route-builder.component.ts b/client/src/app/shortest-path/components/route-builder.component.ts deleted file mode 100644 index 0d31990a1b..0000000000 --- a/client/src/app/shortest-path/components/route-builder.component.ts +++ /dev/null @@ -1,75 +0,0 @@ -import { Component, EventEmitter, OnDestroy, OnInit, Output } from '@angular/core'; - -import { combineLatest, Subscription } from 'rxjs'; - -import { BackgroundTask } from 'app/shared/rxjs/background-task'; -import { loadingText, mockArrayOf } from 'app/shared/mocks/loading/utils'; - -import { ShortestPathService } from '../services/shortest-path.service'; -import { DisplayType } from './route-display.component'; - -@Component({ - selector: 'app-route-builder', - templateUrl: './route-builder.component.html', - styleUrls: ['./route-builder.component.scss'], -}) -export class RouteBuilderComponent implements OnInit, OnDestroy { - @Output() loadNewQuery: EventEmitter; - @Output() changeDisplayType: EventEmitter; - - loadShortestPathQueries: BackgroundTask<[], any>; - queriesLoadedsub: Subscription; - - routeBuilderContainerClass: string; - - routeBuilderOpen: boolean; - - queries: string[][] = mockArrayOf(() => mockArrayOf(loadingText)); - - constructor(public shortestPathService: ShortestPathService) { - this.queries = []; - - this.routeBuilderContainerClass = 'route-builder-container-open'; - this.routeBuilderOpen = true; - - this.loadNewQuery = new EventEmitter(); - this.changeDisplayType = new EventEmitter(); - - this.loadShortestPathQueries = new BackgroundTask(() => { - return combineLatest(this.shortestPathService.getShortestPathQueryList()); - }); - this.queriesLoadedsub = this.loadShortestPathQueries.results$.subscribe( - ({ result: [shortestPathQueries], value: [] }) => { - this.queries = Object.keys(shortestPathQueries).map((key) => [ - key, - shortestPathQueries[key], - ]); - } - ); - } - - ngOnInit() { - this.loadNewQuery.emit(0); - this.changeDisplayType.emit('NETWORK'); - this.loadShortestPathQueries.update([]); - } - - ngOnDestroy() { - this.queriesLoadedsub.unsubscribe(); - } - - toggleRouteBuilderOpen() { - this.routeBuilderOpen = !this.routeBuilderOpen; - this.routeBuilderContainerClass = this.routeBuilderOpen - ? 'route-builder-container-open' - : 'route-builder-container-closed'; - } - - requestQueryLoadFromParent(event: any) { - this.loadNewQuery.emit(Number.parseInt(event.target.value, 10)); - } - - requestChangeDisplayTypeFromParent(type: string) { - this.changeDisplayType.emit(type); - } -} diff --git a/client/src/app/shortest-path/components/route-display.component.html b/client/src/app/shortest-path/components/route-display.component.html deleted file mode 100644 index f0ba2043ec..0000000000 --- a/client/src/app/shortest-path/components/route-display.component.html +++ /dev/null @@ -1,18 +0,0 @@ -
-
-
- -
-
- -
-
-
diff --git a/client/src/app/shortest-path/components/route-display.component.scss b/client/src/app/shortest-path/components/route-display.component.scss deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/client/src/app/shortest-path/components/route-display.component.spec.ts b/client/src/app/shortest-path/components/route-display.component.spec.ts deleted file mode 100644 index b0d5db5415..0000000000 --- a/client/src/app/shortest-path/components/route-display.component.spec.ts +++ /dev/null @@ -1,33 +0,0 @@ -import { ComponentFixture, TestBed } from '@angular/core/testing'; - -import { configureTestSuite } from 'ng-bullet'; -import { MockComponents } from 'ng-mocks'; - -import { PlotlySankeyDiagramComponent } from 'app/shared/components/plotly-sankey-diagram/plotly-sankey-diagram.component'; -import { VisJsNetworkComponent } from 'app/shared/components/vis-js-network/vis-js-network.component'; - -import { RouteDisplayComponent } from './route-display.component'; - -describe('RouteDisplayComponent', () => { - let component: RouteDisplayComponent; - let fixture: ComponentFixture; - - configureTestSuite(() => { - TestBed.configureTestingModule({ - declarations: [ - RouteDisplayComponent, - MockComponents(PlotlySankeyDiagramComponent, VisJsNetworkComponent), - ], - }); - }); - - beforeEach(() => { - fixture = TestBed.createComponent(RouteDisplayComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/client/src/app/shortest-path/components/route-display.component.ts b/client/src/app/shortest-path/components/route-display.component.ts deleted file mode 100644 index f46884c379..0000000000 --- a/client/src/app/shortest-path/components/route-display.component.ts +++ /dev/null @@ -1,189 +0,0 @@ -import { Component, Input } from '@angular/core'; - -import { isNil } from 'lodash-es'; -import { Options } from 'vis-network'; - -import { GraphData } from 'app/interfaces/vis-js.interface'; - -export enum DisplayType { - NETWORK = 'network', - SANKEY = 'sankey', -} - -@Component({ - selector: 'app-route-display', - templateUrl: './route-display.component.html', - styleUrls: ['./route-display.component.scss'], -}) -export class RouteDisplayComponent { - @Input() set displayType(displayType: DisplayType) { - this.currentDisplay = DisplayType[displayType]; - } - @Input() set graphData(graphData: GraphData) { - // Update vis js data - this.networkData = graphData; - - // Update sankey data - this.generateSankeyData(graphData.nodes, graphData.edges); - - // Update legend - this.setupLegend(graphData.nodes); - } - - currentDisplay: string; - - networkConfig: Options; - networkData: GraphData; - - sankeyConfig: any; - sankeyData: any; - - legend: Map; - - constructor() { - this.initVisJsSettings(); - this.initPlotlySankeySettings(); - this.legend = new Map(); - } - - initVisJsSettings() { - // Init vis js network settings - this.networkConfig = { - interaction: { - hover: true, - multiselect: true, - selectConnectedEdges: false, - }, - physics: { - enabled: true, - solver: 'barnesHut', - }, - edges: { - font: { - size: 12, - }, - length: 250, - widthConstraint: { - maximum: 90, - }, - }, - nodes: { - scaling: { - min: 25, - max: 50, - label: { - enabled: true, - min: 12, - max: 72, - maxVisible: 72, - drawThreshold: 5, - }, - }, - shape: 'box', - widthConstraint: { - maximum: 180, - }, - }, - }; - - this.networkData = { - nodes: [], - edges: [], - }; - } - - generateSankeyData(nodes: any[], edges: any[]) { - const source = []; - const target = []; - const value = []; - const label = []; - const color = []; - - const nodeIdentityMap = new Map(); - nodes.forEach((node, i) => { - nodeIdentityMap.set(node.id, i); - label.push(node.label); - color.push(node.color.border); - }); - - const seenEdges = new Map(); - edges.forEach((edge) => { - const sankeyEdge = [nodeIdentityMap.get(edge.from), nodeIdentityMap.get(edge.to)]; - if (seenEdges.has(sankeyEdge.toString())) { - value[seenEdges.get(sankeyEdge.toString())] += 1; - } else { - source.push(sankeyEdge[0]); - target.push(sankeyEdge[1]); - value.push(1); - seenEdges.set(sankeyEdge.toString(), value.length - 1); - } - }); - - this.sankeyData = { - type: 'sankey', - orientation: 'h', - node: { - arrangement: 'snap', - pad: 15, - thickness: 20, - line: { - color: 'black', - width: 0.5, - }, - label, - color, - }, - link: { - source, - target, - value, - }, - }; - } - - initPlotlySankeySettings() { - // Init plotly sankey settings - this.sankeyData = { - type: 'sankey', - orientation: 'h', - node: { - arrangement: 'snap', - pad: 15, - thickness: 20, - line: { - color: 'black', - width: 0.5, - }, - label: [], - color: [], - }, - - link: { - source: [], - target: [], - value: [], - }, - }; - - this.sankeyConfig = { - font: { - size: 10, - }, - }; - } - - /** - * Given a list of input nodes, generates a Map object representing a node legend. Keys are the label of the nodes, and values are a list - * of colors representing the border and background of the node. - * @param nodes list of node objects - */ - setupLegend(nodes: any) { - nodes.forEach((node) => { - if (!isNil(node.databaseLabel)) { - if (!this.legend.has(node.databaseLabel)) { - this.legend.set(node.databaseLabel, [node.color.border, node.color.background]); - } - } - }); - } -} diff --git a/client/src/app/shortest-path/containers/route-search.component.html b/client/src/app/shortest-path/containers/route-search.component.html deleted file mode 100644 index 542f90ab00..0000000000 --- a/client/src/app/shortest-path/containers/route-search.component.html +++ /dev/null @@ -1 +0,0 @@ -

route-search works!

diff --git a/client/src/app/shortest-path/containers/route-search.component.scss b/client/src/app/shortest-path/containers/route-search.component.scss deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/client/src/app/shortest-path/containers/route-search.component.spec.ts b/client/src/app/shortest-path/containers/route-search.component.spec.ts deleted file mode 100644 index f79732f27d..0000000000 --- a/client/src/app/shortest-path/containers/route-search.component.spec.ts +++ /dev/null @@ -1,29 +0,0 @@ -import { ComponentFixture, TestBed } from '@angular/core/testing'; - -import { configureTestSuite } from 'ng-bullet'; - -import { RootStoreModule } from 'app/root-store'; - -import { RouteSearchComponent } from './route-search.component'; - -describe('RouteSearchComponent', () => { - let component: RouteSearchComponent; - let fixture: ComponentFixture; - - configureTestSuite(() => { - TestBed.configureTestingModule({ - imports: [RootStoreModule], - declarations: [RouteSearchComponent], - }); - }); - - beforeEach(() => { - fixture = TestBed.createComponent(RouteSearchComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/client/src/app/shortest-path/containers/route-search.component.ts b/client/src/app/shortest-path/containers/route-search.component.ts deleted file mode 100644 index 5e6bacec0c..0000000000 --- a/client/src/app/shortest-path/containers/route-search.component.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Component, OnInit } from '@angular/core'; - -@Component({ - selector: 'app-route-search', - templateUrl: './route-search.component.html', - styleUrls: ['./route-search.component.scss'], -}) -export class RouteSearchComponent implements OnInit { - constructor() {} - - ngOnInit() {} -} diff --git a/client/src/app/shortest-path/containers/shortest-path.component.html b/client/src/app/shortest-path/containers/shortest-path.component.html deleted file mode 100644 index 3088da5831..0000000000 --- a/client/src/app/shortest-path/containers/shortest-path.component.html +++ /dev/null @@ -1,23 +0,0 @@ -
- -
- -
- - - -
- -
-
-
diff --git a/client/src/app/shortest-path/containers/shortest-path.component.scss b/client/src/app/shortest-path/containers/shortest-path.component.scss deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/client/src/app/shortest-path/containers/shortest-path.component.spec.ts b/client/src/app/shortest-path/containers/shortest-path.component.spec.ts deleted file mode 100644 index f2d9e9ed51..0000000000 --- a/client/src/app/shortest-path/containers/shortest-path.component.spec.ts +++ /dev/null @@ -1,36 +0,0 @@ -import { ComponentFixture, TestBed } from '@angular/core/testing'; - -import { configureTestSuite } from 'ng-bullet'; -import { MockComponents } from 'ng-mocks'; - -import { RootStoreModule } from 'app/root-store'; -import { SharedModule } from 'app/shared/shared.module'; - -import { RouteBuilderComponent } from '../components/route-builder.component'; -import { RouteDisplayComponent } from '../components/route-display.component'; -import { ShortestPathComponent } from './shortest-path.component'; - -describe('ShortestPathComponent', () => { - let component: ShortestPathComponent; - let fixture: ComponentFixture; - - configureTestSuite(() => { - TestBed.configureTestingModule({ - imports: [RootStoreModule, SharedModule], - declarations: [ - ShortestPathComponent, - MockComponents(RouteBuilderComponent, RouteDisplayComponent), - ], - }); - }); - - beforeEach(() => { - fixture = TestBed.createComponent(ShortestPathComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/client/src/app/shortest-path/containers/shortest-path.component.ts b/client/src/app/shortest-path/containers/shortest-path.component.ts deleted file mode 100644 index 8e0a40ada3..0000000000 --- a/client/src/app/shortest-path/containers/shortest-path.component.ts +++ /dev/null @@ -1,50 +0,0 @@ -import { Component, OnDestroy } from '@angular/core'; - -import { combineLatest, Subscription } from 'rxjs'; - -import { GraphData } from 'app/interfaces/vis-js.interface'; -import { BackgroundTask } from 'app/shared/rxjs/background-task'; - -import { ShortestPathService } from '../services/shortest-path.service'; - -@Component({ - selector: 'app-shortest-path', - templateUrl: './shortest-path.component.html', - styleUrls: ['./shortest-path.component.scss'], -}) -export class ShortestPathComponent implements OnDestroy { - loadTask: BackgroundTask<[], any>; - shortestPathLoadedSub: Subscription; - - loadedQuery: number; - displayType: string; - graphData: GraphData; - - constructor(public shortestPathService: ShortestPathService) { - this.loadTask = new BackgroundTask(() => { - return combineLatest(this.shortestPathService.getShortestPathQueryResult(this.loadedQuery)); - }); - this.shortestPathLoadedSub = this.loadTask.results$.subscribe( - ({ result: [shortestPathResult], value: [] }) => { - this.graphData = { - nodes: shortestPathResult.nodes, - edges: shortestPathResult.edges, - }; - } - ); - } - - ngOnDestroy() { - this.shortestPathLoadedSub.unsubscribe(); - } - - changeDisplayType(type: string) { - this.displayType = type; - } - - loadNewQuery(query: number) { - this.graphData = null; - this.loadedQuery = query; - this.loadTask.update([]); - } -} diff --git a/client/src/app/shortest-path/services/shortest-path.service.ts b/client/src/app/shortest-path/services/shortest-path.service.ts deleted file mode 100644 index c4911d24fb..0000000000 --- a/client/src/app/shortest-path/services/shortest-path.service.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { HttpClient } from '@angular/common/http'; -import { Injectable } from '@angular/core'; - -import { Observable } from 'rxjs'; -import { map } from 'rxjs/operators'; - -@Injectable({ - providedIn: 'root', -}) -export class ShortestPathService { - readonly kgAPI = '/api/knowledge-graph'; - - constructor(private http: HttpClient) {} - - getShortestPathQueryResult(queryId: number): Observable { - return this.http - .get<{ result: any }>(`${this.kgAPI}/shortest-path-query/${queryId}`, {}) - .pipe(map((resp: any) => resp.result)); - } - - getShortestPathQueryList(): Observable { - return this.http - .get<{ result: Map }>(`${this.kgAPI}/shortest-path-query-list`, {}) - .pipe(map((resp: any) => resp.result)); - } -} diff --git a/client/src/app/shortest-path/shortest-path.module.ts b/client/src/app/shortest-path/shortest-path.module.ts deleted file mode 100644 index d8cceb48f1..0000000000 --- a/client/src/app/shortest-path/shortest-path.module.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { NgModule } from '@angular/core'; -import { CommonModule } from '@angular/common'; - -import { SharedModule } from 'app/shared/shared.module'; - -import { ShortestPathComponent } from './containers/shortest-path.component'; -import { RouteSearchComponent } from './containers/route-search.component'; -import { RouteBuilderComponent } from './components/route-builder.component'; -import { RouteDisplayComponent } from './components/route-display.component'; - -const components = [ - ShortestPathComponent, - RouteSearchComponent, - RouteBuilderComponent, - RouteDisplayComponent, -]; - -@NgModule({ - declarations: [...components], - imports: [CommonModule, SharedModule], -}) -export class ShortestPathModule {} diff --git a/client/src/app/visualization/components/sidenav-type-view/sidenav-type-view.component.ts b/client/src/app/visualization/components/sidenav-type-view/sidenav-type-view.component.ts index 52106675c1..487a698b70 100644 --- a/client/src/app/visualization/components/sidenav-type-view/sidenav-type-view.component.ts +++ b/client/src/app/visualization/components/sidenav-type-view/sidenav-type-view.component.ts @@ -1,5 +1,7 @@ import { Component, Input } from '@angular/core'; +import { IdType } from 'vis-network'; + import { VisNode } from 'app/interfaces'; import { AssociatedType, @@ -98,7 +100,7 @@ export class SidenavTypeViewComponent { ); } - getSnippets(node1Id: number, node2Id: number, limit: number, page: number) { + getSnippets(node1Id: IdType, node2Id: IdType, limit: number, page: number) { this.visualizationService.getSnippetsForNodePair(node1Id, node2Id, page, limit).subscribe( (result) => { this.queryData = result.queryData; diff --git a/client/src/app/visualization/components/visualization-canvas/visualization-canvas.component.spec.ts b/client/src/app/visualization/components/visualization-canvas/visualization-canvas.component.spec.ts index 0797abfb1d..dec150c61f 100644 --- a/client/src/app/visualization/components/visualization-canvas/visualization-canvas.component.spec.ts +++ b/client/src/app/visualization/components/visualization-canvas/visualization-canvas.component.spec.ts @@ -575,7 +575,7 @@ describe('VisualizationCanvasComponent', () => { await expect(instance.clusters.size).toEqual(2); }); - it('isNotAClusterEdge should detect whether an edge is a cluster edge or not', () => { + it('isNotAClusteredEdge should detect whether an edge is a cluster edge or not', () => { spyOn(visualizationService, 'getReferenceTableData').and.returnValue( of(mockGetReferenceTableDataResultOutgoing) ); @@ -590,7 +590,7 @@ describe('VisualizationCanvasComponent', () => { relationship: 'Mock Edge', direction: Direction.FROM, } as ClusterData); - expect(instance.isNotAClusterEdge(clusterEdge)).toBeFalse(); + expect(instance.isNotAClusteredEdge(clusterEdge)).toBeFalse(); }); it('collapseNeighbors should remove all edges connected to the given node', () => { @@ -628,13 +628,13 @@ describe('VisualizationCanvasComponent', () => { expect(instance.edges.get(103)).toBeTruthy(); }); - it('expandOrCollapseNode should collapse the node if it is expanded', () => { + it('toggleNodeExpandState should collapse the node if it is expanded', () => { const updatedNodeState = { ...instance.nodes.get(1), expanded: true }; instance.nodes.update(updatedNodeState); expect(instance.nodes.get(1).expanded).toBeTrue(); - instance.expandOrCollapseNode(1); + instance.toggleNodeExpandState(1); expect(instance.nodes.get(1)).toBeTruthy(); expect(instance.nodes.get(2)).toBeNull(); @@ -644,7 +644,7 @@ describe('VisualizationCanvasComponent', () => { expect(instance.edges.get(102)).toBeNull(); }); - it('expandOrCollapseNode should destroy any connected clusters of the given node', () => { + it('toggleNodeExpandState should destroy any connected clusters of the given node', () => { spyOn(visualizationService, 'getReferenceTableData').and.returnValue( of(mockGetReferenceTableDataResultOutgoing) ); @@ -654,7 +654,7 @@ describe('VisualizationCanvasComponent', () => { instance.nodes.update(updatedNodeState); instance.groupNeighborsWithRelationship(mockGroupRequestOutgoing); - instance.expandOrCollapseNode(1); + instance.toggleNodeExpandState(1); expect(instance.clusters.size).toEqual(0); @@ -666,16 +666,6 @@ describe('VisualizationCanvasComponent', () => { expect(instance.edges.get(102)).toBeNull(); }); - it('expandOrCollapseNode should request a node expansion from the parent if the node is collapsed', () => { - const expandNodeSpy = spyOn(instance.expandNode, 'emit'); - - // Technically, node 1 is "expanded" in the sense that it has connections, but for the purpose - // of this test we only care if the "expanded" property is set to false on the node - instance.expandOrCollapseNode(1); - - expect(expandNodeSpy).toHaveBeenCalled(); - }); - it('getEdgesBetweenNodes should get all the edges between the two given nodes', () => { const edges = instance.getEdgesBetweenNodes(1, 2); @@ -906,12 +896,12 @@ describe('VisualizationCanvasComponent', () => { }); it('should expand/collapse a node if it is double clicked', () => { - const expandOrCollapseNodeSpy = spyOn(instance, 'expandOrCollapseNode'); + const toggleNodeExpandStateSpy = spyOn(instance, 'toggleNodeExpandState'); spyOn(instance.networkGraph, 'getNodeAt').and.returnValue(1); instance.onDoubleClickCallback(mockCallbackParams); - expect(expandOrCollapseNodeSpy).toHaveBeenCalledWith(1); + expect(toggleNodeExpandStateSpy).toHaveBeenCalledWith(1); }); it('should show tooltip and update selected cluster nodes if an unselected cluster is right-clicked', () => { diff --git a/client/src/app/visualization/components/visualization-canvas/visualization-canvas.component.ts b/client/src/app/visualization/components/visualization-canvas/visualization-canvas.component.ts index 4a4c6c3863..644f02e824 100644 --- a/client/src/app/visualization/components/visualization-canvas/visualization-canvas.component.ts +++ b/client/src/app/visualization/components/visualization-canvas/visualization-canvas.component.ts @@ -1,9 +1,10 @@ import { Component, Input, EventEmitter, OnInit, Output, AfterViewInit } from '@angular/core'; import { isNil } from 'lodash-es'; +import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap'; import { Options } from '@popperjs/core'; -import { Subject, Subscription } from 'rxjs'; -import { skip, first } from 'rxjs/operators'; +import { BehaviorSubject, Subject, Subscription } from 'rxjs'; +import { first } from 'rxjs/operators'; import { DataSet } from 'vis-data'; import { Network, IdType } from 'vis-network'; @@ -16,15 +17,16 @@ import { } from 'app/interfaces/neo4j.interface'; import { AssociatedType, + BulkReferenceTableDataRequest, ClusterData, DuplicateNodeEdgePair, Direction, DuplicateEdgeConnectionData, EdgeConnectionData, - ExpandNodeResult, - ExpandNodeRequest, + GetBulkReferenceTableDataResult, GetClusterSnippetsResult, GetEdgeSnippetsResult, + GetReferenceTableDataResult, GroupRequest, NewClusterSnippetsPageRequest, NewEdgeSnippetsPageRequest, @@ -40,9 +42,12 @@ import { SidenavSnippetData, SidenavTypeEntity, } from 'app/interfaces/visualization.interface'; +import { Progress } from 'app/interfaces/common-dialog.interface'; import { MessageType } from 'app/interfaces/message-dialog.interface'; +import { ProgressDialogComponent } from 'app/shared/components/dialog/progress-dialog.component'; import { SNIPPET_PAGE_LIMIT } from 'app/shared/constants'; import { MessageArguments, MessageDialog } from 'app/shared/services/message-dialog.service'; +import { ProgressDialog } from 'app/shared/services/progress-dialog.service'; import { uuidv4 } from 'app/shared/utils'; import { ContextMenuControlService } from 'app/visualization/services/context-menu-control.service'; import { VisualizationService } from 'app/visualization/services/visualization.service'; @@ -56,8 +61,6 @@ import { VisualizationService } from 'app/visualization/services/visualization.s export class VisualizationCanvasComponent implements OnInit, AfterViewInit { - @Output() expandNode = new EventEmitter(); - @Output() openLoadingClustersDialog = new EventEmitter(); @Output() finishedClustering = new EventEmitter(); @Output() getSnippetsForEdge = new EventEmitter(); @Output() getSnippetsForCluster = new EventEmitter(); @@ -65,89 +68,6 @@ export class VisualizationCanvasComponent @Input() nodes: DataSet; @Input() edges: DataSet; - @Input() set expandNodeResult(result: ExpandNodeResult) { - try { - if (!isNil(result)) { - const edgeLabelsOfExpandedNode = this.getConnectedEdgeLabels(result.expandedNode); - let newClusterCount = 0; - edgeLabelsOfExpandedNode.forEach( - (directionList) => (newClusterCount += directionList.length) - ); - - if (edgeLabelsOfExpandedNode.size === 0) { - this.messageDialog.display({ - title: 'Auto-Cluster Error!', - message: - 'Something strange occurred: attempted to cluster a node with zero relationships!', - type: MessageType.Error, - } as MessageArguments); - return; - } - - // When the last relationship is finished clustering, emit - this.clusteringSubscription = this.clusterCreatedSource - .asObservable() - .pipe(skip(this.openClusteringRequests + newClusterCount - 1), first()) - .subscribe(() => { - this.finishedClustering.emit(true); - }); - - edgeLabelsOfExpandedNode.forEach((directionList, relationship) => { - directionList.forEach((direction) => { - const neighborNodesWithRel = this.getNeighborsWithRelationship( - relationship, - result.expandedNode, - direction - ); - const duplicateNodeEdgePairs = this.createDuplicateNodesAndEdges( - neighborNodesWithRel, - relationship, - result.expandedNode, - direction - ); - - // This is very similar to the implementation of `updateGraphWithDuplicates`, except that here we only delete - // the existing nodes/edges, and don't add the duplicates. We will add the duplicates later, in `createCluster` - const nodesToRemove = []; - const edgesToRemove = []; - - duplicateNodeEdgePairs.forEach((pair) => { - const duplicateNode = pair.node; - const duplicateEdge = pair.edge; - const edges = this.networkGraph.getConnectedEdges(duplicateNode.duplicateOf); - - if (edges.length === 1) { - // If the original node is being clustered on its last unclustered edge, - // remove it entirely from the canvas. - nodesToRemove.push(duplicateNode.duplicateOf); - edgesToRemove.push(duplicateEdge.duplicateOf); - } else if ( - this.networkGraph.getConnectedNodes(duplicateNode.duplicateOf).length === 1 - ) { - // Otherwise, don't remove the original node, and only remove the original edge if the - // candidate node is not connected to any other node. - edgesToRemove.push(duplicateEdge.duplicateOf); - } - }); - - this.edges.remove(edgesToRemove); - this.nodes.remove(nodesToRemove); - - this.createCluster(result.expandedNode, relationship, duplicateNodeEdgePairs); - }); - }); - } - } catch (error) { - this.messageDialog.display({ - title: 'Clustering Error', - message: error, - type: MessageType.Error, - } as MessageArguments); - this.clusteringSubscription.unsubscribe(); - this.openClusteringRequests = 0; - this.finishedClustering.emit(true); - } - } @Input() set getEdgeSnippetsResult(result: GetEdgeSnippetsResult) { if (!isNil(result)) { try { @@ -242,7 +162,7 @@ export class VisualizationCanvasComponent selectedNodeEdgeLabelData: Map; selectedEdges: IdType[]; referenceTableData: DuplicateNodeEdgePair[]; - clusters: Map; + clusters: Map; openClusteringRequests: number; selectedClusterNodeData: VisNode[]; @@ -253,10 +173,15 @@ export class VisualizationCanvasComponent settingsFormValues: SettingsFormValues; + loadingClustersDialogRef: Omit & { + componentInstance: ProgressDialogComponent; + }; + constructor( private contextMenuControlService: ContextMenuControlService, - private messageDialog: MessageDialog, - private visService: VisualizationService + private visService: VisualizationService, + private readonly messageDialog: MessageDialog, + private readonly progressDialog: ProgressDialog ) { this.networkContainerId = uuidv4(); @@ -277,7 +202,7 @@ export class VisualizationCanvasComponent placement: 'right-start', }; - this.clusters = new Map(); + this.clusters = new Map(); this.openClusteringRequests = 0; this.clusterCreatedSource = new Subject(); this.selectedClusterNodeData = []; @@ -342,11 +267,9 @@ export class VisualizationCanvasComponent } updateSelectedEdges() { - this.selectedEdges = this.networkGraph.getSelectedEdges().filter( - // Cluster edges are strings, normal edges are numbers. We do NOT want to include cluster edges - // in our list of selected edges at the moment. - (edgeId) => typeof edgeId === 'number' - ); + this.selectedEdges = this.networkGraph + .getSelectedEdges() + .filter((edgeId) => this.isNotAClusteredEdge(edgeId)); } updateSelectedNodesAndEdges() { @@ -378,7 +301,7 @@ export class VisualizationCanvasComponent // If a previously connected node has no remaining edges (i.e. it is not connected // to any other neighbor), remove it. - const nodesToRemove = connectedNodes.map((connectedNodeId: number) => { + const nodesToRemove = connectedNodes.map((connectedNodeId: IdType) => { if (this.networkGraph.findNode(connectedNodeId).length !== 0) { const connectedEdges = this.networkGraph.getConnectedEdges(connectedNodeId); if (connectedEdges.length === 0) { @@ -389,27 +312,79 @@ export class VisualizationCanvasComponent this.nodes.remove(nodesToRemove); } - expandOrCollapseNode(nodeId: number) { + toggleNodeExpandState(nodeId: IdType) { const nodeRef = this.nodes.get(nodeId); if (nodeRef.expanded) { - // Updates node expand state - const updatedNodeState = { ...nodeRef, expanded: !nodeRef.expanded }; - this.nodes.update(updatedNodeState); - // 'Collapse' all neighbor nodes that do not themselves have neighbors - this.collapseNeighbors(nodeRef); + this.collapseNode(nodeRef); } else { // Need to request new data from the parent when nodes are expanded const filterLabels = Array.from(this.legend.keys()).filter( (key) => this.settingsFormValues[key].value ); - this.expandNode.emit({ - nodeId, - filterLabels, - }); + this.expandNode(nodeId, filterLabels); } } + collapseNode(nodeRef: VisNode) { + // Updates node expand state + const updatedNodeState = { ...nodeRef, expanded: !nodeRef.expanded }; + this.nodes.update(updatedNodeState); + // 'Collapse' all neighbor nodes that do not themselves have neighbors + this.collapseNeighbors(nodeRef); + } + + expandNode(nodeId: IdType, filterLabels: string[]) { + if (filterLabels.length === 0) { + this.openNoResultsFromExpandDialog(); + return; + } + + this.openLoadingClustersDialog(); + + this.visService.expandNode(nodeId, filterLabels).subscribe( + (bulkResult: GetBulkReferenceTableDataResult) => { + // If the expanded node has no connecting relationships, notify the user + if (bulkResult.referenceTables.length === 0) { + this.loadingClustersDialogRef.close(); + this.openNoResultsFromExpandDialog(); + return; + } + + // Set the origin node's expand state to true + let nodeRef = this.nodes.get(nodeId) as VisNode; + nodeRef = { ...nodeRef, expanded: true }; + this.nodes.update(nodeRef); + + bulkResult.referenceTables + // Sorting the tables by length makes creating clusters faster by doing the smallest tables first + .sort((a, b) => a.referenceTableRows.length - b.referenceTableRows.length) + .forEach((table: GetReferenceTableDataResult) => { + const { referenceTableRows, direction, description } = table; + const duplicateNodeEdgePairs = table.duplicateNodeEdgePairs.map((pair) => { + return { + node: this.visService.convertNodeToVisJSFormat(pair.node, this.legend), + edge: this.visService.convertEdgeToVisJSFormat(pair.edge), + } as DuplicateNodeEdgePair; + }); + this.processGetReferenceTableResults( + nodeId, + duplicateNodeEdgePairs, + referenceTableRows, + description, + direction + ); + }); + // Done loading clusters so close the dialog automatically + this.loadingClustersDialogRef.close(); + }, + (error) => { + this.loadingClustersDialogRef.close(); + this.openErrorDialog('Node Expansion Error', error); + } + ); + } + fitToScreen(event: EventEmitter) { this.networkGraph.fit(); } @@ -425,14 +400,18 @@ export class VisualizationCanvasComponent /** * Check that the input is a normal edge and that it isn't currently clustered. - * Normal edges are numbers, cluster edges are strings. `getClusteredEdges` is - * used here to deterimine if the input edge is currently clustered; The - * output of getClusteredEdges is the input edge + any cluster edges it is contained - * in if any. * @param edge the id of the edge to check */ - isNotAClusterEdge(edge: IdType) { - return typeof edge !== 'string' && this.networkGraph.getClusteredEdges(edge).length === 1; + isNotAClusteredEdge(edge: IdType) { + const baseEdges = this.networkGraph.getBaseEdges(edge); + // If 'edge' is a base edge, the value of `getBaseEdges` should be a list with a single value: the edge id itself. If it were a + // cluster, it could still be a list with a single value, but that value would NOT be the cluster edge id, it would be whatever + // base edge was clustered. + const notAClusterEdge = baseEdges.length === 1 && baseEdges.includes(edge); + // Furthermore, we can quickly check that 'edge' is not in a cluster by checking the length of `getClusteredEdges`: if it is more + // than 1, the edge is in at least one cluster. + const notInAClusterEdge = this.networkGraph.getClusteredEdges(edge).length === 1; + return notAClusterEdge && notInAClusterEdge; } /** @@ -450,7 +429,7 @@ export class VisualizationCanvasComponent .filter((edgeId) => { const edge = this.edges.get(edgeId); // First check if this is the correct relationship - if (this.isNotAClusterEdge(edgeId) && edge.label === relationship) { + if (this.isNotAClusteredEdge(edgeId) && edge.label === relationship) { // Then, check that it is in the correct direction if (direction === Direction.FROM && edge.from === node) { return true; @@ -479,7 +458,7 @@ export class VisualizationCanvasComponent this.networkGraph .getConnectedEdges(selectedNode) - .filter((edge) => this.isNotAClusterEdge(edge)) + .filter((edge) => this.isNotAClusteredEdge(edge)) .forEach((edgeId) => { const edge = this.edges.get(edgeId); const { label, from, to } = edge; @@ -524,70 +503,84 @@ export class VisualizationCanvasComponent } createClusterSvg(referenceTableRows: ReferenceTableRow[]) { - const maxSnippetCount = referenceTableRows[0].snippetCount; - const maxRowsToShow = this.settingsFormValues.maxClusterShownRows.value; - const numRowsToShow = - referenceTableRows.length > maxRowsToShow ? maxRowsToShow : referenceTableRows.length; - - const maxNodesCellText = `Showing ${numRowsToShow} of ${referenceTableRows.length} clustered nodes`; - const rowsHTMLString = referenceTableRows - .slice(0, maxRowsToShow) - .map((row, index) => { - const percentOfMax = - row.snippetCount === 0 ? row.snippetCount : (row.snippetCount / maxSnippetCount) * 100; - let rowHTMLString = ` - - ${row.nodeDisplayName} - (${row.snippetCount}) - -
- - `; - if (index === numRowsToShow - 1) { - rowHTMLString += ` - - ${maxNodesCellText} - - `; - } - return rowHTMLString; - }) - .join('\n'); - const ctx = document.getElementsByTagName('canvas')[0].getContext('2d'); - const longestName = referenceTableRows - .slice(0, maxRowsToShow) - .sort( - (a, b) => - ctx.measureText(b.nodeDisplayName).width - ctx.measureText(a.nodeDisplayName).width - )[0].nodeDisplayName; - - // Get width of SVG + let svgHeight; + let svgWidth; + let rowsHTMLString; + const FLUFF_HEIGHT = 15 + 5 + 4; // height of rows + padding height + border height const FLUFF_WIDTH = 21 + 6; // padding + border const WIDTH_MULTIPLIER = 1.5; // multiplier to massage the width to about what we want - const svgWidth = Math.max( - // width of biggest name + max width of counts + max width of bars + constant width - Math.floor( - ctx.measureText(longestName).width * WIDTH_MULTIPLIER + - ctx.measureText(`(${maxSnippetCount})`).width * WIDTH_MULTIPLIER + - 100 + - FLUFF_WIDTH - ), - // OR width of the max-nodes-cell + constant width - Math.floor(ctx.measureText(maxNodesCellText).width * WIDTH_MULTIPLIER + FLUFF_WIDTH) - ); + const ctx = document.getElementsByTagName('canvas')[0].getContext('2d'); - // Get height of SVG - const FLUFF_HEIGHT = 15 + 5 + 4; // height of rows + padding height + border height - // Add a single extra row to accomodate the max-nodes-cell - const numRows = referenceTableRows.slice(0, maxRowsToShow).length + 1; - // constant height * # of rows - const svgHeight = FLUFF_HEIGHT * numRows; - - const svg = ` -
+ + `; + if (index === numRowsToShow - 1) { + rowHTMLString += ` + + ${maxNodesCellText} + + `; + } + return rowHTMLString; + }) + .join('\n'); + const longestName = referenceTableRows + .slice(0, maxRowsToShow) + .sort( + (a, b) => + ctx.measureText(b.nodeDisplayName).width - ctx.measureText(a.nodeDisplayName).width + )[0].nodeDisplayName; + + // Get width of SVG + svgWidth = Math.max( + // width of biggest name + max width of counts + max width of bars + constant width + Math.floor( + ctx.measureText(longestName).width * WIDTH_MULTIPLIER + + ctx.measureText(`(${maxSnippetCount})`).width * WIDTH_MULTIPLIER + + 100 + + FLUFF_WIDTH + ), + // OR width of the max-nodes-cell + constant width + Math.floor(ctx.measureText(maxNodesCellText).width * WIDTH_MULTIPLIER + FLUFF_WIDTH) + ); + + // Get height of SVG + // Add a single extra row to accomodate the max-nodes-cell + const numRows = referenceTableRows.slice(0, maxRowsToShow).length + 1; + // constant height * # of rows + svgHeight = FLUFF_HEIGHT * numRows; + } else { + const cellText = 'Showing 0 of 0 clustered nodes'; + svgWidth = ctx.measureText(cellText).width * WIDTH_MULTIPLIER + FLUFF_WIDTH; + svgHeight = FLUFF_HEIGHT; + rowsHTMLString = ` + + ${cellText} + + `; + } + const svg = ` + - -
- ${rowsHTMLString}
+ +
+ ${rowsHTMLString}
`; @@ -683,7 +676,7 @@ export class VisualizationCanvasComponent createDuplicateEdgeFromOriginal( originalEdge: VisEdge, - clusterOrigin: number, + clusterOrigin: IdType, duplicateNode: DuplicateVisNode ) { const newDuplicateEdgeId = 'duplicateEdge:' + uuidv4(); @@ -782,7 +775,7 @@ export class VisualizationCanvasComponent edges = edges.filter((id) => { const edge = this.edges.get(id); // Make sure the edges we duplicate have the grouped relationship and that they are connected to the cluster origin - if (this.isNotAClusterEdge(id) && edge.label === relationship) { + if (this.isNotAClusteredEdge(id) && edge.label === relationship) { // Then, check that it is in the correct direction if (direction === Direction.FROM && edge.from === clusterOrigin) { return true; @@ -802,7 +795,7 @@ export class VisualizationCanvasComponent const newDuplicateEdge = this.createDuplicateEdgeFromOriginal( this.edges.get(edges[0]), - clusterOrigin as number, + clusterOrigin as IdType, newDuplicateNode ); @@ -862,7 +855,7 @@ export class VisualizationCanvasComponent // Clean up the cluster this.networkGraph.openCluster(clusterNodeId); - this.clusters.delete(clusterNodeId as string); + this.clusters.delete(clusterNodeId as IdType); this.cleanUpDuplicates(nodesInCluster); } @@ -877,20 +870,87 @@ export class VisualizationCanvasComponent // Destroy the cluster this.networkGraph.openCluster(clusterNodeId); - this.clusters.delete(clusterNodeId as string); + this.clusters.delete(clusterNodeId as IdType); this.nodes.remove(nodesInCluster); this.edges.remove(edgesInCluster); } - createCluster( + resetClustersOnRelationshipAndDirection( originNode: IdType, relationship: string, - duplicateNodeEdgePairs: DuplicateNodeEdgePair[] + direction: string ) { - this.openClusteringRequests += 1; + // Remove any existing clusters connected to the origin node on this relationship/direction first. Any + // nodes within should have been included in the duplicateNodeEdgePairs array sent to the appserver. + this.networkGraph.getConnectedNodes(originNode).forEach((nodeId) => { + if (this.networkGraph.isCluster(nodeId)) { + const cluster = this.clusters.get(nodeId); + if (cluster.relationship === relationship && cluster.direction === direction) { + this.destroyCluster(nodeId); + } + } + }); + } + + addClusterToGraph( + svgUrl: string, + duplicateNodeEdgePairs: DuplicateNodeEdgePair[], + referenceTableRows: ReferenceTableRow[], + relationship: string, + direction: Direction + ) { + this.networkGraph.cluster({ + joinCondition: (n) => duplicateNodeEdgePairs.map((pair) => pair.node.id).includes(n.id), + clusterNodeProperties: { + image: svgUrl, + label: null, + shape: 'image', + shapeProperties: { + useImageSize: true, + }, + size: this.config.nodes.size, + // This setting is valid as described under 'clusterNodeProperties' + // here: https://visjs.github.io/vis-network/docs/network/index.html#optionsObject + // @ts-ignore + allowSingleNodeCluster: true, + }, + clusterEdgeProperties: { + label: relationship, + }, + processProperties: (clusterOptions) => { + const newClusterId = `cluster:${uuidv4()}`; + this.clusters.set(newClusterId, { referenceTableRows, relationship, direction }); + return { ...clusterOptions, id: newClusterId }; + }, + }); + } - const referenceTableDataRequest = { + processGetReferenceTableResults( + originNode: IdType, + duplicateNodeEdgePairs: DuplicateNodeEdgePair[], + referenceTableRows: ReferenceTableRow[], + relationship: string, + direction: Direction + ) { + const url = this.createClusterSvg(referenceTableRows); + + this.resetClustersOnRelationshipAndDirection(originNode, relationship, direction); + this.updateGraphWithDuplicates(duplicateNodeEdgePairs); + // TODO: Would be nice to have some indication that the cluster has been selected. + // A bit tricky, since clusters are SVGs, but maybe this can be done. + this.addClusterToGraph( + url, + duplicateNodeEdgePairs, + referenceTableRows, + relationship, + direction + ); + this.updateSelectedNodeEdgeLabelData(originNode); + } + + getReferenceTableDataRequestObject(duplicateNodeEdgePairs: DuplicateNodeEdgePair[]) { + return { nodeEdgePairs: duplicateNodeEdgePairs.map((pair) => { return { node: { @@ -906,57 +966,58 @@ export class VisualizationCanvasComponent } as ReferenceTablePair; }), } as ReferenceTableDataRequest; + } - this.visService.getReferenceTableData(referenceTableDataRequest).subscribe((result) => { - const { referenceTableRows, direction } = result; - const url = this.createClusterSvg(referenceTableRows); - - // Remove any existing clusters connected to the origin node on this relationship/direction first. Any - // nodes within should have been included in the duplicateNodeEdgePairs array sent to the appserver. - this.networkGraph.getConnectedNodes(originNode).forEach((nodeId) => { - if (this.networkGraph.isCluster(nodeId)) { - const cluster = this.clusters.get(nodeId); - if (cluster.relationship === relationship && cluster.direction === direction) { - this.destroyCluster(nodeId); - } - } - }); + createCluster( + originNode: IdType, + relationship: string, + duplicateNodeEdgePairs: DuplicateNodeEdgePair[] + ) { + this.openClusteringRequests += 1; - this.updateGraphWithDuplicates(duplicateNodeEdgePairs); - - // TODO: Would be nice to have some indication that the cluster has been selected. - // A bit tricky, since clusters are SVGs, but maybe this can be done. - this.networkGraph.cluster({ - joinCondition: (n) => duplicateNodeEdgePairs.map((pair) => pair.node.id).includes(n.id), - clusterNodeProperties: { - image: url, - label: null, - shape: 'image', - shapeProperties: { - useImageSize: true, - }, - size: this.config.nodes.size, - // This setting is valid as described under 'clusterNodeProperties' - // here: https://visjs.github.io/vis-network/docs/network/index.html#optionsObject - // @ts-ignore - allowSingleNodeCluster: true, - }, - clusterEdgeProperties: { - label: relationship, - }, - processProperties: (clusterOptions) => { - const newClusterId = `cluster:${uuidv4()}`; - this.clusters.set(newClusterId, { referenceTableRows, relationship, direction }); - return { ...clusterOptions, id: newClusterId }; - }, - }); + const referenceTableDataRequest = + this.getReferenceTableDataRequestObject(duplicateNodeEdgePairs); - this.updateSelectedNodeEdgeLabelData(originNode); + this.visService.getReferenceTableData(referenceTableDataRequest).subscribe((result) => { + const { referenceTableRows, direction } = result; + this.processGetReferenceTableResults( + originNode, + duplicateNodeEdgePairs, + referenceTableRows, + relationship, + direction + ); this.openClusteringRequests -= 1; this.clusterCreatedSource.next(true); }); } + getBulkReferenceTableDataRequestObj(associations: Map) { + return { + associations: Array.from(associations.keys()).map((key) => { + const [description, direction] = key.split('$'); + return { + description, + direction: direction as Direction, + nodeEdgePairs: associations.get(key).map((pair) => { + return { + node: { + id: pair.node.id, + displayName: pair.node.displayName, + label: pair.node.primaryLabel, + }, + edge: { + originalFrom: pair.edge.originalFrom, + originalTo: pair.edge.originalTo, + label: pair.edge.label, + }, + } as ReferenceTablePair; + }), + } as ReferenceTableDataRequest; + }), + } as BulkReferenceTableDataRequest; + } + getDuplicateNodeEdgePairsFromCluster(clusterNodeId: IdType) { const clusteredNodeIds = this.networkGraph.getNodesInCluster(clusterNodeId); const duplicateNodeEdgePairs = []; @@ -976,7 +1037,7 @@ export class VisualizationCanvasComponent /** * Creates a cluster node of all the neighbors connected to the currently selected * node connected by the input relationship. - * @param rel a string representing the relationship the neighbors will be clustered on + * @param groupRequest an object representing the relationship the neighbors will be clustered on */ groupNeighborsWithRelationship(groupRequest: GroupRequest) { const { relationship, node, direction } = groupRequest; @@ -1017,14 +1078,13 @@ export class VisualizationCanvasComponent title: 'Clustering Error!', message: `An error occurred while trying to cluster node with ID ${node} on relationship ` + - `${relationship} in direction "${direction}". `, + `${relationship} in direction '${direction}'. `, type: MessageType.Error, } as MessageArguments); return; } - // Rquest that the parent open the "Loading clusters" dialog - this.openLoadingClustersDialog.emit(true); + this.openLoadingClustersDialog(); // When finished clustering, emit this.clusteringSubscription = this.clusterCreatedSource @@ -1308,7 +1368,7 @@ export class VisualizationCanvasComponent // Check if event is double clicking a node if (hoveredNode) { - this.expandOrCollapseNode(hoveredNode as number); + this.toggleNodeExpandState(hoveredNode as string); } } @@ -1317,7 +1377,7 @@ export class VisualizationCanvasComponent const hoveredEdge = this.networkGraph.getEdgeAt(params.pointer.DOM); if (this.networkGraph.isCluster(hoveredNode)) { - const nodeIdToSnippetCountMap = new Map(); + const nodeIdToSnippetCountMap = new Map(); this.clusters .get(hoveredNode) .referenceTableRows.forEach((nodeRow) => @@ -1377,4 +1437,36 @@ export class VisualizationCanvasComponent } // End Callback Functions + + // Start Dialog Display Functions + + openNoResultsFromExpandDialog() { + this.messageDialog.display({ + title: 'No Relationships', + message: 'Expanded node had no connected relationships.', + type: MessageType.Info, + } as MessageArguments); + } + + openLoadingClustersDialog() { + this.loadingClustersDialogRef = this.progressDialog.display({ + title: `Node Expansion`, + progressObservables: [ + new BehaviorSubject( + new Progress({ + status: 'Loading clusters...', + }) + ), + ], + onCancel: () => {}, + }); + } + + openErrorDialog(title: string, error: string) { + this.messageDialog.display({ + title, + message: error, + type: MessageType.Error, + } as MessageArguments); + } } diff --git a/client/src/app/visualization/containers/visualization/visualization.component.html b/client/src/app/visualization/containers/visualization/visualization.component.html index ede18667f2..da8eeaaf39 100644 --- a/client/src/app/visualization/containers/visualization/visualization.component.html +++ b/client/src/app/visualization/containers/visualization/visualization.component.html @@ -12,15 +12,11 @@ *ngIf="networkGraphData && !hideDisplay" [nodes]="nodes" [edges]="edges" - [expandNodeResult]="expandNodeResult" [getEdgeSnippetsResult]="getEdgeSnippetsResult" [getClusterSnippetsResult]="getClusterSnippetsResult" [getSnippetsError]="getSnippetsError" [legend]="legend" [config]="networkGraphConfig" - (expandNode)="expandNode($event)" - (openLoadingClustersDialog)="openLoadingClustersDialog()" - (finishedClustering)="finishedClustering($event)" (getNodeData)="nodeSelectedCallback()" (getSnippetsForEdge)="getSnippetsForEdge($event)" (getSnippetsForCluster)="getSnippetsForCluster($event)" diff --git a/client/src/app/visualization/containers/visualization/visualization.component.spec.ts b/client/src/app/visualization/containers/visualization/visualization.component.spec.ts index 869699e93f..ed522b6a9c 100644 --- a/client/src/app/visualization/containers/visualization/visualization.component.spec.ts +++ b/client/src/app/visualization/containers/visualization/visualization.component.spec.ts @@ -9,7 +9,6 @@ import { of } from 'rxjs'; import { DataSet } from 'vis-data'; import { - ExpandNodeRequest, GraphNode, GraphRelationship, Neo4jResults, @@ -137,71 +136,54 @@ describe('VisualizationComponent', () => { expect(fixture).toBeTruthy(); }); - it('convertNodeToVisJSFormat should convert a graph node to vis js format', () => { - const convertedMockNode = instance.convertNodeToVisJSFormat(mockGraphNode); - expect(convertedMockNode).toEqual({ - ...mockGraphNode, - expanded: false, - primaryLabel: mockGraphNode.label, - font: { - color: instance.legend.get(mockGraphNode.label)[0], - }, - color: { - background: '#FFFFFF', - border: instance.legend.get(mockGraphNode.label)[1], - hover: { - background: '#FFFFFF', - border: instance.legend.get(mockGraphNode.label)[1], - }, - highlight: { - background: '#FFFFFF', - border: instance.legend.get(mockGraphNode.label)[1], - }, - }, - label: - mockGraphNode.displayName.length > 64 - ? mockGraphNode.displayName.slice(0, 64) + '...' - : mockGraphNode.displayName, - }); - }); - - it('convertEdgeToVisJSFormat should convert an edge node to vis js format', () => { - const convertedMockEdge = instance.convertEdgeToVisJSFormat(mockGraphRelationship); - expect(convertedMockEdge).toEqual({ - ...mockGraphRelationship, - label: mockGraphRelationship.data.description, - arrows: 'to', - color: { - color: '#0c8caa', - }, - }); - }); - - it('convertToVisJSFormat should convert neo4j query results to vis js format', () => { - const convertedMockNode = instance.convertNodeToVisJSFormat(mockGraphNode); - const convertedMockEdge = instance.convertEdgeToVisJSFormat(mockGraphRelationship); - const convertedNeo4jResults = instance.convertToVisJSFormat(mockNeo4jResults); - - expect(convertedNeo4jResults).toEqual({ - nodes: [convertedMockNode], - edges: [convertedMockEdge], - }); - }); - - it('should call expandNode service when child requests a node to be expanded', () => { - const expandNodeSpy = spyOn(instance, 'expandNode'); - const visualizationCanvasComponentMock = fixture.debugElement.query( - By.directive(VisualizationCanvasComponent) - ).componentInstance as VisualizationCanvasComponent; - const mockExpandNodeRequest = { - nodeId: 1, - filterLabels: ['Chemicals', 'Diseases', 'Genes'], - } as ExpandNodeRequest; - - visualizationCanvasComponentMock.expandNode.emit(mockExpandNodeRequest); - - expect(expandNodeSpy).toHaveBeenCalledWith(mockExpandNodeRequest); - }); + // TODO: These should be moved to the visualization service + // it('convertNodeToVisJSFormat should convert a graph node to vis js format', () => { + // const convertedMockNode = instance.convertNodeToVisJSFormat(mockGraphNode); + // expect(convertedMockNode).toEqual({ + // ...mockGraphNode, + // expanded: false, + // primaryLabel: mockGraphNode.label, + // font: { + // color: instance.legend.get(mockGraphNode.label)[0], + // }, + // color: { + // background: '#FFFFFF', + // border: instance.legend.get(mockGraphNode.label)[1], + // hover: { + // background: '#FFFFFF', + // border: instance.legend.get(mockGraphNode.label)[1], + // }, + // highlight: { + // background: '#FFFFFF', + // border: instance.legend.get(mockGraphNode.label)[1], + // } + // }, + // label: mockGraphNode.displayName.length > 64 ? mockGraphNode.displayName.slice(0, 64) + '...' : mockGraphNode.displayName, + // }); + // }); + + // it('convertEdgeToVisJSFormat should convert an edge node to vis js format', () => { + // const convertedMockEdge = instance.convertEdgeToVisJSFormat(mockGraphRelationship); + // expect(convertedMockEdge).toEqual({ + // ...mockGraphRelationship, + // label: mockGraphRelationship.data.description, + // arrows: 'to', + // color: { + // color: '#0c8caa', + // } + // }); + // }); + + // it('convertGraphToVisJSFormat should convert neo4j query results to vis js format', () => { + // const convertedMockNode = instance.convertNodeToVisJSFormat(mockGraphNode); + // const convertedMockEdge = instance.convertEdgeToVisJSFormat(mockGraphRelationship); + // const convertedNeo4jResults = instance.convertGraphToVisJSFormat(mockNeo4jResults); + + // expect(convertedNeo4jResults).toEqual({ + // nodes: [convertedMockNode], + // edges: [convertedMockEdge], + // }); + // }); it('should emit getSnippetsForEdge subject when child requests snippets for edge', () => { const getSnippetsFromEdgeSpy = spyOn(instance.getEdgeSnippetsSubject, 'next'); diff --git a/client/src/app/visualization/containers/visualization/visualization.component.ts b/client/src/app/visualization/containers/visualization/visualization.component.ts index 2a9356de39..a71bf80ac7 100644 --- a/client/src/app/visualization/containers/visualization/visualization.component.ts +++ b/client/src/app/visualization/containers/visualization/visualization.component.ts @@ -3,13 +3,11 @@ import { Component, OnDestroy, OnInit } from '@angular/core'; import { ActivatedRoute } from '@angular/router'; import { isArray, isNil } from 'lodash-es'; -import { BehaviorSubject, EMPTY as empty, merge, of, Subject, Subscription } from 'rxjs'; -import { filter, map, switchMap, take, tap } from 'rxjs/operators'; +import { EMPTY as empty, merge, of, Subject, Subscription, forkJoin } from 'rxjs'; +import { filter, switchMap, take, tap } from 'rxjs/operators'; import { DataSet } from 'vis-data'; import { - ExpandNodeRequest, - ExpandNodeResult, GetClusterSnippetsResult, GetEdgeSnippetsResult, GraphNode, @@ -28,14 +26,9 @@ import { getGraphQueryParams, GraphQueryParameters, } from 'app/search/utils/search'; -import { ProgressDialog } from 'app/shared/services/progress-dialog.service'; -import { MessageArguments, MessageDialog } from 'app/shared/services/message-dialog.service'; -import { MessageType } from 'app/interfaces/message-dialog.interface'; -import { Progress } from 'app/interfaces/common-dialog.interface'; import { GraphSearchParameters } from 'app/search/graph-search'; import { TrackingService } from 'app/shared/services/tracking.service'; import { TRACKING_ACTIONS, TRACKING_CATEGORIES } from 'app/shared/schemas/tracking'; -import { getURLFromSnapshot } from 'app/shared/utils/router'; import { VisualizationService } from '../../services/visualization.service'; @@ -54,7 +47,6 @@ export class VisualizationComponent implements OnInit, OnDestroy { nodes: DataSet; edges: DataSet; - expandNodeResult: ExpandNodeResult; getEdgeSnippetsResult: GetEdgeSnippetsResult; getClusterSnippetsResult: GetClusterSnippetsResult; getSnippetsError: HttpErrorResponse; @@ -69,8 +61,6 @@ export class VisualizationComponent implements OnInit, OnDestroy { // data, biocyc, etc... legend: Map; - loadingClustersDialogRef; - // TODO: Will we need to add more of these? LITERATURE_LABELS = ['literaturedisease', 'literaturechemical', 'literaturegene']; @@ -79,8 +69,6 @@ export class VisualizationComponent implements OnInit, OnDestroy { private visService: VisualizationService, private legendService: LegendService, private workspaceManager: WorkspaceManager, - private readonly progressDialog: ProgressDialog, - private readonly messageDialog: MessageDialog, private readonly tracking: TrackingService ) { this.legend = new Map(); @@ -137,7 +125,27 @@ export class VisualizationComponent implements OnInit, OnDestroy { } ngOnInit() { - this.legendService.getAnnotationLegend().subscribe((legend) => { + const getDocumentObsverable = this.route.queryParams.pipe( + tap((params) => { + if (params.q != null) { + this.params = createGraphSearchParamsFromQuery(params as GraphQueryParameters); + } + }), + filter((params) => params.data), + switchMap((params) => { + if (!params.data) { + return empty; + } + return this.visService.getDocument(params.data); + }), + take(1) + ); + + // Join the two observables so we don't create any race conditions. I.e., they both have to complete before we set any data. + forkJoin({ + legend: this.legendService.getAnnotationLegend(), + neo4jResults: getDocumentObsverable, + }).subscribe(({ legend, neo4jResults }) => { Object.keys(legend).forEach((label) => { if (this.LITERATURE_LABELS.includes(label)) { // Keys of the result dict are all lowercase, need to change the first character @@ -150,31 +158,13 @@ export class VisualizationComponent implements OnInit, OnDestroy { this.legend.set(formattedLabel, [legend[label].color, '#0c8caa']); } }); - }); - this.route.queryParams - .pipe( - tap((params) => { - if (params.q != null) { - this.params = createGraphSearchParamsFromQuery(params as GraphQueryParameters); - } - }), - filter((params) => params.data), - switchMap((params) => { - if (!params.data) { - return empty; - } - return this.visService.getBatch(params.data).pipe(map((result: Neo4jResults) => result)); - }), - take(1) - ) - .subscribe((result) => { - if (result) { - this.networkGraphData = this.setupInitialProperties(result); - this.nodes = new DataSet(this.networkGraphData.nodes); - this.edges = new DataSet(this.networkGraphData.edges); - } - }); + if (neo4jResults) { + this.networkGraphData = this.setupInitialProperties(neo4jResults); + this.nodes = new DataSet(this.networkGraphData.nodes); + this.edges = new DataSet(this.networkGraphData.edges); + } + }); this.getClusterSnippetsResult = null; this.getEdgeSnippetsResult = null; @@ -218,35 +208,24 @@ export class VisualizationComponent implements OnInit, OnDestroy { this.getSnippetsSubscription.unsubscribe(); } - openNoResultsFromExpandDialog() { - this.messageDialog.display({ - title: 'No Relationships', - message: 'Expanded node had no connected relationships.', - type: MessageType.Info, - } as MessageArguments); - } - - openLoadingClustersDialog() { - this.loadingClustersDialogRef = this.progressDialog.display({ - title: `Node Expansion`, - progressObservables: [ - new BehaviorSubject( - new Progress({ - status: 'Loading clusters...', - }) - ), - ], - onCancel: () => {}, + /** + * Redirects to the visualizer search page with the new query term as a URL parameter. + * @param query string to search for + */ + search(query: string) { + this.tracking.register({ + category: TRACKING_CATEGORIES.visualiser, + action: TRACKING_ACTIONS.search, + label: query, + url: this.tracking.toString(), }); - } - finishedClustering(event: boolean) { - this.loadingClustersDialogRef.close(); + this.workspaceManager.navigateByUrl({ url: `/search?q=${query}` }); } /** * Used for adding properties custom properties on initial setup. - * Is different from convertToVisJSFormat which is a reusable utility + * Is different from convertGraphToVisJSFormat which is a reusable utility * function to rearrange custom properties. * @param result - neo4j results from AP call */ @@ -256,115 +235,9 @@ export class VisualizationComponent implements OnInit, OnDestroy { const setExpandProperty = result.nodes.map((n) => { return { ...n, expanded: false }; }); - return this.convertToVisJSFormat({ nodes: setExpandProperty, edges: result.edges }); - } - - /** - * This function is used to modify the API response to a format - * vis.js will understand. vis.js uses a limited set - * of properties for rendering the network graph. - * @param result - a list of nodes and edges for conversion - */ - convertToVisJSFormat({ nodes, edges }: Neo4jResults) { - return { - nodes: nodes - .map((n: GraphNode) => this.convertNodeToVisJSFormat(n)) - .filter((val) => val !== null), - edges: edges.map((e: GraphRelationship) => this.convertEdgeToVisJSFormat(e)), - }; - } - - convertNodeToVisJSFormat(n: GraphNode): VisNode { - if (isNil(n.displayName) || isNil(n.label)) { - console.error(`Node does not have expected label and displayName properties ${n}`); - return null; - } - const color = this.legend.get(n.label) ? this.legend.get(n.label)[0] : '#000000'; - const border = this.legend.get(n.label) ? this.legend.get(n.label)[1] : '#000000'; - return { - ...n, - expanded: false, - primaryLabel: n.label, - font: { - color, - }, - color: { - background: '#FFFFFF', - border, - hover: { - background: '#FFFFFF', - border, - }, - highlight: { - background: '#FFFFFF', - border, - }, - }, - label: n.displayName.length > 64 ? n.displayName.slice(0, 64) + '...' : n.displayName, - }; - } - - convertEdgeToVisJSFormat(e: GraphRelationship): VisEdge { - return { - ...e, - color: { - color: '#0c8caa', - }, - label: e.data.description, - arrows: 'to', - }; - } - - expandNode(expandNodeRequest: ExpandNodeRequest) { - const { nodeId, filterLabels } = expandNodeRequest; - - this.openLoadingClustersDialog(); - - this.tracking.register({ - category: TRACKING_CATEGORIES.visualiser, - action: TRACKING_ACTIONS.expandNode, - label: 'nodeId', - value: nodeId, - // Stringified ActivatedRoute is object definition, not the actual URL - // url: this.route.toString() - url: getURLFromSnapshot(this.route.snapshot).toString(), - }); - - if (filterLabels.length === 0) { - this.openNoResultsFromExpandDialog(); - return; - } - - this.visService.expandNode(nodeId, filterLabels).subscribe( - (r: Neo4jResults) => { - const nodeRef = this.nodes.get(nodeId) as VisNode; - const visJSDataFormat = this.convertToVisJSFormat(r); - let { nodes } = visJSDataFormat; - const { edges } = visJSDataFormat; - - // If the expanded node has no connecting relationships, notify the user - if (edges.length === 0) { - this.openNoResultsFromExpandDialog(); - this.loadingClustersDialogRef.close(); - return; - } - - // Sets the node expand state to true - nodes = nodes.map((n) => { - if (n.id === nodeId) { - return { ...n, expanded: !nodeRef.expanded }; - } - return n; - }); - - this.nodes.update(nodes); - this.edges.update(edges); - - this.expandNodeResult = { nodes, edges, expandedNode: nodeId } as ExpandNodeResult; - }, - (error) => { - this.loadingClustersDialogRef.close(); - } + return this.visService.convertGraphToVisJSFormat( + { nodes: setExpandProperty, edges: result.edges }, + this.legend ); } @@ -383,7 +256,7 @@ export class VisualizationComponent implements OnInit, OnDestroy { updateCanvasWithSingleNode(data: GraphNode) { this.nodes.clear(); this.edges.clear(); - const node = this.convertNodeToVisJSFormat(data); + const node = this.visService.convertNodeToVisJSFormat(data, this.legend); if (node !== null) { this.nodes.add(node); } diff --git a/client/src/app/visualization/services/visualization.service.ts b/client/src/app/visualization/services/visualization.service.ts index c32c13d8f2..fe90b6e624 100644 --- a/client/src/app/visualization/services/visualization.service.ts +++ b/client/src/app/visualization/services/visualization.service.ts @@ -1,8 +1,10 @@ import { Injectable } from '@angular/core'; import { HttpClient } from '@angular/common/http'; +import { isNil } from 'lodash-es'; import { of } from 'rxjs'; import { map, catchError } from 'rxjs/operators'; +import { IdType } from 'vis-network'; import { GetClusterSnippetsResult, @@ -15,6 +17,11 @@ import { AssociatedTypeSnippetCountRequest, GetAssociatedTypeResult, GetNodePairSnippetsResult, + GraphNode, + GraphRelationship, + VisNode, + VisEdge, + GetBulkReferenceTableDataResult, } from 'app/interfaces'; @Injectable() @@ -23,10 +30,64 @@ export class VisualizationService { constructor(private http: HttpClient) {} - getBatch(query: string) { - return this.http - .get<{ result: Neo4jResults }>(`${this.baseUrl}/batch`, { params: { data: query } }) - .pipe(map((resp) => resp.result)); + /** + * This function is used to modify the API response to a format + * vis.js will understand. vis.js uses a limited set + * of properties for rendering the network graph. + * @param result - a list of nodes and edges for conversion + */ + convertGraphToVisJSFormat({ nodes, edges }: Neo4jResults, legend: Map) { + return { + nodes: nodes + .map((n: GraphNode) => this.convertNodeToVisJSFormat(n, legend)) + .filter((val) => val !== null), + edges: edges.map((e: GraphRelationship) => this.convertEdgeToVisJSFormat(e)), + }; + } + + convertNodeToVisJSFormat(n: GraphNode, legend: Map): VisNode { + if (isNil(n.displayName) || isNil(n.label)) { + console.error(`Node does not have expected label and displayName properties ${n}`); + return null; + } + const color = legend.get(n.label) ? legend.get(n.label)[0] : '#000000'; + const border = legend.get(n.label) ? legend.get(n.label)[1] : '#000000'; + return { + ...n, + expanded: false, + primaryLabel: n.label, + font: { + color, + }, + color: { + background: '#FFFFFF', + border, + hover: { + background: '#FFFFFF', + border, + }, + highlight: { + background: '#FFFFFF', + border, + }, + }, + label: n.displayName.length > 64 ? n.displayName.slice(0, 64) + '...' : n.displayName, + }; + } + + convertEdgeToVisJSFormat(e: GraphRelationship): VisEdge { + return { + ...e, + color: { + color: '#0c8caa', + }, + label: e.data.description, + arrows: 'to', + }; + } + + getDocument(id: IdType) { + return this.http.get(`${this.baseUrl}/document/${id}`); } /** @@ -34,31 +95,18 @@ export class VisualizationService { * of the depth of 1. * @param nodeId the node id from the database */ - expandNode(nodeId: number, filterLabels: string[]) { + expandNode(nodeId: IdType, filterLabels: string[]) { return this.http - .post<{ result: Neo4jResults }>(`${this.baseUrl}/expand`, { nodeId, filterLabels }) + .post<{ result: GetBulkReferenceTableDataResult }>(`${this.baseUrl}/expand`, { + nodeId, + filterLabels, + }) .pipe(map((resp) => resp.result)); } getReferenceTableData(request: ReferenceTableDataRequest) { return this.http - .post<{ result: GetReferenceTableDataResult }>(`${this.baseUrl}/get-reference-table-data`, { - nodeEdgePairs: [...request.nodeEdgePairs].sort( - ( - { node: { displayName: a1 }, edge: { originalFrom: a2, originalTo: a3 } }, - { node: { displayName: b1 }, edge: { originalFrom: b2, originalTo: b3 } } - ) => { - const a = `${a1}${a2}${a3}`; - const b = `${b1}${b2}${b3}`; - if (a > b) { - return -1; - } else if (a < b) { - return 1; - } - return 0; - } - ), - }) + .post<{ result: GetReferenceTableDataResult }>(`${this.baseUrl}/get-reference-table`, request) .pipe(map((resp) => resp.result)); } @@ -94,13 +142,13 @@ export class VisualizationService { `${this.baseUrl}/get-associated-type-snippet-count`, { source_node: request.source_node, - associated_nodes: [...request.associated_nodes].sort((a, b) => a - b), + associated_nodes: [...request.associated_nodes], } ) .pipe(map((resp) => resp.result.associatedData)); } - getSnippetsForNodePair(node1Id: number, node2Id: number, page: number, limit: number) { + getSnippetsForNodePair(node1Id: IdType, node2Id: IdType, page: number, limit: number) { return this.http .post<{ result: GetNodePairSnippetsResult }>(`${this.baseUrl}/get-snippets-for-node-pair`, { page, diff --git a/deployment b/deployment index 859bae595a..0f1943080f 160000 --- a/deployment +++ b/deployment @@ -1 +1 @@ -Subproject commit 859bae595a46d50dd6c22e785d7cc9dcb10d64a6 +Subproject commit 0f1943080f4dd462a64535248e2f63ede809faa2 diff --git a/docker-compose.override.yml b/docker-compose.override.yml index 203b9de7d1..ca4ec289d8 100644 --- a/docker-compose.override.yml +++ b/docker-compose.override.yml @@ -21,11 +21,6 @@ x-appserver: &appserver # ElasticSearch - ELASTICSEARCH_HOSTS=http://elasticsearch:9200 - ELASTIC_FILE_INDEX_ID=file_dev - # Neo4j - - NEO4J_SCHEME=bolt - - NEO4J_HOST=graphdatabase - - NEO4J_AUTH=neo4j/password - - NEO4J_PORT=7687 # Arango - ARANGO_HOST=http://arangodb:8529 - ARANGO_USERNAME=root @@ -50,7 +45,6 @@ x-appserver: &appserver # - lmdb:/home/n4j/neo4japp/services/annotations/lmdb depends_on: - elasticsearch - - graphdatabase - pgdatabase - redis - pdfparser @@ -101,11 +95,11 @@ services: - FLASK_APP_CONFIG=Development - FLASK_DEBUG=1 - FLASK_ENV=development - # Neo4j - - NEO4J_SCHEME=bolt - - NEO4J_HOST=graphdatabase - - NEO4J_AUTH=neo4j/password - - NEO4J_PORT=7687 + # Arango + - ARANGO_HOST=http://arangodb:8529 + - ARANGO_USERNAME=root + - ARANGO_PASSWORD=password + - ARANGO_DB_NAME=lifelike # Redis - REDIS_HOST=redis - REDIS_PORT=6379 @@ -120,19 +114,19 @@ services: networks: - backend depends_on: - - graphdatabase + - arangodb - redis cache-invalidator: container_name: cache-invalidator build: ./cache-invalidator environment: - - LOG_LEVEL=debug - # Neo4j - - NEO4J_SCHEME=bolt - - NEO4J_HOST=graphdatabase - - NEO4J_AUTH=neo4j/password - - NEO4J_PORT=7687 + - LOG_LEVEL=DEBUG + # Arango + - ARANGO_HOST=http://arangodb:8529 + - ARANGO_USERNAME=root + - ARANGO_PASSWORD=password + - ARANGO_DB_NAME=lifelike # Redis - REDIS_HOST=redis - REDIS_PORT=6379 @@ -144,7 +138,7 @@ services: - backend depends_on: - redis - - graphdatabase + - arangodb pdfparser: container_name: pdfparser @@ -167,18 +161,6 @@ services: networks: - backend - graphdatabase: - container_name: graphdatabase - image: neo4j:4.4-community - environment: - - NEO4J_AUTH=neo4j/password - - NEO4JLABS_PLUGINS=["apoc", "n10s"] - ports: - - "7474:7474" - - "7687:7687" - networks: - - backend - arangodb: build: # Note that this Dockerfile simply adds a user directory and installs the helper scripts into it, and then executes the default arango diff --git a/docs/wiki/appserver/logging-guide.md b/docs/wiki/appserver/logging-guide.md index 83f0d10221..dd4b1d59ab 100644 --- a/docs/wiki/appserver/logging-guide.md +++ b/docs/wiki/appserver/logging-guide.md @@ -48,7 +48,7 @@ When you don't have the username information, another class `EventLog` can be us ```python from neo4japp.constants import LogEventType -@bp.route('/viz-search-temp', methods=['POST']) +@bp.route('/visualizer-temp', methods=['POST']) @jsonify_with_class(SimpleSearchRequest) def visualizer_search_temp(req: SimpleSearchRequest): ... diff --git a/statistical-enrichment/Pipfile b/statistical-enrichment/Pipfile index f900adbc1b..4646c16270 100644 --- a/statistical-enrichment/Pipfile +++ b/statistical-enrichment/Pipfile @@ -13,7 +13,6 @@ flask-httpauth = "==3.3.0" flask-marshmallow = "==0.11.0" Flask = "==1.1.2" gunicorn = "==20.0.4" -neo4j = "==4.2.1" pandas = "==1.3.3" pyjwt = "==2.0.0" redis = "==3.5.2" @@ -27,6 +26,7 @@ ipython = "==7.28.0" jupyter = "==1.0.0" sympy = "==1.9" nose = "==1.3.7" +python-arango = "==7.5.2" jinja2 = "<3.1.0" itsdangerous = "<=2.0.1" werkzeug = "==0.16.0" diff --git a/statistical-enrichment/Pipfile.lock b/statistical-enrichment/Pipfile.lock index beb70c2646..ec732d59cd 100644 --- a/statistical-enrichment/Pipfile.lock +++ b/statistical-enrichment/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "a979a7297628c4ab913e539d9dcf9fe6da739459ef23a5f16caee695f94a1778" + "sha256": "88eb0ec16c4eeaf04710818138cd2f825d3ce3e46e988215ba2574473f4b59c9" }, "pipfile-spec": 6, "requires": { @@ -21,7 +21,7 @@ "sha256:cfdb2b588b9fc25ede96d8db56ed50848b0b649dca3dd1df0b11f683bb9e0b5f", "sha256:f7ed51751b2c2add651e5747c891b47e26d2a21be5d32d9311dfe9692f3e5d7a" ], - "markers": "python_full_version >= '3.8.0'", + "markers": "python_version >= '3.8'", "version": "==4.0.0" }, "appnope": { @@ -72,7 +72,7 @@ "sha256:c728b120ebc00eb84e01882a6f5e7927a53960aa990ce7dd2b10f39005a67f80", "sha256:d4540617648cb5f895730f1ad8c82a65f2dad0166f57b75f3ca54759c4d67a85" ], - "markers": "python_full_version >= '3.8.0'", + "markers": "python_version >= '3.8'", "version": "==1.3.0" }, "async-lru": { @@ -80,7 +80,7 @@ "sha256:b8a59a5df60805ff63220b2a0c5b5393da5521b113cd5465a44eb037d81a5627", "sha256:ff02944ce3c288c5be660c42dbcca0742b32c3b279d6dceda655190240b99224" ], - "markers": "python_full_version >= '3.8.0'", + "markers": "python_version >= '3.8'", "version": "==2.0.4" }, "attrs": { @@ -93,11 +93,11 @@ }, "babel": { "hashes": [ - "sha256:04c3e2d28d2b7681644508f836be388ae49e0cfe91465095340395b60d00f210", - "sha256:fbfcae1575ff78e26c7449136f1abbefc3c13ce542eeb13d43d50d8b047216ec" + "sha256:33e0952d7dd6374af8dbf6768cc4ddf3ccfefc244f9986d4074704f2fbd18900", + "sha256:7077a4984b02b6727ac10f1f7294484f737443d7e2e66c5e4380e41a3ae0b4ed" ], "markers": "python_version >= '3.7'", - "version": "==2.13.0" + "version": "==2.13.1" }, "backcall": { "hashes": [ @@ -119,15 +119,15 @@ "sha256:0a31f1837963c41d46bbf1331b8778e1308ea0791db03cc4e7357b97cf42a8fe", "sha256:3225f354cfc436b9789c66c4ee030194bee0568fbf9cbdad3bc8b5c26c5f12b6" ], - "markers": "python_full_version >= '3.8.0'", + "markers": "python_version >= '3.8'", "version": "==6.1.0" }, "blinker": { "hashes": [ - "sha256:152090d27c1c5c722ee7e48504b02d76502811ce02e1523553b4cf8c8b3d3a8d", - "sha256:296320d6c28b006eb5e32d4712202dbcdcbf5dc482da298c2f44881c43884aaa" + "sha256:c3f865d4d54db7abc53758a01601cf343fe55b84c1de4e3fa910e420b438d5b9", + "sha256:e6820ff6fa4e4d1d8e2747c2283749c3f547e4fee112b98555cdcdae32996182" ], - "version": "==1.6.3" + "version": "==1.7.0" }, "certifi": { "hashes": [ @@ -192,104 +192,104 @@ "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956", "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357" ], - "markers": "python_full_version >= '3.8.0'", + "markers": "python_version >= '3.8'", "version": "==1.16.0" }, "charset-normalizer": { "hashes": [ - "sha256:02673e456dc5ab13659f85196c534dc596d4ef260e4d86e856c3b2773ce09843", - "sha256:02af06682e3590ab952599fbadac535ede5d60d78848e555aa58d0c0abbde786", - "sha256:03680bb39035fbcffe828eae9c3f8afc0428c91d38e7d61aa992ef7a59fb120e", - "sha256:0570d21da019941634a531444364f2482e8db0b3425fcd5ac0c36565a64142c8", - "sha256:09c77f964f351a7369cc343911e0df63e762e42bac24cd7d18525961c81754f4", - "sha256:0d3d5b7db9ed8a2b11a774db2bbea7ba1884430a205dbd54a32d61d7c2a190fa", - "sha256:1063da2c85b95f2d1a430f1c33b55c9c17ffaf5e612e10aeaad641c55a9e2b9d", - "sha256:12ebea541c44fdc88ccb794a13fe861cc5e35d64ed689513a5c03d05b53b7c82", - "sha256:153e7b6e724761741e0974fc4dcd406d35ba70b92bfe3fedcb497226c93b9da7", - "sha256:15b26ddf78d57f1d143bdf32e820fd8935d36abe8a25eb9ec0b5a71c82eb3895", - "sha256:1872d01ac8c618a8da634e232f24793883d6e456a66593135aeafe3784b0848d", - "sha256:187d18082694a29005ba2944c882344b6748d5be69e3a89bf3cc9d878e548d5a", - "sha256:1b2919306936ac6efb3aed1fbf81039f7087ddadb3160882a57ee2ff74fd2382", - "sha256:232ac332403e37e4a03d209a3f92ed9071f7d3dbda70e2a5e9cff1c4ba9f0678", - "sha256:23e8565ab7ff33218530bc817922fae827420f143479b753104ab801145b1d5b", - "sha256:24817cb02cbef7cd499f7c9a2735286b4782bd47a5b3516a0e84c50eab44b98e", - "sha256:249c6470a2b60935bafd1d1d13cd613f8cd8388d53461c67397ee6a0f5dce741", - "sha256:24a91a981f185721542a0b7c92e9054b7ab4fea0508a795846bc5b0abf8118d4", - "sha256:2502dd2a736c879c0f0d3e2161e74d9907231e25d35794584b1ca5284e43f596", - "sha256:250c9eb0f4600361dd80d46112213dff2286231d92d3e52af1e5a6083d10cad9", - "sha256:278c296c6f96fa686d74eb449ea1697f3c03dc28b75f873b65b5201806346a69", - "sha256:2935ffc78db9645cb2086c2f8f4cfd23d9b73cc0dc80334bc30aac6f03f68f8c", - "sha256:2f4a0033ce9a76e391542c182f0d48d084855b5fcba5010f707c8e8c34663d77", - "sha256:30a85aed0b864ac88309b7d94be09f6046c834ef60762a8833b660139cfbad13", - "sha256:380c4bde80bce25c6e4f77b19386f5ec9db230df9f2f2ac1e5ad7af2caa70459", - "sha256:3ae38d325b512f63f8da31f826e6cb6c367336f95e418137286ba362925c877e", - "sha256:3b447982ad46348c02cb90d230b75ac34e9886273df3a93eec0539308a6296d7", - "sha256:3debd1150027933210c2fc321527c2299118aa929c2f5a0a80ab6953e3bd1908", - "sha256:4162918ef3098851fcd8a628bf9b6a98d10c380725df9e04caf5ca6dd48c847a", - "sha256:468d2a840567b13a590e67dd276c570f8de00ed767ecc611994c301d0f8c014f", - "sha256:4cc152c5dd831641e995764f9f0b6589519f6f5123258ccaca8c6d34572fefa8", - "sha256:542da1178c1c6af8873e143910e2269add130a299c9106eef2594e15dae5e482", - "sha256:557b21a44ceac6c6b9773bc65aa1b4cc3e248a5ad2f5b914b91579a32e22204d", - "sha256:5707a746c6083a3a74b46b3a631d78d129edab06195a92a8ece755aac25a3f3d", - "sha256:588245972aca710b5b68802c8cad9edaa98589b1b42ad2b53accd6910dad3545", - "sha256:5adf257bd58c1b8632046bbe43ee38c04e1038e9d37de9c57a94d6bd6ce5da34", - "sha256:619d1c96099be5823db34fe89e2582b336b5b074a7f47f819d6b3a57ff7bdb86", - "sha256:63563193aec44bce707e0c5ca64ff69fa72ed7cf34ce6e11d5127555756fd2f6", - "sha256:67b8cc9574bb518ec76dc8e705d4c39ae78bb96237cb533edac149352c1f39fe", - "sha256:6a685067d05e46641d5d1623d7c7fdf15a357546cbb2f71b0ebde91b175ffc3e", - "sha256:70f1d09c0d7748b73290b29219e854b3207aea922f839437870d8cc2168e31cc", - "sha256:750b446b2ffce1739e8578576092179160f6d26bd5e23eb1789c4d64d5af7dc7", - "sha256:7966951325782121e67c81299a031f4c115615e68046f79b85856b86ebffc4cd", - "sha256:7b8b8bf1189b3ba9b8de5c8db4d541b406611a71a955bbbd7385bbc45fcb786c", - "sha256:7f5d10bae5d78e4551b7be7a9b29643a95aded9d0f602aa2ba584f0388e7a557", - "sha256:805dfea4ca10411a5296bcc75638017215a93ffb584c9e344731eef0dcfb026a", - "sha256:81bf654678e575403736b85ba3a7867e31c2c30a69bc57fe88e3ace52fb17b89", - "sha256:82eb849f085624f6a607538ee7b83a6d8126df6d2f7d3b319cb837b289123078", - "sha256:85a32721ddde63c9df9ebb0d2045b9691d9750cb139c161c80e500d210f5e26e", - "sha256:86d1f65ac145e2c9ed71d8ffb1905e9bba3a91ae29ba55b4c46ae6fc31d7c0d4", - "sha256:86f63face3a527284f7bb8a9d4f78988e3c06823f7bea2bd6f0e0e9298ca0403", - "sha256:8eaf82f0eccd1505cf39a45a6bd0a8cf1c70dcfc30dba338207a969d91b965c0", - "sha256:93aa7eef6ee71c629b51ef873991d6911b906d7312c6e8e99790c0f33c576f89", - "sha256:96c2b49eb6a72c0e4991d62406e365d87067ca14c1a729a870d22354e6f68115", - "sha256:9cf3126b85822c4e53aa28c7ec9869b924d6fcfb76e77a45c44b83d91afd74f9", - "sha256:9fe359b2e3a7729010060fbca442ca225280c16e923b37db0e955ac2a2b72a05", - "sha256:a0ac5e7015a5920cfce654c06618ec40c33e12801711da6b4258af59a8eff00a", - "sha256:a3f93dab657839dfa61025056606600a11d0b696d79386f974e459a3fbc568ec", - "sha256:a4b71f4d1765639372a3b32d2638197f5cd5221b19531f9245fcc9ee62d38f56", - "sha256:aae32c93e0f64469f74ccc730a7cb21c7610af3a775157e50bbd38f816536b38", - "sha256:aaf7b34c5bc56b38c931a54f7952f1ff0ae77a2e82496583b247f7c969eb1479", - "sha256:abecce40dfebbfa6abf8e324e1860092eeca6f7375c8c4e655a8afb61af58f2c", - "sha256:abf0d9f45ea5fb95051c8bfe43cb40cda383772f7e5023a83cc481ca2604d74e", - "sha256:ac71b2977fb90c35d41c9453116e283fac47bb9096ad917b8819ca8b943abecd", - "sha256:ada214c6fa40f8d800e575de6b91a40d0548139e5dc457d2ebb61470abf50186", - "sha256:b09719a17a2301178fac4470d54b1680b18a5048b481cb8890e1ef820cb80455", - "sha256:b1121de0e9d6e6ca08289583d7491e7fcb18a439305b34a30b20d8215922d43c", - "sha256:b3b2316b25644b23b54a6f6401074cebcecd1244c0b8e80111c9a3f1c8e83d65", - "sha256:b3d9b48ee6e3967b7901c052b670c7dda6deb812c309439adaffdec55c6d7b78", - "sha256:b5bcf60a228acae568e9911f410f9d9e0d43197d030ae5799e20dca8df588287", - "sha256:b8f3307af845803fb0b060ab76cf6dd3a13adc15b6b451f54281d25911eb92df", - "sha256:c2af80fb58f0f24b3f3adcb9148e6203fa67dd3f61c4af146ecad033024dde43", - "sha256:c350354efb159b8767a6244c166f66e67506e06c8924ed74669b2c70bc8735b1", - "sha256:c5a74c359b2d47d26cdbbc7845e9662d6b08a1e915eb015d044729e92e7050b7", - "sha256:c71f16da1ed8949774ef79f4a0260d28b83b3a50c6576f8f4f0288d109777989", - "sha256:d47ecf253780c90ee181d4d871cd655a789da937454045b17b5798da9393901a", - "sha256:d7eff0f27edc5afa9e405f7165f85a6d782d308f3b6b9d96016c010597958e63", - "sha256:d97d85fa63f315a8bdaba2af9a6a686e0eceab77b3089af45133252618e70884", - "sha256:db756e48f9c5c607b5e33dd36b1d5872d0422e960145b08ab0ec7fd420e9d649", - "sha256:dc45229747b67ffc441b3de2f3ae5e62877a282ea828a5bdb67883c4ee4a8810", - "sha256:e0fc42822278451bc13a2e8626cf2218ba570f27856b536e00cfa53099724828", - "sha256:e39c7eb31e3f5b1f88caff88bcff1b7f8334975b46f6ac6e9fc725d829bc35d4", - "sha256:e46cd37076971c1040fc8c41273a8b3e2c624ce4f2be3f5dfcb7a430c1d3acc2", - "sha256:e5c1502d4ace69a179305abb3f0bb6141cbe4714bc9b31d427329a95acfc8bdd", - "sha256:edfe077ab09442d4ef3c52cb1f9dab89bff02f4524afc0acf2d46be17dc479f5", - "sha256:effe5406c9bd748a871dbcaf3ac69167c38d72db8c9baf3ff954c344f31c4cbe", - "sha256:f0d1e3732768fecb052d90d62b220af62ead5748ac51ef61e7b32c266cac9293", - "sha256:f5969baeaea61c97efa706b9b107dcba02784b1601c74ac84f2a532ea079403e", - "sha256:f8888e31e3a85943743f8fc15e71536bda1c81d5aa36d014a3c0c44481d7db6e", - "sha256:fc52b79d83a3fe3a360902d3f5d79073a993597d48114c29485e9431092905d8" + "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027", + "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087", + "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786", + "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8", + "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09", + "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185", + "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574", + "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e", + "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519", + "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898", + "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269", + "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3", + "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f", + "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6", + "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8", + "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a", + "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73", + "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc", + "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714", + "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2", + "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc", + "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce", + "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d", + "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e", + "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6", + "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269", + "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96", + "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d", + "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a", + "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4", + "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77", + "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d", + "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0", + "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed", + "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068", + "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac", + "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25", + "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8", + "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab", + "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26", + "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2", + "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db", + "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f", + "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5", + "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99", + "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c", + "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d", + "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811", + "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa", + "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a", + "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03", + "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b", + "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04", + "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c", + "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001", + "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458", + "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389", + "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99", + "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985", + "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537", + "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238", + "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f", + "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d", + "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796", + "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a", + "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143", + "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8", + "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c", + "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5", + "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5", + "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711", + "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4", + "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6", + "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c", + "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7", + "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4", + "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b", + "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae", + "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12", + "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c", + "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae", + "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8", + "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887", + "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b", + "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4", + "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f", + "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5", + "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33", + "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519", + "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561" ], "markers": "python_version >= '3.7'", - "version": "==3.3.0" + "version": "==3.3.2" }, "click": { "hashes": [ @@ -301,18 +301,18 @@ }, "comm": { "hashes": [ - "sha256:354e40a59c9dd6db50c5cc6b4acc887d82e9603787f83b68c01a80a923984d15", - "sha256:6d52794cba11b36ed9860999cd10fd02d6b2eac177068fdd585e1e2f8a96e67a" + "sha256:2da8d9ebb8dd7bfc247adaff99f24dce705638a8042b85cb995066793e391001", + "sha256:a517ea2ca28931c7007a7a99c562a0fa5883cfb48963140cf642c41c948498be" ], - "markers": "python_version >= '3.6'", - "version": "==0.1.4" + "markers": "python_version >= '3.8'", + "version": "==0.2.0" }, "cycler": { "hashes": [ "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30", "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c" ], - "markers": "python_full_version >= '3.8.0'", + "markers": "python_version >= '3.8'", "version": "==0.12.1" }, "debugpy": { @@ -336,7 +336,7 @@ "sha256:ef54404365fae8d45cf450d0544ee40cefbcb9cb85ea7afe89a963c27028261e", "sha256:ef9ab7df0b9a42ed9c878afd3eaaff471fce3fa73df96022e1f5c9f8f8c87ada" ], - "markers": "python_full_version >= '3.8.0'", + "markers": "python_version >= '3.8'", "version": "==1.8.0" }, "decorator": { @@ -446,11 +446,11 @@ }, "ipykernel": { "hashes": [ - "sha256:2e2ee359baba19f10251b99415bb39de1e97d04e1fab385646f24f0596510b77", - "sha256:f468ddd1f17acb48c8ce67fcfa49ba6d46d4f9ac0438c1f441be7c3d1372230b" + "sha256:3ba3dc97424b87b31bb46586b5167b3161b32d7820b9201a9e698c71e271602c", + "sha256:553856658eb8430bbe9653ea041a41bff63e9606fc4628873fc92a6cf3abd404" ], - "markers": "python_full_version >= '3.8.0'", - "version": "==6.25.2" + "markers": "python_version >= '3.8'", + "version": "==6.26.0" }, "ipython": { "hashes": [ @@ -460,13 +460,6 @@ "index": "pypi", "version": "==7.28.0" }, - "ipython-genutils": { - "hashes": [ - "sha256:72dd37233799e619666c9f639a9da83c34013a73e8bbc79a7a6348d93c61fab8", - "sha256:eb2e116e75ecef9d4d228fdc66af54269afa26ab4463042e33785b887c628ba8" - ], - "version": "==0.2.0" - }, "ipywidgets": { "hashes": [ "sha256:2b88d728656aea3bbfd05d32c747cfd0078f9d7e159cf982433b58ad717eed7f", @@ -522,18 +515,18 @@ }, "jsonschema": { "hashes": [ - "sha256:cd5f1f9ed9444e554b38ba003af06c0a8c2868131e56bfbef0550fb450c0330e", - "sha256:ec84cc37cfa703ef7cd4928db24f9cb31428a5d0fa77747b8b51a847458e0bbf" + "sha256:c9ff4d7447eed9592c23a12ccee508baf0dd0d59650615e847feb6cdca74f392", + "sha256:eee9e502c788e89cb166d4d37f43084e3b64ab405c795c03d343a4dbc2c810fc" ], - "markers": "python_full_version >= '3.8.0'", - "version": "==4.19.1" + "markers": "python_version >= '3.8'", + "version": "==4.19.2" }, "jsonschema-specifications": { "hashes": [ "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1", "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb" ], - "markers": "python_full_version >= '3.8.0'", + "markers": "python_version >= '3.8'", "version": "==2023.7.1" }, "jupyter": { @@ -547,11 +540,11 @@ }, "jupyter-client": { "hashes": [ - "sha256:6a2a950ec23a8f62f9e4c66acec7f0ea6c7d1f80ba0992e747b10c56ce2e6dbe", - "sha256:dc1b857d5d7d76ac101766c6e9b646bf18742721126e72e5d484c75a993cada2" + "sha256:0642244bb83b4764ae60d07e010e15f0e2d275ec4e918a8f7b80fbbef3ca60c7", + "sha256:909c474dbe62582ae62b758bca86d6518c85234bdee2d908c778db6d72f39d99" ], - "markers": "python_full_version >= '3.8.0'", - "version": "==8.4.0" + "markers": "python_version >= '3.8'", + "version": "==8.6.0" }, "jupyter-console": { "hashes": [ @@ -563,51 +556,51 @@ }, "jupyter-core": { "hashes": [ - "sha256:66e252f675ac04dcf2feb6ed4afb3cd7f68cf92f483607522dc251f32d471571", - "sha256:e4b98344bb94ee2e3e6c4519a97d001656009f9cb2b7f2baf15b3c205770011d" + "sha256:880b86053bf298a8724994f95e99b99130659022a4f7f45f563084b6223861d3", + "sha256:e11e02cd8ae0a9de5c6c44abf5727df9f2581055afe00b22183f621ba3585805" ], - "markers": "python_full_version >= '3.8.0'", - "version": "==5.4.0" + "markers": "python_version >= '3.8'", + "version": "==5.5.0" }, "jupyter-events": { "hashes": [ - "sha256:81f07375c7673ff298bfb9302b4a981864ec64edaed75ca0fe6f850b9b045525", - "sha256:fda08f0defce5e16930542ce60634ba48e010830d50073c3dfd235759cee77bf" + "sha256:81ad2e4bc710881ec274d31c6c50669d71bbaa5dd9d01e600b56faa85700d399", + "sha256:d853b3c10273ff9bc8bb8b30076d65e2c9685579db736873de6c2232dde148bf" ], - "markers": "python_full_version >= '3.8.0'", - "version": "==0.8.0" + "markers": "python_version >= '3.8'", + "version": "==0.9.0" }, "jupyter-lsp": { "hashes": [ "sha256:8ebbcb533adb41e5d635eb8fe82956b0aafbf0fd443b6c4bfa906edeeb8635a1", "sha256:9e06b8b4f7dd50300b70dd1a78c0c3b0c3d8fa68e0f2d8a5d1fbab62072aca3f" ], - "markers": "python_full_version >= '3.8.0'", + "markers": "python_version >= '3.8'", "version": "==2.2.0" }, "jupyter-server": { "hashes": [ - "sha256:b11e2ba80667c75f55630faf8ac3d5809f8734f9006d65cce117c46a0a516ab8", - "sha256:c57270faa6530393ae69783a2d2f1874c718b9f109080581ea076b05713249fa" + "sha256:47b8f5e63440125cb1bb8957bf12b18453ee5ed9efe42d2f7b2ca66a7019a278", + "sha256:dde56c9bc3cb52d7b72cc0f696d15d7163603526f1a758eb4a27405b73eab2a5" ], - "markers": "python_full_version >= '3.8.0'", - "version": "==2.8.0" + "markers": "python_version >= '3.8'", + "version": "==2.10.0" }, "jupyter-server-terminals": { "hashes": [ "sha256:57ab779797c25a7ba68e97bcfb5d7740f2b5e8a83b5e8102b10438041a7eac5d", "sha256:75779164661cec02a8758a5311e18bb8eb70c4e86c6b699403100f1585a12a36" ], - "markers": "python_full_version >= '3.8.0'", + "markers": "python_version >= '3.8'", "version": "==0.4.4" }, "jupyterlab": { "hashes": [ - "sha256:08683045117cc495531fdb39c22ababb9aaac6977a45e67cfad20046564c9c7c", - "sha256:48792efd9f962b2bcda1f87d72168ff122c288b1d97d32109e4a11b33dc862be" + "sha256:2ff5aa2a51eb21df241d6011c236e88bd1ff9a5dbb75bebc54472f9c18bfffa4", + "sha256:c4fe93f977bcc987bd395d7fae5ab02e0c042bf4e0f7c95196f3e2e578c2fb3a" ], - "markers": "python_full_version >= '3.8.0'", - "version": "==4.0.7" + "markers": "python_version >= '3.8'", + "version": "==4.0.8" }, "jupyterlab-pygments": { "hashes": [ @@ -622,7 +615,7 @@ "sha256:77c2f1f282d610f95e496e20d5bf1d2a7706826dfb7b18f3378ae2870d272fb7", "sha256:c9f67a98b295c5dee87f41551b0558374e45d449f3edca153dd722140630dcb2" ], - "markers": "python_full_version >= '3.8.0'", + "markers": "python_version >= '3.8'", "version": "==2.25.0" }, "jupyterlab-widgets": { @@ -814,7 +807,7 @@ "sha256:5d2371bbe42000f2b3fb5eaa065224df7d8f8597bc19a1bbfa5bfe7fba8da889", "sha256:684939db93e80ad3561392f47be0230743131560a41c5110684c16e21ade0a5c" ], - "markers": "python_full_version >= '3.8.0'", + "markers": "python_version >= '3.8'", "version": "==3.20.1" }, "matplotlib": { @@ -869,35 +862,28 @@ }, "nbclient": { "hashes": [ - "sha256:25e861299e5303a0477568557c4045eccc7a34c17fc08e7959558707b9ebe548", - "sha256:f9b179cd4b2d7bca965f900a2ebf0db4a12ebff2f36a711cb66861e4ae158e55" + "sha256:4b28c207877cf33ef3a9838cdc7a54c5ceff981194a82eac59d558f05487295e", + "sha256:a3a1ddfb34d4a9d17fc744d655962714a866639acd30130e9be84191cd97cd15" ], - "markers": "python_full_version >= '3.8.0'", - "version": "==0.8.0" + "markers": "python_version >= '3.8'", + "version": "==0.9.0" }, "nbconvert": { "hashes": [ - "sha256:39fe4b8bdd1b0104fdd86fc8a43a9077ba64c720bda4c6132690d917a0a154ee", - "sha256:e56cc7588acc4f93e2bb5a34ec69028e4941797b2bfaf6462f18a41d1cc258c9" + "sha256:abedc01cf543177ffde0bfc2a69726d5a478f6af10a332fc1bf29fcb4f0cf000", + "sha256:d1d417b7f34a4e38887f8da5bdfd12372adf3b80f995d57556cb0972c68909fe" ], - "markers": "python_full_version >= '3.8.0'", - "version": "==7.9.2" + "markers": "python_version >= '3.8'", + "version": "==7.11.0" }, "nbformat": { "hashes": [ "sha256:1c5172d786a41b82bcfd0c23f9e6b6f072e8fb49c39250219e4acfff1efe89e9", "sha256:5f98b5ba1997dff175e77e0c17d5c10a96eaed2cbd1de3533d1fc35d5e111192" ], - "markers": "python_full_version >= '3.8.0'", + "markers": "python_version >= '3.8'", "version": "==5.9.2" }, - "neo4j": { - "hashes": [ - "sha256:b6c49fbd60426e268ed4afbd414766444fe70aee1ac0376a0c871d75526b8251" - ], - "index": "pypi", - "version": "==4.2.1" - }, "nest-asyncio": { "hashes": [ "sha256:25aa2ca0d2a5b5531956b9e273b45cf664cae2b145101d73b86b199978d48fdb", @@ -917,11 +903,11 @@ }, "notebook": { "hashes": [ - "sha256:9e7c7a91de138bc8b5ee50486a20e70fa4d82d407b5622ec8beac9e13e773181", - "sha256:f26bd66accd54fcd96cc6696fb6c2911f15843b1c524318fd7cbdb32a763e6a6" + "sha256:0fe8f67102fea3744fedf652e4c15339390902ca70c5a31c4f547fa23da697cc", + "sha256:ec6113b06529019f7f287819af06c97a2baf7a95ac21a8f6e32192898e9f9a58" ], - "markers": "python_full_version >= '3.8.0'", - "version": "==7.0.5" + "markers": "python_version >= '3.8'", + "version": "==7.0.6" }, "notebook-shim": { "hashes": [ @@ -956,7 +942,7 @@ "sha256:f3eb268dbd5cfaffd9448113539e44e2dd1c5ca9ce25576f7c04a5453edc26fa", "sha256:fb7a980c81dd932381f8228a426df8aeb70d59bbcda2af075b627bbc50207cba" ], - "markers": "python_full_version >= '3.8.0'", + "markers": "python_version >= '3.8'", "version": "==1.22.4" }, "overrides": { @@ -1097,7 +1083,7 @@ "sha256:fa1d323703cfdac2036af05191b969b910d8f115cf53093125e4058f62012c9a", "sha256:fe1e26e1ffc38be097f0ba1d0d07fcade2bcfd1d023cda5b29935ae8052bd793" ], - "markers": "python_full_version >= '3.8.0'", + "markers": "python_version >= '3.8'", "version": "==10.1.0" }, "platformdirs": { @@ -1110,11 +1096,11 @@ }, "prometheus-client": { "hashes": [ - "sha256:21e674f39831ae3f8acde238afd9a27a37d0d2fb5a28ea094f0ce25d2cbf2091", - "sha256:e537f37160f6807b8202a6fc4764cdd19bac5480ddd3e0d463c3002b34462101" + "sha256:35f7a8c22139e2bb7ca5a698e92d38145bc8dc74c1c0bf56f25cca886a764e17", + "sha256:8de3ae2755f890826f4b6479e5571d4f74ac17a81345fe69a6778fdb92579184" ], - "markers": "python_version >= '3.6'", - "version": "==0.17.1" + "markers": "python_version >= '3.8'", + "version": "==0.18.0" }, "prompt-toolkit": { "hashes": [ @@ -1151,7 +1137,6 @@ "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35", "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220" ], - "markers": "os_name != 'nt'", "version": "==0.7.0" }, "pycparser": { @@ -1185,12 +1170,20 @@ "markers": "python_full_version >= '3.6.8'", "version": "==3.1.1" }, + "python-arango": { + "hashes": [ + "sha256:4554b7349348a05000128e42c77c4fe6a11461669463f3cd4fbf7a0ec0bc36d9", + "sha256:bb7cdd55776f5cf613e4bb9f0f0aba70b60408b964ec7c13b37f69b215acbbe8" + ], + "index": "pypi", + "version": "==7.5.2" + }, "python-dateutil": { "hashes": [ "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86", "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9" ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2'", "version": "==2.8.2" }, "python-json-logger": { @@ -1365,19 +1358,19 @@ }, "qtconsole": { "hashes": [ - "sha256:a3b69b868e041c2c698bdc75b0602f42e130ffb256d6efa48f9aa756c97672aa", - "sha256:b7ffb53d74f23cee29f4cdb55dd6fabc8ec312d94f3c46ba38e1dde458693dfb" + "sha256:6b6bcf8f834c6df1579a3e6623c8531b85d3e723997cee3a1156296df14716c8", + "sha256:ea8b4a07d7dc915a1b1238fbfe2c9aea570640402557b64615e09a4bc60df47c" ], - "markers": "python_version >= '3.7'", - "version": "==5.4.4" + "markers": "python_version >= '3.8'", + "version": "==5.5.0" }, "qtpy": { "hashes": [ - "sha256:4d4f045a41e09ac9fa57fcb47ef05781aa5af294a0a646acc1b729d14225e741", - "sha256:db2d508167aa6106781565c8da5c6f1487debacba33519cedc35fa8997d424d4" + "sha256:1c1d8c4fa2c884ae742b069151b0abe15b3f70491f3972698c683b8e38de839b", + "sha256:a5a15ffd519550a1361bdc56ffc07fda56a6af7292f17c7b395d4083af632987" ], "markers": "python_version >= '3.7'", - "version": "==2.4.0" + "version": "==2.4.1" }, "redis": { "hashes": [ @@ -1392,7 +1385,7 @@ "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf", "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0" ], - "markers": "python_full_version >= '3.8.0'", + "markers": "python_version >= '3.8'", "version": "==0.30.2" }, "requests": { @@ -1403,6 +1396,14 @@ "markers": "python_version >= '3.7'", "version": "==2.31.0" }, + "requests-toolbelt": { + "hashes": [ + "sha256:7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6", + "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==1.0.0" + }, "rfc3339-validator": { "hashes": [ "sha256:138a2abdf93304ad60530167e51d2dfb9549521a836871b88d7f4695d0022f6b", @@ -1421,108 +1422,108 @@ }, "rpds-py": { "hashes": [ - "sha256:023574366002bf1bd751ebaf3e580aef4a468b3d3c216d2f3f7e16fdabd885ed", - "sha256:031f76fc87644a234883b51145e43985aa2d0c19b063e91d44379cd2786144f8", - "sha256:052a832078943d2b2627aea0d19381f607fe331cc0eb5df01991268253af8417", - "sha256:0699ab6b8c98df998c3eacf51a3b25864ca93dab157abe358af46dc95ecd9801", - "sha256:0713631d6e2d6c316c2f7b9320a34f44abb644fc487b77161d1724d883662e31", - "sha256:0774a46b38e70fdde0c6ded8d6d73115a7c39d7839a164cc833f170bbf539116", - "sha256:0898173249141ee99ffcd45e3829abe7bcee47d941af7434ccbf97717df020e5", - "sha256:09586f51a215d17efdb3a5f090d7cbf1633b7f3708f60a044757a5d48a83b393", - "sha256:102eac53bb0bf0f9a275b438e6cf6904904908562a1463a6fc3323cf47d7a532", - "sha256:10f32b53f424fc75ff7b713b2edb286fdbfc94bf16317890260a81c2c00385dc", - "sha256:150eec465dbc9cbca943c8e557a21afdcf9bab8aaabf386c44b794c2f94143d2", - "sha256:1d7360573f1e046cb3b0dceeb8864025aa78d98be4bb69f067ec1c40a9e2d9df", - "sha256:1f36a9d751f86455dc5278517e8b65580eeee37d61606183897f122c9e51cef3", - "sha256:24656dc36f866c33856baa3ab309da0b6a60f37d25d14be916bd3e79d9f3afcf", - "sha256:25860ed5c4e7f5e10c496ea78af46ae8d8468e0be745bd233bab9ca99bfd2647", - "sha256:26857f0f44f0e791f4a266595a7a09d21f6b589580ee0585f330aaccccb836e3", - "sha256:2bb2e4826be25e72013916eecd3d30f66fd076110de09f0e750163b416500721", - "sha256:2f6da6d842195fddc1cd34c3da8a40f6e99e4a113918faa5e60bf132f917c247", - "sha256:30adb75ecd7c2a52f5e76af50644b3e0b5ba036321c390b8e7ec1bb2a16dd43c", - "sha256:3339eca941568ed52d9ad0f1b8eb9fe0958fa245381747cecf2e9a78a5539c42", - "sha256:34ad87a831940521d462ac11f1774edf867c34172010f5390b2f06b85dcc6014", - "sha256:3777cc9dea0e6c464e4b24760664bd8831738cc582c1d8aacf1c3f546bef3f65", - "sha256:3953c6926a63f8ea5514644b7afb42659b505ece4183fdaaa8f61d978754349e", - "sha256:3c4eff26eddac49d52697a98ea01b0246e44ca82ab09354e94aae8823e8bda02", - "sha256:40578a6469e5d1df71b006936ce95804edb5df47b520c69cf5af264d462f2cbb", - "sha256:40f93086eef235623aa14dbddef1b9fb4b22b99454cb39a8d2e04c994fb9868c", - "sha256:4134aa2342f9b2ab6c33d5c172e40f9ef802c61bb9ca30d21782f6e035ed0043", - "sha256:442626328600bde1d09dc3bb00434f5374948838ce75c41a52152615689f9403", - "sha256:4a5ee600477b918ab345209eddafde9f91c0acd931f3776369585a1c55b04c57", - "sha256:4ce5a708d65a8dbf3748d2474b580d606b1b9f91b5c6ab2a316e0b0cf7a4ba50", - "sha256:516a611a2de12fbea70c78271e558f725c660ce38e0006f75139ba337d56b1f6", - "sha256:52c215eb46307c25f9fd2771cac8135d14b11a92ae48d17968eda5aa9aaf5071", - "sha256:53c43e10d398e365da2d4cc0bcaf0854b79b4c50ee9689652cdc72948e86f487", - "sha256:5752b761902cd15073a527b51de76bbae63d938dc7c5c4ad1e7d8df10e765138", - "sha256:5e8a78bd4879bff82daef48c14d5d4057f6856149094848c3ed0ecaf49f5aec2", - "sha256:5ed505ec6305abd2c2c9586a7b04fbd4baf42d4d684a9c12ec6110deefe2a063", - "sha256:5ee97c683eaface61d38ec9a489e353d36444cdebb128a27fe486a291647aff6", - "sha256:61fa268da6e2e1cd350739bb61011121fa550aa2545762e3dc02ea177ee4de35", - "sha256:64ccc28683666672d7c166ed465c09cee36e306c156e787acef3c0c62f90da5a", - "sha256:66414dafe4326bca200e165c2e789976cab2587ec71beb80f59f4796b786a238", - "sha256:68fe9199184c18d997d2e4293b34327c0009a78599ce703e15cd9a0f47349bba", - "sha256:6a555ae3d2e61118a9d3e549737bb4a56ff0cec88a22bd1dfcad5b4e04759175", - "sha256:6bdc11f9623870d75692cc33c59804b5a18d7b8a4b79ef0b00b773a27397d1f6", - "sha256:6cf4393c7b41abbf07c88eb83e8af5013606b1cdb7f6bc96b1b3536b53a574b8", - "sha256:6eef672de005736a6efd565577101277db6057f65640a813de6c2707dc69f396", - "sha256:734c41f9f57cc28658d98270d3436dba65bed0cfc730d115b290e970150c540d", - "sha256:73e0a78a9b843b8c2128028864901f55190401ba38aae685350cf69b98d9f7c9", - "sha256:775049dfa63fb58293990fc59473e659fcafd953bba1d00fc5f0631a8fd61977", - "sha256:7854a207ef77319ec457c1eb79c361b48807d252d94348305db4f4b62f40f7f3", - "sha256:78ca33811e1d95cac8c2e49cb86c0fb71f4d8409d8cbea0cb495b6dbddb30a55", - "sha256:79edd779cfc46b2e15b0830eecd8b4b93f1a96649bcb502453df471a54ce7977", - "sha256:7bf347b495b197992efc81a7408e9a83b931b2f056728529956a4d0858608b80", - "sha256:7fde6d0e00b2fd0dbbb40c0eeec463ef147819f23725eda58105ba9ca48744f4", - "sha256:81de24a1c51cfb32e1fbf018ab0bdbc79c04c035986526f76c33e3f9e0f3356c", - "sha256:879fb24304ead6b62dbe5034e7b644b71def53c70e19363f3c3be2705c17a3b4", - "sha256:8e7f2219cb72474571974d29a191714d822e58be1eb171f229732bc6fdedf0ac", - "sha256:9164ec8010327ab9af931d7ccd12ab8d8b5dc2f4c6a16cbdd9d087861eaaefa1", - "sha256:945eb4b6bb8144909b203a88a35e0a03d22b57aefb06c9b26c6e16d72e5eb0f0", - "sha256:99a57006b4ec39dbfb3ed67e5b27192792ffb0553206a107e4aadb39c5004cd5", - "sha256:9e9184fa6c52a74a5521e3e87badbf9692549c0fcced47443585876fcc47e469", - "sha256:9ff93d3aedef11f9c4540cf347f8bb135dd9323a2fc705633d83210d464c579d", - "sha256:a360cfd0881d36c6dc271992ce1eda65dba5e9368575663de993eeb4523d895f", - "sha256:a5d7ed104d158c0042a6a73799cf0eb576dfd5fc1ace9c47996e52320c37cb7c", - "sha256:ac17044876e64a8ea20ab132080ddc73b895b4abe9976e263b0e30ee5be7b9c2", - "sha256:ad857f42831e5b8d41a32437f88d86ead6c191455a3499c4b6d15e007936d4cf", - "sha256:b2039f8d545f20c4e52713eea51a275e62153ee96c8035a32b2abb772b6fc9e5", - "sha256:b455492cab07107bfe8711e20cd920cc96003e0da3c1f91297235b1603d2aca7", - "sha256:b4a9fe992887ac68256c930a2011255bae0bf5ec837475bc6f7edd7c8dfa254e", - "sha256:b5a53f5998b4bbff1cb2e967e66ab2addc67326a274567697379dd1e326bded7", - "sha256:b788276a3c114e9f51e257f2a6f544c32c02dab4aa7a5816b96444e3f9ffc336", - "sha256:bddd4f91eede9ca5275e70479ed3656e76c8cdaaa1b354e544cbcf94c6fc8ac4", - "sha256:c0503c5b681566e8b722fe8c4c47cce5c7a51f6935d5c7012c4aefe952a35eed", - "sha256:c1b3cd23d905589cb205710b3988fc8f46d4a198cf12862887b09d7aaa6bf9b9", - "sha256:c48f3fbc3e92c7dd6681a258d22f23adc2eb183c8cb1557d2fcc5a024e80b094", - "sha256:c63c3ef43f0b3fb00571cff6c3967cc261c0ebd14a0a134a12e83bdb8f49f21f", - "sha256:c6c45a2d2b68c51fe3d9352733fe048291e483376c94f7723458cfd7b473136b", - "sha256:caa1afc70a02645809c744eefb7d6ee8fef7e2fad170ffdeacca267fd2674f13", - "sha256:cc435d059f926fdc5b05822b1be4ff2a3a040f3ae0a7bbbe672babb468944722", - "sha256:cf693eb4a08eccc1a1b636e4392322582db2a47470d52e824b25eca7a3977b53", - "sha256:cf71343646756a072b85f228d35b1d7407da1669a3de3cf47f8bbafe0c8183a4", - "sha256:d08f63561c8a695afec4975fae445245386d645e3e446e6f260e81663bfd2e38", - "sha256:d29ddefeab1791e3c751e0189d5f4b3dbc0bbe033b06e9c333dca1f99e1d523e", - "sha256:d7f5e15c953ace2e8dde9824bdab4bec50adb91a5663df08d7d994240ae6fa31", - "sha256:d858532212f0650be12b6042ff4378dc2efbb7792a286bee4489eaa7ba010586", - "sha256:d97dd44683802000277bbf142fd9f6b271746b4846d0acaf0cefa6b2eaf2a7ad", - "sha256:dcdc88b6b01015da066da3fb76545e8bb9a6880a5ebf89e0f0b2e3ca557b3ab7", - "sha256:dd609fafdcdde6e67a139898196698af37438b035b25ad63704fd9097d9a3482", - "sha256:defa2c0c68734f4a82028c26bcc85e6b92cced99866af118cd6a89b734ad8e0d", - "sha256:e22260a4741a0e7a206e175232867b48a16e0401ef5bce3c67ca5b9705879066", - "sha256:e225a6a14ecf44499aadea165299092ab0cba918bb9ccd9304eab1138844490b", - "sha256:e3df0bc35e746cce42579826b89579d13fd27c3d5319a6afca9893a9b784ff1b", - "sha256:e6fcc026a3f27c1282c7ed24b7fcac82cdd70a0e84cc848c0841a3ab1e3dea2d", - "sha256:e782379c2028a3611285a795b89b99a52722946d19fc06f002f8b53e3ea26ea9", - "sha256:e8cdd52744f680346ff8c1ecdad5f4d11117e1724d4f4e1874f3a67598821069", - "sha256:e9616f5bd2595f7f4a04b67039d890348ab826e943a9bfdbe4938d0eba606971", - "sha256:e98c4c07ee4c4b3acf787e91b27688409d918212dfd34c872201273fdd5a0e18", - "sha256:ebdab79f42c5961682654b851f3f0fc68e6cc7cd8727c2ac4ffff955154123c1", - "sha256:f0f17f2ce0f3529177a5fff5525204fad7b43dd437d017dd0317f2746773443d", - "sha256:f4e56860a5af16a0fcfa070a0a20c42fbb2012eed1eb5ceeddcc7f8079214281" - ], - "markers": "python_full_version >= '3.8.0'", - "version": "==0.10.6" + "sha256:0525847f83f506aa1e28eb2057b696fe38217e12931c8b1b02198cfe6975e142", + "sha256:05942656cb2cb4989cd50ced52df16be94d344eae5097e8583966a1d27da73a5", + "sha256:0831d3ecdea22e4559cc1793f22e77067c9d8c451d55ae6a75bf1d116a8e7f42", + "sha256:0853da3d5e9bc6a07b2486054a410b7b03f34046c123c6561b535bb48cc509e1", + "sha256:08e6e7ff286254016b945e1ab632ee843e43d45e40683b66dd12b73791366dd1", + "sha256:0a38612d07a36138507d69646c470aedbfe2b75b43a4643f7bd8e51e52779624", + "sha256:0bedd91ae1dd142a4dc15970ed2c729ff6c73f33a40fa84ed0cdbf55de87c777", + "sha256:0c5441b7626c29dbd54a3f6f3713ec8e956b009f419ffdaaa3c80eaf98ddb523", + "sha256:0e9e976e0dbed4f51c56db10831c9623d0fd67aac02853fe5476262e5a22acb7", + "sha256:0fadfdda275c838cba5102c7f90a20f2abd7727bf8f4a2b654a5b617529c5c18", + "sha256:1096ca0bf2d3426cbe79d4ccc91dc5aaa73629b08ea2d8467375fad8447ce11a", + "sha256:171d9a159f1b2f42a42a64a985e4ba46fc7268c78299272ceba970743a67ee50", + "sha256:188912b22b6c8225f4c4ffa020a2baa6ad8fabb3c141a12dbe6edbb34e7f1425", + "sha256:1b4cf9ab9a0ae0cb122685209806d3f1dcb63b9fccdf1424fb42a129dc8c2faa", + "sha256:1e04581c6117ad9479b6cfae313e212fe0dfa226ac727755f0d539cd54792963", + "sha256:1fa73ed22c40a1bec98d7c93b5659cd35abcfa5a0a95ce876b91adbda170537c", + "sha256:2124f9e645a94ab7c853bc0a3644e0ca8ffbe5bb2d72db49aef8f9ec1c285733", + "sha256:240687b5be0f91fbde4936a329c9b7589d9259742766f74de575e1b2046575e4", + "sha256:25740fb56e8bd37692ed380e15ec734be44d7c71974d8993f452b4527814601e", + "sha256:27ccc93c7457ef890b0dd31564d2a05e1aca330623c942b7e818e9e7c2669ee4", + "sha256:281c8b219d4f4b3581b918b816764098d04964915b2f272d1476654143801aa2", + "sha256:2d34a5450a402b00d20aeb7632489ffa2556ca7b26f4a63c35f6fccae1977427", + "sha256:301bd744a1adaa2f6a5e06c98f1ac2b6f8dc31a5c23b838f862d65e32fca0d4b", + "sha256:30e5ce9f501fb1f970e4a59098028cf20676dee64fc496d55c33e04bbbee097d", + "sha256:33ab498f9ac30598b6406e2be1b45fd231195b83d948ebd4bd77f337cb6a2bff", + "sha256:35585a8cb5917161f42c2104567bb83a1d96194095fc54a543113ed5df9fa436", + "sha256:389c0e38358fdc4e38e9995e7291269a3aead7acfcf8942010ee7bc5baee091c", + "sha256:3acadbab8b59f63b87b518e09c4c64b142e7286b9ca7a208107d6f9f4c393c5c", + "sha256:3b7a64d43e2a1fa2dd46b678e00cabd9a49ebb123b339ce799204c44a593ae1c", + "sha256:3c8c0226c71bd0ce9892eaf6afa77ae8f43a3d9313124a03df0b389c01f832de", + "sha256:429349a510da82c85431f0f3e66212d83efe9fd2850f50f339341b6532c62fe4", + "sha256:466030a42724780794dea71eb32db83cc51214d66ab3fb3156edd88b9c8f0d78", + "sha256:47aeceb4363851d17f63069318ba5721ae695d9da55d599b4d6fb31508595278", + "sha256:48aa98987d54a46e13e6954880056c204700c65616af4395d1f0639eba11764b", + "sha256:4b2416ed743ec5debcf61e1242e012652a4348de14ecc7df3512da072b074440", + "sha256:4d0a675a7acbbc16179188d8c6d0afb8628604fc1241faf41007255957335a0b", + "sha256:4eb74d44776b0fb0782560ea84d986dffec8ddd94947f383eba2284b0f32e35e", + "sha256:4f8a1d990dc198a6c68ec3d9a637ba1ce489b38cbfb65440a27901afbc5df575", + "sha256:513ccbf7420c30e283c25c82d5a8f439d625a838d3ba69e79a110c260c46813f", + "sha256:5210a0018c7e09c75fa788648617ebba861ae242944111d3079034e14498223f", + "sha256:54cdfcda59251b9c2f87a05d038c2ae02121219a04d4a1e6fc345794295bdc07", + "sha256:56dd500411d03c5e9927a1eb55621e906837a83b02350a9dc401247d0353717c", + "sha256:57ec6baec231bb19bb5fd5fc7bae21231860a1605174b11585660236627e390e", + "sha256:5f1519b080d8ce0a814f17ad9fb49fb3a1d4d7ce5891f5c85fc38631ca3a8dc4", + "sha256:6174d6ad6b58a6bcf67afbbf1723420a53d06c4b89f4c50763d6fa0a6ac9afd2", + "sha256:68172622a5a57deb079a2c78511c40f91193548e8ab342c31e8cb0764d362459", + "sha256:6915fc9fa6b3ec3569566832e1bb03bd801c12cea030200e68663b9a87974e76", + "sha256:6b75b912a0baa033350367a8a07a8b2d44fd5b90c890bfbd063a8a5f945f644b", + "sha256:6f5dcb658d597410bb7c967c1d24eaf9377b0d621358cbe9d2ff804e5dd12e81", + "sha256:6f8d7fe73d1816eeb5378409adc658f9525ecbfaf9e1ede1e2d67a338b0c7348", + "sha256:7036316cc26b93e401cedd781a579be606dad174829e6ad9e9c5a0da6e036f80", + "sha256:7188ddc1a8887194f984fa4110d5a3d5b9b5cd35f6bafdff1b649049cbc0ce29", + "sha256:761531076df51309075133a6bc1db02d98ec7f66e22b064b1d513bc909f29743", + "sha256:7979d90ee2190d000129598c2b0c82f13053dba432b94e45e68253b09bb1f0f6", + "sha256:8015835494b21aa7abd3b43fdea0614ee35ef6b03db7ecba9beb58eadf01c24f", + "sha256:81c4d1a3a564775c44732b94135d06e33417e829ff25226c164664f4a1046213", + "sha256:81cf9d306c04df1b45971c13167dc3bad625808aa01281d55f3cf852dde0e206", + "sha256:88857060b690a57d2ea8569bca58758143c8faa4639fb17d745ce60ff84c867e", + "sha256:8c567c664fc2f44130a20edac73e0a867f8e012bf7370276f15c6adc3586c37c", + "sha256:91bd2b7cf0f4d252eec8b7046fa6a43cee17e8acdfc00eaa8b3dbf2f9a59d061", + "sha256:9620650c364c01ed5b497dcae7c3d4b948daeae6e1883ae185fef1c927b6b534", + "sha256:9b007c2444705a2dc4a525964fd4dd28c3320b19b3410da6517cab28716f27d3", + "sha256:9bf9acce44e967a5103fcd820fc7580c7b0ab8583eec4e2051aec560f7b31a63", + "sha256:a239303acb0315091d54c7ff36712dba24554993b9a93941cf301391d8a997ee", + "sha256:a2baa6be130e8a00b6cbb9f18a33611ec150b4537f8563bddadb54c1b74b8193", + "sha256:a54917b7e9cd3a67e429a630e237a90b096e0ba18897bfb99ee8bd1068a5fea0", + "sha256:a689e1ded7137552bea36305a7a16ad2b40be511740b80748d3140614993db98", + "sha256:a952ae3eb460c6712388ac2ec706d24b0e651b9396d90c9a9e0a69eb27737fdc", + "sha256:aa32205358a76bf578854bf31698a86dc8b2cb591fd1d79a833283f4a403f04b", + "sha256:b2287c09482949e0ca0c0eb68b2aca6cf57f8af8c6dfd29dcd3bc45f17b57978", + "sha256:b6b0e17d39d21698185097652c611f9cf30f7c56ccec189789920e3e7f1cee56", + "sha256:b710bf7e7ae61957d5c4026b486be593ed3ec3dca3e5be15e0f6d8cf5d0a4990", + "sha256:b8e11715178f3608874508f08e990d3771e0b8c66c73eb4e183038d600a9b274", + "sha256:b92aafcfab3d41580d54aca35a8057341f1cfc7c9af9e8bdfc652f83a20ced31", + "sha256:bec29b801b4adbf388314c0d050e851d53762ab424af22657021ce4b6eb41543", + "sha256:c694bee70ece3b232df4678448fdda245fd3b1bb4ba481fb6cd20e13bb784c46", + "sha256:c6b52b7028b547866c2413f614ee306c2d4eafdd444b1ff656bf3295bf1484aa", + "sha256:cb41ad20064e18a900dd427d7cf41cfaec83bcd1184001f3d91a1f76b3fcea4e", + "sha256:cd316dbcc74c76266ba94eb021b0cc090b97cca122f50bd7a845f587ff4bf03f", + "sha256:ced40cdbb6dd47a032725a038896cceae9ce267d340f59508b23537f05455431", + "sha256:d1c562a9bb72244fa767d1c1ab55ca1d92dd5f7c4d77878fee5483a22ffac808", + "sha256:d389ff1e95b6e46ebedccf7fd1fadd10559add595ac6a7c2ea730268325f832c", + "sha256:d56b1cd606ba4cedd64bb43479d56580e147c6ef3f5d1c5e64203a1adab784a2", + "sha256:d72a4315514e5a0b9837a086cb433b004eea630afb0cc129de76d77654a9606f", + "sha256:d9e7f29c00577aff6b318681e730a519b235af292732a149337f6aaa4d1c5e31", + "sha256:dbc25baa6abb205766fb8606f8263b02c3503a55957fcb4576a6bb0a59d37d10", + "sha256:e57919c32ee295a2fca458bb73e4b20b05c115627f96f95a10f9f5acbd61172d", + "sha256:e5bbe011a2cea9060fef1bb3d668a2fd8432b8888e6d92e74c9c794d3c101595", + "sha256:e6aea5c0eb5b0faf52c7b5c4a47c8bb64437173be97227c819ffa31801fa4e34", + "sha256:e888be685fa42d8b8a3d3911d5604d14db87538aa7d0b29b1a7ea80d354c732d", + "sha256:eebaf8c76c39604d52852366249ab807fe6f7a3ffb0dd5484b9944917244cdbe", + "sha256:efbe0b5e0fd078ed7b005faa0170da4f72666360f66f0bb2d7f73526ecfd99f9", + "sha256:efddca2d02254a52078c35cadad34762adbae3ff01c6b0c7787b59d038b63e0d", + "sha256:f05450fa1cd7c525c0b9d1a7916e595d3041ac0afbed2ff6926e5afb6a781b7f", + "sha256:f12d69d568f5647ec503b64932874dade5a20255736c89936bf690951a5e79f5", + "sha256:f45321224144c25a62052035ce96cbcf264667bcb0d81823b1bbc22c4addd194", + "sha256:f62581d7e884dd01ee1707b7c21148f61f2febb7de092ae2f108743fcbef5985", + "sha256:f8832a4f83d4782a8f5a7b831c47e8ffe164e43c2c148c8160ed9a6d630bc02a", + "sha256:fa35ad36440aaf1ac8332b4a4a433d4acd28f1613f0d480995f5cfd3580e90b7" + ], + "markers": "python_version >= '3.8'", + "version": "==0.12.0" }, "scipy": { "hashes": [ @@ -1562,7 +1563,7 @@ "sha256:4ac1475276d2f1c48684874089fefcd83bd7162ddaafb81fac866ba0db282a87", "sha256:b454a35605876da60632df1a60f736524eb73cc47bbc9f3f1ef1b644de74fd2a" ], - "markers": "python_full_version >= '3.8.0'", + "markers": "python_version >= '3.8'", "version": "==68.2.2" }, "six": { @@ -1570,7 +1571,7 @@ "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2'", "version": "==1.16.0" }, "sniffio": { @@ -1586,7 +1587,7 @@ "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690", "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7" ], - "markers": "python_full_version >= '3.8.0'", + "markers": "python_version >= '3.8'", "version": "==2.5" }, "statsmodels": { @@ -1662,16 +1663,16 @@ "sha256:ceb917a50cd35882b57600709dd5421a418c29ddc852da8bcdab1f0db33406b0", "sha256:e7d8db41c0181c80d76c982aacc442c0783a2c54d6400fe028954201a2e032fe" ], - "markers": "python_full_version >= '3.8.0'", + "markers": "python_version >= '3.8'", "version": "==6.3.3" }, "traitlets": { "hashes": [ - "sha256:7564b5bf8d38c40fa45498072bf4dc5e8346eb087bbf1e2ae2d8774f6a0f078e", - "sha256:98277f247f18b2c5cabaf4af369187754f4fb0e85911d473f72329db8a7f4fae" + "sha256:9b232b9430c8f57288c1024b34a8f0251ddcc47268927367a0dd3eeaca40deb5", + "sha256:baf991e61542da48fe8aef8b779a9ea0aa38d8a54166ee250d5af5ecf4486619" ], - "markers": "python_full_version >= '3.8.0'", - "version": "==5.11.2" + "markers": "python_version >= '3.8'", + "version": "==5.13.0" }, "types-python-dateutil": { "hashes": [ @@ -1697,18 +1698,18 @@ }, "urllib3": { "hashes": [ - "sha256:7a7c7003b000adf9e7ca2a377c9688bbc54ed41b985789ed576570342a375cd2", - "sha256:b19e1a85d206b56d7df1d5e683df4a7725252a964e3993648dd0fb5a1c157564" + "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84", + "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e" ], "markers": "python_version >= '3.7'", - "version": "==2.0.6" + "version": "==2.0.7" }, "wcwidth": { "hashes": [ - "sha256:77f719e01648ed600dfa5402c347481c0992263b81a027344f3e1ba25493a704", - "sha256:8705c569999ffbb4f6a87c6d1b80f324bd6db952f5eb0b95bc07517f4c1813d4" + "sha256:9a929bd8380f6cd9571a968a9c8f4353ca58d7cd812a4822bba831f8d685b223", + "sha256:a675d1a4a2d24ef67096a04b85b02deeecd8e226f57b5e3a72dbb9ed99d27da8" ], - "version": "==0.2.8" + "version": "==0.2.9" }, "webargs": { "hashes": [ @@ -1737,7 +1738,7 @@ "sha256:084072e0a7f5f347ef2ac3d8698a5e0b4ffbfcab607628cadabc650fc9a83a24", "sha256:b3324019b3c28572086c4a319f91d1dcd44e6e11cd340232978c684a7650d0df" ], - "markers": "python_full_version >= '3.8.0'", + "markers": "python_version >= '3.8'", "version": "==1.6.4" }, "werkzeug": { @@ -1841,7 +1842,7 @@ "sha256:0e923e726174922dce09c53c59ad483ff7bbb8e572e00c7f7c46b88556409f31", "sha256:84e64a1c28cf7e91ed2078bb8cc8c259cb19b76942096c8d7b84947690cabaf0" ], - "markers": "python_full_version >= '3.8.0'", + "markers": "python_version >= '3.8'", "version": "==3.17.0" } }, @@ -1974,10 +1975,10 @@ }, "wcwidth": { "hashes": [ - "sha256:77f719e01648ed600dfa5402c347481c0992263b81a027344f3e1ba25493a704", - "sha256:8705c569999ffbb4f6a87c6d1b80f324bd6db952f5eb0b95bc07517f4c1813d4" + "sha256:9a929bd8380f6cd9571a968a9c8f4353ca58d7cd812a4822bba831f8d685b223", + "sha256:a675d1a4a2d24ef67096a04b85b02deeecd8e226f57b5e3a72dbb9ed99d27da8" ], - "version": "==0.2.8" + "version": "==0.2.9" } } } diff --git a/statistical-enrichment/statistical_enrichment/config.py b/statistical-enrichment/statistical_enrichment/config.py index 29ed492990..8daa4b4c19 100644 --- a/statistical-enrichment/statistical_enrichment/config.py +++ b/statistical-enrichment/statistical_enrichment/config.py @@ -4,13 +4,12 @@ class Base: """Default values""" - JWKS_URL = environ.get('JWKS_URL', None) - JWT_SECRET = environ.get('JWT_SECRET', 'secrets') - JWT_ALGORITHM = environ.get('JWT_ALGORITHM', 'HS256') - JWT_AUDIENCE = environ.get('JWT_AUDIENCE', None) - - NEO4J_HOST = environ.get('NEO4J_HOST') - NEO4J_SCHEME = environ.get('NEO4J_SCHEME') - NEO4J_AUTH = environ.get('NEO4J_AUTH') - NEO4J_PORT = environ.get('NEO4J_PORT') - NEO4J_DATABASE = environ.get('NEO4J_DATABASE') + JWKS_URL = environ.get('JWKS_URL', None) or None + JWT_SECRET = environ.get('JWT_SECRET', 'secrets') or 'secrets' + JWT_ALGORITHM = environ.get('JWT_ALGORITHM', 'HS256') or 'HS256' + JWT_AUDIENCE = environ.get('JWT_AUDIENCE', None) or None + + ARANGO_HOST = environ.get('ARANGO_HOST', 'http://localhost:8529') + ARANGO_USERNAME = environ.get('ARANGO_USERNAME', 'root') + ARANGO_PASSWORD = environ.get('ARANGO_PASSWORD', 'password') + ARANGO_DB_NAME = environ.get('ARANGO_DB_NAME', 'lifelike') diff --git a/statistical-enrichment/statistical_enrichment/database.py b/statistical-enrichment/statistical_enrichment/database.py new file mode 100644 index 0000000000..c7f3dd44d0 --- /dev/null +++ b/statistical-enrichment/statistical_enrichment/database.py @@ -0,0 +1,24 @@ +from arango import ArangoClient +from arango.http import DefaultHTTPClient +import os +from flask import g + + +def create_arango_client(hosts=None) -> ArangoClient: + # Need a custom HTTP client for Arango because the default timeout is only 60s + class CustomHTTPClient(DefaultHTTPClient): + REQUEST_TIMEOUT = 1000 + + hosts = hosts or os.getenv('ARANGO_HOST') + return ArangoClient( + hosts=hosts, + # Without this setting any requests to Arango will fail because we don't have a valid cert + verify_override=False, + http_client=CustomHTTPClient(), + ) + + +def get_or_create_arango_client() -> ArangoClient: + if not hasattr(g, "arango_conn"): + g.arango_client = create_arango_client() + return g.arango_client diff --git a/statistical-enrichment/statistical_enrichment/services/__init__.py b/statistical-enrichment/statistical_enrichment/services/__init__.py index f50db97d48..d37499789b 100644 --- a/statistical-enrichment/statistical_enrichment/services/__init__.py +++ b/statistical-enrichment/statistical_enrichment/services/__init__.py @@ -1,3 +1,2 @@ from .rcache import * from .enrichment import * -from .graphdb import * diff --git a/statistical-enrichment/statistical_enrichment/services/arangodb.py b/statistical-enrichment/statistical_enrichment/services/arangodb.py new file mode 100644 index 0000000000..bd69c16560 --- /dev/null +++ b/statistical-enrichment/statistical_enrichment/services/arangodb.py @@ -0,0 +1,22 @@ +from arango import ArangoClient +from arango.database import StandardDatabase +from flask import current_app +from typing import Any, List, Optional + + +def get_db( + arango_client: ArangoClient, + name: Optional[str] = None, + username: Optional[str] = None, + password: Optional[str] = None, +): + return arango_client.db( + name=name or current_app.config.get('ARANGO_DB_NAME'), + username=username or current_app.config.get('ARANGO_USERNAME'), + password=password or current_app.config.get('ARANGO_PASSWORD'), + ) + + +def execute_arango_query(db: StandardDatabase, query: str, **bind_vars) -> List[Any]: + cursor = db.aql.execute(query, ttl=600, max_runtime=600, bind_vars=bind_vars) + return [row for row in cursor] diff --git a/statistical-enrichment/statistical_enrichment/services/enrichment/__init__.py b/statistical-enrichment/statistical_enrichment/services/enrichment/__init__.py index 3f925ecd10..e69de29bb2 100644 --- a/statistical-enrichment/statistical_enrichment/services/enrichment/__init__.py +++ b/statistical-enrichment/statistical_enrichment/services/enrichment/__init__.py @@ -1,10 +0,0 @@ -from flask import g -from ..graphdb import get_neo4j_db -from .enrichment_visualisation import EnrichmentVisualisationService - - -def get_enrichment_visualisation_service(): - if 'enrichment_visualisation_service' not in g: - graph = get_neo4j_db() - g.enrichment_visualisation_service = EnrichmentVisualisationService(graph=graph) - return g.enrichment_visualisation_service diff --git a/statistical-enrichment/statistical_enrichment/services/enrichment/enrichment_visualisation.py b/statistical-enrichment/statistical_enrichment/services/enrichment/enrichment_visualisation.py index 420281a433..dc95ef4864 100644 --- a/statistical-enrichment/statistical_enrichment/services/enrichment/enrichment_visualisation.py +++ b/statistical-enrichment/statistical_enrichment/services/enrichment/enrichment_visualisation.py @@ -1,118 +1,166 @@ -import json +from arango import ArangoClient from flask import current_app from functools import partial +import json +import pandas as pd from typing import List -import pandas as pd +from ..arangodb import execute_arango_query, get_db from .enrich_methods import fisher from ..rcache import redis_cached, redis_server -class EnrichmentVisualisationService: - def __init__(self, graph): - self.graph = graph +def enrich_go(arango_client: ArangoClient, gene_names: List[str], analysis, organism): + if analysis == 'fisher': + GO_terms = redis_server.get(f"GO_for_{organism.id}") + if GO_terms is not None: + df = pd.read_json(GO_terms) + go_count = len(df) + mask = ~df.geneNames.map(set(gene_names).isdisjoint) + go = df[mask] + else: + go = redis_cached( + f"get_go_terms_{organism}_{','.join(gene_names)}_x", + partial(get_go_terms, arango_client, organism.id, gene_names), + load=json.loads, + dump=json.dumps, + ) + go_count = redis_cached( + f"go_term_count_{organism.id}", + partial(get_go_term_count, arango_client, organism.id), + load=json.loads, + dump=json.dumps, + ) + return fisher(gene_names, go, go_count) + raise NotImplementedError - def enrich_go(self, gene_names: List[str], analysis, organism): - if analysis == 'fisher': - GO_terms = redis_server.get(f"GO_for_{organism.id}") - if GO_terms is not None: - df = pd.read_json(GO_terms) - go_count = len(df) - mask = ~df.geneNames.map(set(gene_names).isdisjoint) - go = df[mask] - else: - go = self.get_go_terms(organism, gene_names) - go_count = self.get_go_term_count(organism) - return fisher(gene_names, go, go_count) - raise NotImplementedError - def query_go_term(self, organism_id, gene_names): - r = self.graph.read_transaction( - lambda tx: list( - tx.run( - """ - UNWIND $gene_names AS geneName - MATCH (g:Gene)-[:HAS_TAXONOMY]-(t:Taxonomy {eid:$taxId}) - WHERE g.name=geneName - CALL { - // Make simple run by relations we has from GO db - WITH g - MATCH (g)-[:GO_LINK]-(go:db_GO) - WITH DISTINCT go - // GO db 'GO_LINK's has tax_id property so we can filter in this way - MATCH (go)-[:GO_LINK {tax_id:$taxId}]-(go_gene:Gene) - RETURN go, go_gene - UNION - // Fetch GO relations defined in BioCyc - WITH g - MATCH (g)-[:IS]-(:db_BioCyc)-[:ENCODES]-(:Protein)-[:GO_LINK]-(go:db_GO) - WITH DISTINCT go - // BioCyc db 'GO_LINK's does not have tax_id property so we need to filter in this way - MATCH (go)-[:GO_LINK]-(:Protein)-[:ENCODES]-(:db_BioCyc)-[:IS]-(go_gene:Gene {tax_id:$taxId}) - RETURN go, go_gene - } - WITH - DISTINCT go, - collect(DISTINCT go_gene) AS go_genes - RETURN - go.eid AS goId, - go.name AS goTerm, - // Return all but 'db_GO' labels - [lbl IN labels(go) WHERE lbl <> 'db_GO'] AS goLabel, - [g IN go_genes |g.name] AS geneNames - """, - taxId=organism_id, - gene_names=gene_names, - ).data() - ) +def get_go_terms(arango_client: ArangoClient, tax_id, gene_names: List[str]): + result = execute_arango_query( + db=get_db(arango_client), + query=go_term_query(), + gene_names=gene_names, + tax_id=tax_id, + ) + if not result: + current_app.logger.warning( + f'Could not find related GO terms for organism id: {tax_id}' ) - if not r: - current_app.logger.warning( - f'Could not find related GO terms for organism id: {organism_id}' - ) - return r + return result + - def get_go_terms(self, organism, gene_names): - cache_id = f"get_go_terms_{organism}_{','.join(gene_names)}" - return redis_cached( - cache_id, - partial(self.query_go_term, organism.id, gene_names), - load=json.loads, - dump=json.dumps, +def get_go_term_count(arango_client: ArangoClient, tax_id): + result = execute_arango_query( + db=get_db(arango_client), query=go_term_count_query(), tax_id=tax_id + ) + if not result: + current_app.logger.warning( + f'Could not find related GO terms for organism id: {tax_id}' ) + return None + return result[0] - def query_go_term_count(self, organism_id): - r = self.graph.read_transaction( - lambda tx: list( - tx.run( - """ - MATCH (g:Gene)-[:HAS_TAXONOMY]-(t:Taxonomy {eid:$taxId}) - CALL { - WITH g - MATCH (g)-[:GO_LINK]-(go:db_GO) - RETURN go - UNION - WITH g - MATCH (g)-[:IS]-(:db_BioCyc)-[:ENCODES]-(:Protein)-[:GO_LINK]-(go:db_GO) - RETURN go + +def go_term_query(): + return """ + LET original_master_genes = ( + FOR organism IN taxonomy + FILTER organism.eid == @tax_id + FOR master_gene IN INBOUND organism has_taxonomy + FILTER "Gene" IN master_gene.labels + FILTER master_gene.name IN @gene_names + RETURN master_gene + ) + LET organism_genes = ( + FOR organism IN taxonomy + FILTER organism.eid == @tax_id + FOR gene IN INBOUND organism has_taxonomy + RETURN gene + ) + FOR original_gene IN original_master_genes + LET results = UNION( + ( + FOR go_term IN OUTBOUND original_gene go_link + LET linked_gene_names = ( + FOR gene IN organism_genes + FOR link IN go_link + FILTER link._from == gene._id + FILTER link._to == go_term._id + RETURN gene.name + ) + RETURN DISTINCT { + "goId": go_term.eid, + "goTerm": go_term.name, + "goLabel": go_term.labels, + "geneNames": linked_gene_names } - return count(distinct go) as go_count - """, - taxId=organism_id, + ), + ( + LET biocyc_go_terms = ( + FOR biocyc_gene IN INBOUND original_gene is + FOR protein IN OUTBOUND biocyc_gene encodes + FOR go_term IN OUTBOUND protein go_link + RETURN DISTINCT go_term + ) + LET gene_names_and_linked_protein_ids = ( + FOR gene IN organism_genes + FOR biocyc_gene IN INBOUND gene is + FOR protein IN OUTBOUND biocyc_gene encodes + RETURN {"geneName": gene.name, "protein_id": protein._id} ) + FOR go_term IN biocyc_go_terms + LET linked_gene_names = ( + FOR pair IN gene_names_and_linked_protein_ids + FOR link IN go_link + FILTER link._from == pair.protein_id + FILTER link._to == go_term._id + RETURN pair.geneName + ) + RETURN DISTINCT { + "goId": go_term.eid, + "goTerm": go_term.name, + "goLabel": go_term.labels, + "geneNames": linked_gene_names + } ) ) - if not r: - current_app.logger.warning( - f'Could not find related GO terms for organism id: {organism_id}' - ) - return r[0]['go_count'] + FOR result IN results + COLLECT id = result.goId, term = result.goTerm, label = result.goLabel INTO genes = result.geneNames + RETURN DISTINCT { + "goId": id, + "goTerm": term, + "goLabel": label, + "geneNames": UNIQUE(FLATTEN(genes)) + } + """ - def get_go_term_count(self, organism): - cache_id = f"go_term_count_{organism}" - return redis_cached( - cache_id, - partial(self.query_go_term_count, organism.id), - load=json.loads, - dump=json.dumps, - ) + +def go_term_count_query(): + return """ + LET linked_gene_names = ( + FOR organism IN taxonomy + FILTER organism.eid == @tax_id + FOR linked_gene IN INBOUND organism has_taxonomy + FILTER "Gene" IN linked_gene.labels + RETURN linked_gene + ) + + LET go_terms = ( + FOR gene IN linked_gene_names + LET results = UNION( + ( + FOR go_term IN OUTBOUND gene go_link + RETURN DISTINCT go_term + ), + ( + FOR biocyc_gene IN INBOUND gene is + FOR protein IN OUTBOUND biocyc_gene encodes + FOR go_term IN OUTBOUND protein go_link + RETURN DISTINCT go_term + ) + ) + FOR result IN results + RETURN DISTINCT result + ) + RETURN COUNT(go_terms) + """ diff --git a/statistical-enrichment/statistical_enrichment/services/graphdb.py b/statistical-enrichment/statistical_enrichment/services/graphdb.py deleted file mode 100644 index 10283d304a..0000000000 --- a/statistical-enrichment/statistical_enrichment/services/graphdb.py +++ /dev/null @@ -1,17 +0,0 @@ -import os - -from flask import g -from neo4j import GraphDatabase, basic_auth - -host = os.getenv('NEO4J_HOST', '0.0.0.0') -scheme = os.getenv('NEO4J_SCHEME', 'bolt') -port = os.getenv('NEO4J_PORT', '7687') -url = f'{scheme}://{host}:{port}' -username, password = os.getenv('NEO4J_AUTH', 'neo4j/password').split('/') -driver = GraphDatabase.driver(url, auth=basic_auth(username, password)) - - -def get_neo4j_db(): - if not hasattr(g, 'neo4j_db'): - g.neo4j_db = driver.session() - return g.neo4j_db diff --git a/statistical-enrichment/statistical_enrichment/views.py b/statistical-enrichment/statistical_enrichment/views.py index 290a3d7eb1..f49584917a 100644 --- a/statistical-enrichment/statistical_enrichment/views.py +++ b/statistical-enrichment/statistical_enrichment/views.py @@ -4,9 +4,10 @@ from .app import app from .auth import login_exempt -from .services.rcache import redis_cached +from .database import get_or_create_arango_client from .schemas import EnrichmentSchema -from .services import get_enrichment_visualisation_service +from .services.enrichment.enrichment_visualisation import enrich_go +from .services.rcache import redis_cached @app.route('/', methods=['GET', 'POST']) @@ -24,14 +25,14 @@ def healthz(): @app.route('/enrich-with-go-terms', methods=['POST']) @login_exempt @use_args(EnrichmentSchema) -def enrich_go(args): +def enrich_with_go_terms(args): gene_names = args['geneNames'] organism = args['organism'] analysis = args['analysis'] cache_id = '_'.join(['enrich_go', ','.join(gene_names), analysis, str(organism)]) - enrichment_visualisation = get_enrichment_visualisation_service() + arango_client = get_or_create_arango_client() return redis_cached( cache_id, - partial(enrichment_visualisation.enrich_go, gene_names, analysis, organism), + partial(enrich_go, arango_client, gene_names, analysis, organism), dump=dumps, ), dict(mimetype='application/json')